oracle 反向查找字符,[Script]Oracle EBS中,怎么通过Form,Report的执行文件来查找对应的功能名称,或者怎么反向查找...

[Script]Oracle EBS中,如何通过Form,Report的执行文件来查找对应的功能名称,或者如何反向查找

知道Form执行文件的名字情况下,如何来查找对应的功能名称

SELECT a.form_name||' : '||nvl(b.description, b.user_form_name)

FROM APPS.FND_FORM a, APPS.FND_FORM_TL b

WHERE a.form_id = b.form_id

AND a.form_name IN ('INVTTMTX');Output:INVTTMTX : Perform miscellaneous transactions

知道功能名称的情况下,如何来查找对应的fmx名称

SELECT a.form_name,b.description

FROM APPS.FND_FORM a, APPS.FND_FORM_TL b

WHERE a.form_id = b.form_id

AND Upper(b.description) like upper('%Transact Move Orders%');

--或者

SELECT a.form_name,b.user_form_name

FROM APPS.FND_FORM a, APPS.FND_FORM_TL b

WHERE a.form_id = b.form_id

AND Upper(b.user_form_name) like upper('%Transact Move Orders%');Output:INVTOTRX

同样,如果我们知道了Report执行文件的名字情况下,如何来查找对应Report的功能名称

SELECT b.executable_name||' : '||c.description

FROM APPS.FND_CONCURRENT_PROGRAMS a, APPS.FND_EXECUTABLES b, APPS.FND_CONCURRENT_PROGRAMS_TL c

WHERE a.executable_id = b.executable_id

AND a.concurrent_program_id = c.concurrent_program_id

AND b.execution_file_name IN ('INVARPAR');Output:INVARPAR : Physical inventory adjustments report

类似,知道Report功能的情况下,如何来查找对应report执行文件的名称

SELECT b.executable_name||' : '||c.description

FROM APPS.FND_CONCURRENT_PROGRAMS a, APPS.FND_EXECUTABLES b, APPS.FND_CONCURRENT_PROGRAMS_TL c

WHERE a.executable_id = b.executable_id

AND a.concurrent_program_id = c.concurrent_program_id

AND Upper(c.description) LIKE Upper('%Min%Max%Plan%');Output:INVISMMX : Min-max planning report

这里INVISMMX.rdf就为对应的Report执行文件的名称

转载请注明出处:http://blog.csdn.net/pan_tian/article/details/7701995

======EOF======

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值