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 Jun 5, 2025

Enable Headless Execution for Interactive Green Screen Commands on IBM i

Idea Summary: Introduce a capability to run interactive green screen commands (like WRKSBMJOB, WRKUSRJOB, WRKACTJOB, etc.) in headless mode, allowing scripts and automation tools to execute and retrieve results without requiring a 5250 terminal session or user interaction.

Problem Statement: Many core IBM i commands are tied to interactive green screen sessions and require manual key presses (like F3, Enter, or navigating menus). This makes them unusable in:

Automated scripts
DevOps pipelines
Remote execution tools
Modern IT automation platforms
As IBM i continues to modernize, this limitation prevents teams from fully automating operational tasks or building self-service diagnostics and workflows.

Just like Google Chrome can run in headless mode - loading web pages, running automated tests, or extracting data without opening a visible browser window - this enhancement would allow IBM i to run green screen commands in the background without launching an interactive session. The output would be structured and machine-readable, enabling seamless automation.

Proposed Solution: Provide a mechanism to allow these commands to run without screen interaction. Options include:
Structured Output: Support OUTPUT(*JSON) or *XML for commands that currently rely on screen display.
QSYS2 / SQL Equivalents: Introduce QSYS2 views or procedures to expose equivalent data returned by interactive commands.
Scriptable Interaction: Support scripts that simulate user input (e.g., F-keys, menu options), enabling controlled automation.
5250-Less Mode: Offer a lightweight mode of execution for traditionally interactive commands, bypassing the QINTER subsystem.

Business Value:
Enables remote automation of IBM i screen tasks
Reduces dependency on manual intervention
Supports DevOps and CI/CD integration
Speeds up operations like job monitoring, user tracking, and system health checks
Improves IBM i usability in modern, cloud-connected environments

Example usecase:

# Run WRKSBMJOB headlessly and get structured output
ibmi-headless WRKSBMJOB USER(*ALL) OPTION(5) OUTPUT(*JSON)
# Output:
[
 {
   "JobName": "QPADEV002B",
   "Status": "RUN",
   "Function": "QCMD",
   ...
 }
]
Idea priority High
  • Guest
    Jun 5, 2025
    The virtual terminal APIs can be used to perform interactive work (that uses workstation input/output (I/O)) from a program.
    https://www.ibm.com/docs/api/v1/content/ssw_ibm_i_75/apis/vt1a.htm

    IBM Power Systems development