Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI 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 Functionality already exists
Workspace DataStage
Created by Guest
Created on Feb 28, 2023

Require datastage job interim run status in cpdctl dsjob jobinfo command output as same is available in classic datastage dsjob jobinfo option

Require datastage job interim run status in cpdctl dsjob jobinfo command output as same is available in classic datastage dsjob jobinfo option

This option is used to get the datastage job interim status which is useful when we are trying to capture the job run status in after job subroutine script which is very useful process to capture the audit information

Needed By Yesterday (Let's go already!)
  • Admin
    STEPHANIE VALAREZO
    Reply
    |
    Jul 14, 2023

    Hello there,

    Thank you for your idea submission!

    This functionality has been delivered to cpdctl dsjob. Below are the options you can use. If you have any other ideas on how we can improve the command-line utility, let us know.

    The command below will show the status of the last job run.

    $ for i in `seq 0 50`; do cpdctl dsjob get-jobrun -p dsjob -n 'TestLongRun.DataStage job'; done
    id: 4b409321-af6c-4ad8-a8a2-1883bb22c874|state: Starting |duration: 0 |Created: 2023-05-16T18:33:01Z

    Status code = 0
    id: 4b409321-af6c-4ad8-a8a2-1883bb22c874|state: Running |duration: 0 |Created: 2023-05-16T18:33:01Z

    Status code = 0
    id: 4b409321-af6c-4ad8-a8a2-1883bb22c874|state: Running |duration: 0 |Created: 2023-05-16T18:33:01Z
    ...
    ...
    Status code = 0
    id: 4b409321-af6c-4ad8-a8a2-1883bb22c874|state: Running |duration: 0 |Created: 2023-05-16T18:33:01Z

    Status code = 0

    id: 4b409321-af6c-4ad8-a8a2-1883bb22c874|state: Completed |duration: 100 |Created: 2023-05-16T18:33:01Z

    Status code = 0
    cpdctl dsjob log detail with --follow option will tail logs until job is complete
    cpdctl dsjob waitforjob --help
    NAME:
    waitforjob - Wait for a Job execution to completion.

    USAGE:
    cpdctl dsjob waitforjob {{--project PROJECT | --project-id PROJID} | {--space SPACE | --space-id SPACEID}} {--job NAME | --name NAME | --job-id ID | --id ID} [--run-id RUNID] --wait SEC [--logs] [--since n[s|m]] [--after TIMESTAMP]