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

时间:2016-03-05 16:15:18   收藏:0   阅读:256
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% -- 要查询的报表简称

 

原文:http://www.cnblogs.com/pompeii2008/p/5244961.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!