BookmarkSubscribeRSS Feed
HGimenez
Obsidian | Level 7

Hi everybody,

I need to generate ~1,000 statements with SAS, one statement for each customer in PDF format and e-mail them. Something similar to the account balance you get from your bank, very close to a credit card statement.

1- I guess ODS is the way to go. Is there other alternative?

2- I am sure somebody has done something like this. If you are so kind to share your code, I will really appreciate it. I am new to ODS and I don't have a clue on where to start. Any suggestions or comments are welcome

3- Is it possible to design a template with a graphic desing tool and "fill the blanks" with SAS?

 

Thanks a lot!

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Start by writing the code for 1 statement.  This could be as simple as:

data tmp;
  str="hello";
run;

ods pdf file="c:\tmp.pdf";
proc print data=tmp noobs;
run;
ods pdf close;

filename tmp email "..." attach="c:\tmp.pdf";

data _null_;
  file tmp;
  put 'Hi your file.';
run;

filename tmp clear;

Once you have it working for one, then you can start to replace key parts with macro to be able to run it for X number of times.

 

ASHISH2525
Quartz | Level 8

Hi,

 

Were you able to accomplish the task. Can you share the code with me. it will be very helpful 

Thanks 

 

 

Regards,

Ashish

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 930 views
  • 1 like
  • 3 in conversation