|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
select b.rowid,
c.application_short_name 应用简称,
c.APPLICATION_NAME 应用,
c.DESCRIPTION 应用描述,
a.lookup_type 类型,
a.MEANING 类型含义,
a.DESCRIPTION 类型描述,
b.language 语言,
b.lookup_code lookup_code,
b.meaning 含义,
b.description 描述,
b.enabled_flag 有效位
from FND_LOOKUP_TYPES_vl a, FND_LOOKUP_VALUES b, fnd_application_vl c
where 1 = 1
--and c.application_short_name like '%PAY%'
and b.meaning = '直接存款'
and a.lookup_type = b.lookup_type
and c.application_id = a.application_id |
|