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

Delivery Date change

Former Member
0 Likes
2,351

Hi,

I have a requirement to change the "Delivery date" in Header data in tcode VL03N.

Please tell me if there is any function module or BAPI or exits...

Thanks & Regards,

Chandu

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,188

check WS_DELIVERY_UPDATE

4 REPLIES 4
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,189

check WS_DELIVERY_UPDATE

Read only

Former Member
0 Likes
1,188

Hi friend,

Maybe try this:


DATA : ls_vbkok TYPE vbkok      ,
       lv_vbeln TYPE likp-vbeln .

START-OF-SELECTION .

  ls_vbkok-lfdat    = '20100626' .
  ls_vbkok-lfuhr    = '110000'   .
  ls_vbkok-kzlfd    = 'X' .
  lv_vbeln          = '0080003370' .

  CALL FUNCTION 'WS_DELIVERY_UPDATE_2'
    EXPORTING
      vbkok_wa = ls_vbkok
      delivery = lv_vbeln
      commit   = 'X'.

from original: http://sample-code-abap.blogspot.com/2010/06/updating-delivery-date-in-deliveryvl02n.html

hope it help,

regards,

Read only

Former Member
0 Likes
1,188

Hi,

You can also use BDC of transaction VL02N and update the delivery date.

Hope this helps.

Read only

Former Member
0 Likes
1,188

Hi,

Thanks to all for your posts.

I have implemented BDC, even Function module also working fine but i am getting some information popup(even in changing directly from VL02N). Thats why went to BDC.

Thanks & Regards,

Chandu