DBA Data[Home] [Help]

APPS.PAY_BATCH_BALANCEADJ_WRAPPER dependencies on PAY_ELEMENT_TYPES_F

Line 687: select element_information4 from pay_element_types_f

683:
684: -- Added the cursor to handle multiple GRE's for CA legislation.
685:
686: cursor get_element_type IS
687: select element_information4 from pay_element_types_f
688: where element_type_id = p_element_type_id
689: and sysdate between effective_start_date and effective_end_date
690: and business_group_id = p_business_group_id;
691:

Line 1735: l_currency_code pay_element_types_f.input_currency_code%TYPE;

1731: --
1732: l_uom_value pay_input_values_f.UOM%TYPE;
1733: l_lookup_type pay_input_values_f.LOOKUP_TYPE%TYPE;
1734: l_value_set_id pay_input_values_f.VALUE_SET_ID%TYPE;
1735: l_currency_code pay_element_types_f.input_currency_code%TYPE;
1736: l_count number;
1737: l_found number;
1738: l_rgeflg varchar2(2);
1739: --

Line 1763: pay_element_types_f etp

1759: inv.LOOKUP_TYPE,
1760: inv.VALUE_SET_ID,
1761: etp.input_currency_code
1762: from pay_input_values_f inv,
1763: pay_element_types_f etp
1764: where inv.element_type_id = p_element_type_id
1765: and etp.element_type_id = p_element_type_id
1766: and p_session_date between inv.effective_start_date
1767: and inv.effective_end_date

Line 1780: pay_element_types_f pet

1776: , piv.lookup_type
1777: , piv.value_set_id
1778: , pet.input_currency_code
1779: FROM pay_input_values_f piv,
1780: pay_element_types_f pet
1781: WHERE piv.element_type_id = p_element_type_id
1782: AND pet.element_type_id = p_element_type_id
1783: AND piv.input_value_id = p_input_value_number
1784: AND p_session_date BETWEEN piv.effective_start_date AND piv.effective_end_date