| < | > |
In this group you can specify the parameter ContactGrabber needs to connect to sugarCRM system.
You can check all connection parameter by using the "Test Connection" button.


With Contacts its the same. A selection dialog comes up if there are similar Contacts available. You can choose to create a new Contact or to cancel the export.

You can activate the result protocol using the check box "Show Operation ResultDialog". If this option is activated ContactGrabber shows the result of the export in a dialog. You can navigate to the created records quickly using the hyperlinks in the protocol dialog.

If you want to export data as Prospect/Target/Ziel you have to modify sugarCRM-Source.
Please modify the file sugarcrm\htdocs\sugarcrm\include\modules_override.php and add the following source:
<?function enableProspectTab() {
global $moduleList, $modInvisList;
// add prospects to modules list -> now also visible as tab
$moduleList[]='Prospects'; // remove prospects from InvisibleModulesList
$pos = array_keys($modInvisList,'Prospects');
if(is_array($pos)) {
$pos = $pos[0]; if($pos !== 0) {
$left = array_slice ($modInvisList, 0, $pos);
$right = array_slice ($modInvisList, $pos+1);
$modInvisList = array_merge ($left, $right); unset($left);
unset($right);
} else {
$modInvisList = array_slice($modInvisList, 1);
}
}
}enableProspectTab();
?>
|