‎2010 Aug 15 7:13 AM
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
‎2010 Aug 15 5:33 PM
‎2010 Aug 15 5:33 PM
‎2010 Aug 16 3:50 AM
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,
‎2010 Aug 16 8:04 AM
Hi,
You can also use BDC of transaction VL02N and update the delivery date.
Hope this helps.
‎2010 Aug 16 1:44 PM
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