壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2031|回复: 8

如何列出使用的弹性域-SQL

    [复制链接]
发表于 2009/8/7 14:13:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
本SQL列出系统中启用的关键和描述性弹性域。


  1. --关键性弹性域
  2. select fif.application_id,
  3.        fif.id_flex_code,
  4.        fif.id_flex_name,
  5.        fif.application_table_name,
  6.        fif.unique_id_column_name,
  7.        fif.description,
  8.        fifs.id_flex_structure_code,
  9.        fifs.id_flex_structure_name,
  10.        fifs.description,
  11.        fifsv.application_column_name,
  12.        fifsv.segment_name,
  13.        fifsv.enabled_flag,
  14.        fifsv.required_flag,
  15.        fifsv.display_flag,
  16.        fifsv.form_left_prompt,
  17.        fifsv.description,
  18.        ffvs.flex_value_set_name,
  19.        ffvs.validation_type 验证类型,
  20.        ffvs.format_type 格式类型,
  21.        ffvs.maximum_size,
  22.        ffvs.description
  23.   from apps.fnd_id_flexs fif,
  24.        apps.fnd_id_flex_structures_vl fifs,
  25.        apps.fnd_id_flex_segments_vl fifsv,
  26.        apps.fnd_flex_value_sets ffvs
  27. where fif.application_id = fifs.application_id
  28.    and fif.id_flex_code = fifs.id_flex_code
  29.    and fif.id_flex_code not in ('SCL','BANK','PEA')
  30.    and fifs.application_id = fifsv.application_id
  31.    and fifs.id_flex_code = fifsv.id_flex_code
  32.    and fifs.id_flex_num = fifsv.id_flex_num
  33.    and fifsv.flex_value_set_id = ffvs.flex_value_set_id(+)
  34.    order by fif.application_id,fifs.id_flex_code,fifs.id_flex_num,fifsv.segment_num
  35. --描述性弹性域  
  36. select fdfv.title,
  37.           fdfv.form_context_prompt,
  38.           fdfv.description,
  39.           fdfv.application_table_name,
  40.           fdfv.descriptive_flexfield_name,
  41.           fdfcv.descriptive_flex_context_code,
  42.           fdfcv.enabled_flag,
  43.           fdfcv.global_flag,
  44.           fdfcv.description,
  45.           fdfcv.descriptive_flex_context_name,
  46.           fdfcu.application_column_name,
  47.           fdfcu.end_user_column_name,
  48.           fdfcu.enabled_flag,
  49.           fdfcu.required_flag,
  50.           fdfcu.form_left_prompt,
  51.           fdfcu.description,
  52.           ffvs.flex_value_set_name,
  53.           ffvs.validation_type 验证类型,
  54.           ffvs.format_type 格式类型,
  55.           ffvs.maximum_size,
  56.           ffvs.description
  57.      from apps.fnd_descriptive_flexs_vl fdfv,
  58.           apps.fnd_application_vl fav,
  59.           apps.fnd_descr_flex_contexts_vl fdfcv,
  60.           apps.fnd_descr_flex_col_usage_vl fdfcu,
  61.           apps.fnd_flex_value_sets ffvs
  62.     where fdfv.application_id = fav.application_id
  63.       and fdfv.application_id = fdfcv.application_id
  64.       and fdfv.descriptive_flexfield_name = fdfcv.descriptive_flexfield_name
  65.       and fdfv.FREEZE_FLEX_DEFINITION_FLAG = 'Y'
  66.       and fdfcv.application_id = fdfcu.application_id
  67.       and fdfcv.descriptive_flexfield_name = fdfcu.descriptive_flexfield_name
  68.       and fdfcv.descriptive_flex_context_code = fdfcu.descriptive_flex_context_code
  69.       and fdfcv.enabled_flag = 'Y'
  70.       and fdfcu.flex_value_set_id = ffvs.flex_value_set_id(+)
  71.       and fdfv.title not like '$SRS$.%'
  72.       and fdfv.title not like '打印机驱动程序%'
  73.       and fdfv.title not like 'OTL%'
  74.       and fdfcu.application_column_name like 'ATTRIBUTE%'
  75.     order by fdfcu.application_id,fdfcu.descriptive_flexfield_name,fdfcu.descriptive_flex_context_code,fdfcu.column_seq_num,fdfcu.application_column_name
复制代码

flexfields.rar

862 Bytes, 下载次数: 20, 下载积分: 努力值 -5 点

发表于 2009/12/5 09:15:03 | 显示全部楼层
不错的资料!
发表于 2010/5/14 14:52:23 | 显示全部楼层
不错的资料!
发表于 2010/6/7 09:15:55 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2010/6/7 20:32:06 | 显示全部楼层
看看,很有用的!
发表于 2010/6/8 11:57:42 | 显示全部楼层
谢谢老大的分享,学习!
发表于 2010/6/8 13:31:55 | 显示全部楼层
灰常感谢!! 收下了!
发表于 2010/12/13 23:38:09 | 显示全部楼层
O(∩_∩)O谢谢楼主了
发表于 2010/12/14 13:54:00 | 显示全部楼层
灰常感谢!! 收下了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 09:58 , Processed in 0.020882 second(s), 15 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表