DictTypes

Does anyone have idea on DictTypes?? Usage and Pupose??

Hi vishal,

The label that is returned corresponds to the label property for an extended data type or array element in the Application Object Tree (AOT).

When an extended data type does not have a label, the method returns the label defined for the extended data type that an extended data type extends

u can observe the below example…

static void Job10(Args _args)
{
dicttype dictype;
NumberSequenceReference NumberSequenceReference;
;

select NumberSequenceReference
where NumberSequenceReference.NumberSequence == ‘Inve_109’;
dictype = new dicttype(NumberSequenceReference.DataTypeId);
info(dictype.label());
}

Hi,

u can take the help of below link…

http://axdynamics.wordpress.com/2009/05/07/what-are-the-objects-dict-and-how-can-we-use-them/