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

BDC

Former Member
0 Likes
405

hi,

In calltransaction method by clicking vendorno.it will display directly the tcode screen of XK01 HOW?

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
380

Execute BAPI_VENDOR_CREATE.

Rob

3 REPLIES 3
Read only

Former Member
0 Likes
381

Execute BAPI_VENDOR_CREATE.

Rob

Read only

Former Member
0 Likes
380

HI,

When you double click the Vendor No, it will go to the XK01,

for this Double click you will get the ok_code, so by using this okZ_code, you can call the transaction Xk01, so write the code like

Perform Using 'Ok_code' 'PICK' (For double click),

Perform fill BDC_DATA_FOR_XK01. (Fill all the data for XK01)

then Call transaction XK01 using BDC_data.

Regards

Sudheer

Read only

Former Member
0 Likes
380

When you double click on Vendor No, it should go toXK01,

for this the ok_code of double click is 'PICK'. Write code as

Perform Using 'Ok_code' 'PICK' .

Perform fill BDC_DATA_FOR_XK01. (Fill all data for XK01)

then Call transaction XK01 using BDC_data.