Oracle CRM On Demand Desktop Administration Guide > Additional Code in the Customization Example >

XML Code That Defines a List


To define a drop-down list, you add the following code to the od_basic_mapping.xml file on the activity object:

<type id="ActionTypePicklist" icon="type_image:ActionTypePicklist:16">
   <field id="Label">
      <type>
         <simple type="string" />
      </type>
   </field>
   <field id="Value">
      <type>
         <simple type="string" />
      </type>
   </field>
   <field id="SortOrder">
      <type>
         <simple type="integer" />
      </type>
   </field>
   <field id="IsDefault">
      <type>
         <simple type="boolean" />
      </type>
   </field>
   <field id="Parent">
      <type>
         <simple type="string" />
      </type>
   </field>
</type>

Oracle CRM On Demand Desktop Administration Guide, Version 5.2 Copyright © 2017, Oracle and/or its affiliates. All rights reserved. Legal Notices.