on ‎2017 May 06 4:37 PM
Hi Experts,
WT is created and confirmed for picking.
But suddenly delivery gets blocked for ODO with zero quantity.

When I clicked the checked button in prod screen I found the below error message.
Message No. /SCDL/BO_VALIDATION048
Please check and suggest me some clue to understand this issue.
Appreciate your support.
Regards
George
Request clarification before answering.
Hi all,
If you create WT using ABAP, then I advise you to use the FM /SCWM/WAVE_RELEASE_EXT
DATA lt_wave_no TYPE /scwm/tt_wave_no.
APPEND INITIAL LINE TO lt_wave_no ASSIGNING FIELD-SYMBOL(<lt_wave_no>).
<lt_wave_no>-lgnum = who-lgnum.
<lt_wave_no>-wave = <lt_ordim_o_src>-wave.
CALL FUNCTION '/SCWM/WAVE_RELEASE_EXT'
EXPORTING
iv_lgnum = who-lgnum
iv_rdoccat = 'PDO'
it_wave_no = lt_wave_no
IMPORTING
et_bapiret = lt_bapiret_l
ev_severity = lv_severity_l.
IF lv_severity_l <> 'E'.
COMMIT WORK AND WAIT.
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
while creating WT, don't pass any fields related to STOCK and make sure you pass RDOCID, RDOCCAT, RITMID, DLVQTY and REQQTY to avoid this error
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi George,
Were you able to resolve this issue? It will be helpful if you could provide some information or please contact me if possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Vamsi for the reply.
when did we have to apply this note ? I mean as this error seems standard then why we need to implement this note .
Issue with my odo is all WT's are confirmed with correct quantities but after confirmation ODO has blocked.
In validation tab i found below error message


Here I am curious to know what has make system to block delivery .
What all are validations which can blocked the delivery after confirmation of WT's in standard sap.
I will appreciate if you help me to understand why delivery has blocked.
regards
George
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
Did you tried this sap note 1270163
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 17 | |
| 16 | |
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.