web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :

Anytype Data Type in AX 2012

Pooja Karki Profile Picture Pooja Karki 3,045
Today I will demonstrate you that how to use AnyType Data Type in AX 2012.

static void Datatypes_anytype(Args _args)
{
anytype any;
any = "ABC";
print any;
any = 55;
print any;
any = systemdateget();
print any;
pause;
}



This was originally posted here.

Comments

*This post is locked for comments