<?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 store the Object Id's into testbox with using macros. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605151#M1265175</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreeni,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Along with the above process, use the function GetCurrentSelections() in text box, so that you will get the current acivae object id along with the current selection&amp;nbsp; values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2014 06:10:47 GMT</pubDate>
    <dc:creator>PradeepReddy</dc:creator>
    <dc:date>2014-04-07T06:10:47Z</dc:date>
    <item>
      <title>How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605147#M1265166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If user select any object in our dashboard, that object id and values will store into one testbox. How to implement this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is purpose of &lt;STRONG&gt;document chaining.&lt;/STRONG&gt; &lt;STRONG&gt;ex:&lt;/STRONG&gt; URL&amp;amp;select=LB48,$(VURL) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(VURL) means= =GetFieldSelections(Year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For above example, LB48 is the&amp;nbsp; object id, I want to store &lt;STRONG&gt;object id dynamically&lt;/STRONG&gt; if user select any object. &lt;STRONG&gt;How to implement this one.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:&lt;/P&gt;&lt;P&gt;Sreeni &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605147#M1265166</guid>
      <dc:creator>sreeni_qvd</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605148#M1265169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As per my understanding, you want to get the Active Object ID. &lt;/P&gt;&lt;P&gt;There is no direct function in QlikView to achieve this and you have to code a macro to get the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Pradeep &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Apr 2014 04:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605148#M1265169</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-06T04:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605149#M1265172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the approach&lt;/P&gt;&lt;P&gt;1) Create a&amp;nbsp; variable vVar1&lt;/P&gt;&lt;P&gt;2) Create a Macro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sub Run_Macro&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set vVar1=ActiveDocument.Variables("vVar1")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objs=ActiveDocument.ActiveSheet.GetActiveSheetObjects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i=lbound(objs) to ubound(objs)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vVar1.SetContent objs(i).GetObjectID(),true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Trigger this macro on each selection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document properties---&amp;gt; Triggers---&amp;gt;onAnySelect---&amp;gt;Add Action---&amp;gt; Add--&amp;gt; External---&amp;gt; Run Macro---&amp;gt; Macro Name (Run_Macro)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Use the variable vVar1 in text box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Pradeep &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Apr 2014 05:03:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605149#M1265172</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-06T05:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605150#M1265173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for the quick reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's working fine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Object id is coming into &lt;STRONG&gt;Text box&lt;/STRONG&gt;, but i want along with the &lt;STRONG&gt;object vales&lt;/STRONG&gt; dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: LB01= Year and LB01 values 2010,2011,2012&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like: LB01,2010 &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;When user click the LB01.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Regards:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Sreeni &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 04:05:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605150#M1265173</guid>
      <dc:creator>sreeni_qvd</dc:creator>
      <dc:date>2014-04-07T04:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605151#M1265175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreeni,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Along with the above process, use the function GetCurrentSelections() in text box, so that you will get the current acivae object id along with the current selection&amp;nbsp; values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 06:10:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605151#M1265175</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-07T06:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605152#M1265178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pradeep i want user will select any list box or any objects, I want object ID and values only&lt;/P&gt;&lt;P&gt;I don't want &lt;STRONG&gt;field name&lt;/STRONG&gt;, Here field names also coming. Field name &lt;STRONG&gt;Description&lt;/STRONG&gt; and Opp Record Type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/56698_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;I want &lt;STRONG&gt;multiple object id's and multiple values&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: Like this LB48,HPFS, LB50,2010, LB60,sales&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 10:23:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605152#M1265178</guid>
      <dc:creator>sreeni_qvd</dc:creator>
      <dc:date>2014-04-07T10:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605153#M1265180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Use the bellow function along with the variable in text box.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;subfield&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetCurrentSelections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(),':',2) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Thanks, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Pradeep &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 10:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605153#M1265180</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-07T10:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605154#M1265181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for immediate reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here &lt;STRONG&gt;Opportunity Record Type&lt;/STRONG&gt; object id= &lt;STRONG&gt;LB71&lt;/STRONG&gt; and &lt;STRONG&gt;Function type&lt;/STRONG&gt; object id= &lt;STRONG&gt;LB49 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want output &lt;STRONG&gt;LB71, HPFS, LB49, Direct Lease&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HPFS and Direct Lease are those object id values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/56711_Capture.PNG.png" style="width: 620px; height: 261px;" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 11:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605154#M1265181</guid>
      <dc:creator>sreeni_qvd</dc:creator>
      <dc:date>2014-04-07T11:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to store the Object Id's into testbox with using macros.</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605155#M1265183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;The macro which I provided you only to get the active object....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is not possible to get all the object ID's which do you currenlty selected. As of mt knowledge it is possible to ge the the current active object ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 13:49:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-the-Object-Id-s-into-testbox-with-using-macros/m-p/605155#M1265183</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-04-07T13:49:39Z</dc:date>
    </item>
  </channel>
</rss>

