SQR needs to know when to print on previous line
In my SQR I have the following:
print $emplid (+1,1,7)
print $name (0,8,50) wrap 21 3
PRINT $LOCATION (0,30,8)
PRINT $FIELDNAME (0,64) wrap 19 2
PRINT $OLDVALUE (0,84) wrap 18 2
PRINT $NEWVALUE (0,103) wrap 18 2
PRINT $BLINE (0,124) wrap 37 2
print $printlastupddttm (0,161,11)
The problem is as each field wraps around, it drops to the next line so by the time it gets to the last field, it is writing out on the 6th line.
For each field, I want it to start back at the line where emplid was written, even if the field before it wrapped three times and it is now pointing to the fourth line.