DBA Data[Home] [Help]

APPS.BEN_DERIVE_PART_AND_RATE_FACTS dependencies on PAY_BALANCE_PKG

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

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

Line 3259: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3280: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3298: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3319: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3667: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3689: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3706: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

Line 3725: pay_balance_pkg.get_value(p_rec.defined_balance_id

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

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

11230: --
11231: END derive_rates_and_factors;
11232: --
11233: --- this procedure set the context_id to tax_unit_id
11234: --- this avoid the error from the pay_balance_pkg.get_value
11235:
11236: procedure set_taxunit_context
11237: (p_person_id in number
11238: ,p_business_group_id in number

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

11268: if g_debug then
11269: hr_utility.set_location('tax_unit_id' || l_tax_unit_id , 10);
11270: end if;
11271: if l_tax_unit_id is not null then
11272: pay_balance_pkg.set_context ('TAX_UNIT_ID', l_tax_unit_id );
11273: end if ;
11274:
11275: if g_debug then
11276: hr_utility.set_location('Leaving ' || l_package,10);