DBA Data[Home] [Help]

APPS.GR_DISCLOSURE_PKG dependencies on GR_ITEM_DISCLOSURES

Line 90: FROM gr_item_disclosures id

86: /* Cursor to call disclosure code out of GR_ITEM_DISCLOSURE */
87: CURSOR itemdisc_disclosure_cursor
88: IS
89: SELECT COUNT(1)
90: FROM gr_item_disclosures id
91: WHERE id.disclosure_code = delete_disclosure;
92:
93: /* Cursor to call disclosure code out of GR_DOCUMENT_PRINT (The Recipient Disclosure) */
94: CURSOR docprint_rec_disclosure_cursor

Line 134: l_table_name := 'GR_ITEM_DISCLOSURES';

130: END IF;
131:
132: /* Check the GR_ITEM_DISCLOSURE table!!! */
133:
134: l_table_name := 'GR_ITEM_DISCLOSURES';
135:
136: OPEN itemdisc_disclosure_cursor;
137: FETCH itemdisc_disclosure_cursor INTO l_count;
138: CLOSE itemdisc_disclosure_cursor;