BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DavidCaliman
Calcite | Level 5

I can send email via the Job status handling.

If an error occurs in the job, I need to pass the job name in the message of the email.

How to do it within the handling status of a job?

Searching on google, I see that there is a variable called ETLS_JOBNAME.

And in the code generated by the DI, the following command sends the message of the email:

      data _null_;

                       file sendMail;

                       dttm = put(datetime(),nldatm.);

                       put dttm "&message.";

        run;

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

&ETLS_JOBNAME gets defined as global macro variable. It should therefore be possible to pass this macro variable as message value.

Capture.PNG

This then generates code as below:

      %etls_sendEmail

         (address = something,

          Message = &ETLS_JOBNAME);

View solution in original post

2 REPLIES 2
MikeFrost
SAS Employee

Hi David,

I don't know if you determined a resoluotion for yourself on this question or not. If not, I recommend that you reach out to SAS Technical Support and open a track to have this question addressed.

Regards,

Mike F.

Patrick
Opal | Level 21

&ETLS_JOBNAME gets defined as global macro variable. It should therefore be possible to pass this macro variable as message value.

Capture.PNG

This then generates code as below:

      %etls_sendEmail

         (address = something,

          Message = &ETLS_JOBNAME);

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

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