<?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: Get list of tables / fields in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125821#M5275</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/people/yko"&gt;yko&lt;/A&gt;This works fine .. but do you know how i can get the Table name in which the field is in?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;If someone else know this and wants to answer, that is fine too ofcourse &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Mar 2017 21:18:56 GMT</pubDate>
    <dc:creator>amien</dc:creator>
    <dc:date>2017-03-12T21:18:56Z</dc:date>
    <item>
      <title>Get list of tables / fields</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125819#M5273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to retrieve the liste of tables / fields like in the sense TableViewer but il a list form from the .NET SDK&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;JP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 04:18:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125819#M5273</guid>
      <dc:creator>jp_golay</dc:creator>
      <dc:date>2016-06-28T04:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of tables / fields</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125820#M5274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use this method to get a list of the fields from an app:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/sense-developer/2.2/apis/net%20sdk/html/M_Qlik_Sense_Client_AppExtensions_GetFieldList.htm" title="http://help.qlik.com/en-US/sense-developer/2.2/apis/net%20sdk/html/M_Qlik_Sense_Client_AppExtensions_GetFieldList.htm"&gt;AppExtensions.GetFieldList Method&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that what you are looking for? To print the name of all fields, you could write like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14671141900292566 jive_text_macro" jivemacro_uid="_14671141900292566" modifiedtitle="true"&gt;
&lt;P&gt;var fieldList = app.GetFieldList();&lt;/P&gt;
&lt;P&gt;fieldList.Items.Select(field =&amp;gt; field.Name).ToList().ForEach(Console.WriteLine);&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 11:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125820#M5274</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2016-06-28T11:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of tables / fields</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125821#M5275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/people/yko"&gt;yko&lt;/A&gt;This works fine .. but do you know how i can get the Table name in which the field is in?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;If someone else know this and wants to answer, that is fine too ofcourse &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2017 21:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125821#M5275</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2017-03-12T21:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of tables / fields</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125822#M5276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this method is what you might be what you you want to use: &lt;A href="http://help.qlik.com/en-US/sense-developer/3.2/apis/net%20sdk/html/M_Qlik_Engine_App_GetTablesAndKeys.htm" title="http://help.qlik.com/en-US/sense-developer/3.2/apis/net%20sdk/html/M_Qlik_Engine_App_GetTablesAndKeys.htm"&gt;App.GetTablesAndKeys Method&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 10:08:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125822#M5276</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2017-03-13T10:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of tables / fields</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125823#M5277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but what do i fill in with the needed parameters? I mean "Defines the size of the window that is used to display the results" . .. what would i need this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 11:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-list-of-tables-fields/m-p/1125823#M5277</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2017-03-13T11:53:52Z</dc:date>
    </item>
  </channel>
</rss>

