<?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: Filter features based on a no-geom table in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183874#M56300</link>
    <description>&lt;P&gt;The project I use this solution for there are some 9000 point features with Location Numbers for our company. The project allows field crews to take photos of various sites for a variety of reasons.&amp;nbsp; In a Dashboard the people in the office can find that site and see the photos, with a variety of other filters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This definition query only shows the points with photos.&amp;nbsp; Currently some 900&lt;/P&gt;&lt;P&gt;However, I do not know if this will work with AGOL or services hosted in the Cloud. We are an Enterprise Portal&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jun 2022 12:26:28 GMT</pubDate>
    <dc:creator>RobertBorchert</dc:creator>
    <dc:date>2022-06-17T12:26:28Z</dc:date>
    <item>
      <title>Filter features based on a no-geom table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183849#M56295</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I've got two datasets in my current map:&lt;/P&gt;&lt;P&gt;1. a FeatureLayer (locations of measuring points for air quality data)&lt;/P&gt;&lt;P&gt;2. a table without geom (holds the air quality measured data for each feature)&lt;/P&gt;&lt;P&gt;What I'd like do is the following:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I use a definition query to filter the no-geom table (for example only want to see the measured ozon data)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;As not all measuring points have ozon data I'd like the FeatureLayer to be filter based on no-geom table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;How could I achive that. In SQL would be something like: where location in (select distinct (column) from no-geom table).&lt;/P&gt;&lt;P&gt;But I could find a solution in APRO.&lt;/P&gt;&lt;P&gt;Every hint is welcome.&lt;/P&gt;&lt;P&gt;Thanks alot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 09:32:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183849#M56295</guid>
      <dc:creator>CarstenHogertz</dc:creator>
      <dc:date>2022-06-17T09:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filter features based on a no-geom table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183861#M56297</link>
      <description>&lt;P&gt;there is a definition query that can query out related data. I use it quite often for just your purpose.&lt;/P&gt;&lt;P&gt;The field names need to be database names and not alias&amp;nbsp;&lt;/P&gt;&lt;P&gt;ORIGINFIELD IN (SELECT DESTINATIONFIELD FROM &amp;lt;RELATED NAME&amp;gt; where &amp;lt;FIELDNAME&amp;gt; &amp;lt;QUERY&amp;gt;)&lt;/P&gt;&lt;P&gt;In this example I have some 9000 points. I only want to see points that have a related table value where location is a positive integer&lt;/P&gt;&lt;P&gt;LOCATION in (Select LOCATION FROM SitePhotos_WORKGROUPS where LOCATION &amp;gt; 0)&lt;/P&gt;&lt;P&gt;The first location is the LOCATION field in my point feature this should be the same as the Origin Key in your relationship&lt;/P&gt;&lt;P&gt;The second LOCATION&amp;nbsp; is the Destination Key field in my related table&lt;/P&gt;&lt;P&gt;SitePhotos_WORKGROUPS is the name of the related table&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 11:56:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183861#M56297</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2022-06-17T11:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Filter features based on a no-geom table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183864#M56298</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/6992"&gt;@RobertBorchert&lt;/a&gt;&amp;nbsp; Does your solution work on services as well?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 12:12:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183864#M56298</guid>
      <dc:creator>CarstenHogertz</dc:creator>
      <dc:date>2022-06-17T12:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filter features based on a no-geom table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183874#M56300</link>
      <description>&lt;P&gt;The project I use this solution for there are some 9000 point features with Location Numbers for our company. The project allows field crews to take photos of various sites for a variety of reasons.&amp;nbsp; In a Dashboard the people in the office can find that site and see the photos, with a variety of other filters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This definition query only shows the points with photos.&amp;nbsp; Currently some 900&lt;/P&gt;&lt;P&gt;However, I do not know if this will work with AGOL or services hosted in the Cloud. We are an Enterprise Portal&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 12:26:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1183874#M56300</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2022-06-17T12:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filter features based on a no-geom table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1184298#M56342</link>
      <description>&lt;P&gt;One thing is missing in your proposed solution (maybe because I didn't communicate my requirements clearly):&amp;nbsp;&lt;/P&gt;&lt;P&gt;- My no-geom table itself uses definition queries in APRO to filter it's content&lt;BR /&gt;- Your SQL communicates directly with the DB&lt;/P&gt;&lt;P&gt;Well, the consequence is that I can see all locations that have an entry in the no-geom db-table. But what I'd like to do is seeing only that locations that are in the APRO filtered no-geom table.&lt;/P&gt;&lt;P&gt;Do you have a solution for that?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 13:16:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/filter-features-based-on-a-no-geom-table/m-p/1184298#M56342</guid>
      <dc:creator>CarstenHogertz</dc:creator>
      <dc:date>2022-06-20T13:16:02Z</dc:date>
    </item>
  </channel>
</rss>

