Previous Page | Next Page

The DISPLAY Procedure

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 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;

Previous Page | Next Page | Top of Page