Datacom Multi-User Facility received a Log File error with RC 60(146).
search cancel

Datacom Multi-User Facility received a Log File error with RC 60(146).

book

Article ID: 19029

calendar_today

Updated On:

Products

Datacom DATACOM - AD COMMON SERVICES FOR Z/OS 90S SERVICES

Issue/Introduction

Error messages with RC 60(146) received when starting Datacom Multi-User Facility (MUF).

DB02405I - PXX START 0 60(146) OPEN -0- D-1
DB02406I - PXX END - INVALID LOG CONTROL BLOCK
DB00501E - OPEN ERROR - RETURN CODE 60 (146) CXX=cxxname (LXX )

Environment

 Component: CA90S

Resolution

The RC 60(146) has this explanation:

Explanation: INVALID LOG CONTROL BLOCK
User Response: There is a JCL error or an INIT is needed.

What this means is that when the MUF opened the Log(LXX) file, it tried to validate control information in the file, but the control information was not what was expected. This could be the result of:

  1. Allocating the LXX file, but not running the INIT command;
  2. Using the wrong file/filename for the LXX;
  3. Some other program overwrote the LXX file with the wrong data.

If LXX is actually using the correct file/filename, run a DBUTLTY job to initialize (INIT) the LXX. Here is a z/OS sample:

//LXXINIT  EXEC PGM=DBUTLTY,REGION=6M
//         INCLUDE MEMBER=B15STLIB
//         INCLUDE MEMBER=B15DDOUT
//LXX      DD  DISP=SHR,DSN=your LXX file
//SYSIN    DD  *
    INIT AREA=LXX,BLKSIZE=32760,TSN=00000001,VARIABLE=YES
/*

Please be sure that the LXX file name is correct. If using SIMPLIFY mode, and have coded a value for the DSN_XXX filemask, be sure that this file matches that filemask.

For more information about initializing the LXX, please refer to the Datacom Core documentation, in the section "Creating and Maintaining the Log Area (LXX).
For more information about the SIMPLIFY feature, please refer to the Datacom Core Documentation, in the section, "Simplify Considerations".

As always, please contact Broadcom Support for Datacom if you have further questions.