Create an ODS document and import SimpleExample.zip. The DOCUMENT procedure creates the ODS document Archive. The IMPORT TO statement imports SimpleExample.zip into the package myPackage. The LIST statement lists all of the levels of Archive.


proc document name=archive;
   import archive="SimpleExample.zip" to myPackage;
 
   list/levels=all;
   run;