DBA Data[Home] [Help]

APPS.PER_RI_CRP_DEFAULT_SETTINGS dependencies on HR_API

Line 689: P_LANGUAGE_CODE => HR_API.USERENV_LANG,

685: ELSE
686:
687: PAY_ORG_PAYMENT_METHOD_API.CREATE_ORG_PAYMENT_METHOD(P_VALIDATE => false,
688: P_EFFECTIVE_DATE => l_effective_date,
689: P_LANGUAGE_CODE => HR_API.USERENV_LANG,
690: P_BUSINESS_GROUP_ID => p_bg_id,
691: P_ORG_PAYMENT_METHOD_NAME => l_payment_method_name,
692: P_PAYMENT_TYPE_ID => l_payment_type_id,
693: P_CURRENCY_CODE => l_currency_code,

Line 1609: From hr_api_hooks ahk

1605: ,c_api_module_type varchar2
1606: ,c_api_hook_type varchar2 ) Is
1607: Select ahm.api_module_id
1608: , ahk.api_hook_id
1609: From hr_api_hooks ahk
1610: ,hr_api_modules ahm
1611: Where ahm.module_name = c_module_name
1612: and ahm.api_module_type = c_api_module_type
1613: and ahk.api_hook_type = c_api_hook_type

Line 1610: ,hr_api_modules ahm

1606: ,c_api_hook_type varchar2 ) Is
1607: Select ahm.api_module_id
1608: , ahk.api_hook_id
1609: From hr_api_hooks ahk
1610: ,hr_api_modules ahm
1611: Where ahm.module_name = c_module_name
1612: and ahm.api_module_type = c_api_module_type
1613: and ahk.api_hook_type = c_api_hook_type
1614: and ahk.api_module_id = ahm.api_module_id;

Line 1619: From hr_api_hook_calls hc

1615:
1616:
1617: Cursor csr_api_hook_call(c_hook_id Number) Is
1618: Select hc.api_hook_call_id
1619: From hr_api_hook_calls hc
1620: Where hc.api_hook_id = c_hook_id
1621: and hc.legislation_code Is Null
1622: and hc.call_package = 'PER_RI_CREATE_CRP_EMPLOYEE'
1623: and hc.call_procedure = 'SET_USER_ACCT_DETAILS'

Line 1629: From hr_api_user_hook_reports

1625:
1626:
1627: Cursor csr_hook_report Is
1628: Select text
1629: From hr_api_user_hook_reports
1630: Where session_id = userenv('SESSIONID')
1631: Order By line;
1632:
1633: l_api_hook_id Number;

Line 1651: /* hr_api_hook_call_api.create_api_hook_call

1647: Fetch csr_api_hook_call Into l_api_hook_call_id;
1648:
1649: If csr_api_hook_call%NotFound Then
1650:
1651: /* hr_api_hook_call_api.create_api_hook_call
1652: (p_validate => false
1653: ,p_effective_date => Sysdate
1654: ,p_api_hook_id => l_api_hook_id
1655: ,p_api_hook_call_type => 'PP'

Line 1683: hr_api_user_hooks_utility.create_hooks_add_report(l_api_module_id);

1679: End If;
1680:
1681: Close csr_api_hook_call;
1682:
1683: hr_api_user_hooks_utility.create_hooks_add_report(l_api_module_id);
1684:
1685: For l_hook_report In csr_hook_report Loop
1686:
1687: fnd_file.put_line(fnd_file.log,l_hook_report.text);

Line 1691: hr_api_user_hooks_utility.clear_hook_report;

1687: fnd_file.put_line(fnd_file.log,l_hook_report.text);
1688:
1689: End Loop;
1690:
1691: hr_api_user_hooks_utility.clear_hook_report;
1692:
1693: End create_hook ;
1694:
1695: