DBA Data[Home] [Help]

APPS.ASO_ORDER_FEEDBACK_UPDATE_PVT dependencies on ASO_REQUEST_VAR_TYPE

Line 202: l_request_var_type SYSTEM.ASO_Request_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:
206: -- Standard Start of API savepoint

Line 1765: x_request_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Request_Var_Type

1761:
1762: PROCEDURE ASO_Request_Tbl_To_Var
1763: (
1764: p_request_tbl_type IN OE_Order_PUB.Request_Tbl_Type,
1765: x_request_var_type OUT NOCOPY /* file.sql.39 change */ SYSTEM.ASO_Request_Var_Type
1766: )
1767: IS
1768: l_request_type SYSTEM.ASO_Request_Type;
1769: i NUMBER;

Line 1824: x_request_var_type := SYSTEM.ASO_Request_Var_Type(l_request_type);

1820: , p_request_tbl_type(i).date_param5
1821: , p_request_tbl_type(i).processed
1822: );
1823: IF i = p_request_tbl_type.FIRST then
1824: x_request_var_type := SYSTEM.ASO_Request_Var_Type(l_request_type);
1825: ELSE
1826: x_request_var_type.EXTEND;
1827: x_request_var_type(j) := l_request_type;
1828: END IF;