2006 Oct 27 3:26 AM
Dear friends,
Good Morning....
Clear the following doubts...
1. Can we do Background job in LSMW?
2. BDC is ONLINE PROGRAM or OFFLINE PROGRAM?
3. Can we perform multiple transactions with CALL TRANSACTION?
Appriciate your valuable answers...
Regards,
SK
2006 Oct 27 3:40 AM
Hi
1) Yes, we can schedule LSMW as background job.
2) BDC is consider an offline program as you create a batch and run it in SM35.
3) Why you need to call multiple transaction with CALL TRANSACTION? Just write separate program to call the multiple transaction and dont write multiple call transaction in one program, that will make you program more complicated.
Dear friends,
Good Morning....
Clear the following doubts...
1. Can we do Background job in LSMW?
2. BDC is ONLINE PROGRAM or OFFLINE PROGRAM?
3. Can we perform multiple transactions with CALL TRANSACTION?
Appriciate your valuable answers...
Regards,
SK
2006 Oct 27 3:40 AM
Hi
1) Yes, we can schedule LSMW as background job.
2) BDC is consider an offline program as you create a batch and run it in SM35.
3) Why you need to call multiple transaction with CALL TRANSACTION? Just write separate program to call the multiple transaction and dont write multiple call transaction in one program, that will make you program more complicated.
2006 Oct 27 5:04 AM
Dear Justin,
Having confussion with 3rd Ans. Could you give me good explanation.
Thanks,
S.K.
2006 Oct 27 6:04 AM
hi
good
you can't do the multiple transaction with CALL TRANSACTION statement, that is only possible using LSMW.
thanks
mrutyun^
2006 Oct 27 6:50 AM
Hi,
CALL TRANSACTION will intrupt the current program and leave to a different program and start onemore internal session. Once that session is over that is that program is over then it returns to the calling program. So you can CALL as many transaction as you want in your calling program. Unless you do a LEAVE TO transaction your calling program is still alive and you always return to it.
Regards,
Sesh
2006 Oct 27 6:27 AM
Hi,
We can call only one transaction using call transaction statement.