DBA Data[Home] [Help]

APPS.HRASSACT dependencies on PAY_CORE_UTILS

Line 641: g_dynamic_contexts pay_core_utils.t_contexts_tab;

637: g_context_cache context_cache_type;
638: contexts_cached boolean := FALSE;
639: g_lat_bal_check_mode pay_action_parameters.parameter_value%TYPE := null;
640: g_debug boolean := hr_utility.debug_enabled;
641: g_dynamic_contexts pay_core_utils.t_contexts_tab;
642: --
643: --
644: --
645: /*------------------------ val_pact_rr_rules ---------------------------*/

Line 5224: select pay_core_utils.get_process_path(assactid)

5220: from pay_assignment_actions act
5221: where act.payroll_action_id = pactid
5222: and act.assignment_id = asgid;
5223: --
5224: select pay_core_utils.get_process_path(assactid)
5225: into l_process_path
5226: from dual;
5227: -- need to set process path for reversals
5228: update pay_assignment_actions

Line 5446: pay_core_utils.get_leg_context_iv_name('SOURCE_ID'

5442: -- -1 as before.
5443: -- Need to get input_value name for SOURCE_ID and SOURCE_NUMBER
5444: --
5445: hr_utility.trace('leg_code: '||leg_code);
5446: pay_core_utils.get_leg_context_iv_name('SOURCE_ID'
5447: ,leg_code
5448: ,l_src_iv
5449: ,l_iv_found);
5450: if (not l_iv_found) then

Line 5457: pay_core_utils.get_leg_context_iv_name('SOURCE_NUMBER'

5453: l_si_needed := 'Y';
5454: hr_utility.trace('l_src_iv: '||l_src_iv);
5455: end if;
5456: --
5457: pay_core_utils.get_leg_context_iv_name('SOURCE_NUMBER'
5458: ,leg_code
5459: ,l_src_num
5460: ,l_num_found);
5461: if (not l_num_found) then

Line 5468: pay_core_utils.get_leg_context_iv_name('SOURCE_NUMBER2'

5464: l_sn_needed := 'Y';
5465: hr_utility.trace('l_src_num: '||l_src_num);
5466: end if;
5467: --
5468: pay_core_utils.get_leg_context_iv_name('SOURCE_NUMBER2'
5469: ,leg_code
5470: ,l_src_num2
5471: ,l_num_found);
5472: if (not l_num_found) then

Line 5479: pay_core_utils.get_leg_context_iv_name('ORGANIZATION_ID'

5475: l_sn2_needed := 'Y';
5476: hr_utility.trace('l_src_num2: '||l_src_num2);
5477: end if;
5478: --
5479: pay_core_utils.get_leg_context_iv_name('ORGANIZATION_ID'
5480: ,leg_code
5481: ,l_org_id_iv
5482: ,l_num_found);
5483: if (not l_num_found) then

Line 5976: pay_core_utils.get_dynamic_contexts(p_busgrp,

5972: if g_debug then
5973: hr_utility.set_location(c_indent,10);
5974: end if;
5975: udca.sz := 0;
5976: pay_core_utils.get_dynamic_contexts(p_busgrp,
5977: g_dynamic_contexts);
5978: --
5979: --
5980: -- Get Payroll ID and Action Type

Line 6168: pay_core_utils.assert_condition('set_action_context:1',

6164: and hoi.org_information1 = 'HR_PAYEE';
6165:
6166: exception
6167: when no_data_found then
6168: pay_core_utils.assert_condition('set_action_context:1',
6169: 1 = 2);
6170: end;
6171: end if;
6172: --

Line 6563: pay_core_utils.get_leg_context_iv_name

6559: end if;
6560:
6561:
6562: -- calc jur code name
6563: pay_core_utils.get_leg_context_iv_name
6564: ('JURISDICTION_CODE',
6565: legcode,
6566: l_jc_name,
6567: l_found);

Line 6575: pay_core_utils.get_legislation_rule('RR_SPARSE',

6571: end if;
6572:
6573:
6574: -- set rr sparse leg_rule
6575: pay_core_utils.get_legislation_rule('RR_SPARSE',
6576: legcode,
6577: l_rule_mode,
6578: l_found
6579: );

Line 6587: pay_core_utils.get_upgrade_status(busgrp,

6583:
6584: if upper(l_rule_mode)='Y'
6585: then
6586: -- Confirm Enabling Upgrade has been made by customer
6587: pay_core_utils.get_upgrade_status(busgrp,
6588: 'ENABLE_RR_SPARSE',
6589: l_status);
6590:
6591: if upper(l_status)='N'

Line 6604: pay_core_utils.get_upgrade_status(busgrp,

6600: else
6601: l_rr_sparse :=FALSE;
6602: end if;
6603: --
6604: pay_core_utils.get_upgrade_status(busgrp,
6605: 'RR_SPARSE_JC',
6606: l_status);
6607: --
6608: if upper(l_status)='Y'

Line 8232: pay_core_utils.get_upgrade_status(p_bus_grp_id=> bus_grp_id,

8228: -- return contents of udca
8229: bal_context_string := get_contexts(udca);
8230:
8231:
8232: pay_core_utils.get_upgrade_status(p_bus_grp_id=> bus_grp_id,
8233: p_short_name=> 'SINGLE_BAL_TABLE',
8234: p_status=>l_status);
8235:
8236: if (l_status='N')

Line 8375: and pay_core_utils.get_process_path(child_asg.assignment_action_id)

8371: and child_asg.source_action_id is not null
8372: and child_asg.assignment_id=mast_asg.assignment_id
8373: and child_asg.payroll_action_id=mast_asg.payroll_action_id
8374: and child_asg.action_status<>'B'
8375: and pay_core_utils.get_process_path(child_asg.assignment_action_id)
8376: =rev_asg.process_path
8377: and rev_asg.assignment_action_id=p_act_id;
8378:
8379: return new_assactid;