Your SAS server obviously resides on a UNIX platform, so you have to use UNIX filename syntax:
- directories are separated by a forward slash instead of a backslash
- directory names should start with a slash, indicating an absolute path name starting at the root directory of the system
(other pathnames will automatically start from the current working directory, which is /sasend/sas_config/Lev1/SASApp/ in your case)
First, have your system administrator create a mount for your shared drive on your SAS server; after you have received the name of the directory where the shared drive is mounted, use it as the base for your filename.
Your path name looks awfully long at the moment; keep in mind that most operating systems will run out of space for filenames somewhere around 254 characters. And, for ease of use, strictly avoid blanks in file or path names. Use underlines instead.
... View more