DBA Data[Home] [Help]

APPS.OE_DUAL_UOM_HOOK dependencies on OE_ORDER_PUB

Line 10: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return FB (if required based upon custom logic)

6: -- Function get_fulfillment_base
7: --
8: -- PVT API to return value of fulfillment_base filed on a line.
9: -- IN parameters -
10: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return FB (if required based upon custom logic)
11: ---------------------------------------------------------------------
12: Function get_fulfillment_base
13: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
14: ) RETURN VARCHAR2

Line 13: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

9: -- IN parameters -
10: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return FB (if required based upon custom logic)
11: ---------------------------------------------------------------------
12: Function get_fulfillment_base
13: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
14: ) RETURN VARCHAR2
15: IS
16:
17: l_fulfillment_base oe_order_lines_all.fulfillment_base%type;

Line 66: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return Pricing UOM (if required based upon custom logic)

62: -- Function get_pricing_uom
63: --
64: -- This hook is only meant for Dual UOM controlled item for which Fulfillment Base is populated.
65: -- IN parameters -
66: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return Pricing UOM (if required based upon custom logic)
67: --------------------------------------------------------------------------------------------------------------------------------------
68: Function get_pricing_uom
69: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
70: ) RETURN VARCHAR2

Line 69: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

65: -- IN parameters -
66: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record and return Pricing UOM (if required based upon custom logic)
67: --------------------------------------------------------------------------------------------------------------------------------------
68: Function get_pricing_uom
69: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
70: ) RETURN VARCHAR2
71: IS
72:
73: l_pricing_uom oe_order_lines_all.pricing_quantity_uom%type;