Create an extended vardefs for Opportunities and update the attribute 'importable' for both 'date_entered' and 'date_modified' fields
custom/Extension/modules/Opportunities/Ext/Vardefs/vardefs.ext.php
PHP Code:
<?php
$dictionary['Opportunity']['fields']['date_entered']['importable'] = true;
$dictionary['Opportunity']['fields']['date_modified']['importable'] = true;
?>
Then go to Admin -> Repair -> Rebuild Extension.
You will see the cache/modules/Opportunities/Opportunityvardefs.php will be updated according to that customization and both fields will be importable.
Bookmarks