Skip to Main Content
IBM Data Platform Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data Platform organization. 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

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


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.

IBM Employees should enter Ideas at https://ideas.ibm.com



Status Not under consideration
Created by Guest
Created on Sep 18, 2025

Manta to support dynamic calls in COBOL Scanner

Background

Assume there are two COBOL files (parent.cbl and child.cbl)

In parent.cbl we see below lines

// variable DATESUB contains child.cbl

77 DATESUB PIC X(08) VALUE 'child '.

// parent calls child using variable DATESUB

CALL DATESUB USING DATESUB-PASSAREA END-CALL.

When Manta scans such files, it fails to resolve the dynamic call (CALL DATESUB) and throws the error:
MISSING_CALL_PROGRAM_NAMES_CONFIG_ENTRY
with a suggested fix:
parent;DATESUB;child

Manta has a manual solution to this problem, which involves adding an entry to the file cobolCallProgramNames.csv


Problem

  • We currently have 2,888 such errors in the scan logs.

  • Fixing them requires manually updating cobolCallProgramNames.csv with mappings, which is time-consuming and error-prone.

  • In Manta DEV, ~90% of COBOL programs are impacted by this issue, meaning we lose significant lineage visibility.

Opportunity

If Manta could automatically detect and resolve these dynamic calls by:

  • Identifying the variable used in the CALL statement,

  • Mapping it to the actual program name,

  • And updating the CSV file at runtime,

…then we could eliminate the majority of parsing errors and achieve complete lineage for COBOL applications.

Who Benefits

  • Manta users scanning COBOL files, especially in large enterprise environments.

  • Data lineage and governance teams, who rely on accurate parsing for impact analysis and traceability.

IBM Case: TS019613539 (describes customer specific logs that cannot be discussed in this IDEA)

Needed By Quarter
  • Admin
    Yurii Plakhtii
    Oct 9, 2025

    This idea could be viable for this specific case that is specified in the description. But anything more complicated with reassignment of the variables or updating its values won't work. At the moment viable solution would be to use cobolCallProgramNames.csv as described on the Step 4: Calls to Sub-Programs Specified via Variable https://www.ibm.com/docs/en/manta-data-lineage?topic=cobol-scanner-guide

  • Guest
    Oct 1, 2025

    Hi Yurii, the idea was not about runtime lineage. We have updated the text to describe the problem better. Please have a look and advise.

  • Admin
    Yurii Plakhtii
    Sep 30, 2025

    Manta is doing static code analysis, not runtime, so in case value is conditional, we do not know which value to pick.