DBA Data[Home] [Help]

APPS.ASO_ORDER_FEEDBACK_UPDATE_PVT dependencies on ASO_LINE_ADJ_ATT_VAR_TYPE

Line 194: l_line_adj_att_var_type SYSTEM.ASO_Line_Adj_Att_Var_Type;

190: l_line_adj_var_type SYSTEM.ASO_Line_Adj_Var_Type;
191: l_old_line_adj_var SYSTEM.ASO_Line_Adj_Var_Type;
192: l_line_price_att_var_type SYSTEM.ASO_Line_Price_Att_Var_Type;
193: l_old_line_price_att_var SYSTEM.ASO_Line_Price_Att_Var_Type;
194: l_line_adj_att_var_type SYSTEM.ASO_Line_Adj_Att_Var_Type;
195: l_old_line_adj_att_var SYSTEM.ASO_Line_Adj_Att_Var_Type;
196: l_line_adj_assoc_var_type SYSTEM.ASO_Line_Adj_Assoc_Var_Type;
197: l_old_line_adj_assoc_var SYSTEM.ASO_Line_Adj_Assoc_Var_Type;
198: l_line_scredit_var_type SYSTEM.ASO_Line_Scredit_Var_Type;

Line 195: l_old_line_adj_att_var SYSTEM.ASO_Line_Adj_Att_Var_Type;

191: l_old_line_adj_var SYSTEM.ASO_Line_Adj_Var_Type;
192: l_line_price_att_var_type SYSTEM.ASO_Line_Price_Att_Var_Type;
193: l_old_line_price_att_var SYSTEM.ASO_Line_Price_Att_Var_Type;
194: l_line_adj_att_var_type SYSTEM.ASO_Line_Adj_Att_Var_Type;
195: l_old_line_adj_att_var SYSTEM.ASO_Line_Adj_Att_Var_Type;
196: l_line_adj_assoc_var_type SYSTEM.ASO_Line_Adj_Assoc_Var_Type;
197: l_old_line_adj_assoc_var SYSTEM.ASO_Line_Adj_Assoc_Var_Type;
198: l_line_scredit_var_type SYSTEM.ASO_Line_Scredit_Var_Type;
199: l_old_line_scredit_var SYSTEM.ASO_Line_Scredit_Var_Type;

Line 1418: x_line_adj_att_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Line_Adj_Att_Var_Type

1414:
1415: PROCEDURE ASO_Line_Adj_Att_Tbl_To_Var
1416: (
1417: p_line_adj_att_tbl_type IN OE_Order_PUB.Line_Adj_Att_Tbl_Type,
1418: x_line_adj_att_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Line_Adj_Att_Var_Type
1419: )
1420: IS
1421: l_line_adj_att_type SYSTEM.ASO_Line_Adj_Att_Type;
1422: i NUMBER;

Line 1456: x_line_adj_att_var_type := SYSTEM.ASO_Line_Adj_Att_Var_Type(l_line_adj_att_type);

1452: , p_line_adj_att_tbl_type(i).db_flag
1453: , p_line_adj_att_tbl_type(i).operation
1454: );
1455: IF i = p_line_adj_att_tbl_type.FIRST then
1456: x_line_adj_att_var_type := SYSTEM.ASO_Line_Adj_Att_Var_Type(l_line_adj_att_type);
1457: ELSE
1458: x_line_adj_att_var_type.EXTEND;
1459: x_line_adj_att_var_type(j) := l_line_adj_att_type;
1460: END IF;