Dear friends,
I need to modify the field availabilty check in delivery transaction. I have written the code in MV50AFZ1.
I'm using update statement to change the field value and it's working fine if I put break-point while creating the delivery.
If I execute without putting any break-point it's not working.
I have used update statement as mentioned below.
*LIPS-MTVFP = 'Z4'.
update *LIPS.
if sy-subrc eq 0.
commit work.
endif.
LIPS-MTVFP = 'Z4'.
update LIPS.
if sy-subrc eq 0.
commit work.
endif.
Kindly advice on this issue.
Thanking you.
Bharat.