DBA Data[Home] [Help]

APPS.BEN_DERIVE_PART_AND_RATE_FACTS dependencies on PAY_BALANCE_PKG

Line 614: l_tax_unit_id := pay_balance_pkg.get_context ('TAX_UNIT_ID');

610: if g_debug then
611: hr_utility.set_location('Entering ' || l_package,10);
612: end if;
613:
614: l_tax_unit_id := pay_balance_pkg.get_context ('TAX_UNIT_ID');
615:
616: open c_paa ;
617: fetch c_paa into l_assignment_action_id ;
618: close c_paa ;

Line 3258: pay_balance_pkg.get_value(p_rec.defined_balance_id

3254: if l_assignment_action_id is not null then
3255: --
3256: begin
3257: l_result :=
3258: pay_balance_pkg.get_value(p_rec.defined_balance_id
3259: ,l_assignment_action_id);
3260: exception
3261: when others then
3262: l_result := null ;

Line 3279: pay_balance_pkg.get_value(p_rec.defined_balance_id

3275: --
3276: /* --
3277: begin
3278: l_result :=
3279: pay_balance_pkg.get_value(p_rec.defined_balance_id
3280: ,l_ass_rec.assignment_id
3281: ,l_start_date);
3282: exception
3283: when others then

Line 3297: pay_balance_pkg.get_value(p_rec.defined_balance_id

3293: if g_debug then
3294: hr_utility.set_location (' l_min_ass_date ' || l_min_ass_date, 1999);
3295: end if;
3296: l_result :=
3297: pay_balance_pkg.get_value(p_rec.defined_balance_id
3298: ,l_ass_rec.assignment_id
3299: ,l_min_ass_date);
3300:
3301: end if ;

Line 3318: pay_balance_pkg.get_value(p_rec.defined_balance_id

3314: ,l_start_date);
3315: benutils.write(p_text=> fnd_message.get);
3316: --
3317: l_result :=
3318: pay_balance_pkg.get_value(p_rec.defined_balance_id
3319: ,l_ass_rec.assignment_id
3320: ,NVL(p_lf_evt_ocrd_dt
3321: ,p_effective_date));
3322: --

Line 3666: pay_balance_pkg.get_value(p_rec.defined_balance_id

3662: if l_assignment_action_id is not null then
3663: --
3664: begin
3665: l_result :=
3666: pay_balance_pkg.get_value(p_rec.defined_balance_id
3667: ,l_assignment_action_id);
3668: exception
3669: when others then
3670: l_result := null ;

Line 3688: pay_balance_pkg.get_value(p_rec.defined_balance_id

3684: --
3685: /*
3686: --
3687: l_result :=
3688: pay_balance_pkg.get_value(p_rec.defined_balance_id
3689: ,l_ass_rec.assignment_id
3690: ,l_start_date);
3691:
3692: IF l_result IS NULL THEN

Line 3705: pay_balance_pkg.get_value(p_rec.defined_balance_id

3701: hr_utility.set_location (' l_min_ass_date ' || l_min_ass_date, 1999);
3702: end if;
3703: if l_min_ass_date is not null then
3704: l_result :=
3705: pay_balance_pkg.get_value(p_rec.defined_balance_id
3706: ,l_ass_rec.assignment_id
3707: ,l_min_ass_date);
3708:
3709: end if ;

Line 3724: pay_balance_pkg.get_value(p_rec.defined_balance_id

3720: fnd_message.set_token('DATE'
3721: ,l_start_date);
3722: benutils.write(p_text=> fnd_message.get);
3723: l_result :=
3724: pay_balance_pkg.get_value(p_rec.defined_balance_id
3725: ,l_ass_rec.assignment_id
3726: ,NVL(p_lf_evt_ocrd_dt
3727: ,p_effective_date));
3728: --

Line 11161: --- this avoid the error from the pay_balance_pkg.get_value

11157: --
11158: END derive_rates_and_factors;
11159: --
11160: --- this procedure set the context_id to tax_unit_id
11161: --- this avoid the error from the pay_balance_pkg.get_value
11162:
11163: procedure set_taxunit_context
11164: (p_person_id in number
11165: ,p_business_group_id in number

Line 11199: pay_balance_pkg.set_context ('TAX_UNIT_ID', l_tax_unit_id );

11195: if g_debug then
11196: hr_utility.set_location('tax_unit_id' || l_tax_unit_id , 10);
11197: end if;
11198: if l_tax_unit_id is not null then
11199: pay_balance_pkg.set_context ('TAX_UNIT_ID', l_tax_unit_id );
11200: end if ;
11201:
11202: if g_debug then
11203: hr_utility.set_location('Leaving ' || l_package,10);