extendedTypeStr Function [AX 2012]

Updated: November 18, 2009

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

Retrieves the name of an extended data type as a string.


str extendedTypeStr(int str)

Parameter

Description

str

The name of the extended data type.

The name of the extended data type.

Use this function instead of literal text to return a string that contains the extended data type name. If the data type does not exist, the extendedTypeStr function generates a syntax error at compile time.

static void EDTStr(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: