DBA Data[Home] [Help]

PACKAGE: APPS.IRC_TEMPLATE_ASSOCIATION_SWI

Source


1 Package irc_template_association_swi As
2 /* $Header: iritaswi.pkh 120.0 2005/09/27 08:11 sayyampe noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_template_association >---------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_template_association_api.create_template_association
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_template_association
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_template_id                  in     number
29   ,p_effective_date               in     date      default null
30   ,p_default_association          in     varchar2  default null
31   ,p_job_id                       in     number    default null
32   ,p_position_id                  in     number    default null
33   ,p_organization_id              in     number    default null
34   ,p_start_date                   in     date      default null
35   ,p_end_date                     in     date      default null
36   ,p_object_version_number           out nocopy number
37   ,p_template_association_id      in     number
38   ,p_return_status                   out nocopy varchar2
39   );
40 -- ----------------------------------------------------------------------------
41 -- |----------------------< update_template_association >---------------------|
42 -- ----------------------------------------------------------------------------
43 -- {Start of comments}
44 --
45 -- Description:
46 --  This procedure is the self-service wrapper procedure to the following
47 --  API: irc_template_association_api.update_template_association
48 --
49 -- Pre-requisites
50 --  All 'IN' parameters to this procedure have been appropriately derived.
51 --
52 -- Post Success:
53 --  p_return_status will return value indicating success.
54 --
55 -- Post Failure:
56 --  p_return_status will return value indication failure.
57 --
58 -- Access Status:
59 --  Internal Development use only.
60 --
61 -- {End of comments}
62 -- ----------------------------------------------------------------------------
63 PROCEDURE update_template_association
64   (p_validate                     in     number    default hr_api.g_false_num
65   ,p_effective_date               in     date      default hr_api.g_date
66   ,p_template_association_id      in     number
67   ,p_template_id                  in     number
68   ,p_default_association          in     varchar2  default hr_api.g_varchar2
69   ,p_job_id                       in     number    default hr_api.g_number
70   ,p_position_id                  in     number    default hr_api.g_number
71   ,p_organization_id              in     number    default hr_api.g_number
72   ,p_start_date                   in     date      default hr_api.g_date
73   ,p_end_date                     in     date      default hr_api.g_date
74   ,p_object_version_number        in out nocopy number
75   ,p_return_status                   out nocopy varchar2
76   );
77 -- ----------------------------------------------------------------------------
78 -- |----------------------< delete_template_association >---------------------|
79 -- ----------------------------------------------------------------------------
80 -- {Start of comments}
81 --
82 -- Description:
83 --  This procedure is the self-service wrapper procedure to the following
84 --  API: irc_template_association_api.delete_template_association
85 --
86 -- Pre-requisites
87 --  All 'IN' parameters to this procedure have been appropriately derived.
88 --
89 -- Post Success:
90 --  p_return_status will return value indicating success.
91 --
92 -- Post Failure:
93 --  p_return_status will return value indication failure.
94 --
95 -- Access Status:
96 --  Internal Development use only.
97 --
98 -- {End of comments}
99 -- ----------------------------------------------------------------------------
100 PROCEDURE delete_template_association
101   (p_validate                     in     number    default hr_api.g_false_num
102   ,p_template_association_id      in     number
103   ,p_object_version_number        in     number
104   ,p_return_status                   out nocopy varchar2
105   );
106  end irc_template_association_swi;