DBA Data[Home] [Help]

PACKAGE: APPS.RG_REPORT_CONTENT_SETS_PKG

Source


1 PACKAGE RG_REPORT_CONTENT_SETS_PKG AS
2 /* $Header: rgircnss.pls 120.2 2002/11/14 03:00:43 djogg ship $ */
3 --
4 -- Name
5 --   rg_report_content_sets_pkg
6 -- Purpose
7 --   to include all sever side procedures and packages for table
8 --   rg_report_content_sets
9 -- Notes
10 --
11 -- History
12 --   11/01/93	A Chen	Created
13 --
14 --
15 -- Procedures
16 
17 -- Name
18 --   select_row
19 -- Purpose
20 --   querying a row
21 -- Arguments
22 --   recinfo        record inforation
23 --
24 PROCEDURE select_row(recinfo in out NOCOPY rg_report_content_sets%ROWTYPE);
25 
26 -- Name
27 --   select_columns
28 -- Purpose
29 --   querying columns from a row for populating non-database fields
30 --   in POST-QUERY
31 -- Arguments
32 --   recinfo        record inforation
33 PROCEDURE select_columns(X_content_set_id NUMBER, X_name IN OUT NOCOPY VARCHAR2);
34 
35 -- Name
36 --   check_unique
37 -- Purpose
38 --   unique check for name
39 -- Arguments
40 --   name
41 --
42 PROCEDURE check_unique(X_rowid VARCHAR2,
43                        X_name VARCHAR2,
44                        X_application_id NUMBER);
45 
46 -- Name
47 --   check_references
48 -- Purpose
49 --   Referential integrity check on rg_report_content_sets
50 -- Arguments
51 --   content_set_id
52 --
53 PROCEDURE check_references(X_content_set_id NUMBER);
54 
55 -- Name
56 --   get_nextval
57 -- Purpose
58 --   Retrieves next value for content_set_id from
59 --   rg_report_content_sets_s
60 -- Arguments
61 --   None.
62 --
63 FUNCTION get_nextval RETURN NUMBER;
64 
65 END RG_REPORT_CONTENT_SETS_PKG;