‎2009 Sep 02 10:42 AM
Hi,
I have requirement as below
Write the report to call the transaction code say for example different tcode (1000 in number) need to be executed and after every tcode execution it should return back to calling report. I tried using "CALL TRANSACTION 'ABC' AND SKIP FIRST SCREEN" it does execute the tcode but need the user interaction to return back to report, where here i want do this programatically.
can someone please help me & what is possible ways this can be do able.
Thanks,
John.
‎2009 Sep 02 10:52 AM
Hi,
Use CALL TRANSACTION USING bdc_tab MESSAGES INTO itab.
Do F1 on call transaction and check.
Regards,
Ankur Parab
‎2009 Sep 02 11:31 AM
‎2009 Sep 02 12:35 PM
There are two method of BDC
1- Call transaction method
2- BDC Session method
In this case you can use call tansaction method.
Syntax- call tansaction abc using gt_bdcdata.
Do the recording with t-code SHDB for that particular transaction and after the necessary modification use it in your program.
Please check f1 help of call transaction for details.