Base SAS 9.1 Procedures Guide, Volumes 1, 2, 3 and 4
Example 1: Executing a SAS/AF Application
Procedure features:
-
PROC DISPLAY statement:
-
CATALOG = argument
-
Suppose that your company has developed a SAS/AF application that compiles statistics from an invoice database. Further, suppose that this application is stored in the SASUSER data library, as a FRAME entry in a catalog named INVOICES.WIDGETS. You can execute this application using the following SAS code:
Program
proc display catalog=sasuser.invoices.widgets.frame; run;