- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I've recreated the issue as simply as I can... in Enterprise Guide, I have a very simple process with two programs.
ProgramA:
%global TestDTE; %let TestDTE = %sysfunc(putn(%sysfunc(TODAY()),yymmdd10.)); run; %put _GLOBAL_; run;
ProgramB:
%put _GLOBAL_; run; proc sql; connect to SQLSVR(dsn='testdsn'); create table work.jpstemp as select * from connection to SQLSVR ( SELECT dt1 = %str(%')&TestDTE%str(%'); ); run;
So, just creating a simple global variable in ProgramA, which is linked into ProgramB. ProgramB then wants to consume the variable.
Before ProgramA is finished, I put all globals, which has among other things:
GLOBAL TESTDTE 2017-09-06
But in ProgramB, the first thing I do is put all globals again, and it is no longer there... which leads to the "symbolic reference not resolved" warning in ProgramB's sample SQL statement.
My understanding is that globals should remain for the duration of my EG session, and when running a ProcessFlow, they should remain over the course of the entire process. Is that an incorrect assumption, or can this be fixed up somehow?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Kind of embarassing, but I figured it out: the two programs were somehow targeting different workspace servers.
Once both were on the same server, all was well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Kind of embarassing, but I figured it out: the two programs were somehow targeting different workspace servers.
Once both were on the same server, all was well.