2008 Feb 11 8:33 AM
Hi,
If there are 50 records and 25th row data is having error.
What will happen when we run it in Call Transaction and Session Method in both Foreground and Background methods ? Can anybody explain me in details ?
2008 Feb 11 8:40 AM
Session method : the posting for the specific record will end in error, all other records will be processed.
In foreground mode: you can correct the error manually.
Once a session is processed, you can restart it in foreground to process the error ones...
Call transaction:
it depends on your program logic.
Normally, your program will continue with the next record, unless you insert an error message in your program.
e.g. call transaction....
if sy-subrc ne 0.
message e...
endif.
2008 Feb 11 10:24 AM
Hi,
Session method :
This method will have log to handle errors in backgroung where as in foreground mode you can correct the error manually there only on the screen.
call Transaction Method:
This method dont handle errors implicitly u need to handle the errors by declaring an error message.
regards,
kavitha.
2008 Feb 11 3:28 PM