oracle ebs中并发程序定义查询sql

SELECT DISTINCT fa.APPLICATION_SHORT_NAME,
                fa.BASEPATH,
                fat.APPLICATION_NAME,
                fe.EXECUTABLE_NAME, 
                fe.EXECUTION_FILE_NAME, 
                fcp.CONCURRENT_PROGRAM_NAME,
                fcp.OUTPUT_FILE_TYPE,
                fcp.OUTPUT_PRINT_STYLE,
                fcpT.USER_CONCURRENT_PROGRAM_NAME,
                fcpT.LANGUAGE,
                fcpT.DESCRIPTION,
                fcp.enabled_flag
  FROM fnd_application_tl fat,
       fnd_application fa,
       fnd_concurrent_programs_tl fcpt,
       fnd_concurrent_programs fcp,
       fnd_executables fe
 WHERE 1 = 1    
   AND fat.APPLICATION_ID = fa.APPLICATION_ID  
   AND fat.LANGUAGE = fcpt.LANGUAGE    
   AND fa.APPLICATION_ID = fcp.APPLICATION_ID      
   AND fcpt.LANGUAGE = 'ZHS'      
   AND fcpt.CONCURRENT_PROGRAM_ID = fcp.CONCURRENT_PROGRAM_ID      
   AND fcp.executable_id = fe.executable_id      
    AND fcp.enabled_flag = 'Y'   ----是否启用
   AND fcpT.USER_CONCURRENT_PROGRAM_NAME like 'CUX%' -- 要查询的报表简称

 

你可能感兴趣的:(oracle ebs中并发程序定义查询sql)