By admin | December 2, 2009

SAS Certified Adv Programmer 130 Questions (26)

Which one of the following automatic SAS macro variables contains the return code from a previously executed step?

A. &RC
B. &ERR
C. &SYSRC
D. &SYSERR

3 comments | Add One

  1. admin - 12/2/2009 at 10:07 am

    D

  2. Consty - 02/20/2013 at 4:14 pm

    D:SYSERR is used to detect major system errors, such as out of memory or failure of the component system when used in some procedures and DATA steps

  3. chinawokee - 07/9/2014 at 9:48 pm

    syserr contains a return code status that is set by the DATA step and some SAS procedures to indicate if the step or procedure executed successfully

    %sysrc, an autocall macro, was created to enable you to test for specific I/O conditions while protecting your code from future changes in _IORC_ values

Leave a Comment

Leave a Reply

Your email address will not be published.