DBA Data[Home] [Help]

PACKAGE: APPS.PQH_DE_TKTDTLS_SWI

Source


1 Package pqh_de_tktdtls_swi AUTHID CURRENT_USER As
2 /* $Header: pqtktswi.pkh 115.1 2002/12/05 00:30:30 rpasapul noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------------< delete_tkt_dtls >---------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_de_tktdtls_api.delete_tkt_dtls
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_tkt_dtls
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_tatigkeit_detail_id          in     number
29   ,p_object_version_number        in     number
30   ,p_return_status                   out nocopy varchar2
31   );
32 -- ----------------------------------------------------------------------------
33 -- |----------------------------< insert_tkt_dtls >---------------------------|
34 -- ----------------------------------------------------------------------------
35 -- {Start of comments}
36 --
37 -- Description:
38 --  This procedure is the self-service wrapper procedure to the following
39 --  API: pqh_de_tktdtls_api.insert_tkt_dtls
40 --
41 -- Pre-requisites
42 --  All 'IN' parameters to this procedure have been appropriately derived.
43 --
44 -- Post Success:
45 --  p_return_status will return value indicating success.
46 --
47 -- Post Failure:
48 --  p_return_status will return value indication failure.
49 --
50 -- Access Status:
51 --  Internal Development use only.
52 --
53 -- {End of comments}
54 -- ----------------------------------------------------------------------------
55 PROCEDURE insert_tkt_dtls
56   (p_validate                     in     number    default hr_api.g_false_num
57   ,p_effective_date               in     date
58   ,p_tatigkeit_number             in     varchar2  default hr_api.g_varchar2
59   ,p_description                  in     varchar2
60   ,p_tatigkeit_detail_id             out nocopy number
61   ,p_object_version_number           out nocopy number
62   ,p_return_status                   out nocopy varchar2
63   );
64 -- ----------------------------------------------------------------------------
65 -- |----------------------------< update_tkt_dtls >---------------------------|
66 -- ----------------------------------------------------------------------------
67 -- {Start of comments}
68 --
69 -- Description:
70 --  This procedure is the self-service wrapper procedure to the following
71 --  API: pqh_de_tktdtls_api.update_tkt_dtls
72 --
73 -- Pre-requisites
74 --  All 'IN' parameters to this procedure have been appropriately derived.
75 --
76 -- Post Success:
77 --  p_return_status will return value indicating success.
78 --
79 -- Post Failure:
80 --  p_return_status will return value indication failure.
81 --
82 -- Access Status:
83 --  Internal Development use only.
84 --
85 -- {End of comments}
86 -- ----------------------------------------------------------------------------
87 PROCEDURE update_tkt_dtls
88   (p_validate                     in     number    default hr_api.g_false_num
89   ,p_effective_date               in     date
90   ,p_tatigkeit_number             in     varchar2  default hr_api.g_varchar2
91   ,p_description                  in     varchar2  default hr_api.g_varchar2
92   ,p_tatigkeit_detail_id          in     number
93   ,p_object_version_number        in   out nocopy number
94   ,p_return_status                   out nocopy varchar2
95   );
96 end pqh_de_tktdtls_swi;