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 Future consideration
Workspace COBOL Compilers
Categories z/OS
Created by Guest
Created on Jul 30, 2024

Allow OMITTED parameters in function identifier.

The COBOL 2002 standard allows for the OMITTED keyword to be specified as a parameter to a function identifier. This should be allowed for Enterprise COBOL. It could be implemented in a manner similar to specifying OMITTED as a parameter in a CALL (BY REFERENCE), or it could be implemented along with the use of the OPTIONAL keyword on the procedure division using phrase, along with the omitted-argument (data-name IS OMITTED) condition.

Idea priority Medium
  • Admin
    Basil Kanneth
    Reply
    |
    Sep 24, 2024

    This idea is being accepted. It will be updated further once put into plan. Thanks.

  • Guest
    Reply
    |
    Aug 26, 2024

    Regarding the comment from "Guest" on July 31, 2024, are you asking for just allowing of omitted trailing arguments (leaving trailing optional arguments out of the function call, rather than having trailing OMITTED parameters? Or something else? If the former, that is already part of the COBOL standard, which I would expect IBM to implement.

  • Admin
    Basil Kanneth
    Reply
    |
    Aug 26, 2024

    This idea is being investigated further.

  • Guest
    Reply
    |
    Jul 31, 2024

    Hi,

    In addition to the management of OMITTED parameters, would it be possible to implement the management of "multiple signatures" at the level of functions prototype?

    That is to say, to be able to declare several prototypes for the same function name, and:

    • either declare as many implementations as prototypes with an exact correspondence of the parameters in number, positions and types,
    • or have an automatic management of OMITTED parameters at the implementation level when the prototype does not use a parameter, probably with some restrictions.

    The program would call the function through one of the function prototypes, and depending on the parameters passed the compiler would select automaticly the corresponding implementation.

    This is a bit like what exists today with standard intrinsic functions, some of which accept a variable number of arguments, or different types of arguments.
     

    Thanks.