DBA Data[Home] [Help]

APPS.ASO_ORDER_FEEDBACK_UPDATE_PVT dependencies on ASO_LOT_SERIAL_VAR_TYPE

Line 200: l_lot_serial_var_type SYSTEM.ASO_Lot_Serial_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;
202: l_request_var_type SYSTEM.ASO_Request_Var_Type;
203: l_aso_order_feedback_type SYSTEM.ASO_ORDER_FEEDBACK_TYPE;
204: BEGIN

Line 201: l_old_lot_serial_var SYSTEM.ASO_Lot_Serial_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;
202: l_request_var_type SYSTEM.ASO_Request_Var_Type;
203: l_aso_order_feedback_type SYSTEM.ASO_ORDER_FEEDBACK_TYPE;
204: BEGIN
205:

Line 1701: x_lot_serial_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Lot_Serial_Var_Type)

1697:
1698: PROCEDURE ASO_Lot_Serial_Tbl_To_Var
1699: (
1700: p_lot_serial_tbl_type IN OE_Order_PUB.Lot_Serial_Tbl_Type,
1701: x_lot_serial_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Lot_Serial_Var_Type)
1702: IS
1703: l_lot_serial_type SYSTEM.ASO_Lot_Serial_Type;
1704: i NUMBER;
1705: j NUMBER := 1;

Line 1752: x_lot_serial_var_type := SYSTEM.ASO_Lot_Serial_Var_Type(l_lot_serial_type);

1748: , p_lot_serial_tbl_type(i).status_flag
1749: , p_lot_serial_tbl_type(i).line_set_id
1750: );
1751: IF i = p_lot_serial_tbl_type.FIRST then
1752: x_lot_serial_var_type := SYSTEM.ASO_Lot_Serial_Var_Type(l_lot_serial_type);
1753: ELSE
1754: x_lot_serial_var_type.EXTEND;
1755: x_lot_serial_var_type(j) := l_lot_serial_type;
1756: END IF;