IMSTAT Procedure (Data and Server Management)

REPLAY Statement

The REPLAY statement enables you to display a previously saved result table or set of tables. The REPLAY statement displays the saved result tables regardless of the NOPRINT option. This enables you to suppress output generation with the NOPRINT option and to then display the tables that you want in a different order.

Syntax

REPLAY table-list;

Optional Argument

table-list

specifies the saved result tables to display.

Example: Display Result Tables in a Different Order

The following SAS statements suppress the display of output with the NOPRINT option. Then, the tables are displayed in the reverse order.
proc imstat data=sales.prdsale noprint;
    fetch country region actual / save=salestab from=1 to=5;
    fetch predict actual / save=predicttab from=1 to=10;
    replay predicttab salestab;
quit;