<?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>Frank_Boekamp Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>Frank_Boekamp Tracker</description>
    <pubDate>Sat, 09 May 2026 22:24:30 GMT</pubDate>
    <dc:date>2026-05-09T22:24:30Z</dc:date>
    <item>
      <title>Re: Sorting Data</title>
      <link>https://communities.sas.com/t5/Developers/Sorting-Data/m-p/617430#M619</link>
      <description>&lt;P&gt;Creating s sorted table in CAS seems to be possible using partioning functionality. You can order variables within a partition. So to create an ordered CAS table, you should create one (dummy) partition for the whole table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Examples how to get an ordered CAS table */
cas;
caslib _all_ assign;
 
/* following code uses a 9.4 SAS dataset as input and creates a sorted table in CAS */
data work.unsorted;
     group = "A";       
     w1 = 5; w2 = 6; output;
     w1 = 3; w2 = 3; output;
     w1 = 1; w2 = 2; output;
     w1 = 3; w2 = 4; output;
run;

proc casutil
   outcaslib="casuser";
   load data= "unsorted" casout="sort1" replace partitionby=(group) orderby=(w1 w2) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It's also possible to create a sorted CAS table based on a CAS table as input. This routine could replace a proc sort from 9.4:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Following code runs in CAS and sorts the columns in a CAS table */&lt;BR /&gt;
/* A dummy group is added to put all data in the same partition */&lt;BR /&gt;&lt;BR /&gt;
data casuser.unsorted;
     group = "A";       
     w1 = 5; w2 = 6; output;
     w1 = 3; w2 = 3; output;
     w1 = 1; w2 = 2; output;
     w1 = 3; w2 = 4; output;
run;

data casuser.sort3 (partition=(group) orderby=(w1 w2));
    set casuser.unsorted ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can use this sorted dataset for subsequent datasteps.&amp;nbsp;But: to use constructs like retain and lag() you still have to change the datastep code: you could add the datastep option&lt;EM&gt;&amp;nbsp; / single=yes&lt;/EM&gt; to force CAS to run the datastep single threaded or use some retain logic to deal with multi threading.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One thing that is not working like it should do: order variables in descending order like in following example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=casref&amp;amp;docsetTarget=p12eiok32viouqn1huacr2d39nl0.htm&amp;amp;docsetVersion=1.0&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=casref&amp;amp;docsetTarget=p12eiok32viouqn1huacr2d39nl0.htm&amp;amp;docsetVersion=1.0&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This example contains some syntax errors and is not sorting variable ch as it should do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My own example to show this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* following code runs in CAS and should order column w2 descending within column w1 */
/* This is not working as expected: column w2 is not ordered descending within w1  */
data casuser.sort4 (partition=(group) orderby=(w1 DESCENDING w2));
    set casuser.unsorted ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Why is this not working???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 13:38:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Sorting-Data/m-p/617430#M619</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2020-01-15T13:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Data</title>
      <link>https://communities.sas.com/t5/Developers/Sorting-Data/m-p/610434#M606</link>
      <description>&lt;P&gt;Sorting data sets in CAS is not even possible, proc sort and order by in proc FEDSQL for example do not exist in CAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be careful using SAS base code in CAS: see &lt;U&gt;&lt;FONT color="#000025" face="Calibri,Calibri_MSFontService,Sans-Serif" style="background-color: #ffffff;"&gt;running the DATA step in CAS with special attention to RETAIN, LAG, and _N_&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="Hyperlink SCXW199572596 BCX1" style="color: inherit; cursor: text; font-family: &amp;amp;quot; segoe ui&amp;amp;quot;,&amp;amp;quot;segoe ui web&amp;amp;quot;,arial,verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; -ms-touch-select: none; -ms-user-select: text; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-tap-highlight-color: transparent; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px;" href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2184-2018.pdf" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN class="TextRun Underlined SCXW199572596 BCX1" style="color: #0000ff; font-family: Calibri,Calibri_MSFontService,Sans-Serif; font-size: 11pt; line-height: 19.42px; -ms-touch-select: none; -ms-user-select: text; text-decoration: underline; -webkit-tap-highlight-color: transparent; padding: 0px; margin: 0px;" data-contrast="none"&gt;&lt;SPAN class="NormalTextRun SCXW199572596 BCX1" style="background-color: inherit; -ms-touch-select: none; -ms-user-select: text; -webkit-tap-highlight-color: transparent; padding: 0px; margin: 0px;"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2184-2018.pdf&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS Studio on Viya, you can use the 'old' style SAS Base code. But then you are not profiting from the big performance gain in CAS which originates from multiple threading and in-memory processing of data.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2019 11:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Sorting-Data/m-p/610434#M606</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-12-09T11:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create an xmr control chart in VA 7.4</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-create-an-xmr-control-chart-in-VA-7-4/m-p/609463#M13356</link>
      <description>&lt;P&gt;Hear hear&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 17:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-create-an-xmr-control-chart-in-VA-7-4/m-p/609463#M13356</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-12-04T17:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create an xmr control chart in VA 7.4</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-create-an-xmr-control-chart-in-VA-7-4/m-p/607699#M13346</link>
      <description>&lt;P&gt;In SAS VA 7.4 I don't know but in SAS Viya proc scp is now available in CAS, creating the tables for XMR charts. See&lt;/P&gt;
&lt;P&gt;Process Monitoring in SAS Viya with the SPC Procedure&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=HNmJicNznIg" target="_blank"&gt;https://www.youtube.com/watch?v=HNmJicNznIg&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A visual component you have to build yourself though.It would be great to see a visual object in SAS VA someday to create XMR charts OOTB.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 14:39:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-create-an-xmr-control-chart-in-VA-7-4/m-p/607699#M13346</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-11-27T14:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 8.4 linking section</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-4-linking-section/m-p/588955#M13046</link>
      <description>&lt;P&gt;Hi Sam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see any breadcrumb trails in my report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not opening a new report, I'm linking sections in the same report from text objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Frank&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 07:23:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-4-linking-section/m-p/588955#M13046</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-09-16T07:23:50Z</dc:date>
    </item>
    <item>
      <title>SAS VA 8.4 linking section</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-4-linking-section/m-p/587151#M13020</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I open a section by clicking on a link in VA 8.3 I used to get an button-like&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;arrow &lt;/SPAN&gt;in the top left which took me back to the section that contained the link. In SAS VA 8.4 that&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;button-like&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; color: #333333; cursor: text; display: inline; float: none; font-family: &amp;amp;quot; helevticaneue-light&amp;amp;quot;,&amp;amp;quot;helvetica neue&amp;amp;quot;,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;arrow&lt;/SPAN&gt; seems to bee missing or am I missing something?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Frank&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2019 07:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-4-linking-section/m-p/587151#M13020</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-09-09T07:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Measure displayed in geo map using clustering in SAS VA 8.3.1</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Measure-displayed-in-geo-map-using-clustering-in-SAS-VA-8-3-1/m-p/555344#M12374</link>
      <description>&lt;P&gt;Hi Falko,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's clear to me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope that this will be realized soon because it will make the geo map with clustering a lot more usable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Frank&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 12:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Measure-displayed-in-geo-map-using-clustering-in-SAS-VA-8-3-1/m-p/555344#M12374</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-05-01T12:57:32Z</dc:date>
    </item>
    <item>
      <title>Measure displayed in geo map using clustering in SAS VA 8.3.1</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Measure-displayed-in-geo-map-using-clustering-in-SAS-VA-8-3-1/m-p/555311#M12372</link>
      <description>&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;Hi There,&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;I'm wondering if you can display some other measure instead of frequency in a geographical map using dynamic clustering based on coordinates. It seems to always display the frequency instead of the selected data item that the geo data item is based on.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;Cheers, Frank&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 09:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Measure-displayed-in-geo-map-using-clustering-in-SAS-VA-8-3-1/m-p/555311#M12372</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-05-01T09:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Error importing XML file with automap in SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Error-importing-XML-file-with-automap-in-SAS-Viya/m-p/555152#M344</link>
      <description>&lt;P&gt;Reading and writing XML is working fine using next code;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename xml_in filesrvc folderpath='/Users/myname/test/' filename='xml_in.xml';
filename xml_out filesrvc folderpath='/Users/myname/test/' filename='xml_out.xml';

data test;
	length line $ 32676;;
	infile xml_in lrecl=32767;
	file xml_out_out;
	input line;
	put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using &amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;complete pathname, filename, and file extension&lt;/SPAN&gt; in a filename statement seems not to work in SAS Viya.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I'm puzzled what to do with the libname statement with the automap option.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xml_in xmlv2 xmlfileref=xml_in automap=replace xmlmap=xx_map; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2019 17:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Error-importing-XML-file-with-automap-in-SAS-Viya/m-p/555152#M344</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-04-30T17:49:40Z</dc:date>
    </item>
    <item>
      <title>Error importing XML file with automap in SAS Viya</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Error-importing-XML-file-with-automap-in-SAS-Viya/m-p/555135#M342</link>
      <description>&lt;DIV&gt;&lt;FONT style="background-color: #ffffff;"&gt;Hi there,&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT style="background-color: #ffffff;"&gt;I'm stuck with a piece of code that always worked on SAS 9.4. It should import a complex hierarchical XML file automatically to several SAS datasets. &lt;FONT style="background-color: #ffffff; color: #333333; font-family: &amp;amp;quot; helevticaneue-light&amp;amp;quot;,&amp;amp;quot;helvetica neue&amp;amp;quot;,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I can read the xml file in a datastep without any problems. But using the xmlv2 engine combined with automap option gives an error.&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT style="background-color: #ffffff;"&gt;The code I'm trying is this;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename xml_in filesrvc folderpath='/Users/myname/test/' filename='xml_in.xml';
filename xx_map temp;
 
libname xml_in xmlv2 xmlfileref=xml_in automap=replace xmlmap=xx_map; 
proc copy in=xml_in out=work;
run; quit;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT style="background-color: #ffffff;"&gt;The error;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;ERROR: The AUTOMAP= option accesses files that are specified with either a physical location or associated with a fileref device type of DISK or TEMP only.&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;any ideas?&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;Cheers,&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;Frank&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE class="sasLog" id="pre_sasLog_1464" style="background-color: transparent; -webkit-user-select: text; -webkit-user-modify: read-only; -webkit-touch-callout: default; border-top-width: 0px; border-bottom-width: 0px;"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Apr 2019 17:12:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Error-importing-XML-file-with-automap-in-SAS-Viya/m-p/555135#M342</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-04-30T17:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fontsize titles in VA 8.3.1</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Fontsize-titles-in-VA-8-3-1/m-p/546814#M12156</link>
      <description>&lt;P&gt;Double the title clicking works fine, thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 08:00:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Fontsize-titles-in-VA-8-3-1/m-p/546814#M12156</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-03-28T08:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to import report items from a different report in SAS VA 8.2</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-import-report-items-from-a-different-report-in-SAS-VA-8-2/m-p/546569#M12152</link>
      <description>&lt;P&gt;can not find it in version 8.3.1&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 15:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-import-report-items-from-a-different-report-in-SAS-VA-8-2/m-p/546569#M12152</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-03-27T15:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Import other Report section in the current VA 8.3 report</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Import-other-Report-section-in-the-current-VA-8-3-report/m-p/546568#M12151</link>
      <description>&lt;P&gt;&amp;nbsp;I also miss this functionality.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 15:49:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Import-other-Report-section-in-the-current-VA-8-3-report/m-p/546568#M12151</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-03-27T15:49:49Z</dc:date>
    </item>
    <item>
      <title>Fontsize titles in VA 8.3.1</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Fontsize-titles-in-VA-8-3-1/m-p/546564#M12150</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm missing a property to set fontsize for titles of graphs in SAS VA 8.3.1. Where can I set this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Frank&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 15:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Fontsize-titles-in-VA-8-3-1/m-p/546564#M12150</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-03-27T15:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 8.3 problem with word wrap in Listtable</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537656#M11956</link>
      <description>&lt;P&gt;The problem is solved by our hosting provider. Thanks for your support&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537656#M11956</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-22T13:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 8.3 problem with word wrap in Listtable</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537484#M11953</link>
      <description>&lt;P&gt;Hi Madelyn,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I looked more into this issue: it's not just a problem with the 'text wrap'&amp;nbsp;property but it seems to have this effect on certain other properties in the Listtable as well, like properties from the Style group and from Cells and Table group. And the issue also manifests in other objects like in a bar chart with certain properties. I can not open a part of the reports anymore because of this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The behavior is&amp;nbsp;very consistent, some properties never give a problem, others always give a problem. I tried different browsers with same results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The about dialog box you mention I can not find, can you give me a hint where I can find this?&lt;/P&gt;
&lt;P&gt;Maybe following helps you: these are the first two XML lines (from the BIRD editor) of a SAS VA report:&lt;/P&gt;
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;SASReport xmlns="&lt;A href="http://www.sas.com/sasreportmodel/bird-4.1.2" target="_blank"&gt;http://www.sas.com/sasreportmodel/bird-4.1.2&lt;/A&gt;" label="mytest4" createdLocale="en" createdVersion="4.1.2" dateCreated="2019-02-21T17:17:18Z" dateModified="2019-02-21T18:17:06Z" createdApplication="SAS Visual Analytics 8.3.1" lastModifiedApplication="SAS Visual Analytics 8.3.1" nextUniqueNameIndex="102"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the Environment Manager I see no log messages at all, so no errors there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe following will help you: the XML code (from the BIRD editor) of a SAS VA report with an issue after I tried to save it:&lt;/P&gt;
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&amp;gt;&amp;lt;error errorCode="0" httpStatusCode="500"&amp;gt;&amp;lt;details&amp;gt;&amp;lt;detail&amp;gt;correlator: 1027d51d-6812-40f3-aa0f-6c67778d85da&amp;lt;/detail&amp;gt;&amp;lt;detail&amp;gt;traceId: d6484a4db7a82fba&amp;lt;/detail&amp;gt;&amp;lt;detail&amp;gt;path: /reports/content&amp;lt;/detail&amp;gt;&amp;lt;/details&amp;gt;&amp;lt;links/&amp;gt;&amp;lt;version&amp;gt;2&amp;lt;/version&amp;gt;&amp;lt;/error&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Frank&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 18:25:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537484#M11953</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-21T18:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 8.3 problem with word wrap in Listtable</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537421#M11951</link>
      <description>&lt;P&gt;I tried different datasets and they all give the same result when checking 'word wrap'&amp;nbsp; in a listtable and saving the report:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'An error was encountered saving the report'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I enclosed print-screens of an example with a good oldie dataset (sashelp.class)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sit_1.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27330i9963B14C86E23351/image-size/large?v=v2&amp;amp;px=999" role="button" title="sit_1.jpg" alt="sit_1.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sit_2.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27329i9DE2E86463B9D013/image-size/large?v=v2&amp;amp;px=999" role="button" title="sit_2.jpg" alt="sit_2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 15:10:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537421#M11951</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-21T15:10:48Z</dc:date>
    </item>
    <item>
      <title>SAS VA 8.3 problem with word wrap in Listtable</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537376#M11949</link>
      <description>&lt;P&gt;I get an error saving a report with a list table with word wrap property set to yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a bug and can this be fixed quickly please?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 13:04:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-8-3-problem-with-word-wrap-in-Listtable/m-p/537376#M11949</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-21T13:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: missing values using AggregateCells operator in SAS VA 8.3?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/missing-values-using-AggregateCells-operator-in-SAS-VA-8-3/m-p/536793#M11927</link>
      <description>&lt;P&gt;Thanks Sam&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 15:47:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/missing-values-using-AggregateCells-operator-in-SAS-VA-8-3/m-p/536793#M11927</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-19T15:47:04Z</dc:date>
    </item>
    <item>
      <title>missing values using AggregateCells operator in SAS VA 8.3?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/missing-values-using-AggregateCells-operator-in-SAS-VA-8-3/m-p/536687#M11923</link>
      <description>&lt;P&gt;I'm using the (new) AggregateCells operator for calculating a moving average in SAS VA 8.3 like below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AggregateCells(_Average_, My measure, default,CellIndex(current, -4), CellIndex(current, 0))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Problem is that the first 4 periods return values instead of missing values. So for example for period 1 the moving average is calculated is an average of just the value of period 1. For period 2 the moving average is calculated is an average of just the values of period 1 and period 2. etc. This is not correct behavior in my opinion: I would not expect to see values for the first 4 periods when using this operator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What can I do to show correct results?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 10:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/missing-values-using-AggregateCells-operator-in-SAS-VA-8-3/m-p/536687#M11923</guid>
      <dc:creator>Frank_Boekamp</dc:creator>
      <dc:date>2019-02-19T10:10:50Z</dc:date>
    </item>
  </channel>
</rss>

