OPU3092H Ignoring unrecognized keycode:) ERROR msg from REXX automation command script
search cancel

OPU3092H Ignoring unrecognized keycode:) ERROR msg from REXX automation command script

book

Article ID: 447846

calendar_today

Updated On:

Products

OPS/MVS Event Management & Automation

Issue/Introduction

When issuing MVS commands via automation (e.g., using OPS/MVS to stop collections), the task may ignore commands or fail to shut down gracefully, resulting in the following message:

  • OPU3092H Ignoring unrecognized keycode:) MSG
  • If a  task is involved, it may remain active and require a manual CANCEL command to terminate during IPL windows.

Environment

OPS/MVS Event Management & Automation, ALL RELEASES

Cause

The issue is typically caused by an MVS command syntax error in the automation setup. Specifically, missing quotation marks or delimiters (commas) in the command string prevent the subsystem from correctly parsing the intended action.

 

Resolution

Correct the MVS command syntax in the automation member or REXX script. Ensure that all arguments are properly enclosed in single quotes and that commas are used to separate parameters correctly.

Instead of unquoted or incorrectly formatted strings, use the following syntax:

CMD1('F &JOBNAME,RUN(rexx script member)')

Note:

  • Ensure the single quotes ' encapsulate the entire modify command after CMD1.
  • Verify the presence of the comma , before the RUN parameter.