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: 

Extension1 table in BAPI_OUTB_DELIVERY_CHANGE

Former Member
0 Kudos

Hello all,

As far as i understood, i have to fill this extension1 table to change the likp fields with this bapi.

Is anyone has a sample code or an example for filling this table? There is only area for fields. Where are we going to put the values? And is there any flag to make this update? An axample of this bapi can be very useful too.

Thanks in advance.

1 ACCEPTED SOLUTION

eduardo_hinojosa
Active Contributor
0 Kudos

Hi,

See SAP Note 509898 - BAPI enhancement concept and Unicode. If the customer field in table LIKP is non-character, it will not work.

I hope this helps you

Regards

Eduardo

3 REPLIES 3

eduardo_hinojosa
Active Contributor
0 Kudos

Hi,

See SAP Note 509898 - BAPI enhancement concept and Unicode. If the customer field in table LIKP is non-character, it will not work.

I hope this helps you

Regards

Eduardo

Former Member

Hi,

I too faced this problem earlier, try to follow the below procedure:

have a look at below thread :

Thanks,

Shailaja Ainala.

I solved the problem by using the enhancement below, addition to this bapi.

IF_EX_SMOD_V50B0001~EXIT_SAPLV50I_010

For further requirements im giving the code..

DATA ls_vbkok LIKE cs_vbkok.

  MOVE-CORRESPONDING cs_vbkok TO ls_vbkok.

  CLEAR cs_vbkok.

  GET PARAMETER ID 'ZWMRFPAR001' FIELD ls_vbkok-lifex.
  GET PARAMETER ID 'ZWMRFPAR002' FIELD ls_vbkok-wadat_ist.

  FREE MEMORY ID 'ZWMRFPAR001'.
  FREE MEMORY ID 'ZWMRFPAR002'.

  ls_vbkok-borgr_kzwad = 'X'.

  MOVE-CORRESPONDING ls_vbkok TO cs_vbkok.