DBA Data[Home] [Help]

PACKAGE: APPS.IRC_LINKED_CANDIDATES_SWI

Source


1 Package IRC_LINKED_CANDIDATES_SWI AUTHID CURRENT_USER As
2 /* $Header: irilcswi.pkh 120.1 2010/05/26 09:59:48 chsharma noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_linked_candidate >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: IRC_LINKED_CANDIDATES_API.create_linked_candidate
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_linked_candidate
27   (p_validate                       in           number   default hr_api.g_false_num
28   ,p_duplicate_set_id               in           number
29   ,p_party_id                       in           number
30   ,p_status                         in           varchar2
31   ,p_target_party_id                in           number   default null
32   ,p_link_id                        in           number
33   ,p_object_version_number          out nocopy   number
34   ,p_return_status                  out nocopy   varchar2
35   );
36 -- ----------------------------------------------------------------------------
37 -- |-------------------------< update_linked_candidate >----------------------|
38 -- ----------------------------------------------------------------------------
39 -- {Start of comments}
40 --
41 -- Description:
42 --  This procedure is the self-service wrapper procedure to the following
43 --  API: IRC_LINKED_CANDIDATES_API.update_linked_candidate
44 --
45 -- Pre-requisites
46 --  All 'IN' parameters to this procedure have been appropriately derived.
47 --
48 -- Post Success:
49 --  p_return_status will return value indicating success.
50 --
51 -- Post Failure:
52 --  p_return_status will return value indication failure.
53 --
54 -- Access Status:
55 --  Internal Development use only.
56 --
57 -- {End of comments}
58 -- ----------------------------------------------------------------------------
59 PROCEDURE update_linked_candidate
60   (p_validate                       in            number   default hr_api.g_false_num
61   ,p_link_id                        in            number
62   ,p_duplicate_set_id               in            number
63   ,p_party_id                       in            number
64   ,p_status                         in            varchar2
65   ,p_target_party_id                in            number   default null
66   ,p_object_version_number          in out nocopy number
67   ,p_return_status                  out nocopy    varchar2
68   );
69 -- ----------------------------------------------------------------------------
70 -- |-------------------------< delete_linked_candidate >----------------------|
71 -- ----------------------------------------------------------------------------
72 -- {Start of comments}
73 --
74 -- Description:
75 --  This procedure is the self-service wrapper procedure to the following
76 --  API: IRC_LINKED_CANDIDATES_API.delete_linked_candidate
77 --
78 -- Pre-requisites
79 --  All 'IN' parameters to this procedure have been appropriately derived.
80 --
81 -- Post Success:
82 --  p_return_status will return value indicating success.
83 --
84 -- Post Failure:
85 --  p_return_status will return value indication failure.
86 --
87 -- Access Status:
88 --  Internal Development use only.
89 --
90 -- {End of comments}
91 -- ----------------------------------------------------------------------------
92 PROCEDURE delete_linked_candidate
93   (p_validate                       in          number   default hr_api.g_false_num
94   ,p_link_id                        in          number
95   ,p_object_version_number          in          number
96   ,p_return_status                  out nocopy  varchar2
97   );
98  end IRC_LINKED_CANDIDATES_SWI;