any2Str Function [AX 2012]

Updated: August 25, 2010

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)

Parameter

Description

object

The value to convert.

A str value.

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

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

Community Additions

ADD
Show: