EnterpriseOne (E1) ESU Investigation
Share
The title sounds like something out of CSI or Law & Order SVU…
Today our Development Manager was inquiring about what ESUs have been applied and to what environments.
Here is the SQL that I came up with:
Note: I restricted this query to only ESUs that were applied after our "Fix Current" project completed on 106041 (Feb. 10, 2006). Otherwise, there would be more listings than I could handle. Also, you’ll find the little trick to convert the JDE 6 digit date to something more readable.
SELECT SDPKGNAME as ESU, date(char(Min(Case when SDSUDFUT2= 'PS811' then SDSUDATE end)+1900000)) as PS811, date(char(Min(Case when SDSUDFUT2 = 'DV811' then SDSUDATE end)+1900000)) as DV811, date(char(Min(Case when SDSUDFUT2 = 'PY811' then SDSUDATE end)+1900000)) as PY811, date(char(Min(Case when SDSUDFUT2 = 'PD811' then SDSUDATE end)+1900000)) as PD811 FROM SY811/F9671, SY811/F9670 WHERE (SDSUDET = '90') and (SUSUDATE > 106041) and (SDPKGNAME=SUPKGNAME) GROUP BY SDPKGNAME ORDER BY SDPKGNAME DESC
Author
Stewart Schatz
Average Rating
2 thoughts on “EnterpriseOne (E1) ESU Investigation”
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
More Stories
Quick Tip: IBM Navigator for i Default URL
This is a really quick one but I keep forgetting it: http://<SERVERNAME>:2004/ibm/console
Server Manager Agent Not Connecting To SMC
After a Java update, the server manager agent may not connect to the SMC because of parameters in the java.security...
Quick Tip: How To Delete Multiple SQLPKGs
Run the following command to delete all the SQLPKG's in the QRECOVERY library with a name beginning with "OW" DLTSQLPKG...
Quick Tip: Hold All JDE Job Queues
The following SQL statement will put all JDE Job Queues on hold: UPDATE SY920.F986130 SET QCQUSTS='02' This statement is very...
Quick Tip: IBM i (iSeries / AS400) Spool File Navigation
The following commands can be used to navigate spool files after using a command similar to WRKSPLF. Just enter the...
Needle: IBM iSeries (AS400) Power Outage JDE Recovery
Crazy to think but this issue has come up a few times in my years as an Oracle JD Edwards...
I enjoy reading your posts, keep them coming
Thanks! I appreciate your feedback. If you have anything that you would like me to try and cover, please let me know.