PickList Object

PickList — List of options.

Introduction

The pick list can hold data which can be displayed in combo boxes. The user typically selects one of the values out of the list. The list can be populated at development time as well by using logic commands at runtime.

Properties

Table 17. PickList Object Properties

NameDetailsPossible ValuesDefault Value
DescriptionDescription to be used in lists.*-
DetailDescriptionDetailed description.*-
ModifiedModification date-time stamp in ISO 8601 format.ccyy-mm-ddThh:mm:ssdate stamp
OccurrencesPickListEntry

Table 18. Occurrences PickListEntry

NameDetailsPossible ValuesDefault Value
ValueValue that can be selected by the user.*-

  

Example

<Object Application="MyOrder" Type="PickList" name="Size">
  <PickList>
    <Description>Size</Description>
    <DetailDescription>Available sizes</DetailedDescription>
    <Modified>2007-11-12T09:58:00</Modified>
    <OccurencesPickListEntry>
      <PickListEntry>
        <Value>Small</Value>
      </PickListEntry>
      <PickListEntry>
        <Value>Medium</Value>
      </PickListEntry>
      <PickListEntry>
        <Value>Large</Value>
      </PickListEntry>
    </OccurencesPickList>
  </PickList>
</Object>