The SYSVIEW batch interface and issuing commands that result in a display that has more than one screen of data
search cancel

The SYSVIEW batch interface and issuing commands that result in a display that has more than one screen of data

book

Article ID: 51350

calendar_today

Updated On:

Products

SYSVIEW Performance Management

Issue/Introduction

 When using the batch interface in SYSVIEW, there is a method so that you can view all of the data that is returned if you are issuing a command that returns more than one screen of data.

Resolution

When issuing a SYSVIEW command via the batch interface that will return more than one screen of data, you can use the SCROLL statement to ensure that the complete display is provided.

For example: If the ACTIVITY command is entered and you want to make sure the batch output includes the complete display you would code the following:

//SYSIN    DD  *
  COMMAND=(ACTIVITY)
  SCROLL
  COMMAND=END
//