I have to stamp to video a simple string, with label and field's values.
I have this code:
info (strFmt (" @SYS334481: %1 , @SYS4569: %2 " , myTable.AliasUser, myTable.Day) );
I have an output looklike this :
Alias user , Day
I haven't the field's values. I also tried to use this way , but I have a syntax error:
info (strFmt (" "@SYS334481": %1 , "@SYS4569": %2 " , myTable.AliasUser, myTable.Day ));
What is the correct way?