All System Is come with GDDM. There are enough utilities available within GDDM to print bar graphs, pie charts, and line charts.
Type: Posts; User: D.Abramowitz
All System Is come with GDDM. There are enough utilities available within GDDM to print bar graphs, pie charts, and line charts.
NAME 'F0001 9 36' is incorrect. It should read NAME 'F00001 9 36'
Note four zeros F00001 instead of F0001.
Dave
Respond to this message with a "D" option. Also let us know exactly what the message is.
Review the dump. It may give you more clues as to what is happening.
Is your CL program compiled as a CLP, or CLLE?
If the program is CLLE try recompiling as CLP and see if the results are any different.
Please post some of the code that is accessing the file in question.
Dave
One way is to add "WITH NC" to the end of your statement. e.g. - Update xxxx set y to z with NC.
Dave
It depends what else is being done. If the file is being updated your commitment control must be in full order, or otherwise your updates will not take effect. Records may remain locked, and...
A field defined as numeric or decimal must actually be numeric or decimal!
Dave
** This thread discusses the article: Practical SQL: Using Old World Tools with New World Data **
I have several tables that contain multiple date data types. In a single table one date format...
Your question is vague. Not very clear. Perhaps you can expand on what you are trying to do?
Dave
I hear ya.
Placing MKDIR in QSTRUP would be an effective workaround. Hopefully there is an actual solution somewhere.
I created a problem record in service director, and received a response...
I have been able to create a link via SBS to a shared folder via the MKDIR command:
mkdir '/QNTC/nnn.nnn.nnn.nn/etc./'
This has been working well.
Until we did an IPL.
Then the link...
You need to specify TYPE(*DOC) not TYPE(*LMSG).
Dave
Simply DECLARE different cursors.
The following is from the same program:
** This thread discusses the article: My Way of Looping **
I never liked the idea of having two READE or two reads of any kind to establish a loop.
My preference is to have a single READE...
IBM provides true type fonts in directory - /QIBM/ProdData/OS400/Fonts/TTFonts
Question: If additional true type fonts were placed in this directory, would they be available for use in DDS as are...
** This thread discusses the article: SEC Nails IBM for $10 Million in Alleged Foreign Bribery Scandal **
** This thread discusses the Content article: SEC Nails IBM for $10 Million in Alleged...
With a call to QCMDEXC you could run the SNDPGMMSG command specifying message CPF9898 with any text you choose. This will appear at the bottom of the screen.
About once or twice a week we are getting Java messages on our system printer. Since Java is not used as a programming language in our shop we are not sure where it is coming from - e.g. -
...
If the message received is not a monitorable message, specifying CPF2400 or CPF0000 will not do anything!
Only escape messages may be monitored. The monitorible escape messages for every command...
Message CPF2429 is not monitorable from the SNDBRKMSG command.
Here are the monitorable messages:
*ESCAPE Messages
CPF2428 Message queue...
I am building a subfile on an SQL loop that is based on selection criteria from an outer SQL loop.
It works. However I'm taking one heck of a performance hit. I believe this is because after all...
The CEEDAYS API will return day of the week, but that will not necessarily get you to the business days.
You must also consider holidays, etc.
Establishing a file that hallmarks all...
All records within the subfile must have the same record length, or in this case the same number of lines. You could not have one record displaying two lines, and another three lines. In such a case,...
Unless I'm misreading your post, the date within Excel should convert easily to a date data type on the AS400. At this point the date can be read by an RPG(LE) program.
Dave