DBA Data[Home] [Help]

APPS.OE_DUAL_UOM_UTIL dependencies on OE_ORDER_PUB

Line 27: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record

23: -- Function get_fulfillment_eligible
24: --
25: -- API to determine whether fulfillment_base should be calculated or not for current line_id
26: -- IN parameters -
27: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record
28: -- containing line_id as input and return Boolean value Indicating, whether FB
29: -- on line should be calculated as per new functionality or not.
30: -- Boolean TRUE implies : Yes, calculate FB
31: -- Boolean FALSE implies : No, not eligible to calculate FB

Line 40: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type ,

36: -- we use thi swuery to fetch other required parameters like primary uom of item (to be used later in derive_fulfillment_base API).
37: ---------------------------------------------------------------------
38:
39: Function get_fulfillment_eligible
40: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type ,
41: p_inventory_item_rec OUT NOCOPY Inventory_Item_Rec_Type
42: ) RETURN BOOLEAN;
43: ------------------------------------------------------------------------------------------------------
44:

Line 68: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record contains line_id , org_id ,ship_from_org_id ,

64: --(only when new profile OM: Default Fulfillment Base is set to YES)
65: --This API will also be called from OE_Bulk_Process_Line.Populate_Internal_Fields to populate fulfillment_base
66: --column from HVOP flow (for dual uom items only when new profile OM: Default Fulfillment Base is set to YES).
67: -- IN parameters -
68: -- p_line_rec : The function will take OE_Order_PUB.Line_Rec_Type record contains line_id , org_id ,ship_from_org_id ,
69: -- inventory_item_id etc as input and return CHAR value (Null, 'P' or 'S') .
70: -- 'P' implies : Primary
71: -- 'S' implies : Secondary
72: -- Null implies: line not eligible for FB field.

Line 78: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

74: ------------------------------------------------------------------------------------------------------
75: ---It is PVT API as per FDD 3.1.3.3
76:
77: Function derive_fulfillment_base
78: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
79: ) RETURN varchar2;
80:
81: ------------------------------------------------------------------------------------------------------
82: ---------------------------------------------------------------------

Line 90: -- p_line_rec : The proeudre will for validation of fulfillment_base field from OE_Order_PUB.Line_Rec_Type

86: --This api will be called from oe_line_util.apply_attribute_changes procedure when
87: -- FB on a line is changing form null/P to S or vice versa. The API will validate
88: -- if the change should be allowed on FB field...if not it will raise error
89: -- IN parameters -
90: -- p_line_rec : The proeudre will for validation of fulfillment_base field from OE_Order_PUB.Line_Rec_Type
91: ---------------------------------------------------------------------
92: PROCEDURE validate_fulfillment_base
93: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
94: );

Line 93: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

89: -- IN parameters -
90: -- p_line_rec : The proeudre will for validation of fulfillment_base field from OE_Order_PUB.Line_Rec_Type
91: ---------------------------------------------------------------------
92: PROCEDURE validate_fulfillment_base
93: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
94: );
95:
96: END OE_DUAL_UOM_UTIL;