DBA Data[Home] [Help]

PACKAGE: APPS.PAY_ELEMENT_TEMPLATE_USER_ISWI

Source


1 Package pay_element_template_user_iswi As
2 /* $Header: pytemswi.pkh 120.0 2005/05/29 09:04 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------------< create_element >----------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_element_template_user_init.create_element
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_element
27   (p_validate                     in     number
28   ,p_save_for_later               in     varchar2
29   ,p_rec                          in     PAY_ELE_TMPLT_OBJ
30   ,p_sub_class                    in     PAY_ELE_SUB_CLASS_TABLE
31   ,p_freq_rule                    in     PAY_FREQ_RULE_TABLE
32   ,p_ele_template_id                 out nocopy number
33   ,p_return_status                   out nocopy varchar2
34   );
35 -- ----------------------------------------------------------------------------
36 -- |----------------------------< delete_element >----------------------------|
37 -- ----------------------------------------------------------------------------
38 -- {Start of comments}
39 --
40 -- Description:
41 --  This procedure is the self-service wrapper procedure to the following
42 --  API: pay_element_template_user_init.delete_element
43 --
44 -- Pre-requisites
45 --  All 'IN' parameters to this procedure have been appropriately derived.
46 --
47 -- Post Success:
48 --  p_return_status will return value indicating success.
49 --
50 -- Post Failure:
51 --  p_return_status will return value indication failure.
52 --
53 -- Access Status:
54 --  Internal Development use only.
55 --
56 -- {End of comments}
57 -- ----------------------------------------------------------------------------
58 PROCEDURE delete_element
59   (p_validate                     in     number
60   ,p_template_id                  in     number
61   ,p_return_status                out nocopy varchar2
62   );
63  end pay_element_template_user_iswi;