DBA Data[Home] [Help]

PACKAGE: APPS.HR_CAL_ENTRY_VALUE_SWI

Source


1 Package hr_cal_entry_value_swi AUTHID CURRENT_USER As
2 /* $Header: hrenvswi.pkh 120.0 2005/05/31 00:09:05 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |--------------------------< create_entry_value >--------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_cal_entry_value_api.create_entry_value
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_entry_value
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_calendar_entry_id            in     number
30   ,p_hierarchy_node_id            in     number    default null
31   ,p_value                        in     varchar2  default null
32   ,p_org_structure_element_id     in     number    default null
33   ,p_organization_id              in     number    default null
34   ,p_override_name                in     varchar2  default null
35   ,p_override_type                in     varchar2  default null
36   ,p_parent_entry_value_id        in     number    default null
37   ,p_cal_entry_value_id           in     number
38   ,p_usage_flag                   in     varchar2
39   ,p_identifier_key               in     varchar2  default null
40   ,p_object_version_number           out nocopy number
41   ,p_return_status                   out nocopy varchar2
42   );
43 -- ----------------------------------------------------------------------------
44 -- |--------------------------< delete_entry_value >--------------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start of comments}
47 --
48 -- Description:
49 --  This procedure is the self-service wrapper procedure to the following
50 --  API: hr_cal_entry_value_api.delete_entry_value
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_entry_value
67   (p_validate                     in     number    default hr_api.g_false_num
68   ,p_cal_entry_value_id           in     number
69   ,p_object_version_number        in     number
70   ,p_return_status                   out nocopy varchar2
71   );
72 -- ----------------------------------------------------------------------------
73 -- |--------------------------< update_entry_value >--------------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start of comments}
76 --
77 -- Description:
78 --  This procedure is the self-service wrapper procedure to the following
79 --  API: hr_cal_entry_value_api.update_entry_value
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_entry_value
96   (p_validate                     in     number    default hr_api.g_false_num
97   ,p_effective_date               in     date
98   ,p_cal_entry_value_id           in     number
99   ,p_object_version_number        in out nocopy number
100   ,p_override_name                in     varchar2  default hr_api.g_varchar2
101   ,p_override_type                in     varchar2  default hr_api.g_varchar2
102   ,p_parent_entry_value_id        in     number    default hr_api.g_number
103   ,p_usage_flag                   in     varchar2  default hr_api.g_varchar2
104   ,p_return_status                   out nocopy varchar2
105   );
106 end hr_cal_entry_value_swi;