classIdGet Function [AX 2012]

Updated: December 10, 2009

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

Retrieves the numeric identifier (the class ID) for the class of which the object is initialized.


int classIdGet(class object)

Parameter

Description

object

The object for which to get the class ID.

The class ID of the specified object.

static void classIdGetExample(Args _args)
{
    int i;
    WorkTimeCheck w;
    ;
    i = classIdGet(w);
    print "Class ID for object is " + int2Str(i);
    pause;
}

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).

Community Additions

ADD
Show: