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 Not under consideration
Workspace COBOL Compilers
Created by Guest
Created on Oct 21, 2020

Enterprise Cobol V6+ - >>PERFORM VARYING for loop

We propose the implementation of a compilation directive allowing to do iterations.

These iterations could involve the manipulation of compilation variables and source text which would then be replicated on each iteration of the loop.
Corrollary: you also need a directive to generate a line of source text.

This request complements and justifies our other requests 146151 and 146152.

Idea priority Medium
  • Guest
    Reply
    |
    Nov 20, 2020

    This is also not part of the COBOL Standard and is not inline with our long term roadmap. As a result, we will be rejecting this RFE.

  • Guest
    Reply
    |
    Nov 5, 2020

    I propose to make the VARYING and UNTIL clause independent of the >>PERFORM directive :

    For "inline" >>PERFORM directive :

    >>PERFORM
    >>UNTIL condition
    source text
    >>END-PERFORM

    >>PERFORM
    >>VARYING compilation-var FROM start BY increment
    >>UNTIL condition
    source text
    >>END-PERFORM

    For "outline" >>PERFORM directive

    >>PROC myproc
    source text
    >>END-PROC

    >>PERFORM myproc

    >>PERFORM myproc
    >>UNTIL condition

    >>PERFORM myproc
    >>VARYING compilation-var FROM start BY increment
    >>UNTIL condition