Siebel CRM Desktop for Microsoft Outlook Administration Guide > XML Files Reference > XML Code That Maps a Field >
Example Code of the Siebel Basic Mapping File
The following code is an example of the siebel_basic_mapping.xml file: <?xml version="1.0" encoding="utf-8"?> <sd2_meta> <types> <type id="Contact" predefined_folder="10"> <form message_class="IPM.Contact.SBL.Contact" icon="type_image:Contact:16" large_icon="type_image:Contact:32" display_name="Contact">SBL Contact</form> <alt_messageclasses> <alt_messageclass ext="Private" display_name="Private Contact" icon="type_image:Contact.Private:16" large_icon="type_image:Contact.Private:32">SBL Contact</alt_messageclass> </alt_messageclasses> <custom_views default_name="Siebel Contacts"> <view id="all_contacts" name="Siebel Contacts"></view> </custom_views> <field id=" First Name "> <reader class="mapi_std"> <mapi_tag id="0x3A060000"></mapi_tag> <convertor class="string"></convertor> </reader> <writer class="Microsoft Outlook_std"> <Microsoft Outlook_field id=" FirstName "></Microsoft Outlook_field> <convertor class="string"></convertor> </writer> </field> <field id="Location"> <reader class="mapi_user"> <user_field id="sbl Location" ol_field_type="1"></user_field> <convertor class="string"></convertor> </reader> <writer class="Microsoft Outlook_user"> <user_field id="sbl Location" ol_field_type="1"></user_field> <convertor class="string"></convertor> </writer> </field> </type> </types> </sd2_meta>
|