Previous Topic: 5.3.4.3 WLGERL Usage Considerations

Next Topic: 5.3.5 WLE Configuration (WLGCFG) File

5.3.4.4 WLGERL Retrieval Examples


This section presents a typical WLGERL retrieval example.

  Produce a report showing the count of the top ten error
  messages with message text.

   PROC FREQ DATA=&PWEBX.WLGERL01 ORDER=FREQ; TABLES
    ERLMSGNO*ERLMSGTX / OUT=TOP10(DROP=PERCENT) NOCUM NOPRINT
    NOPERCENT;
   RUN;

   OPTIONS OBS=10;

   PROC PRINT DATA=TOP10;
   RUN;