【HZERO】值集翻译】的更多相关文章

名称                                 值集                                                                          默认=============================================================================================分类帐标识               GL_SRS_LEDGER_FULL      …
--值集 SELECT ffv.flex_value, ffv.description   FROM fnd_flex_values_vl ffv, fnd_flex_value_sets ffs  WHERE ffv.flex_value_set_id = ffs.flex_value_set_id    AND ffs.flex_value_set_name = 'HSST_ACCOUNT' --值集名;    AND ffv.enabled_flag = 'Y'    AND SYSDAT…
  值集 select * from fnd_flex_value_sets select * from fnd_flex_values select * from fnd_flex_values_vl 弹性域 select * from fnd_id_flexs select * from fnd_id_flex_structures where id_flex_code='GL#' select * from fnd_id_flex_segments where id_flex_co…
decode(条件,值1,翻译值1,值2,翻译值2,...值n,翻译值n,缺省值) [功能]根据条件返回相应值 [参数]c1, c2, ...,cn,字符型/数值型/日期型,必须类型相同或null 注:值1--n 不能为条件表达式,这种情况只能用case when then end解决 ·含义解释: decode(条件,值1,翻译值1,值2,翻译值2,...值n,翻译值n,缺省值) 该函数的含义如下: IF 条件=值1 THEN RETURN(翻译值1) ELSIF 条件=值2 THEN RET…
需求:在当前页面的pageButtonBar中有一个下拉选择框,选择框中的值集根据某些条件有不同. public class SupplierInfoReviewCO extends OAControllerImpl { public static final String RCS_ID="$Header$"; public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion(RCS_ID, &qu…
[功能]根据条件返回相应值 [参数]c1, c2, ...,cn,字符型/数值型/日期型,必须类型相同或null 注:值1……n 不能为条件表达式,这种情况只能用case when then end解决 ·含义解释: decode(条件,值1,翻译值1,值2,翻译值2,...值n,翻译值n,缺省值) 该函数的含义如下: IF 条件=值1 THEN RETURN(翻译值1) ELSIF 条件=值2 THEN RETURN(翻译值2) ...... ELSIF 条件=值n THEN RETURN(翻…
fnd_flex_server.check_value_security(p_security_check_mode => 'YH', p_flex_value_set_id => p_flex_value_set_id, p_parent_flex_value => NULL, p_flex_value => p_flex_value, p_resp_application_id => resp_appl_id, p_responsibility_id => resp…
SELECT fvs1.flex_value_set_name, fvs1.description, decode(upper(fvs1.longlist_flag), 'N', '值列表', 'Y', '长值列表', 'X', '弹出式列表') 列表类型, decode(upper(fvs1.security_enabled_flag), 'N', '无安全性', 'H', '分层安全性', 'Y', '不分层安全性') 安全性类型, decode(upper(fvs1.format_type…
1.ORG_ID 2.DATE 3.YES_NO…
decode()函数简介: 主要作用:将查询结果翻译成其他值(即以其他形式表现出来,以下举例说明): 使用方法: Select decode(columnname,值1,翻译值1,值2,翻译值2,...值n,翻译值n,缺省值) From talbename Where … 其中columnname为要选择的table中所定义的column, ·含义解释: decode(条件,值1,翻译值1,值2,翻译值2,...值n,翻译值n,缺省值)的理解如下: if (条件==值1) then return…