<?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: Describe method for ObjectID in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429026#M33729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;as the others before said, you can use the same code you used for a shapefile:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp; 
&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But you will only get a list of values if you have selected some features before running the code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 19:18:09 GMT</pubDate>
    <dc:creator>RaphaelR</dc:creator>
    <dc:date>2021-12-11T19:18:09Z</dc:date>
    <item>
      <title>Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429020#M33723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know how to use describe method when there is an FID field in layer's attribute table. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I use the following codes&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;

&amp;nbsp;&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp;&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But when a layer is added to a map from a GeoDatabase it has an ObjectID* fields instead of FID. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I describe an OBJECTID* field usng describe method? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate if somebody helps me. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Babak&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 14:31:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429020#M33723</guid>
      <dc:creator>babakkasraei</dc:creator>
      <dc:date>2013-03-13T14:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429021#M33724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use describe to figure out what the 'oidFieldName' is (whether it be FID, OID, OBJECTID, or something else).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;oidFieldName = arcpy.Describe(myLayer).oidFieldName&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Worth mentioning - If you have v10.1, the data access cursors allow a MUCH faster and better way of getting a list of the selected OID values than the .fidSet describe property:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;oidValueList = [r[0] for r in arcpy.da.SearchCursor(myLayer, ["OID@"])]&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 15:59:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429021#M33724</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-03-13T15:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429022#M33725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;BTW: Per your actual question, the .fidset Describe property lists the OBJECTID value, no matter what it's called.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 16:01:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429022#M33725</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-03-13T16:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429023#M33726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Babak-&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you try it with a fc instead of shp? It seems to work just the same for me. Did you make sure to have a selection on the layer? The FIDSet will return a semicolon-delimited string of selected feature IDs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Luke&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 16:01:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429023#M33726</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2013-03-13T16:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429024#M33727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Per what Lucas said, the .fidset property only works when there is a selected set - Note that a definition query is NOT a selection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;oidValueList = [r[0] for r in arcpy.da.SearchCursor(myLayer, ["OID@"])].&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;method will return a list regardless of a selection or not. If there is a selected set on the feature layer/table view, then only those selected OID values will be returned. Otherwise, if there is no selected records, then all the OIDs in the feature layer/table view will be returned.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 16:19:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429024#M33727</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-03-13T16:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429025#M33728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You can use describe to figure out what the 'oidFieldName' is (whether it be FID, OID, OBJECTID, or something else).&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;oidFieldName = arcpy.Describe(myLayer).oidFieldName&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Worth mentioning - If you have v10.1, the data access cursors allow a MUCH faster and better way of getting a list of the selected OID values than the .fidSet describe property:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;oidValueList = [r[0] for r in arcpy.da.SearchCursor(myLayer, ["OID@"])]&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Chris&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your and other friends' help. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1- I have to write the codes for V 10.0. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2- When I use the following codes:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp; 
&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It returns a list of selected FIDs then I can manipulate them. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When there is no FID field and I use the following codes as you suggested. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

desc = arcpy.Describe(lyr)
&amp;nbsp;&amp;nbsp; 
if desc.hasOID:
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedOID = desc.OIDFieldName

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It returns only the name of OID for example OBJECTID nothing more.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want it to work like FIDSet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the problem. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate your help. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Babak&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:18:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429025#M33728</guid>
      <dc:creator>babakkasraei</dc:creator>
      <dc:date>2021-12-11T19:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429026#M33729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;as the others before said, you can use the same code you used for a shapefile:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp; 
&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But you will only get a list of values if you have selected some features before running the code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:18:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429026#M33729</guid>
      <dc:creator>RaphaelR</dc:creator>
      <dc:date>2021-12-11T19:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429027#M33730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;as the others before said, you can use the same code you used for a shapefile:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp; 
&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;But you will only get a list of values if you have selected some features before running the code.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dear Rafael&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You and other friends are right FIDSet still works in my script. My problem is in another part of the script. I first write the whole codes to illustrate what I am doing and then I show you the problem . These are the codes: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

import sys,os,math,string,arcpy
from arcpy import env

# Read from current map
mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd, "Data Themes")[0]
layer = arcpy.mapping.ListLayers(mxd, "*", df )

#layer_list = [layer for layer in arcpy.mapping.ListLayers(mxd) if 'FID' in [field.name for field in arcpy.ListFields(layer, 'FID')]]

for lyr in layer:
&amp;nbsp;&amp;nbsp; if lyr.isGroupLayer == False:
&amp;nbsp;&amp;nbsp;&amp;nbsp; # describe the feature layer to access the the selected set
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = arcpy.Describe(lyr)
&amp;nbsp;&amp;nbsp; # FIDSet will contain the selected features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedFids = desc.FIDSet

&amp;nbsp;&amp;nbsp;&amp;nbsp; # If there are selectedFids (a selection set), write them to a new feature
&amp;nbsp;&amp;nbsp;&amp;nbsp; # class in the current workspace.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if len(selectedFids) &amp;gt; 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryList = selectedFids.replace(';', ',')
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newName = arcpy.AddFieldDelimiters(lyr, 'OBJECTID')
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.definitionQuery =&amp;nbsp; '{0} in ({1})' .format(newName, queryList)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.RefreshActiveView() 
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This script must exclude unselected features in the feature class. My problem is in the last three lines here&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryList = selectedFids.replace(';', ',')

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newName = arcpy.AddFieldDelimiters(lyr, "OBJECTID")
 # This query will exclude unselected fatures&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.definitionQuery =&amp;nbsp; '{0} in ({1})' .format(newName, queryList)

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For query it must be something like [OBJECTID] in ...... But if I don't put quotes in newName line it will be wrong. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How should I write it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Babak&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:18:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429027#M33730</guid>
      <dc:creator>babakkasraei</dc:creator>
      <dc:date>2021-12-11T19:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429028#M33731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;not sure if i completely understand, but your script looks like you´re working with layers inside arcmap in the current mxd.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to copy selected features of a layer to a new feature class, CopyFeatures will respect the selection:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Summary&lt;BR /&gt;&lt;BR /&gt;Copies features from the input feature class or layer to a new feature class. If the input is a layer which has a selection, only the selected features will be copied. If the input is a geodatabase feature class or shapefile, all features will be copied.&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 15:02:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429028#M33731</guid>
      <dc:creator>RaphaelR</dc:creator>
      <dc:date>2013-03-14T15:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Describe method for ObjectID</title>
      <link>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429029#M33732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;not sure if i completely understand, but your script looks like you´re working with layers inside arcmap in the current mxd.&lt;BR /&gt;If you want to copy selected features of a layer to a new feature class, CopyFeatures will respect the selection:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dear Rafael&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem looks simple. I need to get rid of quotes in my SQL expression. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will post a new thread for it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate if you please give me yor idea. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thak you for your help. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Babak&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 23:51:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/describe-method-for-objectid/m-p/429029#M33732</guid>
      <dc:creator>babakkasraei</dc:creator>
      <dc:date>2013-03-14T23:51:53Z</dc:date>
    </item>
  </channel>
</rss>

