Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

bdcdata mode 'E'

Former Member
0 Likes
463

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.

2 REPLIES 2
Read only

Former Member
0 Likes
366

hi kunal,

try by giving...

call transaction ..........

and skip first screen.

regards,

priya.

Read only

Former Member
0 Likes
366

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