DBA Data[Home] [Help]

APPS.HR_US_W4_EX dependencies on PAY_BALANCE_PKG

Line 179: pay_balance_pkg.set_context('TAX_UNIT_ID',w4_tax_unit_id);

175: */
176:
177: if l_balance is null then
178:
179: pay_balance_pkg.set_context('TAX_UNIT_ID',w4_tax_unit_id);
180:
181: if w4_jurisdiction_code <> '00-000-0000' then
182:
183: pay_balance_pkg.set_context('JURISDICTION_CODE',w4_jurisdiction_code);

Line 183: pay_balance_pkg.set_context('JURISDICTION_CODE',w4_jurisdiction_code);

179: pay_balance_pkg.set_context('TAX_UNIT_ID',w4_tax_unit_id);
180:
181: if w4_jurisdiction_code <> '00-000-0000' then
182:
183: pay_balance_pkg.set_context('JURISDICTION_CODE',w4_jurisdiction_code);
184: end if;
185:
186: l_hours_ytd := nvl(pay_balance_pkg.get_value
187: (p_defined_balance_id => bal_db_item('REGULAR_HOURS_WORKED_PER_GRE_YTD'),

Line 186: l_hours_ytd := nvl(pay_balance_pkg.get_value

182:
183: pay_balance_pkg.set_context('JURISDICTION_CODE',w4_jurisdiction_code);
184: end if;
185:
186: l_hours_ytd := nvl(pay_balance_pkg.get_value
187: (p_defined_balance_id => bal_db_item('REGULAR_HOURS_WORKED_PER_GRE_YTD'),
188: p_assignment_action_id => l_bal_aaid),0);
189:
190: if l_hours_ytd = 0 then

Line 193: l_gross_ytd := nvl(pay_balance_pkg.get_value

189:
190: if l_hours_ytd = 0 then
191: l_gross_per_week := 0;
192: else
193: l_gross_ytd := nvl(pay_balance_pkg.get_value
194: (p_defined_balance_id => bal_db_item('GROSS_EARNINGS_PER_GRE_YTD'),
195: p_assignment_action_id => l_bal_aaid),0);
196:
197: l_gross_per_hour := l_gross_ytd/l_hours_ytd;