Friday 11 January 2013

Microsoft Dynamics AX 2012 R2 - configurationKeyNum Function


Retrieves the ID of the specified configuration key.


Function

  • int configurationKeyNum(str keyname)


Parameters

  • Parameter: keyname
  • Description: The configuration key for which to return the ID.


Return Value

  • The ID of the specified configuration key. 


Example

  • X++
static void configurationKeyNum(Args _args)
{
    int i;
    ;
    i = configurationKeyNum(AIF);
    print i;
    pause;
}

My above blog is based on Microsoft's Official information.

I hope this blog about 'Microsoft Dynamics AX 2012 R2 - configurationKeyNum Function' was informative. Please feel free to leave your comments.

No comments:

Post a Comment