Hi experts,
I have encountered the problem documented here: https://sas.service-now.com/csm?id=kb_article_view&sysparm_article=KB0042055
I cannot find any way to monitor this KB for updates (via RSS as an example) so to know when this will be fixed. Not only that but at https://my.sas.com when I open the order I can see that a new update is available but there is no way to know what that update fixes...
In SAS 9 and SAS Viya 3.5 there is this site: https://tshf.sas.com/techsup/download/hotfix/HF2/Viya_home.html which I can track what fixes were released but I cannot find anything equivalent for Viya 4.
Any idea about this?
... View more
Hi experts,
I am developing a SAS Visual Investigator custom page extension and I am using the SVI API documented at:
https://developer.sas.com/sdk/vi/apiDocs/ and I have a question about this specific API: https://developer.sas.com/sdk/vi/apiDocs/interfaces/page_model.PageModel.html#data
It seems like this API allows access to data presented on the page (correct me if I am wrong) but it does not work for all types of components. For example, it seems to work with Child-Object Viewer component but not with Related Object component (I get a Javascript exception saying no data is available) even though both components are displayed on the same entity page.
1. Is my understanding of what PageModel.data does correct?
2. If it is correct, then shouldn't I be able to reach the underlying data of all objects on the page regardless of their component type?
... View more
I cannot figure out how to use the VA's parameters in the prompt's dataset as filters.
Here is my attempt.
The macro variable var_model is associated with the last combobox' choice in the xml prompt and once submitted should become assigned.
I thought about triggering 2 times the execute _action. But doing so gives an error.
%global var_model make type;
cas mySession sessopts=(caslib=casuser timeout=1800 locale="en_US");
caslib _all_ assign;
cas mySession sessopts=(caslib="dev");
libname mycas cas caslib='dev';
%if ^%symexist(var_model) %then %do;
proc casutil;
droptable casdata="cars2" quiet;
run;
/* data mycas.cars2(promote=yes); */
data work.cars2;
set mycas.cars;
where make="&make" and type="&type";
run;
%end;
%if %symexist(var_model) %then %do;
/* proc print data=mycas.cars2; */
proc print data=work.cars2;
where model="&model";
run;
... View more
Hello there, Community, I programmed an interface using the SAS Viya Job Execution Web Application tool. It is an HTML form that includes complex JavaScript code to dynamically and manually capture user inputs. These inputs are then sent to SAS using the %JESBEGIN and %JESEND macros, either through global macros or macros stored in tables. Following that, we include the relevant SAS programs, which are executed sequentially using %INCLUDE. These programs perform calculations, and once all operations are completed, the result is provided to the HTML form screen as an ODS output. At this point, the form is fully developed to send inputs to SAS. However, I now need to retrieve data from a SAS library and dynamically update my input boxes based on that data, specifically a date range. Currently, users input the bid period start and end dates, but the date range is hardcoded by us and periodically updated via a touch of JavaScript code. This approach is not sustainable. I want the date range to dynamically adjust based on a SAS library that we upload periodically, which contains the relevant date range. When our interface runs, it should automatically fetch the data from the SAS library and set the date range accordingly. According to my research on SAS Viya 3.5, it's currently unable to retrieve data from our Job Execution HTML form web application, as this functionality is not available in that version. Is there a solution to implement this functionality using SAS Viya 3.5? If I have not explained my issue clearly enough or if you need more specific information, please feel free to ask. I will provide you with the information as soon as possible. Thank you in advance for your questions and answers. Here is an example of my SAS Viya Job Execution HTML Form for the Bid Date Start and End Selection part:
... View more
Hi, I Want to implement the SSO for the SAS fat clients like SAS Enterprise guide, sas di studio and SAS Management Console. Generally used to open SAS tools from Citrix Windows 2019 server and the code executes on linux server. Can anyone help us to implement the SSO using the IWA method for sas fat clients. Kind Regards,
Siddhu
... View more
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.