DBA Data[Home] [Help]

APPS.ASO_ORDER_FEEDBACK_UPDATE_PVT dependencies on ASO_LINE_ADJ_ASSOC_VAR_TYPE

Line 196: l_line_adj_assoc_var_type SYSTEM.ASO_Line_Adj_Assoc_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;
200: l_lot_serial_var_type SYSTEM.ASO_Lot_Serial_Var_Type;

Line 197: l_old_line_adj_assoc_var SYSTEM.ASO_Line_Adj_Assoc_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;
200: l_lot_serial_var_type SYSTEM.ASO_Lot_Serial_Var_Type;
201: l_old_lot_serial_var SYSTEM.ASO_Lot_Serial_Var_Type;

Line 1371: x_line_adj_assoc_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Line_Adj_Assoc_Var_Type

1367:
1368: PROCEDURE ASO_Line_Adj_Assoc_Tbl_To_Var
1369: (
1370: p_line_adj_assoc_tbl_type IN OE_Order_PUB.Line_Adj_Assoc_Tbl_Type,
1371: x_line_adj_assoc_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Line_Adj_Assoc_Var_Type
1372: )
1373: IS
1374: l_line_adj_assoc_type SYSTEM.ASO_Line_Adj_Assoc_Type;
1375: i NUMBER;

Line 1404: x_line_adj_assoc_var_type := SYSTEM.ASO_Line_Adj_Assoc_Var_Type(l_line_adj_assoc_type);

1400: , p_line_adj_assoc_tbl_type(i).db_flag
1401: , p_line_adj_assoc_tbl_type(i).operation
1402: );
1403: IF i = p_line_adj_assoc_tbl_type.FIRST then
1404: x_line_adj_assoc_var_type := SYSTEM.ASO_Line_Adj_Assoc_Var_Type(l_line_adj_assoc_type);
1405: ELSE
1406: x_line_adj_assoc_var_type.EXTEND;
1407: x_line_adj_assoc_var_type(j) := l_line_adj_assoc_type;
1408: END IF;