View the ODS documents, choose an ODS document, and list the entries of the opened ODS document. The DOC statement (with no arguments specified) prints a listing of all of the available documents that are in the SAS System.
The DOC statement with the NAME= option specifies the current document, WORK.Univ. The LIST statement with the LEVELS=ALL option lists detailed information on all levels of the document WORK.Univ.
proc document; doc; doc name=univ; list/levels=all;