<?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 Re: Remove unwanted fields in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723257#M55032</link>
    <description>&lt;P&gt;so yes, that field and about 10 others that I do not want/need anymore are listed in the autogenerated section.&amp;nbsp; How can I go about removing them without affecting any future data loads?&amp;nbsp; &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="autogen.png" style="width: 747px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36522i3349914FB43A0149/image-size/large?v=v2&amp;amp;px=999" role="button" title="autogen.png" alt="autogen.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jun 2020 20:17:00 GMT</pubDate>
    <dc:creator>sicdude</dc:creator>
    <dc:date>2020-06-29T20:17:00Z</dc:date>
    <item>
      <title>Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723221#M55027</link>
      <description>&lt;P&gt;I have a multi source load script that concatenates a lot of fields into a single "datatable" one of the sources is not going to be used anymore.&amp;nbsp; &amp;nbsp;I tried to re-load the script with that piece commented out, but when I relaod the data it is looking for the "trr_recordid" field that I do not want or need anymore.&amp;nbsp; It may actually look for more of them but it's only bombing on that first field for now.&amp;nbsp; The end result is that I want to replace that piece of script with a new similar but completely different data source.&amp;nbsp;&lt;/P&gt;&lt;P&gt;original script&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;LOAD&lt;BR /&gt;trr_recordid,&lt;BR /&gt;carrier,&lt;BR /&gt;member# as trr_member#,&lt;BR /&gt;trr_ymdeff,&lt;BR /&gt;trr_ymdend,&lt;BR /&gt;text(prov#) as prov#main,&lt;BR /&gt;date(ymdreviewstart) as ymdfilter,&lt;BR /&gt;ymdreviewend,&lt;BR /&gt;recordvalue_int,&lt;BR /&gt;tool,&lt;BR /&gt;tool_abbr,&lt;BR /&gt;question,&lt;BR /&gt;question_weight,&lt;BR /&gt;excludefromscoring,&lt;BR /&gt;nationalstandard&lt;BR /&gt;FROM [lib:/ZZZ//xxx.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New script&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;Load&lt;BR /&gt;countyid as saa_countyid,&lt;BR /&gt;carrier,&lt;BR /&gt;date(rptyear) as ymdfilter,&lt;BR /&gt;prov#2 as prov#main,&lt;BR /&gt;q_num as saa_mems_hit_threshold,&lt;BR /&gt;q_den as saa_mems_schitz_diag,&lt;BR /&gt;q_percent as saa_num_div_den,&lt;BR /&gt;q_avg as saa_mem_score_avg,&lt;BR /&gt;q_low as saa_mem_score_low,&lt;BR /&gt;q_high as saa_mem_score_high;&lt;/P&gt;&lt;P&gt;select a.countyid,&lt;BR /&gt;b.carrier,&lt;BR /&gt;a.rptyear,&lt;BR /&gt;a.prov#2,&lt;BR /&gt;q_num,&lt;BR /&gt;q_den,&lt;BR /&gt;q_percent,&lt;BR /&gt;q_avg,&lt;BR /&gt;q_low,&lt;BR /&gt;q_high&lt;BR /&gt;from zzz a&lt;BR /&gt;inner join xxx b on a.countyid = b.countyid;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 18:57:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723221#M55027</guid>
      <dc:creator>sicdude</dc:creator>
      <dc:date>2020-06-29T18:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723224#M55028</link>
      <description>&lt;P&gt;The most likely reason is that somewhere else in the script is looking for "&lt;SPAN&gt;trr_recordid".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If that is the issue, you may use the search tool to investigate where else in the script this field may be mentioned so you can deal with it accordingly.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 19:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723224#M55028</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-06-29T19:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723225#M55029</link>
      <description>&lt;P&gt;thank you for your quick response, but this is not the case.&amp;nbsp; this was the only spot in my load script that used that "trr_recordid" field name.&amp;nbsp; &amp;nbsp;I believe that it is bombing out when the autogenerated piece is trying to run.&amp;nbsp; &amp;nbsp;I'm afraid to unlock the autogenerated piece for fear of it not allowing me to load other data properly in the future&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 19:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723225#M55029</guid>
      <dc:creator>sicdude</dc:creator>
      <dc:date>2020-06-29T19:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723230#M55031</link>
      <description>&lt;P&gt;Ah, my best guess would be that this field is called for in the autogenerated section.&lt;BR /&gt;&lt;BR /&gt;The autogenerated section is managed by the Data Manager.&lt;BR /&gt;As such, you can safely investigate this without unlocking it by using the Data Manager to look around.&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/LoadData/data-management.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/LoadData/data-management.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;As always, I would recommend duplicating the app first before making any changes.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;Another option is to use the Debug Tool in the Data Load Editor to find exactly where the field is mentioned and/or when the script breaks.&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/LoadData/debug-data-load-script.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/LoadData/debug-data-load-script.htm&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 19:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723230#M55031</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-06-29T19:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723257#M55032</link>
      <description>&lt;P&gt;so yes, that field and about 10 others that I do not want/need anymore are listed in the autogenerated section.&amp;nbsp; How can I go about removing them without affecting any future data loads?&amp;nbsp; &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="autogen.png" style="width: 747px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36522i3349914FB43A0149/image-size/large?v=v2&amp;amp;px=999" role="button" title="autogen.png" alt="autogen.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 20:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723257#M55032</guid>
      <dc:creator>sicdude</dc:creator>
      <dc:date>2020-06-29T20:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723271#M55034</link>
      <description>&lt;P&gt;Go to the Data Manger (if you are on an earlier version of qlik sense, this will be under the Navigation menu in the upper left)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;1) Once there click on the "Tables View"&lt;BR /&gt;2) Locate the table that has the fields in it you no longer need, and click the pencil icon to edit.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliktom_0-1593462871215.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36524i5B45624A67E3C490/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliktom_0-1593462871215.png" alt="qliktom_0-1593462871215.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3) In that table, click "Select data from source"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliktom_1-1593462908518.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36525i33F540AC8141FDC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliktom_1-1593462908518.png" alt="qliktom_1-1593462908518.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;4) uncheck the boxes for the fields you no longer need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliktom_2-1593462942050.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36526i3DCAD6EBC47DB4FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliktom_2-1593462942050.png" alt="qliktom_2-1593462942050.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;5) Click update in the lower right.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliktom_3-1593463128525.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36527i1BAF942DEFEC4438/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliktom_3-1593463128525.png" alt="qliktom_3-1593463128525.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;After that you should be able to load your data.&lt;BR /&gt;&lt;BR /&gt;Keep in mind any calculations, measures, dimensions, and chart will not work if they had a dependency on a removed field.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope this helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 20:40:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723271#M55034</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-06-29T20:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove unwanted fields</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723556#M55067</link>
      <description>&lt;P&gt;Darn, I thought we might be on to something but when I click on edit table, the "Select data from source" is not available to click on.&amp;nbsp; &amp;nbsp;it's there, but it's greyed out&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 14:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-unwanted-fields/m-p/1723556#M55067</guid>
      <dc:creator>sicdude</dc:creator>
      <dc:date>2020-06-30T14:04:06Z</dc:date>
    </item>
  </channel>
</rss>

