‎2008 Aug 15 11:01 AM
Hi experts,
I have a variable in my program that I want to write into the spool to see what was the value of it. How can I do that?
‎2008 Aug 15 11:02 AM
Just use WRITE statement in your program.
You need to run the program in background mode and automaticaaly as and when it sees WRITE, it write the data in a spool list.
‎2008 Aug 15 11:02 AM
Just use WRITE statement in your program.
You need to run the program in background mode and automaticaaly as and when it sees WRITE, it write the data in a spool list.
‎2008 Aug 15 9:54 PM
You can do this...
NEW-PAGE PRINT ON NO DIALOG
KEEP IN SPOOL 'X'.
WRITE: G_VARIABLE.
NEW-PAGE PRINT OFF.
Greetings,
Blag.