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;
static void Datatypes_anytype(Args _args)
{
anytype any;
any = "ABC";
print any;
any = 55;
print any;
any = systemdateget();
any = systemdateget();
print any;
pause;
}
pause;
}

Like
Report
*This post is locked for comments