DBA Data[Home] [Help]

APPS.PAY_AU_LEAVE_LIABILITY dependencies on PAY_AU_GENERIC_CODE_CALLER

Line 203: l_gcc_parameters_store pay_au_generic_code_caller.t_variable_store_tab ;

199: ,p_effective_date in date) is
200:
201: l_procedure_name varchar2(61) ;
202: l_process_id pay_au_processes.process_id%type ;
203: l_gcc_parameters_store pay_au_generic_code_caller.t_variable_store_tab ;
204: l_business_group_id pay_payroll_actions.business_group_id%type ;
205: l_assignment_id pay_assignment_actions.assignment_id%type ;
206: l_payroll_action_id pay_payroll_actions.payroll_action_id%type ;
207: l_counter integer := 1 ;

Line 328: pay_au_generic_code_caller.execute_process

324: -- call the generic code caller. It will execute the modules
325: -- associated with the process and write the results as
326: -- archive database items
327:
328: pay_au_generic_code_caller.execute_process
329: (p_business_group_id => l_business_group_id
330: ,p_effective_date => p_effective_date
331: ,p_process_id => l_process_id
332: ,p_assignment_action_id => p_assignment_action_id

Line 414: pay_au_generic_code_caller.execute_formula

410:
411: -- execute the formula using the generic code caller execute
412: -- formula procedure
413:
414: pay_au_generic_code_caller.execute_formula
415: (l_module_id
416: ,p_formula_name) ;
417:
418: hr_utility.trace(' Out: ' || l_procedure_name) ;

Line 436: pay_au_generic_code_caller.retrieve_variable

432:
433: -- get the BUSINESS_GROUP_ID from the PL/SQL table of
434: -- variables maintained by the generic code caller
435:
436: pay_au_generic_code_caller.retrieve_variable
437: ('BUSINESS_GROUP_ID'
438: ,'NUMBER'
439: ,l_business_group_id) ;
440:

Line 444: pay_au_generic_code_caller.retrieve_variable

440:
441: -- get the LEGISLATION_CODE from the PL/SQL table of
442: -- variables maintained by the generic code caller
443:
444: pay_au_generic_code_caller.retrieve_variable
445: ('LEGISLATION_CODE'
446: ,'TEXT'
447: ,l_legislation_code) ;
448:

Line 477: pay_au_generic_code_caller.retrieve_variable

473: -- variables maintained by the generic code caller. This
474: -- variable should have been set up as an output from the
475: -- hourly rate formula.
476:
477: pay_au_generic_code_caller.retrieve_variable
478: ('HOURLY_RATE_FORMULA_NAME'
479: ,'TEXT'
480: ,l_formula_name) ;
481:

Line 488: pay_au_generic_code_caller.retrieve_variable

484: -- the formula should have set up the ORDINARY_PAY_HOURLY_RATE
485: -- variable in the generic code caller's PL/SQL table. Get
486: -- rate to make sure that it has been set up.
487:
488: pay_au_generic_code_caller.retrieve_variable
489: ('ORDINARY_PAY_HOURLY_RATE'
490: ,'NUMBER'
491: ,l_hourly_rate) ;
492: