DBA Data[Home] [Help]

PACKAGE: APPS.IRC_ASG_STATUS_SWI

Source


1 Package irc_asg_status_swi AUTHID CURRENT_USER As
2 /* $Header: iriasswi.pkh 120.0.12010000.2 2009/07/30 03:44:18 vmummidi ship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-------------------------< create_irc_asg_status >-------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_asg_status_api.create_irc_asg_status
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_irc_asg_status
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_assignment_id                in     number
29   ,p_assignment_status_type_id    in     number
30   ,p_status_change_date           in     date
31   ,p_status_change_reason         in     varchar2  default null
32   ,p_assignment_status_id         in     number
33   ,p_object_version_number           out nocopy number
34   ,p_return_status                   out nocopy varchar2
35   ,p_status_change_comments       in     varchar2  default null
36   );
37 -- ----------------------------------------------------------------------------
38 -- |-------------------------< delete_irc_asg_status >-------------------------|
39 -- ----------------------------------------------------------------------------
40 -- {Start of comments}
41 --
42 -- Description:
43 --  This procedure is the self-service wrapper procedure to the following
44 --  API: irc_asg_status_api.delete_irc_asg_status
45 --
46 -- Pre-requisites
47 --  All 'IN' parameters to this procedure have been appropriately derived.
48 --
49 -- Post Success:
50 --  p_return_status will return value indicating success.
51 --
52 -- Post Failure:
53 --  p_return_status will return value indication failure.
54 --
55 -- Access Status:
56 --  Internal Development use only.
57 --
58 -- {End of comments}
59 -- ----------------------------------------------------------------------------
60 PROCEDURE delete_irc_asg_status
61   (p_validate                     in     number    default hr_api.g_false_num
62   ,p_assignment_status_id         in     number
63   ,p_object_version_number        in     number
64   ,p_return_status                   out nocopy varchar2
65   );
66 -- ----------------------------------------------------------------------------
67 -- |-------------------------< update_irc_asg_status >-------------------------|
68 -- ----------------------------------------------------------------------------
69 -- {Start of comments}
70 --
71 -- Description:
72 --  This procedure is the self-service wrapper procedure to the following
73 --  API: irc_asg_status_api.update_irc_asg_status
74 --
75 -- Pre-requisites
76 --  All 'IN' parameters to this procedure have been appropriately derived.
77 --
78 -- Post Success:
79 --  p_return_status will return value indicating success.
80 --
81 -- Post Failure:
82 --  p_return_status will return value indication failure.
83 --
84 -- Access Status:
85 --  Internal Development use only.
86 --
87 -- {End of comments}
88 -- ----------------------------------------------------------------------------
89 PROCEDURE update_irc_asg_status
90   (p_validate                     in     number    default hr_api.g_false_num
91   ,p_status_change_reason         in     varchar2  default hr_api.g_varchar2
92   ,p_status_change_date           in     date
93   ,p_assignment_status_id         in     number
94   ,p_object_version_number        in out nocopy number
95   ,p_return_status                   out nocopy varchar2
96   ,p_status_change_comments       in     varchar2  default hr_api.g_varchar2
97   );
98 end irc_asg_status_swi;