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
Created by Guest
Created on Jun 9, 2015

Improve File Manager customization for invocation, including MQ libraries

This was requested by Discover Financial Services GTS IBM Team. The invocation for File Manager foreground and batch require MQ series libraries, if you want to use MQ with File Manager. There needs to be a better way to provide this information to File Manger, by LPAR. Some companies use shared DASD across LPARs, but the names of the MQ libraries vary by LPAR. This resulted in difficulty when customizing File Manager.

Idea priority Low
  • Guest
    Reply
    |
    Jun 16, 2020

    This is being closed due to age. If this is still a concern please raise a new RFE.

  • Guest
    Reply
    |
    Nov 19, 2015

    Due to processing by IBM, this request was reassigned to have the following updated attributes:
    Brand - Servers and Systems Software
    Product family - Development Tooling
    Product - IBM File Manager

    For recording keeping, the previous attributes were:
    Brand - WebSphere
    Product family - Enterprise Tooling
    Product - IBM File Manager

  • Guest
    Reply
    |
    Jun 12, 2015

    A solution to the second part of this requirement (Batch skeleton improvements for MQ libraries that vary by LPAR)
    In the member SFMNSLIB(FMNFTEXC), add these statements below after //STEPLIB
    //* Alternative 1 - Using a system varaible defined as the MQ HLQ
    )SETF MQHLQ = &SYMDEF(MQIDDEV)
    // DD DSN=&MQHLQ..SCSQLOAD,DISP=SHR
    // DD DSN=&MQHLQ..SCSQANLE,DISP=SHR
    // DD DSN=&MQHLQ..SCSQAUTH,DISP=SHR
    /* Alternative 2 - Using the SYSNAME field
    )SEL &SNAME = NCSH
    )SETF SNAME = &SYMDEF(SYSNAME)
    // DD DSN=MQ74.SCSQLOAD,DISP=SHR
    // DD DSN=MQ74.SCSQANLE,DISP=SHR
    // DD DSN=MQ74.SCSQAUTH,DISP=SHR
    )ENDSEL
    )SEL &SNAME = PSCH
    // DD DSN=MQ27.SCSQLOAD,DISP=SHR
    // DD DSN=MQ27.SCSQANLE,DISP=SHR
    // DD DSN=MQ27.SCSQAUTH,DISP=SHR
    )ENDSEL

  • Guest
    Reply
    |
    Jun 10, 2015

    We have been able to find a better solution for the batch member for File Manager/DB2. We added a )SETF statement to use the external variables to assign the correct high level qualifiers for the MQ data sets.