DBA Data[Home] [Help]

APPS.PAY_NZ_LEAVE_LIABILITY dependencies on PAY_AU_GENERIC_CODE_CALLER

Line 192: l_gcc_parameters_store pay_au_generic_code_caller.t_variable_store_tab ;

188: ,p_effective_date in date) is
189:
190: l_procedure_name varchar2(61) := 'pay_nz_leave_liability.archive_code' ;
191: l_process_id pay_au_processes.process_id%type ;
192: l_gcc_parameters_store pay_au_generic_code_caller.t_variable_store_tab ;
193: l_business_group_id pay_payroll_actions.business_group_id%type ;
194: l_assignment_id pay_assignment_actions.assignment_id%type ;
195: l_payroll_action_id pay_payroll_actions.payroll_action_id%type ;
196: l_counter integer := 1 ;

Line 307: pay_au_generic_code_caller.execute_process

303: -- call the generic code caller. It will execute the modules
304: -- associated with the process and write the results as
305: -- archive database items
306:
307: pay_au_generic_code_caller.execute_process
308: (p_business_group_id => l_business_group_id
309: ,p_effective_date => p_effective_date
310: ,p_process_id => l_process_id
311: ,p_assignment_action_id => p_assignment_action_id

Line 380: pay_au_generic_code_caller.execute_formula

376:
377: -- execute the formula using the generic code caller execute
378: -- formula procedure
379:
380: pay_au_generic_code_caller.execute_formula
381: (l_module_id
382: ,p_formula_name) ;
383:
384: hr_utility.trace(' Out: ' || l_procedure_name) ;

Line 395: pay_au_generic_code_caller.retrieve_variable

391:
392: -- get the BUSINESS_GROUP_ID from the PL/SQL table of
393: -- variables maintained by the generic code caller
394:
395: pay_au_generic_code_caller.retrieve_variable
396: ('BUSINESS_GROUP_ID'
397: ,'NUMBER'
398: ,l_business_group_id) ;
399:

Line 403: pay_au_generic_code_caller.retrieve_variable

399:
400: -- get the LEGISLATION_CODE from the PL/SQL table of
401: -- variables maintained by the generic code caller
402:
403: pay_au_generic_code_caller.retrieve_variable
404: ('LEGISLATION_CODE'
405: ,'TEXT'
406: ,l_legislation_code) ;
407:

Line 420: pay_au_generic_code_caller.retrieve_variable

416: -- variables maintained by the generic code caller. This
417: -- variable should have been set up as an output from the
418: -- hourly rate formula.
419:
420: pay_au_generic_code_caller.retrieve_variable
421: ('HOURLY_RATE_FORMULA_NAME'
422: ,'TEXT'
423: ,l_formula_name) ;
424:

Line 431: pay_au_generic_code_caller.retrieve_variable

427: -- the formula should have set up the ORDINARY_PAY_HOURLY_RATE
428: -- variable in the generic code caller's PL/SQL table. Get
429: -- rate to make sure that it has been set up.
430:
431: pay_au_generic_code_caller.retrieve_variable
432: ('ORDINARY_PAY_HOURLY_RATE'
433: ,'NUMBER'
434: ,l_hourly_rate) ;
435:

Line 499: pay_au_generic_code_caller.retrieve_variable(P_NAME,P_DATA_TYPE,l_value);

495: l_value varchar2(200);
496:
497: begin
498:
499: pay_au_generic_code_caller.retrieve_variable(P_NAME,P_DATA_TYPE,l_value);
500:
501: return l_value ;
502:
503: end retrieve_variable;