DBA Data[Home] [Help]

PACKAGE: APPS.HR_ADI_DOCUMENT_SWI

Source


1 Package hr_adi_document_swi AUTHID CURRENT_USER As
2 /* $Header: hrlobswi.pkh 115.2 2002/11/21 14:21:47 menderby noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------------< create_document >---------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_adi_document_api.create_document
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_document
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_mime_type                    in     varchar2
30   ,p_file_name                    in     varchar2
31   ,p_type                         in     varchar2
32   ,p_file_id                      in     number
33   ,p_return_status                   out nocopy varchar2
34   );
35 -- ----------------------------------------------------------------------------
36 -- |----------------------------< delete_document >---------------------------|
37 -- ----------------------------------------------------------------------------
38 -- {Start of comments}
39 --
40 -- Description:
41 --  This procedure is the self-service wrapper procedure to the following
42 --  API: hr_adi_document_api.delete_document
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_document
59   (p_validate                     in     number    default hr_api.g_false_num
60   ,p_file_id                      in     number
61   ,p_return_status                   out nocopy varchar2
62   );
63 -- ----------------------------------------------------------------------------
64 -- |----------------------------< update_document >---------------------------|
65 -- ----------------------------------------------------------------------------
66 -- {Start of comments}
67 --
68 -- Description:
69 --  This procedure is the self-service wrapper procedure to the following
70 --  API: hr_adi_document_api.update_document
71 --
72 -- Pre-requisites
73 --  All 'IN' parameters to this procedure have been appropriately derived.
74 --
75 -- Post Success:
76 --  p_return_status will return value indicating success.
77 --
78 -- Post Failure:
79 --  p_return_status will return value indication failure.
80 --
81 -- Access Status:
82 --  Internal Development use only.
83 --
84 -- {End of comments}
85 -- ----------------------------------------------------------------------------
86 PROCEDURE update_document
87   (p_validate                     in     number    default hr_api.g_false_num
88   ,p_effective_date               in     date
89   ,p_file_id                      in     number
90   ,p_mime_type                    in     varchar2
91   ,p_file_name                    in     varchar2
92   ,p_return_status                   out nocopy varchar2
93   );
94 end hr_adi_document_swi;