Thursday 10 January 2013

Microsoft Dynamics AX 2012 R2 - classNum Function


Retrieves the ID of the specified class.


Function

  • int classNum(class class)


Parameters

  • Parameter: class
  • Description: The class for which to retrieve the ID.


Return Value

  • The ID of the specified class.


Example

  • X++
static void classNumExample(Args _args)
{
    int i;
    ;
    i = classNum(Global);
    print i;
    pause;
}

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

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

No comments:

Post a Comment