Oracle Migration Tool On Demand Guide > Migrating Picklist Values >

Elements and Sections in the Picklist XML Output File


Table 15 describes the elements and sections in the picklist XML output file.

Table 15. Elements and Sections in the Picklist XML File
Element or Section
Description

<data:IncludeAll>true
</data:IncludeAll>

<IncludeAll> specifies whether the preconfigured configuration information is returned in addition to the customized configuration information (true), or if only the customized configuration information is returned. The default setting is false.

<data:ObjectName></data:ObjectName>

<ObjectName> contains the system name of the record type (object), which never changes.

<data:ListOfPicklists>
. . .
</data:ListOfPicklists>

The <ListOfPicklists> section contains the details of the picklists fields.

<data:Picklist>
. . .
</data:Picklist>

The <Picklist> section contains all of the elements for one picklist field.

<data:Picklist>
  <data:Name>Team Role</data:Name>
. . .
</data:Picklist>

<Name> contains the name of the picklist field within the record type.

<data:Picklist>
. . .
  <data:WebSvcTag>Team Role
  </data:WebSvcTag>
. . .
</data:Picklist>

<WebSvcTag> contains the Web Services v2.0 integration tag name for the field. This element is read-only and is ignored in Upsert operations.

<data:Picklist>
. . .
  <data:ListOfPicklistValues>
. . .
  </data:ListOfPicklistValues>
. . .
</data:Picklist>

The <ListOfPicklistValues> section contains the details of the picklist field values.

<data:Picklist>
. . .
  <data:ListOfPicklistValues>
    <data:PicklistValue>
      <data:ValueId>Executive Sponsor
      </data:ValueId>
      <data:Disabled>false</data:Disabled> . . .
    </data:PicklistValue>
. . .
  </data:ListOfPicklistValues>
. . .
</data:Picklist>

The <PicklistValue> section contains the details of one picklist value:

  • <ValueId> is the identifier assigned to the specific picklist value. This element maps to the Id field in the Edit Picklist window for the picklist field.
  • <Disabled> specifies whether the value is disabled (true) or is not disabled (false).

<data:Picklist>
. . .
  <data:ListOfPicklistValues>
    <data:PicklistValue>
. . .
      <data:ListOfValueTranslations>
. . .
      </data:ListOfValueTranslations>
. . .
    </data:PicklistValue>
. . .
  </data:ListOfPicklistValues>
. . .
</data:Picklist>

The <ListOfValueTranslations> section contains the translation values for the picklist value.

<data:Picklist>
. . .
  <data:ListOfPicklistValues>
    <data:PicklistValue>
. . .
      <data:ListOfValueTranslations>
        <data:ValueTranslation>
          <data:LanguageCode>ENU
          </data:LanguageCode>
          <data:Value>Executive Sponsor
          </data:Value>
          <data:Order>2</data:Order>
        </data:ValueTranslation>
      </data:ListOfValueTranslations>
. . .
    </data:PicklistValue>
. . .
  </data:ListOfPicklistValues>
. . .
</data:Picklist>

The <ValueTranslation> section contains the translation values for one language:

  • <LanguageCode> contains the three-letter code for a language. For the list of language codes, see Language Codes and Their Corresponding Language and Country.
  • <Value> contains the picklist value in the language identified by the language code.
  • <Order> specifies the order for the picklist value within the set of picklist values in the specified language.

Oracle Migration Tool On Demand Guide, Release 35 Copyright © 2017, Oracle and/or its affiliates. All rights reserved. Legal Notices.