DBA Data[Home] [Help]

PACKAGE: APPS.IRC_NOTES_SWI

Source


1 Package irc_notes_swi As
2 /* $Header: irinoswi.pkh 120.0 2005/09/27 09:09 sayyampe noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------------< create_note >-----------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_notes_api.create_note
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_note
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_offer_status_history_id      in     number
29   ,p_note_text                    in     varchar2
30   ,p_note_id                      in     number
31   ,p_object_version_number           out nocopy number
32   ,p_return_status                   out nocopy varchar2
33   );
34 -- ----------------------------------------------------------------------------
35 -- |------------------------------< update_note >-----------------------------|
36 -- ----------------------------------------------------------------------------
37 -- {Start of comments}
38 --
39 -- Description:
40 --  This procedure is the self-service wrapper procedure to the following
41 --  API: irc_notes_api.update_note
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 update_note
58   (p_validate                     in     number    default hr_api.g_false_num
59   ,p_note_id                      in     number
60   ,p_offer_status_history_id      in     number    default hr_api.g_number
61   ,p_note_text                    in     varchar2  default hr_api.g_varchar2
62   ,p_object_version_number        in out nocopy number
63   ,p_return_status                   out nocopy varchar2
64   );
65 -- ----------------------------------------------------------------------------
66 -- |------------------------------< delete_note >-----------------------------|
67 -- ----------------------------------------------------------------------------
68 -- {Start of comments}
69 --
70 -- Description:
71 --  This procedure is the self-service wrapper procedure to the following
72 --  API: irc_notes_api.delete_note
73 --
74 -- Pre-requisites
75 --  All 'IN' parameters to this procedure have been appropriately derived.
76 --
77 -- Post Success:
78 --  p_return_status will return value indicating success.
79 --
80 -- Post Failure:
81 --  p_return_status will return value indication failure.
82 --
83 -- Access Status:
84 --  Internal Development use only.
85 --
86 -- {End of comments}
87 -- ----------------------------------------------------------------------------
88 PROCEDURE delete_note
89   (p_validate                     in     number    default hr_api.g_false_num
90   ,p_note_id                      in     number
91   ,p_object_version_number        in     number
92   ,p_return_status                   out nocopy varchar2
93   );
94  end irc_notes_swi;