Hi!
I would like to know how can I use dfc to get the type of an attribute when I only have it's name as a String.
Thanks in advance!
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Try this -
IDfType dctmType = session.getType("Name of the type");
int code = dctmType.getTypeAttrDataType("name of the attribute");
Thank you Rijo!