Hello,
Here is an example below
Concerning the declaration for the Name variable, I have 2 questions:
1) The 'S' after the declaration of the variable corresponds to ?
2) The 'A' corresponds to 'alphabetical' and if it's alphanumeric?
Concerning the declaration for the Number variable,
1) the values '5' corresponds to ?
2) the 'S' after the value 5 corresponds to ?
Thank you
Here is an example below
Code:
H
D Name S 20A
D Number S 5S 0
*
/Free
Name = 'Juliette';
dsply Name;
Number = 2;
dsply ('Number ' + %Char(Number ) );
*inlr = *on;
/End-Free
Concerning the declaration for the Name variable, I have 2 questions:
1) The 'S' after the declaration of the variable corresponds to ?
2) The 'A' corresponds to 'alphabetical' and if it's alphanumeric?
Concerning the declaration for the Number variable,
1) the values '5' corresponds to ?
2) the 'S' after the value 5 corresponds to ?
Thank you





Comment