Table of Contents

Search

  1. Preface
  2. Introduction
  3. IDD Concepts
  4. Implementation Process
  5. IDD Configuration Manager
  6. Manual IDD Configuration
  7. IDD Global Properties
  8. Sizing and Platform Requirements
  9. Application Components
  10. IDD Security Configuration
  11. Data Security
  12. Example Role-Based Security Configuration
  13. Data Masking
  14. Siperian BPM Workflow Engine
  15. Locale Codes
  16. Troubleshooting
  17. Glossary

Data Director Implementation Guide

Data Director Implementation Guide

Lookup Column

Lookup Column

An IDD application automatically populates a drop-down list of acceptable values for columns that are configured in the Schema Manager as lookups.
This is handled in the IDD Configuration Manager for columns that have a foreign key to the lookup table. If the foreign key does not exist (for example, for performance reasons), the information about the lookup table can be specified in the XML configuration.
An explicit lookup is defined using the columnLookup element, as shown in the following example.
<column columnUid="C_PARTY|GENDER_CD" editStyle="FIELD" horizontalStyle="SMALL"> <columnLookup lookupFKUid="C_LU_GENDER|GENDER_CODE" lookupNameUid="C_LU_GENDER|GENDER_DISP"/> </column>
In this example, column C_PARTY|GENDER_CD should be treated as if it has a foreign key to the column C_LU_GENDER|GENDER_CODE, and table C_LU_GENDER is treated as a lookup table. The IDD application creates a drop-down list for the column GENDER_CD, and this list is populated with values from the table C_LU_GENDER (display values are retrieved from the GENDER_DISP column).
Element columnI18NLookup can be specified together with sub-element columnLookup if the localization of display values is needed.
<column columnUid="C_PARTY|GENDER_CD" editStyle="FIELD" horizontalStyle="SMALL"> <columnLookup lookupFKUid="C_LU_GENDER|GENDER_CODE" lookupNameUid="C_LU_GENDER|GENDER_DISP"/> <columnI18NLookup languageCdUid="C_LU_GENDER_LCL|LANGUAGE_CODE" countryCdUid="C_LU_GENDER_LCL|COUNTRY_CODE" lookupFKUid="C_LU_GENDER_LCL|GENDER_CODE" localizedNameUid="C_LU_GENDER_LCL|LOCALIZED_STRING"/> </column>

0 COMMENTS

We’d like to hear from you!