DBA Data[Home] [Help]

APPS.PAY_GB_PAYROLL_ACTIONS_PKG dependencies on PAY_BALANCE_PKG

Line 293: pay_balance_pkg.set_context ('payroll_action_id',

289: if p_database_item = G_TAX_PERIOD_ITEM then
290: --
291: if p_payroll_action_id is not null then
292: --
293: pay_balance_pkg.set_context ('payroll_action_id',
294: to_char(p_payroll_action_id));
295: --
296: return true;
297: --

Line 309: pay_balance_pkg.set_context ('date_earned',

305: --
306: if p_date_earned is not null and
307: p_assignment_id is not null then
308: --
309: pay_balance_pkg.set_context ('date_earned',
310: p_date_earned);
311: --
312: pay_balance_pkg.set_context ('assignment_id',
313: to_char(p_assignment_id));

Line 312: pay_balance_pkg.set_context ('assignment_id',

308: --
309: pay_balance_pkg.set_context ('date_earned',
310: p_date_earned);
311: --
312: pay_balance_pkg.set_context ('assignment_id',
313: to_char(p_assignment_id));
314: --
315: return true;
316: --

Line 341: return pay_balance_pkg.run_db_item

337: l_legislation_code varchar2(30) := 'GB';
338: --
339: begin
340: --
341: return pay_balance_pkg.run_db_item
342: (p_database_name => p_database_item,
343: p_bus_group_id => l_business_group_id,
344: p_legislation_code => l_legislation_code);
345: --

Line 862: return pay_balance_pkg.get_value

858: (p_balance_type => l_balance_type,
859: p_dimension_suffix => l_dimension_suffix);
860: --
861: --
862: return pay_balance_pkg.get_value
863: (p_defined_balance_id => l_defined_balance_id,
864: p_assignment_action_id => p_assignment_action_id);
865: --
866: --

Line 930: return pay_balance_pkg.get_value

926: if l_defined_balance_id is null
927: then
928: return 0;
929: else
930: return pay_balance_pkg.get_value
931: (p_defined_balance_id => l_defined_balance_id,
932: p_assignment_action_id => p_assignment_action_id);
933: end if;
934: --

Line 1253: return pay_balance_pkg.get_value

1249: l_defined_balance_id := defined_balance_id
1250: (p_balance_type => l_balance_type,
1251: p_dimension_suffix => l_dimension_suffix);
1252: --
1253: return pay_balance_pkg.get_value
1254: (p_defined_balance_id => l_defined_balance_id,
1255: p_assignment_action_id => p_assignment_action_id);
1256: --
1257: end;