any2Str Function

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

Converts an anytype value to a str value.

str any2Str(anytype object)

Parameters

Parameter

Description

object

The value to convert.

Return Value

A str value.

Remarks

The object parameter can be of most data types, but useful output is obtained from input elements of the date, int, and enum types.

Example

static void any2StrExample(Args _args)
{
    str myStr;
    anytype a;
    ;
    
    a = "Any to string";
    myStr = any2Str(a);
    Global::info(strFmt("%1 is output, from input of Any to string as a str value", myStr));

    a = NoYes::Yes;
    myStr = any2Str(a);
    Global::info(strFmt("%1 is output, from input of NoYes::Yes as an enumeration", myStr));


}
/****Infolog Display
Message (09:08:46 am)
Any to string is output, from input of Any to string as a str value
1 is output, from input of NoYes::Yes as an enumeration
****/

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