‎2006 Dec 04 2:31 PM
hi,
In calltransaction method by clicking vendorno.it will display directly the tcode screen of XK01 HOW?
Thanks in advance
‎2006 Dec 04 2:37 PM
‎2006 Dec 04 2:37 PM
‎2006 Dec 04 2:51 PM
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
‎2006 Dec 04 3:01 PM
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.