DBA Data[Home] [Help]

PACKAGE: APPS.OE_DUAL_UOM_HOOK

Source


1 PACKAGE OE_DUAL_UOM_HOOK AUTHID CURRENT_USER AS
2 /* $Header: OEXDUHOS.pls 120.0.12020000.3 2013/02/27 18:34:53 cpati noship $ */
3 
4 ---------------------------------------------------------------------
5 -- Function get_fulfillment_base
6 --
7 -- PVT API to return value of fulfillment_base filed on a line.
8 -- IN parameters -
9 -- p_line_rec   : The function will take OE_Order_PUB.Line_Rec_Type record and return FB (if required based upon custom logic)
10 ---------------------------------------------------------------------
11 Function get_fulfillment_base
12                (    p_line_rec IN OE_Order_PUB.Line_Rec_Type
13                 ) RETURN VARCHAR2;
14 ---------------------------------------------------------------------
15 
16 -- 16206165 CW Start
17 --------------------------------------------------------------------------------------------------------------------------------------
18 -- Function get_pricing_uom
19 --
20 -- This hook is only meant for Dual UOM controlled item for which Fulfillment Base is populated.
21 -- IN parameters -
22 -- p_line_rec   : The function will take OE_Order_PUB.Line_Rec_Type record and return Pricing UOM (if required based upon custom logic)
23 --------------------------------------------------------------------------------------------------------------------------------------
24 Function get_pricing_uom
25                (  p_line_rec IN OE_Order_PUB.Line_Rec_Type
26                 ) RETURN VARCHAR2;
27 -- 16206165 CW End
28 
29 
30 END OE_DUAL_UOM_HOOK;