Anytype Data Type in AX 2012

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;
}


Comments