DBA Data[Home] [Help]

PACKAGE: APPS.PER_ORG_STRUCTURE_VERSION_SWI

Source


1 Package per_org_structure_version_swi AUTHID CURRENT_USER As
2 /* $Header: peosvswi.pkh 115.1 2002/12/03 01:27:50 ndorai noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |---------------------< create_org_structure_version >---------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: per_org_structure_version_api.create_org_structure_version
11 --
12 -- Pre-requisites
13 --  All 'IN' parameters to this procedure have been appropriately derived.
14 --
15 -- Post Success:
16 --  p_return_status will return value indicating success.
17 --
18 -- Post Failure:
19 --  p_return_status will return value indication failure.
20 --
21 -- Access Status:
22 --  Internal Development use only.
23 --
24 -- {End of comments}
25 -- ----------------------------------------------------------------------------
26 PROCEDURE create_org_structure_version
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_organization_structure_id    in     number
30   ,p_date_from                    in     date
31   ,p_version_number               in     number
32   ,p_copy_structure_version_id    in     number    default null
33   ,p_date_to                      in     date      default null
34   ,p_request_id                   in     number    default null
35   ,p_program_application_id       in     number    default null
36   ,p_program_id                   in     number    default null
37   ,p_program_update_date          in     date      default null
38   ,p_topnode_pos_ctrl_enabled_fla in     varchar2  default null
39   ,p_org_structure_version_id        out nocopy number
40   ,p_object_version_number           out nocopy number
41   ,p_return_status                   out nocopy varchar2
42   );
43 -- ----------------------------------------------------------------------------
44 -- |---------------------< delete_org_structure_version >---------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start of comments}
47 --
48 -- Description:
49 --  This procedure is the self-service wrapper procedure to the following
50 --  API: per_org_structure_version_api.delete_org_structure_version
51 --
52 -- Pre-requisites
53 --  All 'IN' parameters to this procedure have been appropriately derived.
54 --
55 -- Post Success:
56 --  p_return_status will return value indicating success.
57 --
58 -- Post Failure:
59 --  p_return_status will return value indication failure.
60 --
61 -- Access Status:
62 --  Internal Development use only.
63 --
64 -- {End of comments}
65 -- ----------------------------------------------------------------------------
66 PROCEDURE delete_org_structure_version
67   (p_validate                     in     number    default hr_api.g_false_num
68   ,p_org_structure_version_id     in     number
69   ,p_object_version_number        in     number
70   ,p_return_status                   out nocopy varchar2
71   );
72 -- ----------------------------------------------------------------------------
73 -- |---------------------< update_org_structure_version >---------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start of comments}
76 --
77 -- Description:
78 --  This procedure is the self-service wrapper procedure to the following
79 --  API: per_org_structure_version_api.update_org_structure_version
80 --
81 -- Pre-requisites
82 --  All 'IN' parameters to this procedure have been appropriately derived.
83 --
84 -- Post Success:
85 --  p_return_status will return value indicating success.
86 --
87 -- Post Failure:
88 --  p_return_status will return value indication failure.
89 --
90 -- Access Status:
91 --  Internal Development use only.
92 --
93 -- {End of comments}
94 -- ----------------------------------------------------------------------------
95 PROCEDURE update_org_structure_version
96   (p_validate                     in     number    default hr_api.g_false_num
97   ,p_effective_date               in     date
98   ,p_date_from                    in     date
99   ,p_version_number               in     number
100   ,p_copy_structure_version_id    in     number    default hr_api.g_number
101   ,p_date_to                      in     date      default hr_api.g_date
102   ,p_request_id                   in     number    default hr_api.g_number
103   ,p_program_application_id       in     number    default hr_api.g_number
104   ,p_program_id                   in     number    default hr_api.g_number
105   ,p_program_update_date          in     date      default hr_api.g_date
106   ,p_topnode_pos_ctrl_enabled_fla in     varchar2  default hr_api.g_varchar2
107   ,p_org_structure_version_id     in     number
108   ,p_object_version_number        in out nocopy number
109   ,p_return_status                   out nocopy varchar2
110   );
111 end per_org_structure_version_swi;