BookmarkSubscribeRSS Feed
Bal23
Lapis Lazuli | Level 10

 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */

 

would anybody explain why do we need this? If we do not have this, what will happen? Thanks

4 REPLIES 4
Kurt_Bremser
Super User

To answer this question, we need to know the context. (Re)Setting such automatic macro variables can and does make sense in certain situations.

 

So where have you encountered this statement?

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Think of it this way.  

 

Datastep 1 runs and fails, error code set to 1.

Datastep 2 runs and passes, but error code still 1.

 

Hence why you reset the error macro at the point you want.

Tom
Super User Tom
Super User

Normally you see that line in code generated by PROC IMPORT.  When reading from a text file PROC IMPORT is essentially an SCL program that analyzes the text file and generates a data step to read it. The generated data step will update that macro variable if there are any errors. So then the PROC can detect the updated macro variable and report the error.

art297
Opal | Level 21

If you're asking the question "Does one need to include a line of code like that when we manually rerun code that was produced by proc import or export?" the answer is absolutely not.

 

Art, CEO, AnalystFinder.com

 

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 4937 views
  • 2 likes
  • 5 in conversation