DBA Data[Home] [Help]

PACKAGE: APPS.PQH_COPY_ENTITY_TXNS_SWI

Source


1 Package pqh_copy_entity_txns_swi AUTHID CURRENT_USER As
2 /* $Header: pqcetswi.pkh 115.0 2003/07/29 22:54 rpasapul noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_copy_entity_txn >------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pqh_copy_entity_txns_api.create_copy_entity_txn
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_copy_entity_txn
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_copy_entity_txn_id              out nocopy number
29   ,p_transaction_category_id      in     number    default null
30   ,p_txn_category_attribute_id    in     number    default null
31   ,p_context_business_group_id    in     number    default null
32   ,p_datetrack_mode               in     varchar2  default null
33   ,p_context                      in     varchar2  default null
34   ,p_action_date                  in     date      default null
35   ,p_src_effective_date           in     date      default null
36   ,p_number_of_copies             in     number    default null
37   ,p_display_name                 in     varchar2  default null
38   ,p_replacement_type_cd          in     varchar2  default null
39   ,p_start_with                   in     varchar2  default null
40   ,p_increment_by                 in     number    default null
41   ,p_status                       in     varchar2  default null
42   ,p_object_version_number           out nocopy number
43   ,p_effective_date               in     date
44   ,p_return_status                   out nocopy varchar2
45   );
46 -- ----------------------------------------------------------------------------
47 -- |------------------------< delete_copy_entity_txn >------------------------|
48 -- ----------------------------------------------------------------------------
49 -- {Start of comments}
50 --
51 -- Description:
52 --  This procedure is the self-service wrapper procedure to the following
53 --  API: pqh_copy_entity_txns_api.delete_copy_entity_txn
54 --
55 -- Pre-requisites
56 --  All 'IN' parameters to this procedure have been appropriately derived.
57 --
58 -- Post Success:
59 --  p_return_status will return value indicating success.
60 --
61 -- Post Failure:
62 --  p_return_status will return value indication failure.
63 --
64 -- Access Status:
65 --  Internal Development use only.
66 --
67 -- {End of comments}
68 -- ----------------------------------------------------------------------------
69 PROCEDURE delete_copy_entity_txn
70   (p_validate                     in     number    default hr_api.g_false_num
71   ,p_copy_entity_txn_id           in     number
72   ,p_object_version_number        in     number
73   ,p_effective_date               in     date
74   ,p_return_status                   out nocopy varchar2
75   );
76 -- ----------------------------------------------------------------------------
77 -- |------------------------< update_copy_entity_txn >------------------------|
78 -- ----------------------------------------------------------------------------
79 -- {Start of comments}
80 --
81 -- Description:
82 --  This procedure is the self-service wrapper procedure to the following
83 --  API: pqh_copy_entity_txns_api.update_copy_entity_txn
84 --
85 -- Pre-requisites
86 --  All 'IN' parameters to this procedure have been appropriately derived.
87 --
88 -- Post Success:
89 --  p_return_status will return value indicating success.
90 --
91 -- Post Failure:
92 --  p_return_status will return value indication failure.
93 --
94 -- Access Status:
95 --  Internal Development use only.
96 --
97 -- {End of comments}
98 -- ----------------------------------------------------------------------------
99 PROCEDURE update_copy_entity_txn
100   (p_validate                     in     number    default hr_api.g_false_num
101   ,p_copy_entity_txn_id           in     number
102   ,p_transaction_category_id      in     number    default hr_api.g_number
103   ,p_txn_category_attribute_id    in     number    default hr_api.g_number
104   ,p_context_business_group_id    in     number    default hr_api.g_number
105   ,p_datetrack_mode               in     varchar2  default hr_api.g_varchar2
106   ,p_context                      in     varchar2  default hr_api.g_varchar2
107   ,p_action_date                  in     date      default hr_api.g_date
108   ,p_src_effective_date           in     date      default hr_api.g_date
109   ,p_number_of_copies             in     number    default hr_api.g_number
110   ,p_display_name                 in     varchar2  default hr_api.g_varchar2
111   ,p_replacement_type_cd          in     varchar2  default hr_api.g_varchar2
112   ,p_start_with                   in     varchar2  default hr_api.g_varchar2
113   ,p_increment_by                 in     number    default hr_api.g_number
114   ,p_status                       in     varchar2  default hr_api.g_varchar2
115   ,p_object_version_number        in out nocopy number
116   ,p_effective_date               in     date
117   ,p_return_status                   out nocopy varchar2
118   );
119 end pqh_copy_entity_txns_swi;