DBA Data[Home] [Help]

APPS.PAY_RUN_BALANCE_BUILD dependencies on FND_CONCURRENT_PROGRAMS

Line 22: g_program_name fnd_concurrent_programs.concurrent_program_name%type;

18: g_att_name varchar2(30);
19: g_att_cached boolean; /*Bug 9315998*/
20: g_debug boolean := hr_utility.debug_enabled;
21: g_purge_only boolean default FALSE;
22: g_program_name fnd_concurrent_programs.concurrent_program_name%type;
23: g_generate_pact pay_payroll_actions.payroll_action_id%type;
24:
25: Type typ_def_bal is table of pay_defined_balances.defined_balance_id%type index by binary_integer;
26: g_tab_def_bal typ_def_bal;

Line 173: FND_CONCURRENT_PROGRAMS fcp

169:
170: select fcp.CONCURRENT_PROGRAM_NAME
171: into g_program_name
172: from FND_CONCURRENT_REQUESTS fcr,
173: FND_CONCURRENT_PROGRAMS fcp
174: where fcr.REQUEST_ID = l_request_id
175: and fcp.CONCURRENT_PROGRAM_ID = fcr.CONCURRENT_PROGRAM_ID;
176: hr_utility.trace('get CONCURRENT_PROGRAM_NAME. g_program_name:'||g_program_name);
177:

Line 1880: FND_CONCURRENT_PROGRAMS fcp

1876:
1877: select fcp.CONCURRENT_PROGRAM_NAME
1878: into g_program_name
1879: from FND_CONCURRENT_REQUESTS fcr,
1880: FND_CONCURRENT_PROGRAMS fcp
1881: where fcr.REQUEST_ID = l_request_id
1882: and fcp.CONCURRENT_PROGRAM_ID = fcr.CONCURRENT_PROGRAM_ID;
1883: if g_debug then
1884: hr_utility.trace('ACTION_ARCHINIT get CONCURRENT_PROGRAM_NAME. g_program_name:'||g_program_name||' g_proc_mode:'||g_proc_mode);