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

Hi,

Under Unix I will start program_A, this program will call program_B at a certain moment.
In program_B I like to check out some macro variables.

Can someone tell me which value macrovariable SYSJOBID would have, at the moment of executing program_B ?

I'm hoping for a automatic macro variable which will contain such like /<path>/program_A.sas (the calling program).

Sorry, but I can't test it on my own due to a lack of authorisation in Unix.

In SAS Enterprise_Guide the variable _SASPROGRAMFILE would have a value of program_A.
But this programs are meant to run under SAS-Unix commandline-mode.

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Peter_C
Rhodochrosite | Level 12

SYSJOBID

might be the processID of the SAS session that is running (A or B)

when a sas task is launched, the name of the initial program invoked as SAS starts (as a "batch SAS task" is stored in the system option SYSIN

retrieve the value with base SAS code like

%put %sysfunc( getoption( sysin )) ;

View solution in original post

2 REPLIES 2
Peter_C
Rhodochrosite | Level 12

SYSJOBID

might be the processID of the SAS session that is running (A or B)

when a sas task is launched, the name of the initial program invoked as SAS starts (as a "batch SAS task" is stored in the system option SYSIN

retrieve the value with base SAS code like

%put %sysfunc( getoption( sysin )) ;

Hans_Netherlands
Calcite | Level 5

Thanks a lot Peter, it works great.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 2 replies
  • 1418 views
  • 0 likes
  • 2 in conversation