DBA Data[Home] [Help]

PACKAGE: APPS.HR_PER_DEPLYMT_EIT_SWI

Source


1 Package hr_per_deplymt_eit_swi AUTHID CURRENT_USER As
2 /* $Header: hrpdeswi.pkh 120.1 2012/01/20 13:48:35 vepravee ship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_per_deplymt_eit >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_per_deplymt_eit_api.create_per_deplymt_eit
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_per_deplymt_eit
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_person_deployment_id         in     number
29   ,p_person_extra_info_id         in     number
30   ,p_per_deplymt_eit_id           in     number
31   ,p_object_version_number           out nocopy number
32   ,p_return_status                   out nocopy varchar2
33   );
34 -- ----------------------------------------------------------------------------
35 -- |------------------------< delete_per_deplymt_eit >------------------------|
36 -- ----------------------------------------------------------------------------
37 -- {Start of comments}
38 --
39 -- Description:
40 --  This procedure is the self-service wrapper procedure to the following
41 --  API: hr_per_deplymt_eit_api.delete_per_deplymt_eit
42 --
43 -- Pre-requisites
44 --  All 'IN' parameters to this procedure have been appropriately derived.
45 --
46 -- Post Success:
47 --  p_return_status will return value indicating success.
48 --
49 -- Post Failure:
50 --  p_return_status will return value indication failure.
51 --
52 -- Access Status:
53 --  Internal Development use only.
54 --
55 -- {End of comments}
56 -- ----------------------------------------------------------------------------
57 PROCEDURE delete_per_deplymt_eit
58   (p_validate                     in     number    default hr_api.g_false_num
59   ,p_per_deplymt_eit_id           in     number
60   ,p_object_version_number        in     number
61   ,p_return_status                   out nocopy varchar2
62   );
63 
64 -- ----------------------------------------------------------------------------
65 -- |------------------------< process_api >------------------------|
66 -- ----------------------------------------------------------------------------
67 -- {Start of comments}
68 --
69 -- Description:
70 --  This procedure is the self-service wrapper procedure to the following
71 --  API: hr_per_deplymt_eit_api.process_api
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 process_api
88 ( p_document            in         CLOB
89  ,p_return_status       out nocopy VARCHAR2
90  ,p_validate            in         number    default hr_api.g_false_num
91  ,p_effective_date      in         date      default null
92 );
93 
94 
95  end hr_per_deplymt_eit_swi;