<?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: Cannot send drilldown multiple tokens to other form input in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321166#M6647</link>
    <description>&lt;P&gt;@altink, please convert your comment to answer and accept the same to mark this question as answered.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jul 2017 16:20:03 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-07-20T16:20:03Z</dc:date>
    <item>
      <title>Cannot send drilldown multiple tokens to other form input</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321164#M6645</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;I am trying to drilldown a table  dashboard to another form's several inputs, but I get the variable names instead of their values.&lt;/P&gt;

&lt;P&gt;The main form - scan_data_02 -  has (between others) a statistical table dashboard, whose records are present. &lt;/P&gt;

&lt;P&gt;I have another form - scan_item_details_02 which has three simple text inputs and a table dashboard, which is bound in search to the three inputs. The search in this form works correctly by itself, the three inputs have default values, the table has data and it responds to every change in the three inputs.&lt;/P&gt;

&lt;P&gt;scan_item_details_02:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Scan Item Details 02&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="false"&amp;gt;
    &amp;lt;input type="text" token="field_scan_id"&amp;gt;
      &amp;lt;label&amp;gt;Scan Id&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;20170709_125008_Ora_DB_LV&amp;lt;/default&amp;gt;
      &amp;lt;prefix&amp;gt;"&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="text" token="field_vln_id"&amp;gt;
      &amp;lt;label&amp;gt;Vln Id&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;201&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="text" token="field_db_name"&amp;gt;
      &amp;lt;label&amp;gt;Database&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;Oracle Live DB&amp;lt;/default&amp;gt;
      &amp;lt;prefix&amp;gt;"&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=omega_ds_idx_01 
DB_NAME=$field_db_name$ SCAN_ID=$field_scan_id$ VLN_ID=$field_vln_id$
| table  DB_NAME  SCAN_ID VLN_ID VLN_NAME .........&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;3&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The URL of the correct standalone working of the detail form is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;http://192.168.1.71:8000/en-US/app/Omega_DS_App_02/scan_item_details_02?form.field_scan_id=20170709_125008_Ora_DB_LV&amp;amp;form.field_db_name=Oracle%20Live%20DB&amp;amp;form.field_vln_id=201
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The problem starts when I drill-down from the main form "scan_data_02".&lt;/P&gt;

&lt;P&gt;The dashboard and drill-down code is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;DRILL&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=........ 
| table  DB_NAME  SCAN_ID VLN_ID VLN_NAME .......&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$field1.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$field1.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;4&amp;lt;/option&amp;gt;
        &amp;lt;drilldown target="blank"&amp;gt;
          &amp;lt;link&amp;gt;scan_item_details_02?form.field_scan_id=$row.SCAN_ID&amp;amp;amp;form.field_vln_id=$row.VLN_ID&amp;amp;amp;form.field_db_name=$row.DB_NAME&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Instead of having the three inputs completed with the three field values - I get $row.field_name on them - $row.SCAN_ID instead of the scan name. so for two others - by respective field&lt;/P&gt;

&lt;P&gt;The error URL is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;http://192.168.1.71:8000/en-US/app/Omega_DS_App_02/scan_item_details_02?form.field_scan_id=%24row.SCAN_ID&amp;amp;form.field_vln_id=%24row.VLN_ID&amp;amp;form.field_db_name=%24row.DB_NAME
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please advise on the right command for drill-down&lt;/P&gt;

&lt;P&gt;thank you very much,&lt;/P&gt;

&lt;P&gt;best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:59:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321164#M6645</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T14:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot send drilldown multiple tokens to other form input</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321165#M6646</link>
      <description>&lt;P&gt;Fixed:&lt;BR /&gt;
scan_item_details_02?form.field_scan_id=$row.SCAN_ID$&amp;amp;form.field_vln_id=$row.VLN_ID$&amp;amp;form.field_db_name=$row.DB_NAME$&lt;/P&gt;

&lt;P&gt;forgot the $ at the end of field_name&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:59:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321165#M6646</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T14:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot send drilldown multiple tokens to other form input</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321166#M6647</link>
      <description>&lt;P&gt;@altink, please convert your comment to answer and accept the same to mark this question as answered.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 16:20:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321166#M6647</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-07-20T16:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot send drilldown multiple tokens to other form input</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321167#M6648</link>
      <description>&lt;P&gt;Fixed:&lt;BR /&gt;
scan_item_details_02?form.field_scan_id=$row.SCAN_ID$&amp;amp;form.field_vln_id=$row.VLN_ID$&amp;amp;form.field_db_name=$row.DB_NAME$&lt;/P&gt;

&lt;P&gt;forgot the $ at the end of field_name&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:01:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321167#M6648</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2020-09-29T15:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot send drilldown multiple tokens to other form input</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321168#M6649</link>
      <description>&lt;P&gt;The same does not work when the token input elements are removed and remaining only in the search of the target form.&lt;BR /&gt;
no results are found - while there should be - as in the previous try with input elements involved.&lt;/P&gt;

&lt;P&gt;Details for code is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Scan Item Details 03&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="text" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=omega_ds_idx_01 
DB_NAME=$form.field_db_name$ SCAN_ID=$form.field_scan_id$ VLN_ID=$form.field_vln_id$
| table DB_NAME SCAN_ID VLN_ID VLN_NAME CTRL_SUMMARY CTRL_OUTPUT&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;3&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the input text field1 has been inserted just to have the tag of the form added&lt;/P&gt;

&lt;P&gt;Problem:&lt;BR /&gt;
The dashboard returns no rows: "No results found. "&lt;/P&gt;

&lt;P&gt;The URL is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&lt;A href="http://192.168.1.71:8000/en-US/app/Omega_DS_App_02/scan_item_details_03?form.field_scan_id=20170714_210278_Ora_DB_T01&amp;amp;form.field_vln_id=204&amp;amp;form.field_db_name=Ora%20DB%20Test%2001" target="test_blank"&gt;http://192.168.1.71:8000/en-US/app/Omega_DS_App_02/scan_item_details_03?form.field_scan_id=20170714_210278_Ora_DB_T01&amp;amp;form.field_vln_id=204&amp;amp;form.field_db_name=Ora%20DB%20Test%2001&lt;/A&gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The search should return data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;SCAN_ID=20170714_210278_Ora_DB_T01
VLN_ID=204
DB_NAME="Ora DB Test01"

index=omega_ds_idx_01 SCAN_ID=20170714_210278_Ora_DB_T01
VLN_ID=204 
DB_NAME="Ora DB Test 01"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;does return &lt;/P&gt;

&lt;P&gt;from the following Ticket:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&lt;A href="https://answers.splunk.com/answers/219807/how-to-hide-a-dashboard-panel-containing-inputs-th.html" target="test_blank"&gt;https://answers.splunk.com/answers/219807/how-to-hide-a-dashboard-panel-containing-inputs-th.html&lt;/A&gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;do I have to read that the drill-down at target form (dashboard) - is not supported without visual Input elements in the middle?&lt;BR /&gt;
if not - please advise on how to do without input elements&lt;/P&gt;

&lt;P&gt;best regards&lt;BR /&gt;
Altin&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 20:01:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Cannot-send-drilldown-multiple-tokens-to-other-form-input/m-p/321168#M6649</guid>
      <dc:creator>altink</dc:creator>
      <dc:date>2017-07-20T20:01:06Z</dc:date>
    </item>
  </channel>
</rss>

