<?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 pass more than one column as search terms in Gate Module table drill down - Sideview Utils in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137434#M11615</link>
    <description>&lt;P&gt;That's possible, it's been too long though since I used &lt;CODE&gt;SimpleResultsTable&lt;/CODE&gt;... just try it out &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jul 2014 17:16:03 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2014-07-10T17:16:03Z</dc:date>
    <item>
      <title>How to pass more than one column as search terms in Gate Module table drill down - Sideview Utils</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137431#M11612</link>
      <description>&lt;P&gt;I have a SimpleResultsTable with the below query in my Advancedxml&lt;/P&gt;

&lt;PRE&gt;index=myindex sourcetype=mysourcetype | search FILE_ID="xyz" | table fieldA, fieldB, fieldC, fieldD, fieldE, fieldF&lt;/PRE&gt;

&lt;P&gt;Im using a gate module to drill down to a different table on selecting a row. Below is my drilldown query on gate target module&lt;/P&gt;

&lt;PRE&gt;index=myindex sourcetype=mysourcetype $row.searchTerms$ | search FILE_ID="xyz" | table fieldG, fieldH, fieldI, fieldJ&lt;/PRE&gt;

&lt;P&gt;Now the $row.searchTerms$ gets only fieldA, how can I pass fieldB &amp;amp; fieldC along with fieldA ?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 15:47:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137431#M11612</guid>
      <dc:creator>pradeepkumarg</dc:creator>
      <dc:date>2014-07-10T15:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass more than one column as search terms in Gate Module table drill down - Sideview Utils</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137432#M11613</link>
      <description>&lt;P&gt;You should be able to access those field values through &lt;CODE&gt;$row.fields.fieldB$&lt;/CODE&gt;, &lt;CODE&gt;$row.fields.fieldC$&lt;/CODE&gt;, etc.&lt;/P&gt;

&lt;P&gt;Have you considered using Sideview's &lt;CODE&gt;Table&lt;/CODE&gt; module rather than the &lt;CODE&gt;SimpleResultsTable&lt;/CODE&gt; module?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 16:32:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137432#M11613</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-07-10T16:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass more than one column as search terms in Gate Module table drill down - Sideview Utils</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137433#M11614</link>
      <description>&lt;P&gt;Thanks Martin, Will I be able to use $row.fields.fieldB$, $row.fields.fieldC$ only through Sideview's Table module?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 17:10:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137433#M11614</guid>
      <dc:creator>pradeepkumarg</dc:creator>
      <dc:date>2014-07-10T17:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass more than one column as search terms in Gate Module table drill down - Sideview Utils</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137434#M11615</link>
      <description>&lt;P&gt;That's possible, it's been too long though since I used &lt;CODE&gt;SimpleResultsTable&lt;/CODE&gt;... just try it out &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 17:16:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137434#M11615</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-07-10T17:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass more than one column as search terms in Gate Module table drill down - Sideview Utils</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137435#M11616</link>
      <description>&lt;P&gt;$click.fields.fieldB$ worked for SimpleResultsTable. Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 18:18:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-pass-more-than-one-column-as-search-terms-in-Gate-Module/m-p/137435#M11616</guid>
      <dc:creator>pradeepkumarg</dc:creator>
      <dc:date>2014-07-10T18:18:38Z</dc:date>
    </item>
  </channel>
</rss>

