DBA Data[Home] [Help]

APPS.QP_LIMIT_CONC_REQ dependencies on QP_LIMITS

Line 68: from qp_limits

64: for update;
65: --
66: cursor limits is
67: select *
68: from qp_limits
69: where list_header_id = nvl(p_list_header_id,list_header_id) and
70: limit_id = nvl(p_limit_id,limit_id) and
71: list_line_id = nvl(p_list_line_id,list_line_id);
72: --

Line 73: l_limits_row qp_limits%rowtype;

69: where list_header_id = nvl(p_list_header_id,list_header_id) and
70: limit_id = nvl(p_limit_id,limit_id) and
71: list_line_id = nvl(p_list_line_id,list_line_id);
72: --
73: l_limits_row qp_limits%rowtype;
74: l_balance_row qp_limit_balances%rowtype;
75: l_trans_total number;
76: --
77: BEGIN