‎2007 Mar 17 6:49 PM
hello folks,
i need to validate my program, my program should run only in background
in case if it runs in foreground it should give error message. how to validate my
program.
can any one just tell the procedure how to do it.
any help will be greatly appreciated,
thanks in advance.
regards,
cnu
‎2007 Mar 17 9:17 PM
Hello CNU,
following snippet should do.
Regards
Klaus
if ( 'X' ne sy-Batch ).
message e000 with 'Only in Batch'(BTC).
endif.
‎2007 Mar 17 9:17 PM
Hello CNU,
following snippet should do.
Regards
Klaus
if ( 'X' ne sy-Batch ).
message e000 with 'Only in Batch'(BTC).
endif.
‎2007 Mar 19 8:59 AM
Hi CNU
make your prg to start with a transaction(se93) and make that transaction to start only in background in sm37..
regards