DBA Data[Home] [Help]

APPS.BEN_BATCH_REPORTING dependencies on FND_CONCURRENT_PROGRAMS

Line 122: l_conc_pgm_name fnd_concurrent_programs.concurrent_program_name%type ;

118: l_none varchar2(80);
119: -- bug 1560336
120: l_mode_cd_lookup_type hr_lookups.lookup_type%type := 'BEN_BENMNGLE_MD';
121: l_drvbl_fctrs_lookup_type hr_lookups.lookup_type%type := 'BEN_DTCT_TMPRL_LER_TYP';
122: l_conc_pgm_name fnd_concurrent_programs.concurrent_program_name%type ;
123: --
124: cursor c_benefit_actions is
125: select bft.process_date,
126: hr.meaning,

Line 197: fnd_concurrent_programs_tl conc

193: ben_enrt_perd epo,
194: ben_pl_f pln2,
195: ben_pgm_f pgm2,
196: fnd_concurrent_requests fnd,
197: fnd_concurrent_programs_tl conc
198: where fnd.request_id = p_concurrent_request_id
199: and conc.concurrent_program_id = fnd.concurrent_program_id
200: and conc.application_id = 805
201: and userenv('LANG') = conc.language --Bug 2394141

Line 297: fnd_concurrent_programs conc

293: -- bug fix 1560336
294: cursor c_conc_pgm_name is
295: select conc.concurrent_program_name
296: from fnd_concurrent_requests fnd,
297: fnd_concurrent_programs conc
298: where fnd.request_id = p_concurrent_request_id
299: and conc.concurrent_program_id = fnd.concurrent_program_id
300: and conc.application_id = 805;
301: -- end fix 1560336