<?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>Question Re: SAC Analytics Designer Component Class in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487042#M4678638</link>
    <description>&lt;P&gt;Hello Susanne,&lt;/P&gt;&lt;P&gt;thanks for your reply, in fact I made a wrong question, cause my objective at the end is HIDE an specific row in table widget.. I don't want to filter.. example: Let's suppose my table has 10 registers and I want to hide the row number 1.. do you know if is it possible?&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;William&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jan 2022 23:06:00 GMT</pubDate>
    <dc:creator>WilliamABatista</dc:creator>
    <dc:date>2022-01-26T23:06:00Z</dc:date>
    <item>
      <title>SAC Analytics Designer Component Class</title>
      <link>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaq-p/12487039</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
  &lt;P&gt;Does someone knows how to make use of these component classes? I need some functionalities of this class but don't know how to code and use it....&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://help.sap.com/doc/958d4c11261f42e992e8d01a4c0dde25/2021.20/en-US/index.html#TableQuickActionsVisibility" target="test_blank"&gt;https://help.sap.com/doc/958d4c11261f42e992e8d01a4c0dde25/2021.20/en-US/index.html#TableQuickActionsVisibility&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2012997-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Thank you all in advance!&lt;/P&gt;
  &lt;P&gt;William&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 13:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaq-p/12487039</guid>
      <dc:creator>WilliamABatista</dc:creator>
      <dc:date>2022-01-26T13:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAC Analytics Designer Component Class</title>
      <link>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487040#M4678636</link>
      <description>&lt;P&gt;If you don't get an answer sooner - I can help (but won't be able to post for about an hour or so)&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;As a really quick example the code below sets the numeric format of measures in a table to Millions with 1&lt;BR /&gt;decimal place.&lt;/P&gt;&lt;P&gt;Table.getNumberFormat().setScaleUnit(NumberFormatScaleUnit.Million);&lt;BR /&gt;
Table.getNumberFormat().setDecimalPlaces(1);&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 14:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487040#M4678636</guid>
      <dc:creator>JBARLOW</dc:creator>
      <dc:date>2022-01-26T14:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAC Analytics Designer Component Class</title>
      <link>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487041#M4678637</link>
      <description>&lt;P&gt;Dear  &lt;SPAN class="mention-scrubbed"&gt;william.andradebatista&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;you can access these components via a table object.&lt;/P&gt;&lt;P&gt;QuickActionsVisibility can be accessed as follows:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Table_1.setQuickActionsVisibility({});&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;set your cursor within the curly brackets and hit CTRL+SPACE to see the value help, see the following example on how to disable quick access to drill and enable quick access to sort the table&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Table_1.setQuickActionsVisibility({drill:false,sort:true});&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;For details regarding the number formatting, please have a look into the &lt;A href="https://d.dam.sap.com/a/3Y16uka/SAPAnalyticsCloud_AnalyticsDesigner_DeveloperHandbook.pdf" target="_blank"&gt;Developer Handbook&lt;/A&gt; Chapter 5.6.4&lt;/P&gt;&lt;P&gt;I hope this helps!&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;Susanne&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 15:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487041#M4678637</guid>
      <dc:creator>Susanne_Helbig</dc:creator>
      <dc:date>2022-01-26T15:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAC Analytics Designer Component Class</title>
      <link>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487042#M4678638</link>
      <description>&lt;P&gt;Hello Susanne,&lt;/P&gt;&lt;P&gt;thanks for your reply, in fact I made a wrong question, cause my objective at the end is HIDE an specific row in table widget.. I don't want to filter.. example: Let's suppose my table has 10 registers and I want to hide the row number 1.. do you know if is it possible?&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;William&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 23:06:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sac-analytics-designer-component-class/qaa-p/12487042#M4678638</guid>
      <dc:creator>WilliamABatista</dc:creator>
      <dc:date>2022-01-26T23:06:00Z</dc:date>
    </item>
  </channel>
</rss>

