Skip to Main Content
IBM Z Software


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).


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 Delivered
Workspace PL/I Compilers
Created by Guest
Created on Apr 24, 2017

validdate() shall support hh:mm:ss.sss & parts of it

see RFE 91408, as an additional format i kindly ask for time according to ISO https://en.wikipedia.org/wiki/ISO_8601#Times hh:mm, hh:mm:ss, hh:mm:ss.sss with or without the separating signs :.

Idea priority Medium
  • Guest
    Reply
    |
    Aug 29, 2017

    this was delivered as part of 5.2

  • Guest
    Reply
    |
    Apr 28, 2017

    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

  • Guest
    Reply
    |
    Apr 25, 2017

    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

  • Guest
    Reply
    |
    Apr 25, 2017

    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.