Retrieves the name of a configuration key as a string.
Function
- str configurationKeyStr(str keyname)
Parameters
- Parameter: keyname
- Description: The name of the configuration key.
Return Value
- The name of the configuration key.
Example
- X++
static void configurationKeyStrExample(Args _args)
{
str s;
;
s = configurationKeyStr(AIF);
print s;
pause;
}
My above blog is based on Microsoft's Official information.
I hope this blog about 'Microsoft Dynamics AX 2012 R2 - configurationKeyStr Function' was informative. Please feel free to leave your comments.