Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to write into spool?

Former Member
0 Likes
711

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
667

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.

2 REPLIES 2
Read only

Former Member
0 Likes
668

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.

Read only

Former Member
0 Likes
667

You can do this...


NEW-PAGE PRINT ON NO DIALOG
KEEP IN SPOOL 'X'.

WRITE: G_VARIABLE.

NEW-PAGE PRINT OFF.

Greetings,

Blag.