int642Str Function

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) 

Parameters

Parameter

Description

integer

The int64 to convert to a string.

Return Value

The equivalent text string of the integer parameter.

Example

    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).