DBA Data[Home] [Help]

APPS.HR_EFC_INFO dependencies on HR_EFC_STUBS

Line 687: l_process := hr_efc_stubs.cust_validate_hr_summary

683: THEN
684: l_process := 'Y';
685: ELSE
686: -- Lookup may be user_defined
687: l_process := hr_efc_stubs.cust_validate_hr_summary
688: (p_colname => p_colname
689: ,p_item => p_item
690: ,p_business_group_id => p_business_group_id);
691: END IF;

Line 698: l_process := hr_efc_stubs.cust_validate_hr_summary

694: -- Check Oracle Defined Lookups (as above)
695: -- None.
696: --
697: -- Check User defined lookups
698: l_process := hr_efc_stubs.cust_validate_hr_summary
699: (p_colname => p_colname
700: ,p_item => p_item
701: ,p_business_group_id => p_business_group_id);
702: END IF;

Line 798: hr_efc_stubs.chk_customer_mapping

794: (p_territory_code IS NULL)) THEN
795: l_payment_type := 'Cheque';
796: l_territory_code := NULL;
797: ELSE -- Deal with customer mappings
798: hr_efc_stubs.chk_customer_mapping
799: (p_payment_type => p_payment_type
800: ,p_territory_code => p_territory_code
801: ,p_new_payment_type => l_payment_type
802: ,p_new_territory_code => l_territory_code

Line 1424: lc_process := hr_efc_stubs.cust_valid_budget_unit(p_uom

1420: lc_process := 'Y';
1421: -- ELSIF -- Code other allowed types here
1422: ELSE
1423: -- Check for customer specific units
1424: lc_process := hr_efc_stubs.cust_valid_budget_unit(p_uom
1425: ,p_business_group_id);
1426: END IF;
1427: --
1428: RETURN lc_process;

Line 1591: l_rowsize := hr_efc_stubs.cust_find_row_size(l_table);

1587: BEGIN
1588: --
1589: l_table := upper(p_table);
1590: -- Check if customer version returns a value
1591: l_rowsize := hr_efc_stubs.cust_find_row_size(l_table);
1592: IF l_rowsize = 0 THEN
1593: --
1594: -- Customer version returns nothing, so work from our version
1595: FOR c1 IN csr_find_details(l_table) LOOP

Line 1656: IF NVL(hr_efc_stubs.cust_process_cross_bg_data, 'Y') = 'N' THEN

1652: FUNCTION process_cross_bg_data RETURN varchar2 IS
1653: --
1654: BEGIN
1655: --
1656: IF NVL(hr_efc_stubs.cust_process_cross_bg_data, 'Y') = 'N' THEN
1657: RETURN 'N';
1658: ELSE
1659: RETURN 'Y';
1660: END IF;