add new color number to the color drop down in enovia PLM
Ticket description:A55482L

Ticket attachment:

- Open the attached page


2. Open the internationalizing properties file.
vim /opt/plm/webapp/internal/WEB-INF/classes/LuxotticaStringResource.properties

3. Search items with color value ‘Prizm Grey’ of drop down

4. Add a new range to attribute LUX_RxLenses_Color in accordance with user’s requirement.

5. Then reopen the ticket’s attached page, you will see 38 added to drop down, but it is different from other range value, since we didn’t internationalize the attribute’s range value.
6. add internationalizing value.

Attention: you need to modify four properties files in four production machine.
vim /opt/plm/webapp/internal/WEB-INF/classes/LuxotticaStringResource.properties
vim /opt/plm/webapp/3dspace/WEB-INF/classes/LuxotticaStringResource.properties
vim /opt/plm/webapp/internal/WEB-INF/classes/emxFrameworkStringResource.properties
vim /opt/plm/webapp/3dspace/WEB-INF/classes/emxFrameworkStringResource.properties
10.8.0.70
10.8.0.71
10.8.0.72
10.8.0.73
7.Execute the following command to restart tomcat in four production machine
a. ps –ef|grep tomcat
confirm which tomcat service you need to restart
b. restart tomcat
sudo service tomee0 start|stop|restart|status
sudo service tomee1 tart|stop|restart|status
sudo service tomee4 start|stop|restart|status
add new color number to the color drop down in enovia PLM的更多相关文章
- android:background="@color/white" [create file color.xml at res/values/]
<resources><color name="white">#FFFFFF</color><!--白色 --><col ...
- ColorUtil【Color工具类(color整型、rgb数组、16进制互相转换)】
版权声明:本文为HaiyuKing原创文章,转载请注明出处! 前言 主要用于color整型.rgb数组.16进制互相转换(-12590395 <--> #3FE2C5 <--> ...
- System.Media.Color与System.Drawing.Color转换方法
public static System.Media.Color GetMediaColorFromDrawingColor(System.Drawing.Color color) { re ...
- 颜色设置 <color name="white">#FFFFFF</color><!--白色 -->
<?xml version="1.0" encoding="utf-8"?> <resources> <color name=&q ...
- css text gradient color, css fonts gradient color
css text gradient color, css fonts gradient color css 字体渐变色 demo https://codepen.io/xgqfrms/pen/OJya ...
- [AST Babel Plugin] Transform code, add line:column number for console log
For example we have current code: function add(a, b) { console.log(a, b) return a + b } function sub ...
- add a characteristic in enovia PLM
Problem: add a new Char. name D_COI6 that the description is Injected coloration #7 (COI6) in the D_ ...
- enovia PLM: add characteristic to both prototype and product
Issue: add new mandatory attribute named LUX_HazardousMaterial to protoype and product, and export t ...
- enovia PLM : add new value to SPEO
Solution: Modify LUX_SPEO attribute in PLM Modify D_SPEO attribute in SAP , Login sap system F3 Tcod ...
随机推荐
- python-模块-包
一 模块 1 什么是模块? 常见的场景:一个模块就是一个包含了python定义和声明的文件,文件名就是模块名字加上.py的后缀. 但其实import加载的模块分为四个通用类别: 1 使用python编 ...
- px2rem-loader(Vue:移动端自适应,px自动转化)
1.下载lib-flexible npm i lib-flexible --save 2.引入lib-flexible import 'lib-flexible/flexible' 3.设置meta标 ...
- redis底层相关命令(一)
说明 用于分析redis底层数据结构以及内存情况 底层数据结构分析 1.查看key键的对象类型type key 本地:>sadd test1 本地:>type test1 set 2.查看 ...
- 【学术篇】CF932E Team Work && bzoj5093 图的价值
两个题的传送门 对于CF这道题, 分别考虑每种可能的集合大小, 每个大小为\(k\)的集合数量有\(\binom nk\)个, 所以最后的答案就是 \[\sum_{i=0}^n\binom{n}{i} ...
- ie中datepicker赋值不成功
解决办法:删除placeholder即可 比如我代码如下:
- java端拦截器判断客户的的请求是否是ajax请求
java端拦截器判断客户的的请求是否是ajax请求 发表于 2014-08-22 23:38:08 普通请求与ajax请求的报文头不一样,通过如下 String requestType = reque ...
- Java高并发网络编程(二)BIO
一.阻塞 服务器端 public class BIOServer { public static void main(String[] args) throws Exception { ServerS ...
- Java中的杂流(闸总)
标准输入输出流 System.in: 标准输入流是InputStream的子类对象,字节输入流,只不过是jvm给定的唯一一个从键盘控制条读入的流. public static final InputS ...
- CSS3布局篇(多列布局)
我们通过学习 CSS3,能够创建多个列来对文本进行布局 ,就像报纸那样排版那样! 可以参考详细说明:http://www.w3school.com.cn/css3/css3_multiple_colu ...
- Android中的onWindowFocusChanged()方法详解
Android中获取手机屏幕的高度和宽度,我们知道在onCreate方法中获取到的值都是为0的,有人说可以在onClick方法中获取值,这个也是个方法 ,但在onWindowFocusChanged方 ...