标签:
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