adempiere

Create leading zero in Oracle

时间秒杀一切 提交于 2019-12-31 02:59:06
问题 I am using Adempiere which has database Oracle I have window called Stock Code from table called M_StockCode The fields are Code and Description . Currently, Code data type is Number and Description is Varchar2 I want to input Sparepart with Code 01 , and Body Repair with Code 02 . As I input the data in Adempiere and save it, what will show is Sparepart with Code 1 (without leading zero) I've tried putting LPAD function but it's still failed. How can I put 01 both in Adempiere interface and

Any one faced document sequence problem with adempiere?"

别说谁变了你拦得住时间么 提交于 2019-12-24 20:06:54
问题 Any one working with adempiere faced an issue that, when any window opens a default value '5567' appears in DocumentNo field. Couldn't understand the cause and the solution! 回答1: Thanks, solved the problem, actually no default value was set, and document sequence was not working, just found that preference value was set for that column unconsciously by a user. that was done by right clicking on the field and he selected preference Ok, then a value for that column in every window was set. By

Telnet - Connection to host lost - on port 1099 in local machine

落花浮王杯 提交于 2019-12-13 07:17:05
问题 My jBoss server is running on the port 1099. While I am trying to telnet the port from the local machine, getting the "Connection to host lost" message. I was doing telnet 192.168.200.150 1099 Its showing some other port as 8083. What this error message means? 回答1: My jBoss server is running on the port 1099. No. Your JBoss server is almost certainly running on port 80 or port 8080. Port 1099 is its port for its implementation of the RMI Registry, not its primary port. While I am trying to

Create leading zero in Oracle

China☆狼群 提交于 2019-12-01 22:45:54
I am using Adempiere which has database Oracle I have window called Stock Code from table called M_StockCode The fields are Code and Description . Currently, Code data type is Number and Description is Varchar2 I want to input Sparepart with Code 01 , and Body Repair with Code 02 . As I input the data in Adempiere and save it, what will show is Sparepart with Code 1 (without leading zero) I've tried putting LPAD function but it's still failed. How can I put 01 both in Adempiere interface and in database? Any suggestion will be appreciated :) A NUMBER cannot have leading zero, a STRING can. If