DBA Data[Home] [Help]

APPS.ASO_ORDER_FEEDBACK_UPDATE_PVT dependencies on ASO_HEADER_PRICE_ATT_VAR_TYPE

Line 180: l_header_price_att_var_type SYSTEM.ASO_Header_Price_Att_Var_Type;

176: l_header_type SYSTEM.ASO_Header_Type;
177: l_old_header_type SYSTEM.ASO_Header_Type;
178: l_header_adj_var_type SYSTEM.ASO_Header_Adj_Var_Type;
179: l_old_header_adj_var SYSTEM.ASO_Header_Adj_Var_Type;
180: l_header_price_att_var_type SYSTEM.ASO_Header_Price_Att_Var_Type;
181: l_old_header_price_att_var SYSTEM.ASO_Header_Price_Att_Var_Type;
182: l_header_adj_att_var_type SYSTEM.ASO_Header_Adj_Att_Var_Type;
183: l_old_header_adj_att_var SYSTEM.ASO_Header_Adj_Att_Var_Type;
184: l_header_adj_assoc_var_type SYSTEM.ASO_Header_Adj_Assoc_Var_Type;

Line 181: l_old_header_price_att_var SYSTEM.ASO_Header_Price_Att_Var_Type;

177: l_old_header_type SYSTEM.ASO_Header_Type;
178: l_header_adj_var_type SYSTEM.ASO_Header_Adj_Var_Type;
179: l_old_header_adj_var SYSTEM.ASO_Header_Adj_Var_Type;
180: l_header_price_att_var_type SYSTEM.ASO_Header_Price_Att_Var_Type;
181: l_old_header_price_att_var SYSTEM.ASO_Header_Price_Att_Var_Type;
182: l_header_adj_att_var_type SYSTEM.ASO_Header_Adj_Att_Var_Type;
183: l_old_header_adj_att_var SYSTEM.ASO_Header_Adj_Att_Var_Type;
184: l_header_adj_assoc_var_type SYSTEM.ASO_Header_Adj_Assoc_Var_Type;
185: l_old_header_adj_assoc_var SYSTEM.ASO_Header_Adj_Assoc_Var_Type;

Line 708: x_header_price_att_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Header_Price_Att_Var_Type

704:
705: PROCEDURE ASO_Header_Price_Tbl_To_Var
706: (
707: p_header_price_att_tbl_type IN OE_Order_PUB.Header_Price_Att_Tbl_Type,
708: x_header_price_att_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Header_Price_Att_Var_Type
709: )
710: IS
711: l_header_price_att_type SYSTEM.ASO_Header_Price_Att_Type;
712: i NUMBER;

Line 857: x_header_price_att_var_type := SYSTEM.ASO_Header_Price_Att_Var_Type(l_header_price_att_type);

853: , p_header_price_att_tbl_type(i).db_flag
854: , p_header_price_att_tbl_type(i).operation
855: );
856: IF i = p_header_price_att_tbl_type.FIRST then
857: x_header_price_att_var_type := SYSTEM.ASO_Header_Price_Att_Var_Type(l_header_price_att_type);
858: ELSE
859: x_header_price_att_var_type.EXTEND;
860: x_header_price_att_var_type(j) := l_header_price_att_type;
861: END IF;