<?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: list all services in a web map in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171020#M4767</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My teammate has created a python script to accomplish this.&lt;/P&gt;&lt;P&gt;I will ask for permission to share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative is to pay GeoJobe to allow you to search dependecies in a web map drilling downwards, and upwards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step after your question is answered is to:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/214397-view-all-web-maps-being-consumed-by-all-web-mapping-applications"&gt;https://community.esri.com/thread/214397-view-all-web-maps-being-consumed-by-all-web-mapping-applications&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2018 00:58:53 GMT</pubDate>
    <dc:creator>AndresCastillo</dc:creator>
    <dc:date>2018-06-25T00:58:53Z</dc:date>
    <item>
      <title>list all services in a web map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171018#M4765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know a way to extract a list of all services in a web map?&amp;nbsp; I have a number of web maps and am continuously needing to retire old layers from them and replace with new layers.&amp;nbsp; It would be very helpful to be able to extract lists from all web maps and send to a spreadsheet so I would know what maps if any a layer is active in.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course this info is visible in the details of the web maps but this would be very time consuming to check each one.&amp;nbsp; Is there a way to pull the details with a python script or something into an Excel sheet so I can see all maps consuming a service at once?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcGIS 10.3.1, with Federated Portal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2018 21:44:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171018#M4765</guid>
      <dc:creator>HunterCarver</dc:creator>
      <dc:date>2018-06-21T21:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: list all services in a web map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171019#M4766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hunter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You would need to develop some code to do this, there is nothing otb for what you want.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/esri.arcgis.utils-amd.html#getlayerlist" title="https://developers.arcgis.com/javascript/3/jsapi/esri.arcgis.utils-amd.html#getlayerlist" rel="nofollow noopener noreferrer" target="_blank"&gt;esri/arcgis/utils | API Reference | ArcGIS API for JavaScript 3.24&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;//df8bcc10430f48878b01c96e907a1fc3 is the webmap id&lt;/SPAN&gt;
arcgisUtils&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;createMap&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"df8bcc10430f48878b01c96e907a1fc3"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"map"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;then&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;response&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; layersResult &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcgisUtils&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getLayerList&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;response&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp; console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;info&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;layersResult&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:51:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171019#M4766</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T08:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: list all services in a web map</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171020#M4767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My teammate has created a python script to accomplish this.&lt;/P&gt;&lt;P&gt;I will ask for permission to share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative is to pay GeoJobe to allow you to search dependecies in a web map drilling downwards, and upwards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step after your question is answered is to:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/214397-view-all-web-maps-being-consumed-by-all-web-mapping-applications"&gt;https://community.esri.com/thread/214397-view-all-web-maps-being-consumed-by-all-web-mapping-applications&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2018 00:58:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/list-all-services-in-a-web-map/m-p/171020#M4767</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2018-06-25T00:58:53Z</dc:date>
    </item>
  </channel>
</rss>

