We have to find out that what user hook package and procedure we have to use to satisfy the requirement.
for that we have to know on which table we have to do modifications, after knowing that
we can run below query to find out the user hook package and procedure.
Here for example I am taking per_pay_proposals table.
select ahk.api_hook_id,
ahk.hook_package,
ahk.hook_procedure,
ahm.API_MODULE_ID
from hr_api_hooks ahk,
hr_api_modules ahm
where (ahm.module_name='PER_PAY_PROPOSALS'
or ahm.module_name='PER_PAY_PROPOSALS')
and ahm.api_module_type = 'RH'
and ahk.api_hook_type = 'AI'
and ahk.api_module_id=ahm.api_module_id;
No comments:
Post a Comment