DBA Data[Home] [Help]

APPS.HR_API_HOOK_CALL_API dependencies on HR_API

Line 1: Package hr_api_hook_call_api AUTHID CURRENT_USER as

1: Package hr_api_hook_call_api AUTHID CURRENT_USER as
2: /* $Header: peahcapi.pkh 120.3 2006/09/13 12:34:17 sgelvi noship $ */
3: /*#
4: * This package contains APIs for maintaining User Hook Calls.
5: * @rep:scope public

Line 18: * Creates user hook call information in the HR_API_HOOK_CALLS table. The user

14: -- {Start Of Comments}
15: /*#
16: * This API creates a User Hook Call.
17: *
18: * Creates user hook call information in the HR_API_HOOK_CALLS table. The user
19: * hook call specifies which extra logic, package procedures or formula should
20: * be called from the API hook points. Each row should be a child of a parent
21: * API Hook which already exists on the HR_API_HOOKS table.
22: *

Line 21: * API Hook which already exists on the HR_API_HOOKS table.

17: *
18: * Creates user hook call information in the HR_API_HOOK_CALLS table. The user
19: * hook call specifies which extra logic, package procedures or formula should
20: * be called from the API hook points. Each row should be a child of a parent
21: * API Hook which already exists on the HR_API_HOOKS table.
22: *
23: *

Licensing
24: * This API is licensed for use with all products in the HRMS Product Family.
25: *

Line 41: * @param p_api_hook_id Acts as the foreign key to the HR_API_HOOKS table.

37: * then the database will be modified.
38: * @param p_effective_date Reference date for validating lookup values are
39: * applicable during the start to end active date range. This date does not
40: * determine when the changes take effect.
41: * @param p_api_hook_id Acts as the foreign key to the HR_API_HOOKS table.
42: * @param p_api_hook_call_type The type of the hook call. Can only be set to
43: * 'PP' for the first version.
44: * @param p_sequence When more than one row exists for the same API_HOOK_ID,
45: * the sequence will affect the order of the hook calls (low numbers will be

Line 165: * will be set to the new version number of the updated HR API Hook Call. If

161: * @param p_call_procedure Name of the procedure within the call package that
162: * the API hook should call.
163: * @param p_object_version_number Pass in the current version number of the HR
164: * API Hook Call to be updated. When the API completes if p_validate is false,
165: * will be set to the new version number of the updated HR API Hook Call. If
166: * p_validate is true will be set to the same value which was passed in.
167: * @rep:displayname Update API Hook Call
168: * @rep:category BUSINESS_ENTITY HR_USER_HOOK
169: * @rep:scope public

Line 180: p_sequence in number default hr_api.g_number,

176: procedure update_api_hook_call
177: (p_validate in boolean default false,
178: p_effective_date in date,
179: p_api_hook_call_id in number,
180: p_sequence in number default hr_api.g_number,
181: p_enabled_flag in varchar2 default hr_api.g_varchar2,
182: p_call_package in varchar2 default hr_api.g_varchar2,
183: p_call_procedure in varchar2 default hr_api.g_varchar2,
184: p_object_version_number in out nocopy number) ;

Line 181: p_enabled_flag in varchar2 default hr_api.g_varchar2,

177: (p_validate in boolean default false,
178: p_effective_date in date,
179: p_api_hook_call_id in number,
180: p_sequence in number default hr_api.g_number,
181: p_enabled_flag in varchar2 default hr_api.g_varchar2,
182: p_call_package in varchar2 default hr_api.g_varchar2,
183: p_call_procedure in varchar2 default hr_api.g_varchar2,
184: p_object_version_number in out nocopy number) ;
185:

Line 182: p_call_package in varchar2 default hr_api.g_varchar2,

178: p_effective_date in date,
179: p_api_hook_call_id in number,
180: p_sequence in number default hr_api.g_number,
181: p_enabled_flag in varchar2 default hr_api.g_varchar2,
182: p_call_package in varchar2 default hr_api.g_varchar2,
183: p_call_procedure in varchar2 default hr_api.g_varchar2,
184: p_object_version_number in out nocopy number) ;
185:
186: end hr_api_hook_call_api;

Line 183: p_call_procedure in varchar2 default hr_api.g_varchar2,

179: p_api_hook_call_id in number,
180: p_sequence in number default hr_api.g_number,
181: p_enabled_flag in varchar2 default hr_api.g_varchar2,
182: p_call_package in varchar2 default hr_api.g_varchar2,
183: p_call_procedure in varchar2 default hr_api.g_varchar2,
184: p_object_version_number in out nocopy number) ;
185:
186: end hr_api_hook_call_api;

Line 186: end hr_api_hook_call_api;

182: p_call_package in varchar2 default hr_api.g_varchar2,
183: p_call_procedure in varchar2 default hr_api.g_varchar2,
184: p_object_version_number in out nocopy number) ;
185:
186: end hr_api_hook_call_api;