Posts

Showing posts with the label Finding tables from a Configuration Key

Finding tables from a Configuration Key

Below job is to list out the tables from a configuration key.     // The name of the configuration key to be specified here     str                     configKeyName   = "Prod";     Dictionary              dictionary      = new Dictionary();     ConfigurationKeyId      configKeyId     = dictionary.configurationKeyName2Id(configKeyName);     TableId                 tableId;     DictConfigurationKey    dictConfigurationKey;     DictTable               dictTable;     container               keyIds;     int                     i;     ;     if (configKeyId)     { ...