DBA Data[Home] [Help]

PACKAGE: APPS.AME_TRANS_TYPE_SWI

Source


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