uint2Str Function [AX 2012]

Updated: November 24, 2009

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

Converts an integer to a string with the assumption that the integer is unsigned.


str uint2Str(int integer)

Parameter

Description

integer

The integer to convert.

The string equivalent to the specified unsigned integer.

Use this function instead of the int2str function for very large integers, such as record IDs.

  • info(int2str(3123456789)); //returns -1171510507 as a string.

  • info(uint2str(3123456789)); //returns 3123456789 as a string.


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

Community Additions

ADD
Show: