View - process to list SARINIT Parameters, and process to obtain a List of all Reports in a Database
search cancel

View - process to list SARINIT Parameters, and process to obtain a List of all Reports in a Database

book

Article ID: 182947

calendar_today

Updated On:

Products

View

Issue/Introduction

Process to obtain a list of the SARINIT parameters & a list of all reports that are in a View database.

Resolution

SARINIT parameters are listed using the following SARINIT utility job:

//XXXXXXXX JOB ...
//SARINIT EXEC PGM=SARINIT
//STEPLIB DD DISP=SHR,DSN=VIEW.CVDELOAD <=== MODIFY, IF USED
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
NAME=VIEW_HLQ
/*
//

All reports in a View database are listed using the following SARBCH utility job:

//XXXXXXXX JOB ...
//SARBCH EXEC PGM=SARBCH,PARM='VIEW_HLQ' <=== MODIFY DB NAME
//STEPLIB DD DISP=SHR,DSN=VIEW.CVDELOAD <=== MODIFY, IF USED
//SYSPRINT DD SYSOUT=*
//REPORT DD SYSOUT=*
//SYSIN DD *
/LIST ID=* GEN=*
/*
//