DBA Data[Home] [Help]

PACKAGE: APPS.OTA_FRM_OBJ_INCLUSION_SWI

Source


1 Package ota_frm_obj_inclusion_swi As
2 /* $Header: otfoiswi.pkh 120.1 2005/08/05 12:20 asud noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-----------------------< create_frm_obj_inclusion >-----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: ota_frm_obj_inclusion_api.create_frm_obj_inclusion
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_frm_obj_inclusion
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_object_id                    in     number
30   ,p_object_type                  in     varchar2
31   ,p_primary_flag                 in     varchar2
32   ,p_start_date_active            in     date      default null
33   ,p_end_date_active              in     date      default null
34   ,p_forum_id                     in     number
35   ,p_object_version_number           out nocopy number
36   ,p_return_status                   out nocopy varchar2
37   );
38 -- ----------------------------------------------------------------------------
39 -- |-----------------------< update_frm_obj_inclusion >-----------------------|
40 -- ----------------------------------------------------------------------------
41 -- {Start of comments}
42 --
43 -- Description:
44 --  This procedure is the self-service wrapper procedure to the following
45 --  API: ota_frm_obj_inclusion_api.update_frm_obj_inclusion
46 --
47 -- Pre-requisites
48 --  All 'IN' parameters to this procedure have been appropriately derived.
49 --
50 -- Post Success:
51 --  p_return_status will return value indicating success.
52 --
53 -- Post Failure:
54 --  p_return_status will return value indication failure.
55 --
56 -- Access Status:
57 --  Internal Development use only.
58 --
59 -- {End of comments}
60 -- ----------------------------------------------------------------------------
61 PROCEDURE update_frm_obj_inclusion
62   (p_validate                     in     number    default hr_api.g_false_num
63   ,p_effective_date               in     date
64   ,p_object_id                    in     number
65   ,p_object_type                  in     varchar2
66   ,p_primary_flag                 in     varchar2  default hr_api.g_varchar2
67   ,p_start_date_active            in     date      default hr_api.g_date
68   ,p_end_date_active              in     date      default hr_api.g_date
69   ,p_forum_id                     in     number
70   ,p_object_version_number        in out nocopy number
71   ,p_return_status                   out nocopy varchar2
72   );
73 -- ----------------------------------------------------------------------------
74 -- |-----------------------< delete_frm_obj_inclusion >-----------------------|
75 -- ----------------------------------------------------------------------------
76 -- {Start of comments}
77 --
78 -- Description:
79 --  This procedure is the self-service wrapper procedure to the following
80 --  API: ota_frm_obj_inclusion_api.delete_frm_obj_inclusion
81 --
82 -- Pre-requisites
83 --  All 'IN' parameters to this procedure have been appropriately derived.
84 --
85 -- Post Success:
86 --  p_return_status will return value indicating success.
87 --
88 -- Post Failure:
89 --  p_return_status will return value indication failure.
90 --
91 -- Access Status:
92 --  Internal Development use only.
93 --
94 -- {End of comments}
95 -- ----------------------------------------------------------------------------
96 PROCEDURE delete_frm_obj_inclusion
97   (p_validate                     in     number    default hr_api.g_false_num
98   ,p_forum_id                     in     number
99   ,p_object_id                    in     number
100   ,p_object_type                  in     varchar2
101   ,p_object_version_number        in     number
102   ,p_return_status                   out nocopy varchar2
103   );
104  end ota_frm_obj_inclusion_swi;