Requirement to generate a high level report to list all of the Report Names in a Ca View database .
The Report should not list multiple entries for each individual report .
Example:
MYREPT52-C02 only this entry
MYREPT52-C02 not this
MYREPT52-C02 or this
MYREPT52-C05 only this entry
MYREPT52-C05 not this
MYREPT52-C05 or this
MYREPT52-C07 only this
MYREPT52-C07 not this
MYREPT52-C07 or this
Release : 14.0
SARGRW with the following input will generate the required report
/CONTROL DATABASE= YOUR DB HLQ
RULER=YES
/TITLE 'Listing of Sysouts'
/DEFINE REPORT CHAR
/SET REPORT = ID
/IF ID NE PREV(ID)
/PRINT ID 'ID'
/END