DBA Data[Home] [Help]

APPS.WMS_REPLENISHMENT_PVT dependencies on WSH_SHIP_CONFIRM_ACTIONS2

Line 397: -- be calling api WSH_SHIP_CONFIRM_ACTIONS2.backorder

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

Line 413: WSH_SHIP_CONFIRM_ACTIONS2.backorder

409: /* no of records in l_backorder_deliv_tab should be equal to
410: no of records in p_overpick_qtys 14014540*/
411: l_dummy_table(1) := NULL; -- 14014540
412:
413: WSH_SHIP_CONFIRM_ACTIONS2.backorder
414: (
415: p_detail_ids => l_backorder_deliv_tab,
416: p_bo_qtys => l_backorder_qty_tab,
417: p_req_qtys => l_backorder_qty_tab,

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

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

Line 702: WSH_SHIP_CONFIRM_ACTIONS2.backorder

698: END IF;
699: -- Bulk processing of records here
700: --these demand lines need fresh backordering
701:
702: WSH_SHIP_CONFIRM_ACTIONS2.backorder
703: (
704: p_detail_ids => G_backorder_deliv_tab,
705: p_bo_qtys => G_backorder_qty_tab,
706: p_req_qtys => G_backorder_qty_tab,

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

1363:
1364: --4- Backorder the unmet demand line qty
1365: -- We do not need to do anything here as we have already added those
1366: -- delivery_details IN the global TABLE that need TO be backordered
1367: -- we call an api WSH_SHIP_CONFIRM_ACTIONS2.backorder()
1368: -- to backorder these delivery at the end of the
1369: -- replenishment process - be it push/stock-up OR pull/dynamic
1370:
1371: /* NOT needed

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

1372:
1373: IF p_repl_type = g_push_repl THEN
1374: NULL;
1375: -- To honor the consolidation of the backordered demand lines
1376: -- We need to call the WSH_SHIP_CONFIRM_ACTIONS2.backorder() API
1377: -- at the end of Push replenishment process. Above in the code,
1378: -- We have already stored the delivery_details_ids to be
1379: -- backordered IN the global pacakge variable - g_backorder_deliv_tab
1380: