DBA Data[Home] [Help]

PACKAGE: APPS.AME_CONFIG_VAR_SWI

Source


1 Package ame_config_var_swi As
2 /* $Header: amcfvswi.pkh 120.0 2005/09/02 03:55 mbocutt noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------< update_ame_config_variable >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ame_config_var_api.update_ame_config_variable
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 update_ame_config_variable
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_application_id               in     number
29   ,p_variable_name                in     varchar2
30   ,p_variable_value               in     varchar2  default hr_api.g_varchar2
31   ,p_object_version_number        in out nocopy number
32   ,p_start_date                      out nocopy date
33   ,p_end_date                        out nocopy date
34   ,p_return_status                   out nocopy varchar2
35   );
36 -- ----------------------------------------------------------------------------
37 -- |----------------------< delete_ame_config_variable >----------------------|
38 -- ----------------------------------------------------------------------------
39 -- {Start of comments}
40 --
41 -- Description:
42 --  This procedure is the self-service wrapper procedure to the following
43 --  API: ame_config_var_api.delete_ame_config_variable
44 --
45 -- Pre-requisites
46 --  All 'IN' parameters to this procedure have been appropriately derived.
47 --
48 -- Post Success:
49 --  p_return_status will return value indicating success.
50 --
51 -- Post Failure:
52 --  p_return_status will return value indication failure.
53 --
54 -- Access Status:
55 --  Internal Development use only.
56 --
57 -- {End of comments}
58 -- ----------------------------------------------------------------------------
59 PROCEDURE delete_ame_config_variable
60   (p_validate                     in     number    default hr_api.g_false_num
61   ,p_application_id               in     number
62   ,p_variable_name                in     varchar2
63   ,p_object_version_number        in out nocopy number
64   ,p_start_date                      out nocopy date
65   ,p_end_date                        out nocopy date
66   ,p_return_status                   out nocopy varchar2
67   );
68  end ame_config_var_swi;