DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PIL_ASSIGNMENT_SWI

Source


1 Package ben_pil_assignment_swi AUTHID CURRENT_USER As
2 /* $Header: bepsgswi.pkh 120.0 2006/03/23 10:05 mmillmor noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_pil_assignment >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ben_pil_assignment_api.create_pil_assignment
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_pil_assignment
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_pil_assignment_id               out nocopy number
29   ,p_per_in_ler_id                in     number    default null
30   ,p_applicant_assignment_id      in     number    default null
31   ,p_offer_assignment_id          in     number    default null
32   ,p_object_version_number           out nocopy number
33   ,p_return_status                   out nocopy varchar2
34   );
35 -- ----------------------------------------------------------------------------
36 -- |-------------------------< delete_pil_assignment >------------------------|
37 -- ----------------------------------------------------------------------------
38 -- {Start of comments}
39 --
40 -- Description:
41 --  This procedure is the self-service wrapper procedure to the following
42 --  API: ben_pil_assignment_api.delete_pil_assignment
43 --
44 -- Pre-requisites
45 --  All 'IN' parameters to this procedure have been appropriately derived.
46 --
47 -- Post Success:
48 --  p_return_status will return value indicating success.
49 --
50 -- Post Failure:
51 --  p_return_status will return value indication failure.
52 --
53 -- Access Status:
54 --  Internal Development use only.
55 --
56 -- {End of comments}
57 -- ----------------------------------------------------------------------------
58 PROCEDURE delete_pil_assignment
59   (p_validate                     in     number    default hr_api.g_false_num
60   ,p_pil_assignment_id            in     number
61   ,p_object_version_number        in out nocopy number
62   ,p_return_status                   out nocopy varchar2
63   );
64 -- ----------------------------------------------------------------------------
65 -- |----------------------------------< lck >---------------------------------|
66 -- ----------------------------------------------------------------------------
67 -- {Start of comments}
68 --
69 -- Description:
70 --  This procedure is the self-service wrapper procedure to the following
71 --  API: ben_pil_assignment_api.lck
72 --
73 -- Pre-requisites
74 --  All 'IN' parameters to this procedure have been appropriately derived.
75 --
76 -- Post Success:
77 --  p_return_status will return value indicating success.
78 --
79 -- Post Failure:
80 --  p_return_status will return value indication failure.
81 --
82 -- Access Status:
83 --  Internal Development use only.
84 --
85 -- {End of comments}
86 -- ----------------------------------------------------------------------------
87 PROCEDURE lck
88   (p_pil_assignment_id            in     number
89   ,p_object_version_number        in     number
90   ,p_return_status                   out nocopy varchar2
91   );
92 -- ----------------------------------------------------------------------------
93 -- |-------------------------< update_pil_assignment >------------------------|
94 -- ----------------------------------------------------------------------------
95 -- {Start of comments}
96 --
97 -- Description:
98 --  This procedure is the self-service wrapper procedure to the following
99 --  API: ben_pil_assignment_api.update_pil_assignment
100 --
101 -- Pre-requisites
102 --  All 'IN' parameters to this procedure have been appropriately derived.
103 --
104 -- Post Success:
105 --  p_return_status will return value indicating success.
106 --
107 -- Post Failure:
108 --  p_return_status will return value indication failure.
109 --
110 -- Access Status:
111 --  Internal Development use only.
112 --
113 -- {End of comments}
114 -- ----------------------------------------------------------------------------
115 PROCEDURE update_pil_assignment
116   (p_validate                     in     number    default hr_api.g_false_num
117   ,p_pil_assignment_id            in     number    default hr_api.g_number
118   ,p_per_in_ler_id                in     number    default hr_api.g_number
119   ,p_applicant_assignment_id      in     number    default hr_api.g_number
120   ,p_offer_assignment_id          in     number    default hr_api.g_number
121   ,p_object_version_number        in out nocopy number
122   ,p_return_status                   out nocopy varchar2
123   );
124  end ben_pil_assignment_swi;