<?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: Issue with &amp;quot;Create Table View&amp;quot; in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700232#M20328</link>
    <description>&lt;P&gt;Since you are using joins, you could be hitting limits on the subsearches - have you tried a shorter timeframe?&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2024 14:41:15 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2024-09-26T14:41:15Z</dc:date>
    <item>
      <title>Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700187#M20324</link>
      <description>&lt;P&gt;I've written a Splunk Query and ran it, it's giving the result as expected but as soon as I click on "Create Table View" some of the field disappears which were earlier coming post the query run. Not sure what is wrong, could anyone help?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 10:52:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700187#M20324</guid>
      <dc:creator>bipul</dc:creator>
      <dc:date>2024-09-26T10:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700192#M20325</link>
      <description>&lt;P&gt;Can you be a bit more specific? Which fields have "disappeared"? What does your SPL look like?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 11:15:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700192#M20325</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-26T11:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700213#M20326</link>
      <description>&lt;LI-CODE lang="markup"&gt;index="aws" earliest=-7d@d latest=@d
| search "Method request" "systemId"
| rex field=_raw "\((?&amp;lt;messageId&amp;gt;[^)]+)\)[^:]+:\s*\{(?&amp;lt;messageFields&amp;gt;.*)\}"
| rex field=messageFields "Id=(?&amp;lt;systemId&amp;gt;[^,]+)"
| rex field=messageFields "product=(?&amp;lt;product&amp;gt;[^,]+(?:,[^,]+)*)(?=, systemId=)"
| rex field=_raw "Field=\"(?&amp;lt;eventFieldName&amp;gt;[^\"]+)\""
| rex field=_raw "FieldValue=\"(?&amp;lt;eventFieldValue&amp;gt;[^\"]+)\""
| rex field=_raw "type=\"(?&amp;lt;eventType&amp;gt;[^\"]+)\""
| search product="O,U" systemId!="0454c7f5"
| dedup messageId
| join type=left messageId [ | from datamodel:"getStatusCodes" | fields messageId, statusCode ]
| join type=left systemId [ | from datamodel:"verifyCalls" | rename siteCoreId as systemId | eval Verified="Yes" | fields systemId, Verified ]
| eval Verified=coalesce(Verified, "No")
| table _time, messageId, systemId, statusCode, Verified
| sort - _time
| head 10000&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Above is the Splunk Query.&amp;nbsp; When I search this query I get these fields in the output (_time, messageId, systemId, statusCode, Verified) but when I click on "Create Table View" only (_time, messageId, statusCode) fields are coming.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 18:17:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700213#M20326</guid>
      <dc:creator>bipul</dc:creator>
      <dc:date>2024-09-26T18:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700232#M20328</link>
      <description>&lt;P&gt;Since you are using joins, you could be hitting limits on the subsearches - have you tried a shorter timeframe?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 14:41:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700232#M20328</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-26T14:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700307#M20336</link>
      <description>&lt;P&gt;Yes, I tried fetching for only 1 day instead of 7 days but still the same issue. After clicking on "Create Table View" those fields are disappearing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 06:56:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700307#M20336</guid>
      <dc:creator>bipul</dc:creator>
      <dc:date>2024-09-27T06:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700309#M20337</link>
      <description>&lt;P&gt;Why not use your search in a dashboard panel table?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 07:33:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700309#M20337</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-27T07:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with "Create Table View"</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700324#M20339</link>
      <description>&lt;P&gt;I'm not sure how to do that. Let me figure this out how to search in dashboard panel. I'm new to Splunk still learning.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 10:01:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Issue-with-quot-Create-Table-View-quot/m-p/700324#M20339</guid>
      <dc:creator>bipul</dc:creator>
      <dc:date>2024-09-27T10:01:02Z</dc:date>
    </item>
  </channel>
</rss>

