jdedwards

What is the precise definition of JDE's Julian Date format?

左心房为你撑大大i 提交于 2019-12-17 12:49:32
问题 I am writing code to convert from a Gregorian date to a JDE (J.D.Edwards) Julian date. Note: a JDE Julian date is different from the normal usage of the term Julian date. As far as I can work out from Googling, the definition of a JDE Julian date is: 1000*(year-1900) + dayofyear where year is the 4-digit year (e.g. 2009), and dayofyear is 1 for 1st January, and counts up all year to either 365 or 366 for 31st December (depending whether this is a leap year). My question is this: are years

Unable to connecte with security server JD Edwards EntrepriseOne

狂风中的少年 提交于 2019-12-12 03:47:49
问题 its almost 3 days that i got this error : Unable to locate security server. Failed to communicate with security server JD Edwards EntrepriseOne could not sign you on. thanks for your help ; 回答1: This type of error occurs on JDE fat client when database client was configured incorrectly. For example when TNSNAMES.ORA doesn't have correct entry for JDE database. Please check oracle support document regarding this issue. 回答2: If you're sure about your JDE.INI and the security server is correct

What is the learning curve for development on JD Edwards?

只愿长相守 提交于 2019-12-06 14:11:23
On an average, how much time does it take to become proficient in development using JD Edwards? Is it easy to learn? Are there any prerequisites? I'm assuming you're interested on learning the development skills of JD Edwards, not the business processes that the system actually implements. There are 2 versions of JDE. One runs over AS/400 plataforms, DB2 database and uses RPG (language) to implement reports and functionalities. I'm not acquainted with that version (did very few interface jobs and they were all complicated due to DB2's differences from my usual flavours of databases - Oracle or

Does JodaTime or Java 8 have special support JD Edwards Date and Time?

泪湿孤枕 提交于 2019-12-01 05:27:57
The topic at hand is a messy domain-specific problem working with dates in Oracle's ERP software called JD Edwards. Its detail is documented in this question . Before writing wrapper classes for handling the dates and times from JD Edwards, I want to know if JodaTime or Java 8 introduced any special support for this unique time format, or if I'll have to do significant string manipulation regardless of the libraries I use. This is an obscure problem, so please only respond if you have specific knowledge of this problem, and/or JodaTime/Java 8/JSR 310. ADDITION: Per Basil Bourque's request,

Does JodaTime or Java 8 have special support JD Edwards Date and Time?

故事扮演 提交于 2019-12-01 03:04:26
问题 The topic at hand is a messy domain-specific problem working with dates in Oracle's ERP software called JD Edwards. Its detail is documented in this question. Before writing wrapper classes for handling the dates and times from JD Edwards, I want to know if JodaTime or Java 8 introduced any special support for this unique time format, or if I'll have to do significant string manipulation regardless of the libraries I use. This is an obscure problem, so please only respond if you have specific

What is the precise definition of JDE's Julian Date format?

僤鯓⒐⒋嵵緔 提交于 2019-11-27 15:05:18
I am writing code to convert from a Gregorian date to a JDE ( J.D.Edwards ) Julian date. Note: a JDE Julian date is different from the normal usage of the term Julian date . As far as I can work out from Googling, the definition of a JDE Julian date is: 1000*(year-1900) + dayofyear where year is the 4-digit year (e.g. 2009), and dayofyear is 1 for 1st January, and counts up all year to either 365 or 366 for 31st December (depending whether this is a leap year). My question is this: are years before 1900 supported? If so, does the above formula still hold, or should it be this: 1000*(year-1900)