This portal is to open public enhancement requests against IBM Z Software products. 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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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.
this was delivered as part of 5.2
Having the fractional part of the seconds as .xxx doesn't really fit ny other pattern we support, HH:MI:SS and HHMISSS, HH:MI etc are good fits. These patterns will also be supported in REPATTERN and all the other date-time functions
Hi prino, thanks for support & comment!
From what i've seen, IBM likes (and i can understand why) to keep RFEs small, manageable and precise as possible.
So while i completely welcome your comment, i assume the chances to get the conversion functions are greater if you submit a straigforward, clear RFE for it.
Just my 0.02€,
br johann
I would greatly second this RFE, but I would like to see it expanded in scope. The various date & Time related builtin functions can convert dates, times and timestamps to just days and seconds, but what is (sorely) lacing is a function that can efficiently convert times in minutes or seconds (as used when adding of subtracting times) back into times in hh:mm(:ss.sss) format.
The (obvious) straight forward method, assuming a time has been converted to minutes, is to use
hh = time / 60;
mm = mod(time, 60);
but a builtin should be able to use the fact that the z/OS DP (divide) instruction calculates both quotient *and* reminder in one, whereas the above, status: V4.R5.M0 (Built:20170125), still generates two DP instructions when hh and mm are the two (final) pic 'z9' and pic '99' destinations.