2008 May 07 10:13 AM
Hi,
I want to restrict the user to execute the program in background.
How to do that?
Initialization.
if sy-batch = 'X'.
message E000 ....
endif.
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |