2
votes
1answer
26 views
Copying files from RWORK to WORK using EG
Can anyone advise how to perform a 'proc download' equivalent using EG?
ie copy files from the WORK library held on the remote server (SASUnix) to the local WORK library?
There m …
2
votes
2answers
20 views
How to suppress the display of output dataset nodes in EG?
In Enterprise Guide, any output datasets (created in WORK or other LIBNAME) are, by default, displayed as output nodes emitting from the program or code node that generates them. …
2
votes
1answer
11 views
Error with ODS and Proc Template
I am trying to create a custom template within a program run via Enterprise Guide. However, no matter what I do, I keep getting an error:
ERROR: Template 'MyTemplate' was unable …
0
votes
2answers
34 views
SAS Support for Enterprise Guide Add-In using VS2008?
Does SAS have any examples or templates/wizards that are usable in Visual Studio 2008? I'm trying to explore building custom tasks and I have EGuide installed along with MS-Addin …
1
vote
0answers
21 views
FileNotFoundException when using Enterprise Guide automation server with C#
Any idea why I get this exception when using C# to start up the Enterprise Guide automation server?
Code:
SAS.EG.Scripting.Application enterpriseGuide = new SAS.EG.Scripting.Appl …
2
votes
1answer
35 views
How to change verbosity of SAS Enterprise Guide Log
Looking at the log file generated by one line of 1 line of SAS Code you probably see what I mean. This can be annoying if you're used to work with SAS 9.1 to code your programs...
…
1
vote
2answers
24 views
SAS Enterprise Guide UNIX WORK library - viewing files
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
…