Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Not under consideration
Workspace IBM i
Created by Guest
Created on Jun 14, 2017
Merged idea

This idea has been merged into another idea. To comment or vote on this idea, please visit IBMI-I-1236 Add compiler option to check Date Format Validity (Years 2040, 2071)..

2 out of 3 types of Current Job Date will have wrong results in Year 2040 Merged

Current Job date will be wrong as of year 2040 .

I tested year 2040 readines of job dates, and found the following:

(Version V6R1)

D DT_INZJOB S D INZ(*JOB)
* shows wrong results
%DATE(UDATE) // shows wrong results

%DATE(*DATE) // shows right results

Either block using job dates now, or at least have a compiler option to block it, or fix the problem.


Use Case:

Sample program that shows the wrong results:

CL:

CHGJOB DATE(01012040)

CALL DAT001

*****
RPG DAT001:

D DT_INZJOB S D INZ(*JOB)
D DT_SDATE S D
D DT_UDATE S D
D DT_DSPLY S 25
/FREE

DT_DSPLY = 'DT INZJOB: '+ %CHAR(DT_INZJOB);
DSPLY DT_DSPLY;

DT_SDATE = %DATE(*DATE);
DT_DSPLY = 'DT *DATE: '+ %CHAR(DT_SDATE);
DSPLY DT_DSPLY;

DT_UDATE = %DATE(UDATE);
DT_DSPLY = 'DT UDATE: '+ %CHAR(DT_UDATE);
DSPLY DT_DSPLY;

*INLR=*ON;

By the way, for year 2072 and abve, the following will not work:
CHGJOB DATE(01012072)

It will produce an error message. So i was not able to test that part at all.


Idea priority Urgent