DBA Data[Home] [Help]

PACKAGE: APPS.IRC_OFFER_STATUS_HISTORY_SWI

Source


1 Package irc_offer_status_history_swi AUTHID CURRENT_USER As
2 /* $Header: iriosswi.pkh 120.4 2005/10/01 12:00 mmillmor noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< create_offer_status_history >---------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_offer_status_history_api.create_offer_status_history
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_offer_status_history
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date      default null
29   ,p_offer_id                     in     number
30   ,p_status_change_date           in     date
31   ,p_offer_status                 in     varchar2
32   ,p_change_reason                in     varchar2  default null
33   ,p_decline_reason               in     varchar2  default null
34   ,p_note_text                    in     varchar2  default null
35   ,p_offer_status_history_id      in     number
36   ,p_object_version_number           out nocopy number
37   ,p_return_status                   out nocopy varchar2
38   );
39 -- ----------------------------------------------------------------------------
40 -- |----------------------< update_offer_status_history >---------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --  This procedure is the self-service wrapper procedure to the following
46 --  API: irc_offer_status_history_api.update_offer_status_history
47 --
48 -- Pre-requisites
49 --  All 'IN' parameters to this procedure have been appropriately derived.
50 --
51 -- Post Success:
52 --  p_return_status will return value indicating success.
53 --
54 -- Post Failure:
55 --  p_return_status will return value indication failure.
56 --
57 -- Access Status:
58 --  Internal Development use only.
59 --
60 -- {End of comments}
61 -- ----------------------------------------------------------------------------
62 PROCEDURE update_offer_status_history
63   (p_validate                     in     number    default hr_api.g_false_num
64   ,p_effective_date               in     date      default hr_api.g_date
65   ,p_offer_status_history_id      in     number
66   ,p_offer_id                     in     number
67   ,p_status_change_date           in     date      default hr_api.g_date
68   ,p_offer_status                 in     varchar2
69   ,p_change_reason                in     varchar2  default hr_api.g_varchar2
70   ,p_decline_reason               in     varchar2  default hr_api.g_varchar2
71   ,p_note_text                    in     varchar2  default hr_api.g_varchar2
72   ,p_object_version_number           out nocopy number
73   ,p_return_status                   out nocopy varchar2
74   );
75 -- ----------------------------------------------------------------------------
76 -- |----------------------< delete_offer_status_history >---------------------|
77 -- ----------------------------------------------------------------------------
78 -- {Start of comments}
79 --
80 -- Description:
81 --  This procedure is the self-service wrapper procedure to the following
82 --  API: irc_offer_status_history_api.delete_offer_status_history
83 --
84 -- Pre-requisites
85 --  All 'IN' parameters to this procedure have been appropriately derived.
86 --
87 -- Post Success:
88 --  p_return_status will return value indicating success.
89 --
90 -- Post Failure:
91 --  p_return_status will return value indication failure.
92 --
93 -- Access Status:
94 --  Internal Development use only.
95 --
96 -- {End of comments}
97 -- ----------------------------------------------------------------------------
98 PROCEDURE delete_offer_status_history
99   (p_validate                     in     number    default hr_api.g_false_num
100   ,p_offer_id                     in     number
101   ,p_effective_date               in     date
102   ,p_return_status                   out nocopy varchar2
103   );
104  end irc_offer_status_history_swi;