<?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>topic How to learn making the frond end to the backend (in data load editor) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-learn-making-the-frond-end-to-the-backend-in-data-load/m-p/2507681#M104371</link>
    <description>&lt;P&gt;Hi Everyone!!&lt;/P&gt;
&lt;P&gt;I’ve developed an application and using valuelist function and pick match with it to create my dimensions and wrt that I’ve created measure for each subfield.&lt;/P&gt;
&lt;P&gt;eg -&lt;/P&gt;
&lt;P&gt;dimension measure&lt;/P&gt;
&lt;P&gt;A &amp;nbsp; - sum({&amp;lt; account=‘123’&amp;gt;}Sales)&lt;/P&gt;
&lt;P&gt;B -&amp;nbsp;&lt;SPAN&gt;sum({&amp;lt; account=‘786’, segment &amp;lt;&amp;gt; ‘67’&amp;gt;}Sales)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;C -&amp;nbsp;&lt;SPAN&gt;sum({&amp;lt; account={‘999’,’456’}, segment=‘12’&amp;gt;}Return)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;And so on. I’ve created almost 100 + dimensions with different calculation and stored it in variable. Due to this it is taking more than 2 minutes to show the chart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to calculate it in the backend so that it will fast in the front end.&lt;/P&gt;
&lt;P&gt;Important thing is all the fields which are there in my set are coming from different tables.&lt;/P&gt;
&lt;P&gt;How can i achieve the result in backend…&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Your input will be very helpful for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks in advance….&lt;/P&gt;</description>
    <pubDate>Thu, 27 Feb 2025 17:55:17 GMT</pubDate>
    <dc:creator>kartik_Semwal</dc:creator>
    <dc:date>2025-02-27T17:55:17Z</dc:date>
    <item>
      <title>How to learn making the frond end to the backend (in data load editor)</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-learn-making-the-frond-end-to-the-backend-in-data-load/m-p/2507681#M104371</link>
      <description>&lt;P&gt;Hi Everyone!!&lt;/P&gt;
&lt;P&gt;I’ve developed an application and using valuelist function and pick match with it to create my dimensions and wrt that I’ve created measure for each subfield.&lt;/P&gt;
&lt;P&gt;eg -&lt;/P&gt;
&lt;P&gt;dimension measure&lt;/P&gt;
&lt;P&gt;A &amp;nbsp; - sum({&amp;lt; account=‘123’&amp;gt;}Sales)&lt;/P&gt;
&lt;P&gt;B -&amp;nbsp;&lt;SPAN&gt;sum({&amp;lt; account=‘786’, segment &amp;lt;&amp;gt; ‘67’&amp;gt;}Sales)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;C -&amp;nbsp;&lt;SPAN&gt;sum({&amp;lt; account={‘999’,’456’}, segment=‘12’&amp;gt;}Return)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;And so on. I’ve created almost 100 + dimensions with different calculation and stored it in variable. Due to this it is taking more than 2 minutes to show the chart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to calculate it in the backend so that it will fast in the front end.&lt;/P&gt;
&lt;P&gt;Important thing is all the fields which are there in my set are coming from different tables.&lt;/P&gt;
&lt;P&gt;How can i achieve the result in backend…&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Your input will be very helpful for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks in advance….&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 17:55:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-learn-making-the-frond-end-to-the-backend-in-data-load/m-p/2507681#M104371</guid>
      <dc:creator>kartik_Semwal</dc:creator>
      <dc:date>2025-02-27T17:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to learn making the frond end to the backend (in data load editor)</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-learn-making-the-frond-end-to-the-backend-in-data-load/m-p/2507682#M104372</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to create all calculation in script&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PreAggregatedData:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Account,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Segment,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Sum(Sales) AS TotalSales,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Sum(Returns) AS TotalReturns&lt;/P&gt;
&lt;P&gt;RESIDENT SalesData&lt;/P&gt;
&lt;P&gt;GROUP BY Account, S&lt;SPAN&gt;egment;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And created mapping tables&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DimensionMapping:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; DimensionID, DimensionName, AccountFilter, SegmentFilter, MeasureType&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; 1, A, 123, *, Sales&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; 2, B, 786, &amp;lt;&amp;gt;67, Sales&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; 3, C, 999|456, 12, Retur&lt;SPAN&gt;ns&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Applymap using&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FinalAggregated:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; DimensionID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; DimensionName,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If(AccountFilter='*' OR Account=AccountFilter, 1, 0) AS AccountFlag,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If(SegmentFilter='*' OR Segment=SegmentFilter, 1, 0) AS SegmentFlag,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If(MeasureType='Sales', TotalSales, TotalReturns) AS FinalValue&lt;/P&gt;
&lt;P&gt;RESIDENT PreAggregat&lt;SPAN&gt;edData;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Front end&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sum(FinalValue)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 18:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-learn-making-the-frond-end-to-the-backend-in-data-load/m-p/2507682#M104372</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-02-27T18:21:03Z</dc:date>
    </item>
  </channel>
</rss>

