<?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 Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline) in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1389520#M79617</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I try to create from ArcGIS Pro a Buffer GP Service&amp;nbsp;that accepts as input multiple geometry type&amp;nbsp;(Point, Polygon, Polyline).&lt;/P&gt;&lt;P&gt;I tried this script :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
arcpy.env.overwriteOutput = True
##arcpy.addOutputsToMap = True
if __name__ == "__main__":
    inputFc = arcpy.GetParameterAsText(0)
    outputFc = r"C:\temp\output_buffer.shp"
##    arcpy.AddMessage(inputFc)   
    # Create a Describe object from the feature class
    desc = arcpy.Describe(inputFc)
    # Print Sahpe Type
##    arcpy.AddMessage("Shape Type :   " + desc.shapeType)
    shpType = desc.shapeType
    if(shpType == "Polygon"):
        arcpy.AddMessage("Shape Type :   " + desc.shapeType)
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters")
    elif(shpType == "Point"):
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters")
    elif(shpType == "Polyline"):
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters") &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;It works with ArcGIS Pro :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_0-1709307815328.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96479iEA205E0DAC5321C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_0-1709307815328.png" alt="Bertrand_Laurancin_0-1709307815328.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_2-1709307859280.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96483i13F8F3EC0475641E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_2-1709307859280.png" alt="Bertrand_Laurancin_2-1709307859280.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, when I publish the result of the script (from ArcGIS pro) to a Web Tool (GP Service), the Geometry Type is always the same that the input geomtry used in ArcGIS Pro :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_3-1709307988191.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96486i68CD2F36D4B73AD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_3-1709307988191.png" alt="Bertrand_Laurancin_3-1709307988191.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Therefore, in a WAB application, i can choose only a point feature layer as input :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_4-1709308090366.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96487i6A1428CA1EE2D34A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_4-1709308090366.png" alt="Bertrand_Laurancin_4-1709308090366.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it's not possible because&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;EM&gt;The geometry type comes from the input and output features that are used to create the result&lt;/EM&gt;&lt;SPAN&gt;" |&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;Source&amp;nbsp;&lt;/U&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it really not possible ?&lt;BR /&gt;&lt;BR /&gt;Is there a workaround ?&lt;BR /&gt;&lt;BR /&gt;Do you have any idea ?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Bertrand&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2024 15:59:38 GMT</pubDate>
    <dc:creator>Bertrand_Laurancin</dc:creator>
    <dc:date>2024-03-01T15:59:38Z</dc:date>
    <item>
      <title>Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1389520#M79617</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I try to create from ArcGIS Pro a Buffer GP Service&amp;nbsp;that accepts as input multiple geometry type&amp;nbsp;(Point, Polygon, Polyline).&lt;/P&gt;&lt;P&gt;I tried this script :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
arcpy.env.overwriteOutput = True
##arcpy.addOutputsToMap = True
if __name__ == "__main__":
    inputFc = arcpy.GetParameterAsText(0)
    outputFc = r"C:\temp\output_buffer.shp"
##    arcpy.AddMessage(inputFc)   
    # Create a Describe object from the feature class
    desc = arcpy.Describe(inputFc)
    # Print Sahpe Type
##    arcpy.AddMessage("Shape Type :   " + desc.shapeType)
    shpType = desc.shapeType
    if(shpType == "Polygon"):
        arcpy.AddMessage("Shape Type :   " + desc.shapeType)
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters")
    elif(shpType == "Point"):
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters")
    elif(shpType == "Polyline"):
        arcpy.analysis.Buffer(inputFc, outputFc, "500 meters") &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;It works with ArcGIS Pro :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_0-1709307815328.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96479iEA205E0DAC5321C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_0-1709307815328.png" alt="Bertrand_Laurancin_0-1709307815328.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_2-1709307859280.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96483i13F8F3EC0475641E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_2-1709307859280.png" alt="Bertrand_Laurancin_2-1709307859280.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, when I publish the result of the script (from ArcGIS pro) to a Web Tool (GP Service), the Geometry Type is always the same that the input geomtry used in ArcGIS Pro :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_3-1709307988191.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96486i68CD2F36D4B73AD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_3-1709307988191.png" alt="Bertrand_Laurancin_3-1709307988191.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Therefore, in a WAB application, i can choose only a point feature layer as input :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_4-1709308090366.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96487i6A1428CA1EE2D34A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_4-1709308090366.png" alt="Bertrand_Laurancin_4-1709308090366.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it's not possible because&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;EM&gt;The geometry type comes from the input and output features that are used to create the result&lt;/EM&gt;&lt;SPAN&gt;" |&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;Source&amp;nbsp;&lt;/U&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it really not possible ?&lt;BR /&gt;&lt;BR /&gt;Is there a workaround ?&lt;BR /&gt;&lt;BR /&gt;Do you have any idea ?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Bertrand&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 15:59:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1389520#M79617</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-01T15:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1389853#M79658</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;&amp;nbsp;Hope this helps,&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/get-started/share-a-web-tool.htm#:~:text=When%20web%20tool,the%20appropriate%20schema" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/get-started/share-a-web-tool.htm#:~:text=When%20web%20tool,the%20appropriate%20schema&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 04:32:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1389853#M79658</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-02T04:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390327#M79706</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/721900"&gt;@GeeteshSingh07&lt;/a&gt;.&lt;BR /&gt;I think it is not possible and as designed:&lt;BR /&gt;"&lt;EM&gt;The geometry type comes from the input and output features that are used to create the result. It cannot be modified on the&amp;nbsp;Content&amp;nbsp;tab. You need to rerun the tool using features of the specified geometry type, and share the result created by the run&lt;/EM&gt;" | Source :&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/share-analysis/web-tool-settings.htm#GUID-BD393EE7-5839-46A6-A196-8D4E092D9309&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 14:08:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390327#M79706</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-04T14:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390392#M79715</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;&amp;nbsp;, I believe it is possible.&amp;nbsp; Could you check these two things before publishing the web tool and verify if that works?&lt;/P&gt;&lt;P&gt;1st- The filter is set in script tool:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GeeteshSingh07_0-1709564744879.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96723i236CE70C79F642BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GeeteshSingh07_0-1709564744879.png" alt="GeeteshSingh07_0-1709564744879.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2nd while publishing, "Input Mode" for the tool is "User defined Value".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GeeteshSingh07_1-1709564821182.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96724i25ABFFEC17BA7865/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GeeteshSingh07_1-1709564821182.png" alt="GeeteshSingh07_1-1709564821182.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 15:07:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390392#M79715</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-04T15:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390420#M79718</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/721900"&gt;@GeeteshSingh07&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I tried it :&lt;/P&gt;&lt;PRE&gt;import arcpy
arcpy.env.overwriteOutput = True
arcpy.addOutputsToMap = True
fcs_types = arcpy.GetParameterAsText(0)
fcs_list = fcs_types.split(";")
outputFcPt = r"C:\temp\output_buffer_pt.shp"
outputFcLine = r"C:\temp\output_buffer_polyline.shp"
outputFcPolygon = r"C:\temp\output_buffer_polygon.shp"
if __name__ == "__main__":
    for fc_type in fcs_list:
        arcpy.AddMessage("Processing: {}".format(fc_type))
        desc = arcpy.Describe(fc_type)
        shpType = desc.shapeType
        if(shpType == "Polygon"):
            arcpy.AddMessage("Shape Type :   " + desc.shapeType)
            arcpy.analysis.Buffer(fc_type, outputFcPolygon, "500 meters")
        elif(shpType == "Point"):
            arcpy.AddMessage("Shape Type :   " + desc.shapeType)
            arcpy.analysis.Buffer(fc_type, outputFcPt, "500 meters")
        elif(shpType == "Polyline"):
            arcpy.AddMessage("Shape Type :   " + desc.shapeType)
            arcpy.analysis.Buffer(fc_type, outputFcLine, "500 meters")    

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_0-1709565201799.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96729i3A1DC7DFF28C71F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_0-1709565201799.png" alt="Bertrand_Laurancin_0-1709565201799.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_1-1709565251051.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96730i23B12CE0D4F8B66D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_1-1709565251051.png" alt="Bertrand_Laurancin_1-1709565251051.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the REST Description it is OK :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_2-1709565355732.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96732iB5EF446B2F7AA1F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_2-1709565355732.png" alt="Bertrand_Laurancin_2-1709565355732.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But in my WAB App i can select only a point layer as input (the same geometry type as the gp result used in ArcGIS Pro to publish the gp service) whereas the WebMap contains polygon and polyline layers :&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_4-1709565598254.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96738i2DCD56D6276EC7E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_4-1709565598254.png" alt="Bertrand_Laurancin_4-1709565598254.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 15:27:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390420#M79718</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-04T15:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390424#M79719</link>
      <description>&lt;P&gt;What if we open the web tool in ArcGIS Pro?&lt;/P&gt;&lt;P&gt;Open from Catalog Pane &amp;gt; Portal &amp;gt; Open the tool (web)&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If web tool here allows all point, line, polygons, then, could you try reconfigured the widget in web app?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 15:30:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390424#M79719</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-04T15:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390441#M79722</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/721900"&gt;@GeeteshSingh07&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Yes in ArcGIS pro i can choose point, polyline or polygon layers from the gp service :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_0-1709566680635.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96743iE02BA333B4CADE90/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_0-1709566680635.png" alt="Bertrand_Laurancin_0-1709566680635.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, in the WAB i can select only&amp;nbsp;&lt;SPAN&gt;a point layer as input (the same geometry type as the gp result used in ArcGIS Pro to publish the gp service) whereas the WebMap contains polygon and polyline layers :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_1-1709566774717.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96744iD13F8E6169B4E92A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_1-1709566774717.png" alt="Bertrand_Laurancin_1-1709566774717.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_2-1709566800826.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96745i60010A3D3712DE92/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_2-1709566800826.png" alt="Bertrand_Laurancin_2-1709566800826.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 15:46:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390441#M79722</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-04T15:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390909#M79774</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;, unfortunately I don't have web appBuilder for testing it. However, in my Portal web map as well, it shows me all point, lines, polygon layers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe you test with new web appbuilder or experience builder, as this isn't expected behavior...if it still occurs there, we might have discovered a bug&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 04:22:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390909#M79774</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-05T04:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390971#M79783</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/721900"&gt;@GeeteshSingh07&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for your tests.&lt;/P&gt;&lt;P&gt;I don't understand how you can use the gp service in a WebMap (with portal viewer ?)&lt;BR /&gt;&lt;BR /&gt;Have a good day.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 08:36:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390971#M79783</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-05T08:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390974#M79784</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;&amp;nbsp;on the item detail's page of your web tool, we have option "Open in Map Viewer Classic".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GeeteshSingh07_0-1709628096313.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96848i10FEBC2A3EB08D1C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GeeteshSingh07_0-1709628096313.png" alt="GeeteshSingh07_0-1709628096313.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 08:41:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1390974#M79784</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-05T08:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1391015#M79787</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/721900"&gt;@GeeteshSingh07&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You are right.&lt;BR /&gt;&lt;BR /&gt;I created a model builder :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_0-1709634757354.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96859i1909CE85A53776C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_0-1709634757354.png" alt="Bertrand_Laurancin_0-1709634757354.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_1-1709634796590.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96860iCFAC51DE627FBDC8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_1-1709634796590.png" alt="Bertrand_Laurancin_1-1709634796590.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It works in MapViewer :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_2-1709634992999.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96861iF50551F521E2C096/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_2-1709634992999.png" alt="Bertrand_Laurancin_2-1709634992999.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, in WAB it still&amp;nbsp;&lt;SPAN&gt;not able to run against a different geometry type compared to the original geometry used to create the tool in ArcGIS Pro :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bertrand_Laurancin_3-1709635096074.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96862i13C92E96656DFB52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bertrand_Laurancin_3-1709635096074.png" alt="Bertrand_Laurancin_3-1709635096074.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found about a bug :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;BUG-000161045 : When adding a geoprocessing service as a widget to ArcGIS Web AppBuilder, the tool does not honor the same geometry types as the geoprocessing tool&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help,&lt;BR /&gt;Bertrand&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 10:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1391015#M79787</guid>
      <dc:creator>Bertrand_Laurancin</dc:creator>
      <dc:date>2024-03-05T10:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Buffer GP Service with multiple input geometry type (Point, Polygon, Polyline)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1391020#M79788</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/466654"&gt;@Bertrand_Laurancin&lt;/a&gt;, thank you for sharing the bug details.&lt;/P&gt;&lt;P&gt;Have a good day!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 11:11:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/create-a-buffer-gp-service-with-multiple-input/m-p/1391020#M79788</guid>
      <dc:creator>GeeteshSingh07</dc:creator>
      <dc:date>2024-03-05T11:11:04Z</dc:date>
    </item>
  </channel>
</rss>

