‎2007 Mar 22 9:19 AM
hi all,i developed the first selection screen for transaction.
i want to skip the first selection screen in that transaction which was present earlier with the new one that i developed.
i am suggested to use call transaction using bdcdata mode "E" so as to skip the earlier selection screen.
any pointers how this mode works.
‎2007 Mar 22 9:33 AM
hi kunal,
try by giving...
call transaction ..........
and skip first screen.
regards,
priya.
‎2007 Mar 22 9:48 AM
Hi Kunal,
Find the parameter ids for each mandatory field in the first screen of the transaction.
Use the set parameter id statement to set values to those parameters
set parameter id 'AN1' field <value>.
set parameter id 'AN2' field <value>.
call transaction <tcode> and skip first screen.
method 2.
Do a recording for your transaction upto the sceond screen only.
Create a BDC program out of the recording.
Call the transaction in error mode
perfrom bdc_program using <progname> <screen numb>.
peerform bdc_field using 'fieldname' ' value'.
peerform bdc_field using 'fieldname' ' value'.
peerform bdc_field using 'fieldname' ' value'.
call transaction <TCODE> usng bdcdata MOde = 'E'.
Regards,
Ravi