09-23-2021
Vince_SAS
Rhodochrosite | Level 12
Member since
06-23-2011
- 526 Posts
- 449 Likes Given
- 36 Solutions
- 188 Likes Received
-
Latest posts by Vince_SAS
Subject Views Posted 16592 09-02-2021 12:37 PM 1844 07-13-2021 08:54 AM 1886 06-27-2021 01:40 PM 5618 06-10-2021 07:44 AM 1816 04-26-2021 03:17 PM 1448 03-09-2021 03:39 PM 1523 03-01-2021 07:44 AM 984 02-08-2021 07:47 AM 4657 01-25-2021 10:09 AM 2317 01-24-2021 04:00 PM -
Activity Feed for Vince_SAS
- Got a Like for Re: determine stored process web address. 01-05-2024 07:29 AM
- Got a Like for Re: How to make part of the variable bold in report. 04-20-2023 04:27 AM
- Got a Like for Re: Macro variable value containing superscript 2. 02-07-2023 04:02 AM
- Got a Like for Re: Help ODS HTML Output. 01-26-2023 04:24 AM
- Got a Like for Re: Suppress proc report output. 12-06-2021 06:50 AM
- Got a Like for Re: Stored Process - Output xlsx with multiple sheet to Excel client. 11-01-2021 02:44 AM
- Got a Like for Re: Reading XLSX file and change the all column type into character. 09-23-2021 04:51 AM
- Got a Like for Re: Controlling target frame of link generatee by proc sgplot. 09-02-2021 01:30 PM
- Posted Re: How can I change my SAS into English? on SAS Software for Learning Community. 09-02-2021 12:37 PM
- Liked Welcome to the SAS Software for Learning Community! for Cynthia_sas. 07-30-2021 02:02 PM
- Got a Like for Re: SAS OnDemand - For companies, legal?. 07-13-2021 02:33 PM
- Got a Like for Re: SAS OnDemand - For companies, legal?. 07-13-2021 09:26 AM
- Posted Re: SAS OnDemand - For companies, legal? on SAS Software for Learning Community. 07-13-2021 08:54 AM
- Got a Like for Re: What release of SAS is used with SAS On Demand for Academics?. 06-27-2021 01:43 PM
- Posted Re: What release of SAS is used with SAS On Demand for Academics? on SAS Software for Learning Community. 06-27-2021 01:40 PM
- Liked Re: What release of SAS is used with SAS On Demand for Academics? for Sajid01. 06-27-2021 01:39 PM
- Posted Re: How to change the language settings in SAS Viya for Learners? on SAS Communities Library. 06-10-2021 07:44 AM
- Liked Where is _DATAOUT documented for Tom. 05-22-2021 10:10 AM
- Liked SAS® Job Execution Web Application: What It Is & When to Use It for joeFurbee. 05-04-2021 03:07 PM
- Posted Re: Proper encoding of Symbols passed to SAS over the Web on SAS Programming. 04-26-2021 03:17 PM
-
Posts I Liked
Subject Likes Author Latest Post 5 2 4 5 2 -
My Liked Posts
Subject Likes Posted 1 01-25-2017 01:19 PM 1 08-13-2018 12:47 PM 1 10-09-2018 12:20 PM 1 08-15-2018 05:51 PM 1 12-14-2018 08:39 AM -
My Library Contributions
Subject Likes Author Latest Post 2
09-02-2021
12:37 PM
I performed a Web search for: change browser locale
Here is one article that might be useful:
How to Change Your Browser's Language
https://www.wikihow.com/Change-Your-Browser%27s-Language
Vince DelGobbo
SAS R&D
... View more
07-13-2021
08:54 AM
2 Likes
There is additional information that you might find helpful in the "License" link on the SAS OnDemand login page. Here is the link:
https://support.sas.com/ondemand/pdf/click_license.pdf
Vince DelGobbo
SAS R&D
... View more
06-27-2021
01:40 PM
1 Like
Also:
%put &=SYSVLONG;
Vince DelGobbo
SAS R&D
... View more
06-10-2021
07:44 AM
Here is some reference documentation:
SAS University Edition: Help Center > What determines the language of my SAS Studio session? https://support.sas.com/software/products/university-edition/faq/localization.htm
This the way that most multilingual Web applications work.
Vince DelGobbo
SAS R&D
... View more
04-26-2021
03:17 PM
The quotation marks are stripped from the input parameter to prevent cross-site scripting code injections:
SAS/IntrNet 9.4: Application Dispatcher > PROC APPSRV Statement > UNSAFE='string'
https://go.documentation.sas.com/doc/en/dispatch/9.4/n08ru77fqa1k2kn17p6oq9abvl0h.htm#n0ad6r9wll3y50n1hoxa7an2c4bc
If you have a good reason to access the value that was passed in, including the quotation marks, you can use the APPSRV_UNSAFE function:
SAS/IntrNet 9.4: Application Dispatcher > Development Tasks > Application Server Functions > APPSRV_UNSAFE Function
https://go.documentation.sas.com/doc/en/dispatch/9.4/n0gc4breypvrrzn1jfsuk607bcp2.htm
But it's called "unsafe" for a reason. You can read a little more about the cautions of using it in the SAS Viya documentation.
SAS 9.4 and SAS Viya 3.5 Programming Documentation > DATA Step Programming > Functions and CALL Routines > Dictionary of Functions and CALL Routines > COMPSRV_OVAL Function
https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lefunctionsref/p0nj8y96j7l6cun1oholejcecm4x.htm
Vince DelGobbo
SAS R&D
... View more
03-09-2021
03:39 PM
1 Like
In the absence of the _GOPT_DEVICE input parameter, the STPBEGIN macro uses the JAVAIMG device driver on UNIX systems. It appears that Java is misconfigured on your system, and you can open a track with our Technical Support Department to get help fixing that:
https://support.sas.com/en/technical-support/submit-a-support-request.html
As a workaround, try specifying _GOPT_DEVICE=png as a URL parameter.
Vince DelGobbo
SAS R&D
... View more
03-01-2021
07:44 AM
It would be helpful to have more information about your failing stored processes.
Can you rerun a simple one specifying &_DEBUG=log in the URL, and then attach the log?
Also, view the source of the HTML result, find the IMG tag, and copy-and-paste it your response.
Vince DelGobbo
SAS R&D
... View more
02-08-2021
07:47 AM
What you are describing is not the proper operation of your system. Please open a track with our Technical Support department to get this problem resolved.
https://support.sas.com/en/technical-support/submit-a-support-request.html
Vince DelGobbo
SAS R&D
... View more
01-25-2021
10:09 AM
1 Like
If you want to create your own HTML, then don't use ODS. It is ODS that has a lock on the _WEBOUT FILEREF.
Vince DelGobbo
SAS R&D
... View more
01-24-2021
04:00 PM
1 Like
ODS RTF has been in production for a long time, and is another option.
Vince DelGobbo
SAS R&D
... View more
01-21-2021
08:28 AM
1 Like
Use SAS Enterprise Guide to add a prompt to your project, and then add the prompt to the node. Test the operation in Enterprise Guide and when you have it working, create a stored process from the node. The prompt will then be available in your stored process.
A lot has been written about prompts; here is some documentation to get you started:
SAS Enterprise Guide 8.1: User's Guide > Working with Prompts > About Prompts https://go.documentation.sas.com/?cdcId=egdoccdc&cdcVersion=8.1&docsetId=egug&docsetTarget=n1ufxermnvwsbbn1tvu68m9r6uw1.htm
Vince DelGobbo
SAS R&D
... View more
01-21-2021
08:17 AM
I am pretty sure that PROC STREAM is part of Base SAS.
Please open a track with our Technical Support Department. They can best help you solve this problem.
https://support.sas.com/en/technical-support/submit-a-support-request.html
Vince DelGobbo
SAS R&D
... View more
10-09-2020
02:18 PM
3 Likes
My papers might help you when working with Excel:
https://support.sas.com/rnd/papers/intro-multisheet-excel-with-sas/index.html
The "ExcelXP Tagset Paper Index" link on that page might also be helpful.
Vince DelGobbo
SAS R&D
... View more
10-09-2020
01:44 PM
Try adding a LENGTH statemement:
length rc $32767;
Vince DelGobbo
SAS R&D
... View more
10-09-2020
01:42 PM
1 Like
You didn't follow my code pattern; you still have FILE= on the second ODS statement, so you only get the last output.
Vince DelGobbo
SAS R&D
... View more