int642Str Function [AX 2012]

Updated: September 28, 2009

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

Converts the specified integer parameter to the equivalent text string.


str int642Str(int64 integer) 

Parameter

Description

integer

The int64 to convert to a string.

The equivalent text string of the integer parameter.

static void example()
{
    ;
    print "This is int2Str, value is " + int2Str(intMax());
    print "This is int642Str, value is " + int642Str(int64Max());
    pause;
}

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

Community Additions

ADD
Show: