Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. 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 Submitted
Workspace IBM i
Categories Core OS
Created by Guest
Created on Feb 4, 2026

Have more, if not all, of iACS populate CLIENT_PROGRAMID

In an attempt to discover what versions of IBM i Access Client Solutions (iACS) are currently attached to our systems I am running the following SQL:

SELECT ji.job_name, GJI.V_AUTHORIZATION_NAME, GJI.V_CLIENT_PROGRAMID, GJI.V_CLIENT_IP_ADDRESS
FROM TABLE(QSYS2.JOB_INFO(
JOB_STATUS_FILTER => '*ACTIVE',
JOB_USER_FILTER => '*ALL'
)) JI,
lateral (SELECT V_AUTHORIZATION_NAME, V_CLIENT_PROGRAMID, V_CLIENT_IP_ADDRESS
FROM TABLE(QSYS2.GET_JOB_INFO(ji.job_name))) GJI
WHERE GJI.V_CLIENT_PROGRAMID LIKE('%acsbundle.jar%');

However, on a system with numerous people using 5250 and and parts of iACS I am only seeing one job, my QZDASSINIT job, populating Client_programid. Sometimes one other developer.

If more jobs were to populate this then would be able to see this value, like the sample returned from the SQL above:

file:/C:/Users/Public/IBM/ClientSolutions/acsbundle.jar | Version: 1.1.9.11 | Build id: 6021 | 2026-01-07 15:33:38

Idea priority Medium
  • Guest
    Feb 17, 2026

    If implemented, this enhancement would enable centralized reporting of the ACS versions used to connect to the server. Currently, only certain connection types—such as ACS Run SQL Scripts—send this information to the host. It would be beneficial for 5250 sessions and other ACS connection types to report the same details. In addition to the ACS version found in V_CLIENT_PROGRAMID, other columns such as V_CLIENT_WRKSTNNAME, V_CLIENT_APPLNAME, V_CLIENT_ACCTN, V_CLIENT_IP_ADDRESS, and V_CLIENT_USERID contain valuable client‑side information that could also be leveraged for reporting and analysis.

  • Guest
    Feb 4, 2026

    I guess it is currently filled by the JDBC driver of IBM i ACS... not by the ODBC driver of the Windows AP.