I was trying to format the output variable as follows:
Scenario 1:
LET msg = "Roopesh Majeti here "
Empno Using "&&&&&"
Call Logmsg(msg)
In this scenario, the empno get formatted to 5 digits [ I should say spaces ] and gets displayed.
Scenario 2:
Let c_check = "&&"
Let msg ="Roopesh Majeti here"
Empno using c_check
Call Logmsg(msg)
Here, my expectation is that, whatever is the value of c_check [ say 10 &'s ] then the empno should be formatted to 10 positions/spaces.
But it's not working as expected.
Am I missing anything here?