DBA Data[Home] [Help]

APPS.PAY_AC_UTIL dependencies on PAY_BALANCE_PKG

Line 452: ** pay_balance_pkg.get_value to get value for given

448: ** p_tax_unit_id
449: ** Returns : Valueed Balance Id
450: ** Purpose : This function has 3 parameters as input. This function
451: ** sets the context for Tax Unit Id and then calling
452: ** pay_balance_pkg.get_value to get value for given
453: ** assignment_action id and defined balance id.
454: *********************************************************************/
455: FUNCTION get_value(p_assignment_action_id in number
456: ,p_defined_balance_id in number

Line 465: pay_balance_pkg.set_context('TAX_UNIT_ID',p_tax_unit_id);

461:
462: if gn_tax_unit_id <> p_tax_unit_id then
463: hr_utility.trace('p_tax_unit_id : '||p_tax_unit_id);
464: hr_utility.trace('gn_tax_unit_id : '||gn_tax_unit_id);
465: pay_balance_pkg.set_context('TAX_UNIT_ID',p_tax_unit_id);
466: gn_tax_unit_id := p_tax_unit_id;
467: end if;
468: -- hr_utility.trace_off;
469:

Line 470: ln_value := nvl(pay_balance_pkg.get_value(p_defined_balance_id

466: gn_tax_unit_id := p_tax_unit_id;
467: end if;
468: -- hr_utility.trace_off;
469:
470: ln_value := nvl(pay_balance_pkg.get_value(p_defined_balance_id
471: ,p_assignment_action_id),0);
472: return ln_value;
473:
474: EXCEPTION