GREPLAY Procedure

Displaying the List of Templates Provided by SAS/GRAPH

To write the list of templates stored in SASHELP.TEMPLT to the SAS log, submit the following code:
proc greplay nofs
tc=sashelp.templt;
   list tc;
run;