extendedTypeNum Function [AX 2012]

Updated: January 18, 2010

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

Retrieves the ID of the specified extended data type.


int extendedTypeNum(int str)

Parameter

Description

str

The extended data type for which to return the ID.

The ID of the specified extended data type.

static void EDTNum(Args _args)
{
    int i;
    str s;
    ;
 
    i = extendedTypeNum(AccountName);
    s = extendedTypeStr(AccountName);
    print  int2Str(i);
    print  s;
    pause;
}

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

Community Additions

ADD
Show: