Hi , Thank you very much for your help, but I dont have multiple pdfs , I have one word doc which is converted to pdf. I want to use this pdf as my cover page, and rest of the pdfs I will generate by using sas. Basically It looks like the below code, in the ods pdf text statement am referring to the coverpage pdf. ods pdf file='path.pdf' notoc startpage=no color=full style=colorramp; ods pdf text='^{style[preimage="C:\temp\test.pdf"}'; ods pdf startpage=now; goptions hsize=3.99 in vsize=4.2 in; proc print data=sashelp.class; goptions horigin=0 in vorigin=4 in; run; proc means data=sashelp.class; goptions horigin=4.25; var height; run; ods pdf close; Below is the error: Error: Unable to load image C:\temp\test.pdf; default image will be used instead
... View more