|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
- SELECT a.application_short_name "应用",
- b.concurrent_program_id,
- b.concurrent_program_name,
- t_en.user_concurrent_program_name,
- t_cn.user_concurrent_program_name
- FROM fnd_concurrent_programs_tl t_cn,
- fnd_concurrent_programs_tl t_en,
- fnd_concurrent_programs b,
- fnd_application a
- WHERE 1 = 1
- and a.application_id = b.application_id
- and b.application_id = t_cn.application_id
- AND b.concurrent_program_id = t_cn.concurrent_program_id
- and b.application_id = t_en.application_id
- AND b.concurrent_program_id = t_en.concurrent_program_id
- --and b.concurrent_program_name = 'APACCENG'
- and t_cn.language = 'ZHS'
- and t_en.language = 'US'
- order by a.application_short_name, b.concurrent_program_id
复制代码 |
|