After you have changed the batch management requirement in the material master record, the batch management requirement indicator is not changed in deliveries already created. For these deliveries, you cannot post a goods issue.
No transport order is confirmable.
The message VL210 occurs.
Handling error.
SolutionYou can create the following correction program:
PROGRAM ZZLIPS.
TABLES: LIPS.
SELECT-OPTIONS MATNR FOR LIPS-MATNR.
SELECT-OPTIONS VBELN FOR LIPS-VBELN.
PARAMETERS: XCHPF,
XCHAR.
SELECT * FROM LIPS WHERE VBELN IN VBELN AND MATNR IN MATNR.
LIPS-XCHPF = XCHPF.
LIPS-XCHAR = XCHAR.
UPDATE LIPS.
WRITE:/ LIPS-VBELN, LIPS-POSNR, LIPS-MATNR, LIPS-XCHPF, LIPS-XCHAR.
ENDSELECT.
When you start the program, you have to enter a material. The delivery number entry is optional. The batch management requirement fields XCHPF and XCHAR in the delivery items with the specified materials are overwritten with the fields specified at the start.
No comments:
Post a Comment