DBA Data[Home] [Help]

APPS.HR_LEG_API_HOOK_CALL_INTERNAL dependencies on HR_API

Line 12: -- information in the HR_API_HOOK_CALLS table. The hook call information

8: -- {Start Of Comments}
9: --
10: -- Description:
11: -- This business process allows legislation groups to create hook call
12: -- information in the HR_API_HOOK_CALLS table. The hook call information
13: -- specifies which extra logic, package procedures or formula should be
14: -- called from the API hook points.
15: --
16: -- Each row should be a child of a parent API Hook which already exists on the

Line 17: -- HR_API_HOOKS table. The p_api_hook_id acts as a foreign key to this table.

13: -- specifies which extra logic, package procedures or formula should be
14: -- called from the API hook points.
15: --
16: -- Each row should be a child of a parent API Hook which already exists on the
17: -- HR_API_HOOKS table. The p_api_hook_id acts as a foreign key to this table.
18: --
19: -- The legislation code value should always be set and indicates that the extra
20: -- logic should only be called for a hook call when data corresponds to the
21: -- legislation.

Line 104: -- HR_API_HOOK_CALLS table.

100: -- {Start Of Comments}
101: --
102: -- Description:
103: -- This API enables a Legislation Group to delete a row on the
104: -- HR_API_HOOK_CALLS table.
105: --
106: -- Only the legislation group which created the row where legislation
107: -- code is not not null can delete the row.
108: --

Line 147: -- HR_API_HOOK_CALLS table.

143: -- {Start Of Comments}
144: --
145: -- Description:
146: -- This API enables a Legislation Group to update a row on the
147: -- HR_API_HOOK_CALLS table.
148: --
149: -- Only the legislation group which created the row where legislation
150: -- code is not null can update the row.
151: --

Line 202: p_sequence in number default hr_api.g_number,

198: procedure update_leg_api_hook_call
199: (p_validate in boolean default false,
200: p_effective_date in date,
201: p_api_hook_call_id in number,
202: p_sequence in number default hr_api.g_number,
203: p_enabled_flag in varchar2 default hr_api.g_varchar2,
204: p_call_package in varchar2 default hr_api.g_varchar2,
205: p_call_procedure in varchar2 default hr_api.g_varchar2,
206: p_object_version_number in out nocopy number

Line 203: p_enabled_flag in varchar2 default hr_api.g_varchar2,

199: (p_validate in boolean default false,
200: p_effective_date in date,
201: p_api_hook_call_id in number,
202: p_sequence in number default hr_api.g_number,
203: p_enabled_flag in varchar2 default hr_api.g_varchar2,
204: p_call_package in varchar2 default hr_api.g_varchar2,
205: p_call_procedure in varchar2 default hr_api.g_varchar2,
206: p_object_version_number in out nocopy number
207: );

Line 204: p_call_package in varchar2 default hr_api.g_varchar2,

200: p_effective_date in date,
201: p_api_hook_call_id in number,
202: p_sequence in number default hr_api.g_number,
203: p_enabled_flag in varchar2 default hr_api.g_varchar2,
204: p_call_package in varchar2 default hr_api.g_varchar2,
205: p_call_procedure in varchar2 default hr_api.g_varchar2,
206: p_object_version_number in out nocopy number
207: );
208: end hr_leg_api_hook_call_internal;

Line 205: p_call_procedure in varchar2 default hr_api.g_varchar2,

201: p_api_hook_call_id in number,
202: p_sequence in number default hr_api.g_number,
203: p_enabled_flag in varchar2 default hr_api.g_varchar2,
204: p_call_package in varchar2 default hr_api.g_varchar2,
205: p_call_procedure in varchar2 default hr_api.g_varchar2,
206: p_object_version_number in out nocopy number
207: );
208: end hr_leg_api_hook_call_internal;