1
vote
3answers
20 views
Using ODS to write to network path
Hi,
I am using ODS to generate some html files see code below
ods html file="&BASE.\index.html"
if &BASE refers to my c: drive e.g. c:\sasreports there is no problem …
2
votes
1answer
33 views
How to add Server ‘Files’ directory in Enterprise Guide?
Hi,
I would like to know if it's possible to add some directories in the
panel Server List of SAS enterprise Guide 4.
By default, the connected user access to E:!username\ dire …
1
vote
1answer
19 views
Easy way to change the Server Association for All Nodes in an Enterprise Guide Project?
We have several environments (DEV/TEST/DMZ, etc) that need to run the same EG File (that stays in Source Control). I really need to be able to deploy the same file to each environ …
2
votes
1answer
188 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 …
2
votes
2answers
91 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. …
0
votes
2answers
133 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 …
2
votes
1answer
58 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
1answer
164 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
0answers
89 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 …
1
vote
2answers
72 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";
…