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

Community site session details

Session Id :

strfmt function in X++

Abdel Fatah Ahmed Profile Picture Abdel Fatah Ahmed
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));
}

Comments

*This post is locked for comments