DBA Data[Home] [Help]

APPS.FND_WEBFILE dependencies on FND_APPLICATION

Line 311: fnd_concurrent_programs fcp, fnd_application a

307: fcr.save_output_flag, fcr.ofile_size, fmt.file_format_code,
308: fcp.concurrent_program_name, a.application_short_name
309: into fname, node, mtype, save_out, fsize, ffcode, prog_name,appl_name
310: from fnd_concurrent_requests fcr, fnd_mime_types_vl fmt,
311: fnd_concurrent_programs fcp, fnd_application a
312: where fcr.request_id = id
313: and upper(fcr.output_file_type) = upper(fmt.file_format_code)
314: and fcp.concurrent_program_id = fcr.concurrent_program_id
315: and fcp.application_id = fcr.program_application_id

Line 356: from fnd_concurrent_programs fcp, fnd_application a, fnd_concurrent_requests fcr

352: begin
353: /* Find the parent program for the REPRINT request */
354: select fcp.concurrent_program_name, a.application_short_name
355: into prog_name, appl_name
356: from fnd_concurrent_programs fcp, fnd_application a, fnd_concurrent_requests fcr
357: where fcp.concurrent_program_id = fcr.concurrent_program_id
358: and fcp.application_id = fcr.program_application_id
359: and fcp.application_id = a.application_id
360: and fcr.request_id = (select to_number(argument1) from fnd_concurrent_requests where request_id=id);