DBA Data[Home] [Help]

PACKAGE: APPS.OTA_BKNG_JUSTIFICATION_SWI

Source


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