DBA Data[Home] [Help]

PACKAGE: APPS.HR_NL_ABSENCE_ACTION_SWI

Source


1 Package hr_nl_absence_action_swi AUTHID CURRENT_USER As
2 /* $Header: hrnaaswi.pkh 120.0.12000000.1 2007/01/21 17:24:31 appldev ship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_absence_action >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_nl_absence_action_api.create_absence_action
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_absence_action
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_absence_attendance_id        in     number
29   ,p_expected_date                in     date
30   ,p_description                  in     varchar2
31   ,p_actual_start_date            in     date      default null
32   ,p_actual_end_date              in     date      default null
33   ,p_holder                       in     varchar2  default null
34   ,p_comments                     in     varchar2  default null
35   ,p_document_file_name           in     varchar2  default null
36   ,p_absence_action_id            out nocopy     number
37   ,p_object_version_number           out nocopy number
38   ,p_return_status                   out nocopy varchar2
39   ,p_enabled                      in      varchar2  default null
40   );
41 -- ----------------------------------------------------------------------------
42 -- |-------------------------< delete_absence_action >------------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start of comments}
45 --
46 -- Description:
47 --  This procedure is the self-service wrapper procedure to the following
48 --  API: hr_nl_absence_action_api.delete_absence_action
49 --
50 -- Pre-requisites
51 --  All 'IN' parameters to this procedure have been appropriately derived.
52 --
53 -- Post Success:
54 --  p_return_status will return value indicating success.
55 --
56 -- Post Failure:
57 --  p_return_status will return value indication failure.
58 --
59 -- Access Status:
60 --  Internal Development use only.
61 --
62 -- {End of comments}
63 -- ----------------------------------------------------------------------------
64 PROCEDURE delete_absence_action
65   (p_validate                     in     number    default hr_api.g_false_num
66   ,p_absence_action_id            in     number
67   ,p_object_version_number        in     number
68   ,p_return_status                   out nocopy varchar2
69   );
70 -- ----------------------------------------------------------------------------
71 -- |-------------------------< update_absence_action >------------------------|
72 -- ----------------------------------------------------------------------------
73 -- {Start of comments}
74 --
75 -- Description:
76 --  This procedure is the self-service wrapper procedure to the following
77 --  API: hr_nl_absence_action_api.update_absence_action
78 --
79 -- Pre-requisites
80 --  All 'IN' parameters to this procedure have been appropriately derived.
81 --
82 -- Post Success:
83 --  p_return_status will return value indicating success.
84 --
85 -- Post Failure:
86 --  p_return_status will return value indication failure.
87 --
88 -- Access Status:
89 --  Internal Development use only.
90 --
91 -- {End of comments}
92 -- ----------------------------------------------------------------------------
93 PROCEDURE update_absence_action
94   (p_validate                     in     number    default hr_api.g_false_num
95   ,p_absence_attendance_id        in     number
96   ,p_absence_action_id            in     number
97   ,p_object_version_number        in out nocopy number
98   ,p_expected_date                in     date
99   ,p_description                  in     varchar2
100   ,p_actual_start_date            in     date      default hr_api.g_date
101   ,p_actual_end_date              in     date      default hr_api.g_date
102   ,p_holder                       in     varchar2  default hr_api.g_varchar2
103   ,p_comments                     in     varchar2  default hr_api.g_varchar2
104   ,p_document_file_name           in     varchar2  default hr_api.g_varchar2
105   ,p_return_status                   out nocopy varchar2
106   ,p_enabled                      in     varchar2  default hr_Api.g_varchar2
107   );
108 end hr_nl_absence_action_swi;