DBA Data[Home] [Help]

APPS.RG_REPORT_SET_REQUESTS_PKG dependencies on RG_REPORT_SET_REQ_DETAILS

Line 92: -- Insert a row into rg_report_set_req_details.

88: -- NAME
89: -- insert_report_set_req_detail
90: --
91: -- DESCRIPTION
92: -- Insert a row into rg_report_set_req_details.
93: --
94: -- PARAMETERS
95: -- Listed below
96: --

Line 104: FROM RG_REPORT_SET_REQ_DETAILS

100: x_report_id NUMBER,
101: x_concurrent_request_id NUMBER) IS
102: CURSOR C IS
103: SELECT rowid
104: FROM RG_REPORT_SET_REQ_DETAILS
105: WHERE report_set_request_id = x_report_set_request_id
106: AND sequence = x_sequence;
107: rowid VARCHAR2(30);
108: BEGIN

Line 110: INSERT INTO RG_REPORT_SET_REQ_DETAILS

106: AND sequence = x_sequence;
107: rowid VARCHAR2(30);
108: BEGIN
109:
110: INSERT INTO RG_REPORT_SET_REQ_DETAILS
111: ( REPORT_SET_REQUEST_ID,
112: SEQUENCE,
113: REPORT_ID,
114: CONCURRENT_REQUEST_ID,