Panel RMOP00 NOT FOUND when attempting logon to Deliver
search cancel

Panel RMOP00 NOT FOUND when attempting logon to Deliver

book

Article ID: 273436

calendar_today

Updated On:

Products

Deliver MM Output (View/Deliver)

Issue/Introduction

When we try to logon to Deliver we are receiving a  "PANEL RMOP00 NOT FOUND" message.

Environment

Product: Deliver

Version: 14.0

Cause

The RMOP00 member contains the code Deliver uses to display the Deliver LOGO panel. All Deliver panel code is provided in the Deliver installed "hlq.CVDEPENU" library.

The PANEL RMOP00 NOT FOUND error message is displayed because the corresponding panel code has not been loaded to the Deliver database.

Resolution

Use the RMODBASE OLOAD function to load the database with any missing panel code, including RMOP00.

Below is template JCL for executing RMODBASE OLOAD:

//JOBCARD....
//*
//STEP1    EXEC PGM=RMODBASE,PARM='deliver.dbhlq' <=== MODIFY with Database Name
//STEPLIB  DD DSN=hlq.CVDELOAD,DISP=SHR                <=== MODIFY HLQ
//SYSPRINT DD SYSOUT=*
//RMOOLIB  DD DSN=hlq.CVDEPENU,DISP=SHR              <=== MODIFY HLQ
//SYSIN    DD *
OLOAD
//