DBA Data[Home] [Help]

APPS.WMS_REPLENISHMENT_PVT dependencies on WMS_REPLENISHMENT_PVT

Line 1: PACKAGE BODY wms_replenishment_pvt AS

1: PACKAGE BODY wms_replenishment_pvt AS
2: /* $Header: WMSREPVB.pls 120.31.12020000.5 2013/03/18 05:52:51 pramadur ship $ */
3:
4:
5: -- PACKAGE variables

Line 22: p_module => 'WMS_REPLENISHMENT_PVT',

18: PROCEDURE print_debug(p_err_msg VARCHAR2)
19: IS
20: BEGIN
21: inv_mobile_helper_functions.tracelog(p_err_msg => p_err_msg,
22: p_module => 'WMS_REPLENISHMENT_PVT',
23: p_level => 4);
24: END print_debug;
25:
26:

Line 1961: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),

1957: null,
1958: decode(p_Scheduled_Ship_Date_From,
1959: null,
1960: null,
1961: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
1962: wdd.source_header_id,
1963: wdd.source_line_id,
1964: wdd.delivery_detail_id),
1965: WDD.date_scheduled)),

Line 1967: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),

1963: wdd.source_line_id,
1964: wdd.delivery_detail_id),
1965: WDD.date_scheduled)),
1966:
1967: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
1968: wdd.source_header_id,
1969: wdd.source_line_id,
1970: wdd.delivery_detail_id),
1971: WDD.date_scheduled)) as expected_ship_date,

Line 4589: ROUND((WMS_REPLENISHMENT_PVT.get_conversion_rate(p_item_id, x.primary_uom, mtrl.uom_code)* Nvl(X.quantity,0)),5)) AS quantity,

4585: -- qty inside function Round(**) below might NOT be allocated yet based on
4586: -- how the stock up was RUN but we have earmarked that much mo qty through WRD for certain demands
4587: -- so we need to subtract that much qty from existing_mo_qty for availble_mo_qty
4588: (mtrl.QUANTITY- NVL(mtrl.QUANTITY_DELIVERED,0) -
4589: ROUND((WMS_REPLENISHMENT_PVT.get_conversion_rate(p_item_id, x.primary_uom, mtrl.uom_code)* Nvl(X.quantity,0)),5)) AS quantity,
4590:
4591: mtrl.uom_code,
4592: Nvl(mtrl.quantity_detailed,0) AS quantity_detailed
4593: FROM

Line 6417: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),

6413: wdd.delivery_detail_id,
6414: decode(wdd.source_document_type_id, 10, 8, 2) as demand_type_id, -- for SO=2 and Internal Order=8
6415: wdd.requested_quantity, -- this is always stored in primary UOM
6416: wdd.requested_quantity_uom,
6417: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
6418: wdd.source_header_id,
6419: wdd.source_line_id,
6420: wdd.delivery_detail_id),
6421: WDD.date_scheduled) as expected_ship_date,

Line 7763: END wms_replenishment_pvt;

7759: END IF;
7760: END update_delivery_detail;
7761:
7762:
7763: END wms_replenishment_pvt;