<?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: How to get Bookmark Set expression using .NET SDK in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740887#M13203</link>
    <description>&lt;P&gt;I'm glad it worked out for you! I was at first rather surprised to see that that method was an App method and not a member of the class GenericBookmark, but the reason is that you can call the method without a bookmark ID in which case you get the set analysis for the current selection. Learning something every day!&lt;/P&gt;</description>
    <pubDate>Thu, 03 Sep 2020 06:55:30 GMT</pubDate>
    <dc:creator>Øystein_Kolsrud</dc:creator>
    <dc:date>2020-09-03T06:55:30Z</dc:date>
    <item>
      <title>How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740423#M13197</link>
      <description>&lt;P&gt;Good day everyone,&lt;/P&gt;&lt;P&gt;Using the .NET SDK I was able to return from an App its Bookmarks with the following properties:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Title&lt;/LI&gt;&lt;LI&gt;Description&lt;/LI&gt;&lt;LI&gt;SelectionFields&lt;/LI&gt;&lt;LI&gt;SheetID&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;However, I'm looking for a way to get the &lt;STRONG&gt;Set expression&lt;/STRONG&gt; as illustrated in the screen shot below:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mark_costa_0-1598992424072.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/39919i20972409CCCD7D2C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mark_costa_0-1598992424072.png" alt="mark_costa_0-1598992424072.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Any help you this will be very appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740423#M13197</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2024-11-16T01:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740522#M13199</link>
      <description>&lt;P&gt;There's a method called "GetSetAnalysis" which is called on the app. You'll find it's documentation at this page (though you'll have to scroll quite far down to get to it, so a search is a good idea...):&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/June2020/Subsystems/NetSDKAPIref/Content/Qlik.Engine.App.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/June2020/Subsystems/NetSDKAPIref/Content/Qlik.Engine.App.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The signature of the method looks like this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public string GetSetAnalysis([QixName("qStateName")] string stateName = null, [QixName("qBookmarkId")] string bookmarkId = null)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 08:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740522#M13199</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2020-09-02T08:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740793#M13201</link>
      <description>&lt;P&gt;You rock again Yko. Thank you very much. It worked.&lt;/P&gt;&lt;P&gt;For the ones facing the same challenge, here is part of my test code to capture the Bookmark Set Analysis:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mark_costa_0-1599078045685.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/40000iBF006284FA458424/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mark_costa_0-1599078045685.png" alt="mark_costa_0-1599078045685.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 20:21:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740793#M13201</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2020-09-02T20:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740887#M13203</link>
      <description>&lt;P&gt;I'm glad it worked out for you! I was at first rather surprised to see that that method was an App method and not a member of the class GenericBookmark, but the reason is that you can call the method without a bookmark ID in which case you get the set analysis for the current selection. Learning something every day!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2020 06:55:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1740887#M13203</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2020-09-03T06:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1812936#M15046</link>
      <description>&lt;P&gt;Is there any way to set the &lt;STRONG&gt;Set expression&lt;/STRONG&gt; of a bookmark?&lt;/P&gt;&lt;P&gt;I am trying to create a bookmark with the expression obtained from &lt;STRONG&gt;GetSetAnalysis&lt;/STRONG&gt;, but I have been able yet.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 08:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1812936#M15046</guid>
      <dc:creator>dumitru-sdg</dc:creator>
      <dc:date>2021-06-04T08:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1812941#M15047</link>
      <description>&lt;P&gt;This is not possible I'm afraid. Bookmarks doesn't work that way. There are other threads here on the topic as well:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/App-Development/How-can-I-edit-the-expression-of-a-bookmark/td-p/1616223" target="_blank"&gt;https://community.qlik.com/t5/App-Development/How-can-I-edit-the-expression-of-a-bookmark/td-p/1616223&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Edit-and-modify-bookmark-selection/td-p/1285635" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Edit-and-modify-bookmark-selection/td-p/1285635&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 09:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1812941#M15047</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2021-06-04T09:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Bookmark Set expression using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1945300#M16953</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;How to create a new bookmark with&amp;nbsp; the &lt;STRONG&gt;Set expression&lt;/STRONG&gt;?&amp;nbsp; Is that possible with the .NET SDK?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NB. I think the above thread is about setExpression to an an exiting bookmark?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2022 16:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-Bookmark-Set-expression-using-NET-SDK/m-p/1945300#M16953</guid>
      <dc:creator>Mahmudh</dc:creator>
      <dc:date>2022-06-18T16:50:11Z</dc:date>
    </item>
  </channel>
</rss>

