I am trying to create a PDF file using ODS on a mainframe environment. Below is the code. The output is full of system characters
in the attachment. Is there a way to get this to work?
ODS PDF FILE="Z8853.HLRPT.PDF";
PROC PRINT DATA=COMBINED NOOBS LABEL SPLIT='*';
VAR _GRP DAY_PRAF_MIN DAY_ARAF_MIN
MTD_PRAF_MIN MTD_ARAF_MIN;
FORMAT DAY_PRAF_MIN DAY_ARAF_MIN MTD_PRAF_MIN MTD_ARAF_MIN 5.1;
TITLE 'MAINLINE FUEL METRICS';
/*
LABEL DAY_PRAF_MIN = 'DAY*PRAF'
DAY_ARAF_MIN = 'DAY*ARAF'
MTD_PRAF_MIN = 'MTD*PRAF'
MTD_ARAF_MIN = 'MTD*ARAF'
_GRP=' * '
;
*/
RUN;
ODS PDF CLOSE;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.