DBA Data[Home] [Help]

PACKAGE: APPS.PQH_COPY_ENTITY_FUNCTIONS_API

Source


1 Package pqh_copy_entity_functions_api AUTHID CURRENT_USER as
2 /* $Header: pqcefapi.pkh 120.0 2005/05/29 01:39:07 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< create_copy_entity_function >------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
11 -- Prerequisites:
12 --
13 --
14 -- In Parameters:
15 --   Name                           Reqd Type     Description
16 --   p_validate                     Yes  boolean  Commit or Rollback.
17 --   p_table_route_id               Yes  number
18 --   p_function_type_cd             No   varchar2
19 --   p_pre_copy_function_name       No   varchar2
20 --   p_copy_function_name           No   varchar2
21 --   p_post_copy_function_name      No   varchar2
22 --   p_context                      Yes  varchar2
23 --   p_effective_date           Yes  date      Session Date.
24 --
25 -- Post Success:
26 --
27 -- Out Parameters:
28 --   Name                                Type     Description
29 --   p_copy_entity_function_id      Yes  number    PK of record
30 --   p_object_version_number        Yes  number    OVN of record
31 --
32 -- Post Failure:
33 --
34 -- Access Status:
35 --   Public.
36 --
37 -- {End Of Comments}
38 --
39 procedure create_copy_entity_function
40 (
41    p_validate                       in boolean    default false
42   ,p_copy_entity_function_id        out nocopy number
43   ,p_table_route_id                 in  number    default null
44   ,p_function_type_cd               in  varchar2  default null
45   ,p_pre_copy_function_name         in  varchar2  default null
46   ,p_copy_function_name             in  varchar2  default null
47   ,p_post_copy_function_name        in  varchar2  default null
48   ,p_object_version_number          out nocopy number
49   ,p_context                        in  varchar2  default null
50   ,p_effective_date            in  date
51  );
52 -- ----------------------------------------------------------------------------
53 -- |------------------------< update_copy_entity_function >------------------------|
54 -- ----------------------------------------------------------------------------
55 -- {Start Of Comments}
56 --
57 -- Description:
58 --
59 -- Prerequisites:
60 --
61 --
62 -- In Parameters:
63 --   Name                           Reqd Type     Description
64 --   p_validate                     Yes  boolean  Commit or Rollback.
65 --   p_copy_entity_function_id      Yes  number    PK of record
66 --   p_table_route_id               Yes  number
67 --   p_function_type_cd             No   varchar2
68 --   p_pre_copy_function_name       No   varchar2
69 --   p_copy_function_name           No   varchar2
70 --   p_post_copy_function_name      No   varchar2
71 --   p_context                      Yes  varchar2
72 --   p_effective_date          Yes  date       Session Date.
73 --
74 -- Post Success:
75 --
76 --   Name                           Type     Description
77 --   p_object_version_number        Yes  number    OVN of record
78 --
79 -- Post Failure:
80 --
81 -- Access Status:
82 --   Public.
83 --
84 -- {End Of Comments}
85 --
86 procedure update_copy_entity_function
87   (
88    p_validate                       in boolean    default false
89   ,p_copy_entity_function_id        in  number
90   ,p_table_route_id                 in  number    default hr_api.g_number
91   ,p_function_type_cd               in  varchar2  default hr_api.g_varchar2
92   ,p_pre_copy_function_name         in  varchar2  default hr_api.g_varchar2
93   ,p_copy_function_name             in  varchar2  default hr_api.g_varchar2
94   ,p_post_copy_function_name        in  varchar2  default hr_api.g_varchar2
95   ,p_object_version_number          in out nocopy number
96   ,p_context                        in  varchar2  default hr_api.g_varchar2
97   ,p_effective_date            in  date
98   );
99 --
100 -- ----------------------------------------------------------------------------
101 -- |------------------------< delete_copy_entity_function >------------------------|
102 -- ----------------------------------------------------------------------------
103 -- {Start Of Comments}
104 --
105 -- Description:
106 --
107 -- Prerequisites:
108 --
109 --
110 -- In Parameters:
111 --   Name                           Reqd Type     Description
112 --   p_validate                     Yes  boolean  Commit or Rollback.
113 --   p_copy_entity_function_id      Yes  number    PK of record
114 --   p_effective_date          Yes  date     Session Date.
115 --
116 -- Post Success:
117 --
118 --   Name                           Type     Description
119 --   p_object_version_number        Yes  number    OVN of record
120 --
121 -- Post Failure:
122 --
123 -- Access Status:
124 --   Public.
125 --
126 -- {End Of Comments}
127 --
128 procedure delete_copy_entity_function
129   (
130    p_validate                       in boolean        default false
131   ,p_copy_entity_function_id        in  number
132   ,p_object_version_number          in number
133   ,p_effective_date            in date
134   );
135 --
136 
137 --
138 
139 
140 
141 end pqh_copy_entity_functions_api;