<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>NY Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>NY Tracker</description>
    <pubDate>Tue, 21 Apr 2026 13:46:25 GMT</pubDate>
    <dc:date>2026-04-21T13:46:25Z</dc:date>
    <item>
      <title>Re: How to change applicable users names after installation</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-change-applicable-users-names-after-installation/m-p/888287#M27071</link>
      <description>&lt;P&gt;I suspected that would be the answer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; but had hope that someone would share&amp;nbsp;some tips from experience.&lt;BR /&gt;Thank you very much for responding. I'll send a request to Tech Support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 05:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-change-applicable-users-names-after-installation/m-p/888287#M27071</guid>
      <dc:creator>NY</dc:creator>
      <dc:date>2023-08-08T05:55:16Z</dc:date>
    </item>
    <item>
      <title>How to change applicable users names after installation</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-change-applicable-users-names-after-installation/m-p/888114#M27066</link>
      <description>&lt;P&gt;Our SAS system is running&amp;nbsp;properly, without malfunctions for more than a year now &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;SAS 9.4M7, Windows Server, one machine.&lt;/P&gt;&lt;P&gt;To spice things up...&amp;nbsp;I am required to change usernames for:&lt;/P&gt;&lt;P&gt;SAS Installer&lt;/P&gt;&lt;P&gt;SAS &lt;SPAN&gt;Spawned Server User (sassrv)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SAS Demo User (sasdemo)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I found in the documentation how to change password but not the usernames themselves, and would appreciate&amp;nbsp;any help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you very much.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 11:12:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-change-applicable-users-names-after-installation/m-p/888114#M27066</guid>
      <dc:creator>NY</dc:creator>
      <dc:date>2023-08-07T11:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS BI Web services - RESTful JSON response - strign parameters only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-BI-Web-services-RESTful-JSON-response-strign-parameters-only/m-p/842026#M332936</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/117666"&gt;@rudfaden&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;You are right, proc json would work. But I'm trying to understand if I can use the simple way (defining output parameters in the STP) to send parameters that are not string in my reply. Any luck with that?&lt;/P&gt;&lt;P&gt;Thank you very much,&lt;/P&gt;&lt;P&gt;Nufar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 06:29:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-BI-Web-services-RESTful-JSON-response-strign-parameters-only/m-p/842026#M332936</guid>
      <dc:creator>NY</dc:creator>
      <dc:date>2022-11-02T06:29:51Z</dc:date>
    </item>
    <item>
      <title>SAS BI Web services - RESTful JSON response - strign parameters only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-BI-Web-services-RESTful-JSON-response-strign-parameters-only/m-p/841534#M332750</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have created a stored process with input and output parameters that I'm trying to call using SAS BI Web Services. My endpoint is JSON.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;*ProcessBody; 
 
%global BANK 
        CALCULATIONTYPE 
        COMPANYID 
        CUSTOMERID 
        MODELCODE 
        PREVIOUSCALCULATIONDATE 
        PREVIOUSEXPECTEDLOSS 
        PREVIOUSLOSSGIVENDEFAULT 
        PREVIOUSPROBABILITYOFDEFAULT 
        QUESTIONNAIREGRADE; 
 
%STPBEGIN; 
 
*  End EG generated code (do not edit this line); 
 
 
proc printto log=" D:\RiskModels\RestLogs\web_service_test_%sysfunc(today(),yymmdd10.)-%sysfunc(compress(%sysfunc(time( ),time.),":")).log";
   run;
libname srcdata "D:\RiskModels\SourceData";
proc sql noprint;
select distinct Client_LGD format=16.8 into :lgd from srcdata.lgd_table where 
ID =&amp;amp;customerID;
quit;
%let probabilityOfDefault=0.5;
%let lossGivenDefault = &amp;amp;lgd;
%let expectedLoss = %sysevalf(&amp;amp;lgd. * &amp;amp;probabilityOfDefault.);


*  Begin EG generated code (do not edit this line); 
;*';*";*/;quit; 
%STPEND; 
 
*  End EG generated code (do not edit this line); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;My output parameters were defined as DOUBLE, but in the response in my API tester tool (POSTMAN for example),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they all show as STRING.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "outputParameters": {
        "expectedLoss": "0.22068032",
        "probabilityOfDefault": "0.5",
        "lossGivenDefault": "0.44136064"
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I looked in SAS documentation the example shows a response with string variables only.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Does anyone succeed transfer numeric parameters?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/itechcdc/9.4/wbsvcdg/n1wblekhip1yrln1fv2s5b6a2d9f.htm" target="_self"&gt;https://documentation.sas.com/doc/en/itechcdc/9.4/wbsvcdg/n1wblekhip1yrln1fv2s5b6a2d9f.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 985px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76782i6FCE4D9876E23695/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you very much,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Nufar.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Oct 2022 13:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-BI-Web-services-RESTful-JSON-response-strign-parameters-only/m-p/841534#M332750</guid>
      <dc:creator>NY</dc:creator>
      <dc:date>2022-10-30T13:52:19Z</dc:date>
    </item>
    <item>
      <title>How to send JSON request using SAS BI WEB services</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-send-JSON-request-using-SAS-BI-WEB-services/m-p/835569#M25137</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have created a stored process with input and output parameters that I'm trying to call using SAS BI Web Services. See the SAS stp code below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;*ProcessBody; 
 
%global BANK 
        CALCULATIONTYPE 
        COMPANYID 
        CUSTOMERID 
        MODELCODE 
        PREVIOUSCALCULATIONDATE 
        PREVIOUSEXPECTEDLOSS 
        PREVIOUSLOSSGIVENDEFAULT 
        PREVIOUSPROBABILITYOFDEFAULT 
        QUESTIONNAIREGRADE; 
 
%STPBEGIN; 
 
*  End EG generated code (do not edit this line); 
 
 
proc printto log=" D:\RiskModels\RestLogs\web_service_test_%sysfunc(today(),yymmdd10.)-%sysfunc(compress(%sysfunc(time( ),time.),":")).log";
   run;

libname srcdata "D:\RiskModels\SourceData";

proc sql noprint;
select distinct Client_LGD format=16.8 into :lgd from srcdata.lgd_table where 
ID =&amp;amp;customerID;
quit;

%let probabilityOfDefault=0.5;
%let lossGivenDefault = &amp;amp;lgd;
%let expectedLoss = %sysevalf(&amp;amp;lgd. * &amp;amp;probabilityOfDefault.);
%let commentCodes = 1,2,3;


*  Begin EG generated code (do not edit this line); 
;*';*";*/;quit; 
%STPEND; 
 
*  End EG generated code (do not edit this line); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using Postman to call the stored process in POST method. My endpoint is (I omitted the server name for this example):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://server:443/SASBIWS/json/storedProcesses/RiskModels/web_test1" target="_blank" rel="noopener"&gt;https://server:443/SASBIWS/json/storedProcesses/RiskModels/web_service_test&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The format of the request is JSON. See an example of a request below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;Body:{"bank":"bank_name","customerID":"12345678","companyID":"12345678","calculationType":"1","modelCode":"111","questionnaireGrade":70.5,"previousCalculationDate":"2022-08-09","previousProbabilityOfDefault":0.6,"previousLossGivenDefault":0.5,"previousExpectedLoss":0.3}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I'm sending the JSON request with the header: "&lt;SPAN&gt;Content-Type:&amp;nbsp;application/json "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;the response is: "&lt;/SPAN&gt;&lt;SPAN&gt;HTTP&amp;nbsp;Status&amp;nbsp;415&amp;nbsp;–&amp;nbsp;Unsupported&amp;nbsp;Media&amp;nbsp;Type".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My request never reaches the storedprocess server, it gets an error from the webserver.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="inherit"&gt;So I guess my question is: What is the correct way to call SASBIWS in POST &lt;/FONT&gt;method&lt;FONT face="inherit"&gt;&amp;nbsp;using a JSON request.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Thank you very much,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Nufar.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 10:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-send-JSON-request-using-SAS-BI-WEB-services/m-p/835569#M25137</guid>
      <dc:creator>NY</dc:creator>
      <dc:date>2022-09-28T10:43:14Z</dc:date>
    </item>
  </channel>
</rss>

