DictEnum.configurationKeyId Method [AX 2012]

Returns the configuration key ID for the enumeration.

public ConfigurationKeyId configurationKeyId()

Run On

Called

Return Value

Type: ConfigurationKeyId Extended Data Type
The configuration key ID for the enumeration; 0 (zero) if there is no configuration key ID for the enumeration.

The following example shows the retrieval of the configuration key ID for an enumeration.

DictEnum de; 
int      i; 
 
de = new DictEnum(enumName2Id("ActionType")); 
print int2str(de.configurationKeyId());

Community Additions

ADD
Show: