DBA Data[Home] [Help]

PACKAGE: APPS.PQH_FR_VALIDATION_EVENTS_SWI

Source


1 Package pqh_fr_validation_events_swi AUTHID CURRENT_USER As
2 /* $Header: pqvleswi.pkh 115.1 2002/12/05 00:31:25 rpasapul noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< delete_validation_event >-----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_fr_validation_events_api.delete_validation_event
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 delete_validation_event
27   (p_validation_event_id          in     number
28   ,p_object_version_number        in     number
29   ,p_return_status                   out nocopy varchar2
30   );
31 -- ----------------------------------------------------------------------------
32 -- |------------------------< insert_validation_event >-----------------------|
33 -- ----------------------------------------------------------------------------
34 -- {Start of comments}
35 --
36 -- Description:
37 --  This procedure is the self-service wrapper procedure to the following
38 --  API: pqh_fr_validation_events_api.insert_validation_event
39 --
40 -- Pre-requisites
41 --  All 'IN' parameters to this procedure have been appropriately derived.
42 --
43 -- Post Success:
44 --  p_return_status will return value indicating success.
45 --
46 -- Post Failure:
47 --  p_return_status will return value indication failure.
48 --
49 -- Access Status:
50 --  Internal Development use only.
51 --
52 -- {End of comments}
53 -- ----------------------------------------------------------------------------
54 PROCEDURE insert_validation_event
55   (p_effective_date               in     date
56   ,p_validation_id                in     number
57   ,p_event_type                   in     varchar2
58   ,p_event_code                   in     varchar2
59   ,p_start_date                   in     date      default null
60   ,p_end_date                     in     date      default null
61   ,p_comments                     in     varchar2  default null
62   ,p_validation_event_id             out nocopy number
63   ,p_object_version_number           out nocopy number
64   ,p_return_status                   out nocopy varchar2
65   );
66 -- ----------------------------------------------------------------------------
67 -- |------------------------< update_validation_event >-----------------------|
68 -- ----------------------------------------------------------------------------
69 -- {Start of comments}
70 --
71 -- Description:
72 --  This procedure is the self-service wrapper procedure to the following
73 --  API: pqh_fr_validation_events_api.update_validation_event
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_validation_event
90   (p_effective_date               in     date
91   ,p_validation_event_id          in     number
92   ,p_object_version_number        in out nocopy number
93   ,p_validation_id                in     number    default hr_api.g_number
94   ,p_event_type                   in     varchar2  default hr_api.g_varchar2
95   ,p_event_code                   in     varchar2  default hr_api.g_varchar2
96   ,p_start_date                   in     date      default hr_api.g_date
97   ,p_end_date                     in     date      default hr_api.g_date
98   ,p_comments                     in     varchar2  default hr_api.g_varchar2
99   ,p_return_status                   out nocopy varchar2
100   );
101 end pqh_fr_validation_events_swi;