<?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 Possible to find out where feature layers are being used in web applications? in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142174#M44255</link>
    <description>&lt;P&gt;I am wondering if it is possible to easily find out which web applications in our ArcGIS Online organization are using a specific feature layer.&lt;/P&gt;&lt;P&gt;For example, if I delete a layer from our organization, I want to make sure I know which web maps and applications the deletion will affect. This can be difficult and tedious to search manually when an organization has many web maps and applications.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 16:12:29 GMT</pubDate>
    <dc:creator>ZachRobinson_SantaClaraCounty</dc:creator>
    <dc:date>2022-02-09T16:12:29Z</dc:date>
    <item>
      <title>Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142174#M44255</link>
      <description>&lt;P&gt;I am wondering if it is possible to easily find out which web applications in our ArcGIS Online organization are using a specific feature layer.&lt;/P&gt;&lt;P&gt;For example, if I delete a layer from our organization, I want to make sure I know which web maps and applications the deletion will affect. This can be difficult and tedious to search manually when an organization has many web maps and applications.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:12:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142174#M44255</guid>
      <dc:creator>ZachRobinson_SantaClaraCounty</dc:creator>
      <dc:date>2022-02-09T16:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142182#M44257</link>
      <description>&lt;P&gt;I would love to know if this is possible as well! As far as I know there isn't an "easy" solution, but maybe something can be done with the Python API?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:32:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142182#M44257</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-02-09T16:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142249#M44261</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/232739"&gt;@Katie_Clark&lt;/a&gt;, you guess right: you can do this with the Python API!&lt;/P&gt;&lt;P&gt;The text version:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For a given layer's URL&lt;/LI&gt;&lt;LI&gt;Find all maps that reference that layer&lt;/LI&gt;&lt;LI&gt;Fina all apps that reference those maps or the layers directly&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The tricky part is # 3. An app can reference a layer directly in one of its widgets, like the &lt;STRONG&gt;Search &lt;/STRONG&gt;widget. Other apps, like Experience Builder and Dashboards, can also reference layers directly without going through a map. Further complicating this is that certain apps will make direct references to a layer using their ID, rather than their URL.&lt;/P&gt;&lt;P&gt;To make sure our search is comprehensive we can't just search for the apps that reference the maps; we'll have to search for the layers directly as well. It gets a bit convoluted, but it works!&lt;/P&gt;&lt;P&gt;The code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
import pandas as pd

# Log in to portal; prompts for PW automatically
gis = GIS('your-portal-url', 'username')

# Layer ID to search for and its URL
find_id = 'a405b06ae8e24f94a2768a4581b79e73'
find_url = gis.content.get(find_id).url

# Pull list of all web maps in portal
webmaps = gis.content.search('', item_type='Web Map', max_items=-1)

# Return subset of map IDs which contain the service URL we're looking for
matches = [m.id for m in webmaps if str(m.get_data()).find(find_url) &amp;gt; -1]

# Pull list of all web apps in portal
webapps = gis.content.search('', item_type='Application', max_items=-1)

# Create empty list to populate with results
app_list = []

# Check each web app for matches
for w in webapps:
    
    try:
        # Get the JSON as a string
        wdata = str(w.get_data())

        criteria = [
            wdata.find(find_url) &amp;gt; -1, # Check if URL is directly referenced
            any([wdata.find(i) &amp;gt; -1 for i in matches]) # Check if any matching maps are in app
        ]

        # If layer is referenced directly or indirectly, append app to list
        if any(criteria):
            app_list.append(w)
    
    # Some apps don't have data, so we'll just skip them if they throw a TypeError
    except:
        continue

pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type} for a in app_list])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output DataFrame will be any apps that reference your layer:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1644429780295.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/33531iFCA28246B0D694CF/image-size/large?v=v2&amp;amp;px=999" role="button" title="jcarlson_0-1644429780295.png" alt="jcarlson_0-1644429780295.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You can easily amend the final line of the expression to include additional details about the items.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 18:05:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142249#M44261</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-09T18:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142323#M44265</link>
      <description>&lt;P&gt;Have you considered looking at 3rd party vendor solutions designed specifically for this issue?&amp;nbsp; I would look at GeoJobe especially if this is a time consuming task for GIS personnel at your org as AGOL and Portal mature and there is a good deal of content.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 20:31:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142323#M44265</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2022-02-09T20:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142372#M44268</link>
      <description>&lt;P&gt;Thank you, Josh! I'll definitely look into this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 21:21:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142372#M44268</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-02-09T21:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142375#M44269</link>
      <description>&lt;P&gt;I think I've looked into GeoJobe before....correct me if I'm wrong, but it is not a free service, correct? It would be difficult to justify the expense to higher management (non-GIS) who would have to approve something like that, unfortunately.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 21:23:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142375#M44269</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-02-09T21:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142378#M44270</link>
      <description>&lt;P&gt;Fantastic, thank you so much for your thorough response!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 21:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1142378#M44270</guid>
      <dc:creator>ZachRobinson_SantaClaraCounty</dc:creator>
      <dc:date>2022-02-09T21:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1154178#M44874</link>
      <description>&lt;P&gt;Is there any other way to do this without Python or other coding?&amp;nbsp; I am not a developer but really need this tool.&amp;nbsp; Geo Jobe offers it in Pro for a fee, but would appreciate if ESRI would offer for free!&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 09:55:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1154178#M44874</guid>
      <dc:creator>NavaSheer</dc:creator>
      <dc:date>2022-03-16T09:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1154246#M44877</link>
      <description>&lt;P&gt;The short answer for right now is "no", but you can create a custom tool in a Toolbox by right clicking on the Toolbox &amp;gt; New &amp;gt; Script.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Katherine_Clark_0-1647436530767.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/36474i1ACE36D6E444642D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Katherine_Clark_0-1647436530767.png" alt="Katherine_Clark_0-1647436530767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Since&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;was so generous with sharing his code, I'd like to share what I did to take it a step further and set up this tool so that others in my organization who didn't have programming experience could search for items. (setup for ArcGIS Pro)&lt;/P&gt;&lt;P&gt;When setting up the tool parameters, I entered "Web Map" and "Web Application" in the Value List I created for that parameter. This creates a drop down in the tool and ensures there won't be any typos in the user input that would break the code.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Katherine_Clark_2-1647436908885.png" style="width: 692px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/36476iEED01A9D86751A4E/image-dimensions/692x140?v=v2" width="692" height="140" role="button" title="Katherine_Clark_2-1647436908885.png" alt="Katherine_Clark_2-1647436908885.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also, if anyone reads this who is completely new to Python, I wanted to point out that when setting up tools to use within Pro or ArcMap, you use arcpy.AddMessage() to print messages to the console instead of a traditional print() statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this is what the output looks like (nothing fancy) - this particular layer is only used in one web map. (side note - the time it takes to run depends on the number of items in your Organization's contents. It may run much quicker if you have fewer items to search through).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Katherine_Clark_3-1647437736336.png" style="width: 696px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/36479i4896A102ADA803AF/image-dimensions/696x480?v=v2" width="696" height="480" role="button" title="Katherine_Clark_3-1647437736336.png" alt="Katherine_Clark_3-1647437736336.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This community has helped me so much throughout the years, I like to give back when I can. I hope this helps.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Katherine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
import pandas as pd

# Log in to portal; 'home' uses the credentials used to login within Pro
gis = GIS('home')

# Set up input parameters to use in the GUI
find_id = arcpy.GetParameterAsText(0)
search_type = arcpy.GetParameterAsText(1)

find_url = gis.content.get(find_id).url

if search_type == 'Web Map':
    arcpy.AddMessage("Searching for Web Maps. This could take a few minutes...")
    # Pull list of all web maps in portal
    webmaps = gis.content.search('', item_type='Web Map', max_items=-1)

    # Return subset of map IDs which contain the service URL we're looking for
    matches = [m.id for m in webmaps if str(m.get_data()).find(find_url) &amp;gt; -1]

    # Create empty list to populate with results
    map_list = []

    # Check each web map for matches
    for w in webmaps:

        try:
            # Get the JSON as a string
            wdata2 = str(w.get_data())

            criteria = [
                wdata2.find(find_url) &amp;gt; -1,  # Check if URL is directly referenced
                any([wdata2.find(i) &amp;gt; -1 for i in matches])  # Check if any matching maps are in app
            ]

            # If layer is referenced directly or indirectly, append map to list
            if any(criteria):
                map_list.append(w)

        # Some apps don't have data, so we'll just skip them if they throw a TypeError
        except:
            continue

    output = pd.DataFrame([{'title': m.title, 'id': m.id, 'type': m.type} for m in map_list])
    arcpy.AddMessage(f"OUTPUT TABLE: \n \n {output}")

if search_type == 'Web Application':
    arcpy.AddMessage("Searching for Web Applications. This could take a few minutes...")
    # Pull list of all web apps in portal
    webapps = gis.content.search('', item_type='Application', max_items=-1)

    # Create empty list to populate with results
    app_list = []

    # Return subset of map IDs which contain the service URL we're looking for
    matches = [a.id for a in webapps if str(a.get_data()).find(find_url) &amp;gt; -1]

    # Check each web app for matches
    for w in webapps:

        try:
            # Get the JSON as a string
            wdata = str(w.get_data())

            criteria = [
                wdata.find(find_url) &amp;gt; -1, # Check if URL is directly referenced
                any([wdata.find(i) &amp;gt; -1 for i in matches]) # Check if any matching maps are in app
            ]

            # If layer is referenced directly or indirectly, append app to list
            if any(criteria):
                app_list.append(w)

        # Some apps don't have data, so we'll just skip them if they throw a TypeError
        except:
            continue

    output = pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type} for a in app_list])
    arcpy.AddMessage(f"OUTPUT TABLE:  \n \n {output}")

&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 13:37:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1154246#M44877</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2022-03-16T13:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1206405#M47582</link>
      <description>&lt;P&gt;Thank you all for sharing this information, it's greatly appreciated and will be much used!!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 16:47:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1206405#M47582</guid>
      <dc:creator>SSMIC3038</dc:creator>
      <dc:date>2022-08-25T16:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1216830#M48095</link>
      <description>&lt;P&gt;This is great! Thank you.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Can the script be modified to include 'web &lt;STRONG&gt;maps&lt;/STRONG&gt;' in the output DataFrame?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 05:41:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1216830#M48095</guid>
      <dc:creator>NickShannon2</dc:creator>
      <dc:date>2022-09-28T05:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1216910#M48097</link>
      <description>&lt;P&gt;Of course! Since our list of maps is already defined earlier, that last line could just be amended like so:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type} for a in matches])&lt;/LI-CODE&gt;&lt;P&gt;If you want the maps together with the apps in the output, you can just use the pandas method &lt;STRONG&gt;concat&lt;/STRONG&gt;:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;dependencies = pd.concat(
    [
        pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type, 'url':f'{gis.url}/home/item.html?id={a.id}'} for a in app_list]),
        pd.DataFrame([{'title':m.title, 'id':m.id, 'type':m.type, 'url':f'{gis.url}/home/item.html?id={m.id}'} for m in matches])
    ]
)&lt;/LI-CODE&gt;&lt;P&gt;But if the properties you want from the maps / apps are the same, you could also just merge the two lists together:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;all_items = app_list + matches

pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type, 'url':f'{gis.url}/home/item.html?id={a.id}'} for a in all_items])&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 28 Sep 2022 13:10:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1216910#M48097</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-09-28T13:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1225456#M48574</link>
      <description>&lt;P&gt;Thanks so much for this.&amp;nbsp; However, it does not catch items being utilized by a Web Experience.&amp;nbsp; You will need to add this (apply code where necessary).&amp;nbsp; Again, this is great stuff&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Pull list of all web experience apps
webexp = gis.content.search('', item_type='Web Experience', max_items=-1)

exp_list = []

# Check each web experience app for matches
for wx in webexp:  
    try:
        # Get the JSON as a string
        wxdata = str(wx.get_data())

        criteria = [
            wxdata.find(find_url) &amp;gt; -1, # Check if URL is directly referenced
            any([wxdata.find(i) &amp;gt; -1 for i in matches]) # Check if any matching maps are in app
        ]

        # If layer is referenced directly or indirectly, append app to list
        if any(criteria):
            exp_list.append(wx)
    
    # Some apps don't have data, so we'll just skip them if they throw a TypeError
    except:
        continue

s1 = pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type} for a in app_list])
s2 = pd.DataFrame([{'title':b.title, 'id':b.id, 'type':b.type} for b in exp_list])

# Concatenate with original DataFrame
pd.concat([s1, s2])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 21:52:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1225456#M48574</guid>
      <dc:creator>Big-Chill</dc:creator>
      <dc:date>2022-10-25T21:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1234077#M48993</link>
      <description>&lt;P&gt;Hi, I implement this script above to include the maps together with the apps but got an error &lt;STRONG&gt;for m in matches&lt;/STRONG&gt; section.&lt;/P&gt;&lt;P&gt;pd.DataFrame([{'title':a.title, 'id':a.id, 'type':a.type, 'url':f'{gis.url}/home/item.html?id={a.id}'} for a in app_list]),&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;pd.DataFrame([{'title':m.title, 'id':m.id, 'type':m.type, 'url':f'{gis.url}/home/item.html?id={m.id}'} for m in matches])&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HaThach1_0-1669124670796.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/56562i3F36FC46C58788E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HaThach1_0-1669124670796.png" alt="HaThach1_0-1669124670796.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Have any idea? thx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 13:48:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1234077#M48993</guid>
      <dc:creator>HaThach1</dc:creator>
      <dc:date>2022-11-22T13:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1278202#M51430</link>
      <description>&lt;P&gt;This looks really great! I am new&amp;nbsp; to python scripts though and when trying to run the tool I get an error message:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OnnoKeller_0-1681389259027.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/67860i0BC5CE576F476769/image-size/medium?v=v2&amp;amp;px=400" role="button" title="OnnoKeller_0-1681389259027.png" alt="OnnoKeller_0-1681389259027.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help on how to resolve this error would be much appreciated!&lt;/P&gt;&lt;P&gt;It should be noted that my maps and feature layers are in ArcGIS Online and not portal...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 12:36:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1278202#M51430</guid>
      <dc:creator>OnnoKeller</dc:creator>
      <dc:date>2023-04-13T12:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1278209#M51431</link>
      <description>&lt;P&gt;The API should work the same regardless of where you're searching.&lt;/P&gt;&lt;P&gt;Try replacing line 1 with &lt;STRONG&gt;import arcgis&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Then replace line 5 with &lt;STRONG&gt;gis = arcgis.gis.GIS('home')&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 12:57:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1278209#M51431</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2023-04-13T12:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1279209#M51489</link>
      <description>&lt;P&gt;Thanks for the quick reply and help.&lt;/P&gt;&lt;P&gt;Your proposed changes made the script work for me!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 12:40:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1279209#M51489</guid>
      <dc:creator>OnnoKeller</dc:creator>
      <dc:date>2023-04-17T12:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1285851#M51948</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just curious, but how long should it take this tool to run? We have a fairly small AGOL org with less than 500 items but the tool has been running for about 15 minutes so far. This&amp;nbsp; is my second attempt at running it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm running it in the Python window and it appears to be running, but it is just bogged down somewhere.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 11:57:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1285851#M51948</guid>
      <dc:creator>MDB_GIS</dc:creator>
      <dc:date>2023-05-05T11:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1286049#M51959</link>
      <description>&lt;P&gt;Katherine,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for sharing this! It is very helpful! How long on average does it take for it to search for Web Applications for you? We have a relatively small AGOL org (&amp;lt;500 items) and yet it still took the tool 3.5 hours to run. The Web maps part finishes in less than a minute. I'm not sure if I've misconfigured something or if there is sosmething weird about our organization that I'm not aware of but this is a real head scratcher.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 11:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1286049#M51959</guid>
      <dc:creator>MDB_GIS</dc:creator>
      <dc:date>2023-05-05T11:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to find out where feature layers are being used in web applications?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1309143#M53431</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;I am getting the same error as&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/277815"&gt;@HaThach1&lt;/a&gt;&amp;nbsp;. Have we found a solution to this? I haven't been able to get something to work.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 15:55:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/possible-to-find-out-where-feature-layers-are/m-p/1309143#M53431</guid>
      <dc:creator>EmmaCurran18</dc:creator>
      <dc:date>2023-07-18T15:55:43Z</dc:date>
    </item>
  </channel>
</rss>

