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.17.12010000.2 2008/08/19 09:55:46 anviswan ship $ */
3:
4:
5: -- PACKAGE variables

Line 25: p_module => 'WMS_REPLENISHMENT_PVT',

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

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

1896: null,
1897: decode(p_Scheduled_Ship_Date_From,
1898: null,
1899: null,
1900: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
1901: wdd.source_header_id,
1902: wdd.source_line_id,
1903: wdd.delivery_detail_id),
1904: WDD.date_scheduled)),

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

1902: wdd.source_line_id,
1903: wdd.delivery_detail_id),
1904: WDD.date_scheduled)),
1905:
1906: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
1907: wdd.source_header_id,
1908: wdd.source_line_id,
1909: wdd.delivery_detail_id),
1910: WDD.date_scheduled)) as expected_ship_date,

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

4443: -- qty inside function Round(**) below might NOT be allocated yet based on
4444: -- how the stock up was RUN but we have earmarked that much mo qty through WRD for certain demands
4445: -- so we need to subtract that much qty from existing_mo_qty for availble_mo_qty
4446: (mtrl.QUANTITY- NVL(mtrl.QUANTITY_DELIVERED,0) -
4447: ROUND((WMS_REPLENISHMENT_PVT.get_conversion_rate(p_item_id, x.primary_uom, mtrl.uom_code)* Nvl(X.quantity,0)),5)) AS quantity,
4448:
4449: mtrl.uom_code,
4450: Nvl(mtrl.quantity_detailed,0) AS quantity_detailed
4451: FROM

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

6242: wdd.delivery_detail_id,
6243: decode(wdd.source_document_type_id, 10, 8, 2) as demand_type_id, -- for SO=2 and Internal Order=8
6244: wdd.requested_quantity, -- this is always stored in primary UOM
6245: wdd.requested_quantity_uom,
6246: NVL(WMS_REPLENISHMENT_PVT.Get_Expected_Time(decode(wdd.source_document_type_id, 10, 8, 2),
6247: wdd.source_header_id,
6248: wdd.source_line_id,
6249: wdd.delivery_detail_id),
6250: WDD.date_scheduled) as expected_ship_date,

Line 7588: END wms_replenishment_pvt;

7584: END IF;
7585: END update_delivery_detail;
7586:
7587:
7588: END wms_replenishment_pvt;