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
Categories Open Access DB
Created by Guest
Created on May 4, 2020

Retrieve multiple IMS segments in a single JDBC Call to reduce network trips.

getUniqueDBRecord JDBC call which is able to get a root and multiple children segment types.

GetUniqueDBRecord with
[String: segment, String: parent, String: ssa, integer: limit, …]

getUniqueDBRecord(
[“ROOT”, “”, ssaRoot, 1,
“KID1”, “ROOT”, “”, 1,
“KID11”, “KID1”, “”, 0, // all of KID11
“KID3”, “ROOT”, “”, 1,
“KID2”, “ROOT”, ssaKid2, 0]
)


The above call gets a specific ROOT segment per ssaRoot.

It gets the first occurrence of the child segment named KID1. no Filtering ssa is provided

It gets all occurrences of KID11 which is a child of KID1. No filtering ssa is provided

It gets the first occurrence of KID3. no filtering ssa provided.

It gets all occurrences of KID2 (child of the ROOT) that match the filter list provided by ssaKid2.

With the exception Root SSA, the SSAs are used to to filter the final result set. Treat each hierarchic leg as if FIRST had been coded when collecting the kids.

Idea priority High
  • Guest
    Reply
    |
    Aug 24, 2022
    #publish

    Thank you for your interest in keeping IMS a vital and successful product. Software development has continuously evolved during IMS's lifetime, and so has IMS itself. We have kept pace with, adopted, and implemented many industry standard best practices within our organization, including Continuous Delivery, Design Thinking, and Agile.

    When choosing new features to add from the list of requirements in our backlog, we assess which will bring the most value to as many clients as possible and prioritize those.

    At this time, after further review this request for enhancement, we have decided to reject it. The reason we are rejecting the Idea IMSDB-I-104 is because we do not have enough customer interest and priority to get to this item for the past 18 months. We value the required requirement and we will keep consider if priority changed.

    If you have any further question, please contact us.

    Thank you for your continued support with IMS.

    Haley Fung
    IMS Product Manager
    hfung@us.ibm.com
  • Guest
    Reply
    |
    Sep 20, 2020

    Thank you for your interest in keeping IMS a vital and successful product. Software development has continuously evolved during IMS's lifetime, and so has IMS itself. We have kept pace with, adopted, and implemented many industry standard best practices within our organization, including Continuous Delivery, Design Thinking, and Agile.

    When choosing new features to add from the list of requirements in our backlog, we assess which will bring the most value to as many clients as possible and prioritize those.

    After reviewing this request for enhancement and assessing its potential value, our decision is to add this item to our backlog. Items in our backlog are expected to be delivered within the next 18 months. We reserve the right to re-prioritize our backlog items as new requests come in. This helps ensure that we are constantly focused on providing the best value to all of our clients.


    Have a great day!
    Haley Fung - hfung@us.ibm.com

  • Guest
    Reply
    |
    May 12, 2020

    On the "assume that FIRST is on each hierarchic leg", I want to explain how I think of FIRST. I think of FIRST as.. Starting with the first segment of the specific typ, scan the twin chain until a segment that matches the SSA is found. This is normal IMS logic.

    For the getUnqiueDBRecord, ODBM would scan all of the segments of that type (starting with the first one) filtering on the SSA until GE or the max-number to return is reached.

    Regarding the max number to return: I should have included a resume SSA as part of the interface. There would be 2 SSAs for a resume call. The resume or Starting SSA and the filtering SSA.

  • Guest
    Reply
    |
    May 4, 2020

    Attachment (Use case): more details on how to use getUniqueDBRecord