DBA Data[Home] [Help]

APPS.PER_ACCRUAL_CALC_FUNCTIONS dependencies on PAY_ELEMENT_ENTRIES_F

Line 215: from pay_element_entries_f pee,

211: ,P_Calculation_Date IN Date) return Boolean is
212:
213: cursor c_enrolled is
214: select 1
215: from pay_element_entries_f pee,
216: pay_element_links_f pel,
217: pay_element_types_f pet
218: where pel.element_link_id = pee.element_link_id
219: and pel.element_type_id = pet.element_type_id

Line 475: -- index PAY_ELEMENT_ENTRIES_F_N53 is now used in hint to resolve bug 5677610

471: g_add_sub_entries g_add_subtract;
472: --
473: cursor c_get_contribution is
474: -- index hint applied for bug 4737028 to avoid bitmap conversion and usage of proper index
475: -- index PAY_ELEMENT_ENTRIES_F_N53 is now used in hint to resolve bug 5677610
476: -- index PAY_INPUT_VALUES_F_N50 is now used in hint to resolve bug 6621800
477:
478: select /*+ index(pee PAY_ELEMENT_ENTRIES_F_N53,iv PAY_INPUT_VALUES_F_N50 )*/ fnd_number.canonical_to_number(pev.screen_entry_value) amount,
479: -- Bug 4551666, bug6621800

Line 478: select /*+ index(pee PAY_ELEMENT_ENTRIES_F_N53,iv PAY_INPUT_VALUES_F_N50 )*/ fnd_number.canonical_to_number(pev.screen_entry_value) amount,

474: -- index hint applied for bug 4737028 to avoid bitmap conversion and usage of proper index
475: -- index PAY_ELEMENT_ENTRIES_F_N53 is now used in hint to resolve bug 5677610
476: -- index PAY_INPUT_VALUES_F_N50 is now used in hint to resolve bug 6621800
477:
478: select /*+ index(pee PAY_ELEMENT_ENTRIES_F_N53,iv PAY_INPUT_VALUES_F_N50 )*/ fnd_number.canonical_to_number(pev.screen_entry_value) amount,
479: -- Bug 4551666, bug6621800
480: ncr.add_or_subtract add_or_subtract
481: from pay_accrual_plans pap,
482: pay_net_calculation_rules ncr,

Line 483: pay_element_entries_f pee,

479: -- Bug 4551666, bug6621800
480: ncr.add_or_subtract add_or_subtract
481: from pay_accrual_plans pap,
482: pay_net_calculation_rules ncr,
483: pay_element_entries_f pee,
484: pay_element_entry_values_f pev,
485: pay_input_values_f iv
486: where pap.accrual_plan_id = p_plan_id
487: and pee.assignment_id = p_assignment_id

Line 616: select /*+ index(pee PAY_ELEMENT_ENTRIES_F_N53)*/ fnd_number.canonical_to_number(nvl(pev.screen_entry_value, 0)) carryover,

612:
613: --
614: cursor c_get_carryover is
615: -- index hint applied for bug 4737028 to avoid bitmap conversion and usage of proper index
616: select /*+ index(pee PAY_ELEMENT_ENTRIES_F_N53)*/ fnd_number.canonical_to_number(nvl(pev.screen_entry_value, 0)) carryover,
617: fnd_date.canonical_to_date(nvl(pev1.screen_entry_value,
618: p_calculation_date)) expiry_date
619: from pay_accrual_plans pap,
620: pay_element_entry_values_f pev,

Line 624: pay_element_entries_f pee

620: pay_element_entry_values_f pev,
621: pay_element_entry_values_f pev1,
622: pay_input_values_f piv,
623: pay_input_values_f piv1,
624: pay_element_entries_f pee
625: where pap.accrual_plan_id = p_plan_id
626: and pee.assignment_id = p_assignment_id
627: and pee.element_entry_id = pev.element_entry_id
628: and pee.element_entry_id = pev1.element_entry_id