‎2008 May 07 10:13 AM
Hi,
I want to restrict the user to execute the program in background.
How to do that?
‎2008 May 07 10:24 AM
Check if sy-batch = 'X' then exit from program.
report ztext.
if sy-batch NE 'X'.
.......
(report body)
......
....
endif.
‎2008 May 07 10:42 AM
‎2008 May 07 10:39 AM