DBA Data[Home] [Help]

PACKAGE: APPS.HR_NAME_FORMAT_SWI

Source


1 Package hr_name_format_swi As
2 /* $Header: hrnmfswi.pkh 120.0 2005/05/31 01:35 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |--------------------------< create_name_format >--------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_name_format_api.create_name_format
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_name_format
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_format_name                  in     varchar2
30   ,p_user_format_choice           in     varchar2
31   ,p_format_mask                  in     varchar2
32   ,p_legislation_code             in     varchar2
33   ,p_name_format_id               in     number
34   ,p_object_version_number           out nocopy number
35   ,p_return_status                   out nocopy varchar2
36   );
37 -- ----------------------------------------------------------------------------
38 -- |--------------------------< update_name_format >--------------------------|
39 -- ----------------------------------------------------------------------------
40 -- {Start of comments}
41 --
42 -- Description:
43 --  This procedure is the self-service wrapper procedure to the following
44 --  API: hr_name_format_api.update_name_format
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_name_format
61   (p_validate                     in     number    default hr_api.g_false_num
62   ,p_effective_date               in     date
63   ,p_name_format_id               in     number
64   ,p_format_mask                  in     varchar2
65   ,p_object_version_number        in out nocopy number
66   ,p_return_status                   out nocopy varchar2
67   );
68 -- ----------------------------------------------------------------------------
69 -- |--------------------------< delete_name_format >--------------------------|
70 -- ----------------------------------------------------------------------------
71 -- {Start of comments}
72 --
73 -- Description:
74 --  This procedure is the self-service wrapper procedure to the following
75 --  API: hr_name_format_api.delete_name_format
76 --
77 -- Pre-requisites
78 --  All 'IN' parameters to this procedure have been appropriately derived.
79 --
80 -- Post Success:
81 --  p_return_status will return value indicating success.
82 --
83 -- Post Failure:
84 --  p_return_status will return value indication failure.
85 --
86 -- Access Status:
87 --  Internal Development use only.
88 --
89 -- {End of comments}
90 -- ----------------------------------------------------------------------------
91 PROCEDURE delete_name_format
92   (p_validate                     in     number    default hr_api.g_false_num
93   ,p_name_format_id               in     number
94   ,p_object_version_number        in out nocopy number
95   ,p_return_status                   out nocopy varchar2
96   );
97  end hr_name_format_swi;