NTSERR: Error converting date for storage occurs when running Domino Report Server output queue monitor NTSMON
From Support
| | If you have a question or seek clarification, please call Technical Support. |
Problem:
This error can occur if the dates are not being formatted correctly when passed to the NTSADDRPT command when the Domino Report Server output queue monitor is run. This can happen in International situations where dates are formatted as DD/MM/YYYY etc.
Solution:
Since V1.20 of the Domino Report Server there has been a data area named: NTSDATEFMT that controls the date formatting for the Domino Report Server output queue monitor. The default value is set to *SYSVAL and can be displayed by using the following AS/400 command:
DSPDTAARA DTAARA(RJSDOM/NTSDATEFMT)
Change the date format data area NTSDATEFMT to one of the following date format values to see if your problem is resolved. Use the following command to update the data area with the appropriate setting:
CHGDTAARA DTAARA(RJSDOM/NTSDATEFMT) VALUE(*SYSVAL)
Possible values:
- SYSVAL - Use the AS/400 system date format. This works for all U.S. systems, however may not work on International systems.
- DMYY - DD/MM/YYYY (This format is commonly used by many European countries.)
- MDYY - MM/DD/YYYY
- YYMD - YYYY/MM/DD
- MDY - MM/DD/YY
- DMY - DD/MM/YY
- YMD - YY/MM/DD
Determining the current AS/400 System Date Format DSPSYSVAL SYSVAL(QDATFMT)
