DBA Data[Home] [Help]

APPS.RG_REPORT_DISPLAYS_PKG dependencies on DUAL

Line 12: select 1 into dummy from dual

8: X_report_display_set_id NUMBER,
9: X_sequence NUMBER ) IS
10: dummy NUMBER;
11: BEGIN
12: select 1 into dummy from dual
13: where not exists
14: (select 1 from rg_report_displays
15: where report_display_set_id = nvl(X_report_display_set_id,-1)
16: and sequence = X_sequence

Line 30: from dual;

26: next_id NUMBER;
27: BEGIN
28: select rg_report_displays_s.nextval
29: into next_id
30: from dual;
31:
32: RETURN (next_id);
33: END get_unique_id;
34: