I am using SAS studio, fully online. In Scenario 4, to generate a pdf, I came up with this code which agrees with the solution: proc sort data = cert.laguardia out = work.laguardia; by dest; run; ods html close; ods pdf file = 'LGA Airport' style=FestivalPrinter; proc print data=work.laguardia; title 'Laguardia Flights'; by dest; run; ods pdf close; However, I cannot seem to actually create the pdf and get this message in the log: ERROR: Insufficient authorization to access /pbr/biconfig/940/Lev1/SASApp/LGA Airport. How do I view pdf output?
... View more