DBA Data[Home] [Help]

PACKAGE: APPS.PER_GENERIC_HIERARCHY_PKG

Source


1 package per_generic_hierarchy_pkg AUTHID CURRENT_USER as
2 /* $Header: peghrval.pkh 115.3 2002/12/05 16:47:30 pkakar noship $ */
3 --
4 /*
5 +==============================================================================+
6 |                        Copyright (c) 1997 Oracle Corporation                 |
7 |                           Redwood Shores, California, USA                    |
8 |                               All rights reserved.                           |
9 +==============================================================================+
10 --
11 Name
12 	Generic Hierarchy Package
13 Purpose
14         This package is used to perform operations for the generic hierarchy
15         form such as validating hierarchies and copying hierarchies.
16 History
17   Version    Date       Who        What?
18   ---------  ---------  ---------- --------------------------------------------
19   115.0      25-Jan-01  gperry     Created
20   115.3      05-Dec-02  pkakar     Added nocopy to parameters
21 */
22 --
23 procedure validate_hierarchy(p_hierarchy_version_id in number);
24 --
25 procedure copy_hierarchy(p_hierarchy_id     in  number,
26                          p_name             in  varchar2,
27                          p_effective_date   in  date,
28                          p_out_hierarchy_id out nocopy number);
29 --
30 procedure copy_hierarchy_version(p_hierarchy_version_id     in  number,
31                                  p_new_version_number       in  number,
32                                  p_date_from                in  date,
33                                  p_date_to                  in  date,
34                                  p_effective_date           in  date,
35                                  p_out_hierarchy_version_id out nocopy number);
36 --
37 end per_generic_hierarchy_pkg;