Hi,
you can extract it from properties as shown below. For convenience
write a method using DictEnum class to construct the path
(TreeNode::findNode(<PATH>)) by enum and value.
static void Job34(Args _args)
{
TreeNode TN;
str s;
;
TN = TreeNode::findNode("Data Dictionary\\Base
Enums\\AssetStatus\\Open");
if(TN)
{
s = strline(TN.AOTgetProperties(), 2);
s = substr(s, strscan(s, "@", 1, strlen(s)),strlen(s));
print s;
}
pause;
}
Regards,
Onno
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

