strfmt function in X++
strfmt function also converts any other data types into string :
void dispFun( )
{
int age=5;
str name ="abdel fatah";
;
info(strfmt("My Name Is : %1 , My Age Is : %2",name,age));
}
void dispFun( )
{
int age=5;
str name ="abdel fatah";
;
info(strfmt("My Name Is : %1 , My Age Is : %2",name,age));
}
*This post is locked for comments