DBA Data[Home] [Help]

APPS.WMS_REPLENISHMENT_PVT dependencies on WSH_SHIP_CONFIRM_ACTIONS2

Line 399: -- be calling api WSH_SHIP_CONFIRM_ACTIONS2.backorder

395:
396: -- This gets called from INVTOTRL.pld->clear_replenishment_status() procedure.
397:
398: -- We need to explicitely backorder delivery detail
399: -- be calling api WSH_SHIP_CONFIRM_ACTIONS2.backorder
400:
401: -- While pick release process WSH does not backorder all those
402: -- delivery detail lines that can not be fulfilled at that time(once the INV
403: -- returns 'replenishment_status = 'R'). Rather WSH

Line 412: WSH_SHIP_CONFIRM_ACTIONS2.backorder

408: END IF;
409: l_backorder_deliv_tab(1) := p_deliv_detail_id;
410: l_backorder_qty_tab(1) := p_deliv_qty ;
411:
412: WSH_SHIP_CONFIRM_ACTIONS2.backorder
413: (
414: p_detail_ids => l_backorder_deliv_tab,
415: p_bo_qtys => l_backorder_qty_tab,
416: p_req_qtys => l_backorder_qty_tab,

Line 426: print_debug('WSH_SHIP_CONFIRM_ACTIONS2.backorder returned STATUS :'||l_return_status);

422: x_out_rows => l_out_rows,
423: x_return_status => l_return_status
424: );
425: IF (l_debug = 1) THEN
426: print_debug('WSH_SHIP_CONFIRM_ACTIONS2.backorder returned STATUS :'||l_return_status);
427: END IF;
428:
429: END IF;
430:

Line 697: WSH_SHIP_CONFIRM_ACTIONS2.backorder

693: END IF;
694: -- Bulk processing of records here
695: --these demand lines need fresh backordering
696:
697: WSH_SHIP_CONFIRM_ACTIONS2.backorder
698: (
699: p_detail_ids => G_backorder_deliv_tab,
700: p_bo_qtys => G_backorder_qty_tab,
701: p_req_qtys => G_backorder_qty_tab,

Line 1312: -- we call an api WSH_SHIP_CONFIRM_ACTIONS2.backorder()

1308:
1309: --4- Backorder the unmet demand line qty
1310: -- We do not need to do anything here as we have already added those
1311: -- delivery_details IN the global TABLE that need TO be backordered
1312: -- we call an api WSH_SHIP_CONFIRM_ACTIONS2.backorder()
1313: -- to backorder these delivery at the end of the
1314: -- replenishment process - be it push/stock-up OR pull/dynamic
1315:
1316: /* NOT needed

Line 1321: -- We need to call the WSH_SHIP_CONFIRM_ACTIONS2.backorder() API

1317:
1318: IF p_repl_type = g_push_repl THEN
1319: NULL;
1320: -- To honor the consolidation of the backordered demand lines
1321: -- We need to call the WSH_SHIP_CONFIRM_ACTIONS2.backorder() API
1322: -- at the end of Push replenishment process. Above in the code,
1323: -- We have already stored the delivery_details_ids to be
1324: -- backordered IN the global pacakge variable - g_backorder_deliv_tab
1325: