‎2007 Dec 13 9:18 AM
Hi Guys,
I would like to ask if anyone could help me with my problem with CALL Transaction if I am correct that it's causing this problem. My problem is if I call a transaction and after I process my data in that transaction when I click save it doesnt return to the transactions main screen ( The screen displayed after the CALL transaction in my code ) it returns to my program... How can I fix this? your help will be much appreciated. Thanks!
Regards,
Michael Nacionales
‎2007 Dec 13 9:24 AM
‎2007 Dec 13 9:27 AM
‎2007 Dec 13 9:31 AM
after the call transaction of your BDC.. write Exit or leave program statement to avoid control getting back to the calling program screen...
‎2007 Dec 13 9:33 AM
‎2007 Dec 13 9:35 AM
call transaction will return the control to the calling program once the BDC processing is done...
so when control comes back from the BDC session.. just give EXIT command or Leave Program command so the control will exit from the report as well... and this will avoid displaying the calling program screen after the BDC processing.
‎2007 Dec 13 9:25 AM
Hi,
there is no fix because this is not an error. Processing "Save" (or "Back", "Exit" etc.) at the end of a CALL TRANSACTION will always return to the caller, which can then prepare and call the next transaction, if so desired.
Not sure what you are trying to do, so I cannot recommend a workaround.
Cheers
Thomas
‎2007 Dec 13 9:32 AM
I see, I think this would be my last option if theres no other way... I would just call it again after call transaction.. the problem would just be after that second call transaction if it saves the process again it wont call the transaction again.