Siebel CRM Desktop for Microsoft Outlook Administration Guide > XML Files Reference >

XML Code That Customizes Platform Configuration


This topic describes the XML code that you can use to customize the platform configuration. The following code is an example of the platform_configuration.xml file. For more information, see Files in the Customization Package:

<platform>
<items_remover>
<rules>
<type id="Mail" rule="skip" />
<type id="Task" rule="skip" />
<type id="Event" rule="skip" />
<type id="Action" rule="script" language="JScript">
<![CDATA[
  //"Calendar and Activities";
   //"To Do and Activities";
   //"Activities Only";
   var pim_id = item.PIMObjectId;
   if (!item["Appt PIM Flag"] && pim_id != null)
   {
     var pim_item = open_item(pim_id);
     if (pim_item != null)
       pim_item.remove();
   }
 true;  // allow to process this item
]]>
</type>
</rules>
</items_remover>
</platform>

Siebel CRM Desktop for Microsoft Outlook Administration Guide Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Legal Notices.