I am challenging trying to create random passwords in PDFPASSWORD. It does not allow me use any of the random functions available in SAS to generate a random letters. Take for example: The general syntax is: PDFPASSWORD = (OPEN="PASSWORD" OWNER="PASSWORD"); When you try any mathematical functions or random function, it doesn't work, instead it returns vebatim the function instead of returning the resolved variable. For instance... PDFPASSWORD = (OPEN="PASSWORD" OWNER=RAND(2)); your password will be RAND(2) It does not resolve the function . Another Instance... PDFPASSWORD = (OPEN="PASSWORD" OWNER=MOD(2**5-1)); your password will be MOD(2**5-1) Can any body please help. I want to send out pdf passworded document to over 200 employees with different random generated passwords. Thanks, Efe
... View more