cancel
Showing results for 
Search instead for 
Did you mean: 

Delivery doc status change

Former Member
0 Kudos

Hi

We have a requirment where in we have to change the status of the

delivery doc to be completed from open.

Thanks in advance

KM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

You can try updating the status of the delivery in table VBUK and VBUP.

Hope this helps

Rgds

CGRA

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

If the delivery status is wrongly determined ,if you want to change the statius according to the configuration

kindly run the report RVDELSTA or use the below program

REPORT

TABLES: VBFA.

data: cnt like sy-tabix.

SELECT SINGLE * from vbfa where VBTYP_N = 'U' and vbelv = ''.

if sy-subrc = 0.

UPDATE vbfa SET PLMIN = ' ' where vbelv = '' and vbtyp_n = 'U'.

endif.

Regards

Damu

Former Member
0 Kudos

Hi,

Then define user status.

kapil