Application Development 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: 

call transaction (urgent)

Former Member
0 Kudos

Hi All ,

My requirement is to create asset. user wil enter required details on selection screen. that im populating into an internal table, which then i have to pass it to the bdc program using call transaction. i dont want the call transaction screen to come on the screen only my designed screen should come and then all the entered values should be given to the<b> transaction</b> <b>AS01</b>. and then asset no ahould be given as output.

Please help me with the same ..

Thanx

Amruta.

1 REPLY 1

Former Member
0 Kudos

hi,

no need to use BDC..

U can direct use call transaction 'AS01' and skip first screen.

For this, U have to set parameter id of the values u getting in selection screen..

suppose i am callinf Transaction VF03 so i have written like,

SET PARAMETER ID 'VF' FIELD itab-vbeln.

CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.

For VF03, i need to pass vbeln (Billing Doc) snd it is in itab-vbeln.

Parameter id for vbeln is VF, which u can find from <b>Technical Information</b> (Pressing F1)

Reward if useful