DBA Data[Home] [Help]

PACKAGE: APPS.RG_REPORT_SETS_PKG

Source


1 PACKAGE rg_report_sets_pkg AS
2 /* $Header: rgirsets.pls 120.1 2003/04/29 01:29:33 djogg ship $ */
3 
4   -- NAME
5   --   new_report_set_id
6   --
7   -- DESCRIPTION
8   --   Get a new report set id from rg_report_sets_s
9   --
10   -- PARAMETERS
11   --   *None*
12   --
13 
14   FUNCTION new_report_set_id
15                   RETURN        NUMBER;
16   --
17   -- NAME
18   --   check_dup_report_set_name
19   --
20   -- DESCRIPTION
21   --   Check whether new_name already used by another report sets
22   --   in the currenct application.
23   --
24   -- PARAMETERS
25   -- 1. Current Application ID
26   -- 2. Current Report Set ID
27   -- 3. New report set name
28   --
29 
30   FUNCTION check_dup_report_set_name(cur_application_id IN   NUMBER,
31 				     cur_report_set_id  IN   NUMBER,
32 				     new_name           IN   VARCHAR2)
33                                      RETURN             BOOLEAN;
34 
35 END rg_report_sets_pkg;