DBA Data[Home] [Help]

APPS.PAY_GB_PAYROLL_ACTIONS_PKG dependencies on PAY_BALANCE_PKG

Line 301: pay_balance_pkg.set_context ('payroll_action_id',

297: if p_database_item = G_TAX_PERIOD_ITEM then
298: --
299: if p_payroll_action_id is not null then
300: --
301: pay_balance_pkg.set_context ('payroll_action_id',
302: to_char(p_payroll_action_id));
303: --
304: return true;
305: --

Line 317: pay_balance_pkg.set_context ('date_earned',

313: --
314: if p_date_earned is not null and
315: p_assignment_id is not null then
316: --
317: pay_balance_pkg.set_context ('date_earned',
318: p_date_earned);
319: --
320: pay_balance_pkg.set_context ('assignment_id',
321: to_char(p_assignment_id));

Line 320: pay_balance_pkg.set_context ('assignment_id',

316: --
317: pay_balance_pkg.set_context ('date_earned',
318: p_date_earned);
319: --
320: pay_balance_pkg.set_context ('assignment_id',
321: to_char(p_assignment_id));
322: --
323: return true;
324: --

Line 349: return pay_balance_pkg.run_db_item

345: l_legislation_code varchar2(30) := 'GB';
346: --
347: begin
348: --
349: return pay_balance_pkg.run_db_item
350: (p_database_name => p_database_item,
351: p_bus_group_id => l_business_group_id,
352: p_legislation_code => l_legislation_code);
353: --

Line 879: return pay_balance_pkg.get_value

875: (p_balance_type => l_balance_type,
876: p_dimension_suffix => l_dimension_suffix);
877: --
878: --
879: return pay_balance_pkg.get_value
880: (p_defined_balance_id => l_defined_balance_id,
881: p_assignment_action_id => p_assignment_action_id);
882: --
883: --

Line 947: return pay_balance_pkg.get_value

943: if l_defined_balance_id is null
944: then
945: return 0;
946: else
947: return pay_balance_pkg.get_value
948: (p_defined_balance_id => l_defined_balance_id,
949: p_assignment_action_id => p_assignment_action_id);
950: end if;
951: --

Line 1270: return pay_balance_pkg.get_value

1266: l_defined_balance_id := defined_balance_id
1267: (p_balance_type => l_balance_type,
1268: p_dimension_suffix => l_dimension_suffix);
1269: --
1270: return pay_balance_pkg.get_value
1271: (p_defined_balance_id => l_defined_balance_id,
1272: p_assignment_action_id => p_assignment_action_id);
1273: --
1274: end;