DBA Data[Home] [Help]

PACKAGE: APPS.PER_REC_ACTIVITY_FOR_SWI

Source


1 Package per_rec_activity_for_swi AUTHID CURRENT_USER As
2 /* $Header: percfswi.pkh 120.1 2006/03/13 02:33:10 cnholmes noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_rec_activity_for >-----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: per_rec_activity_for_api.create_rec_activity_for
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_rec_activity_for
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_rec_activity_for_id          in     number
29   ,p_business_group_id            in     number
30   ,p_vacancy_id                   in     number
31   ,p_rec_activity_id              in     number
32   ,p_object_version_number           out nocopy number
33   ,p_return_status                   out nocopy varchar2
34   );
35 -- ----------------------------------------------------------------------------
36 -- |------------------------< delete_rec_activity_for >-----------------------|
37 -- ----------------------------------------------------------------------------
38 -- {Start of comments}
39 --
40 -- Description:
41 --  This procedure is the self-service wrapper procedure to the following
42 --  API: per_rec_activity_for_api.delete_rec_activity_for
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_rec_activity_for
59   (p_validate                     in     number    default hr_api.g_false_num
60   ,p_rec_activity_for_id          in     number
61   ,p_object_version_number        in     number
62   ,p_return_status                   out nocopy varchar2
63   );
64 -- ----------------------------------------------------------------------------
65 -- |------------------------< update_rec_activity_for >-----------------------|
66 -- ----------------------------------------------------------------------------
67 -- {Start of comments}
68 --
69 -- Description:
70 --  This procedure is the self-service wrapper procedure to the following
71 --  API: per_rec_activity_for_api.update_rec_activity_for
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 update_rec_activity_for
88   (p_validate                     in     number    default hr_api.g_false_num
89   ,p_rec_activity_for_id          in     number
90   ,p_vacancy_id                   in     number    default hr_api.g_number
91   ,p_rec_activity_id              in     number    default hr_api.g_number
92   ,p_object_version_number        in out nocopy number
93   ,p_return_status                   out nocopy varchar2
94   );
95 --
96 procedure process_api
97 (
98   p_document            in         CLOB
99  ,p_return_status       out nocopy VARCHAR2
100  ,p_validate            in         number    default hr_api.g_false_num
101  ,p_effective_date      in         date      default null
102 );
103 --
104 end per_rec_activity_for_swi;