<?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: Acquire ObjectId value of inserted row in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5383#M491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This saves me from dealing with %scratchworkspace% / in_memory workspace mess dealing with intermediate data -- it gets messy when that stuff happens as a gp service.&amp;nbsp; It also removes a bunch of convoluted complexity that is just not needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jan 2018 22:00:38 GMT</pubDate>
    <dc:creator>JamesCrandall</dc:creator>
    <dc:date>2018-01-30T22:00:38Z</dc:date>
    <item>
      <title>Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5379#M487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using arcpy.da.InsertCursor, what is the best way to capture the ObjectId value of the row that was just inserted?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;finalFC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fieldnames&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'OBJECTID = {}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;oid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; fscur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fsrow &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fscur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;scratchFC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fieldnames&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; icur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&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; icur&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fsrow&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&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; &lt;SPAN class="comment token"&gt;#I need to capture the OBJECTID value of the row that was just inserted in the line above&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt; icur&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5379#M487</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-10T20:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5380#M488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might try:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;MaxOID &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; next&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;scratchFC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'OBJECTID'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sql_clause&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ORDER BY OBJECTID DESC'&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="keyword token"&gt;print&lt;/SPAN&gt; MaxOID&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# use first element‍‍‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:12:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5380#M488</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-10T20:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5381#M489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Randy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a little concerned about relying upon maxOID, only because ultimately this will be published as a GP service and I want to be sure I'm only working with the specific geometry per request.&amp;nbsp; I hacked together an approach that simply writes the&amp;nbsp;feature to an&amp;nbsp;in_memory FC, run an update cursor on that, then use it to perform the final insert on the destination FC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2018 19:30:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5381#M489</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2018-01-30T19:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5382#M490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ArcPy Data Access Insert Cursor returns the OID after inserting a new record:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;finalFC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fieldnames&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'OBJECTID = {}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;oid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; fscur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fsrow &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fscur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;scratchFC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fieldnames&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; icur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&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; ioid &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; icur&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fsrow&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&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; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ioid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;del&lt;/SPAN&gt; icur&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:12:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5382#M490</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-10T20:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5383#M491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This saves me from dealing with %scratchworkspace% / in_memory workspace mess dealing with intermediate data -- it gets messy when that stuff happens as a gp service.&amp;nbsp; It also removes a bunch of convoluted complexity that is just not needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2018 22:00:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5383#M491</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2018-01-30T22:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Acquire ObjectId value of inserted row</title>
      <link>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5384#M492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just as an FYI, this is documented behavior in &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm"&gt;InsertCursor—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; (&lt;EM&gt;although most people tend to overlook the return value part)&lt;/EM&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;H2 style="margin: 0.63158em 0px 0.63158em; font-family: 'Avenir LT W01 35 Light', Arial, Helvetica, sans-serif; font-style: normal; font-weight: 500; letter-spacing: 0.02em; font-size: 2rem; line-height: 1.2em; -webkit-font-smoothing: antialiased;"&gt;Methods&lt;/H2&gt;&lt;DIV class="" style="-webkit-font-smoothing: antialiased; margin-bottom: 4.5em;"&gt;&lt;DIV class="" style="-webkit-font-smoothing: antialiased;"&gt;&lt;PRE style="font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; margin-top: 1em; margin-bottom: 0.5em; font-size: 0.875em; line-height: 1em; white-space: pre-wrap; word-wrap: break-word; tab-size: 4; max-width: 100%;"&gt;insertRow (row)&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="" style="-webkit-font-smoothing: antialiased;"&gt;&lt;TABLE style="width: 767.333px; margin-bottom: 1.5em; font-size: 0.875em; line-height: 1.71429em; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: white; border-collapse: collapse; border-spacing: 0px; border: 1px solid #dddddd; text-align: left;"&gt;&lt;THEAD style="background-color: #f4f4f4; border-bottom: 1px solid #dddddd; font-size: 0.9375em; line-height: 1.6em; font-weight: bold;"&gt;&lt;TR style="border-bottom: none; text-align: left;"&gt;&lt;TD class="" style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Parameter&lt;/TD&gt;&lt;TD class="" style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Explanation&lt;/TD&gt;&lt;TD class="" style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Data Type&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR style="border-bottom: none; text-align: left;"&gt;&lt;TD style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;&lt;DIV class="" style="-webkit-font-smoothing: antialiased;"&gt;row&lt;/DIV&gt;&lt;DIV class="" style="-webkit-font-smoothing: antialiased;"&gt;[row,...]&lt;/DIV&gt;&lt;/TD&gt;&lt;TD style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;&lt;P style="font-size: 0.875rem; line-height: 1.71429em; margin-top: 0em; margin-bottom: 0px; -webkit-font-smoothing: antialiased;"&gt;A list or tuple of values. The order of values must be in the same order as specified when creating the cursor.&lt;/P&gt;&lt;P style="font-size: 0.875rem; line-height: 1.71429em; margin-top: 1.71429em; margin-bottom: 0px; -webkit-font-smoothing: antialiased;"&gt;When updating fields, if the incoming values match the type of field, the values will be cast as necessary. For example, a value of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-weight: bold;"&gt;1.0&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to a string field will be added as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-weight: bold;"&gt;"1.0"&lt;/SPAN&gt;, and a value of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-weight: bold;"&gt;"25"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;added to a float field will be added as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-weight: bold;"&gt;25.0&lt;/SPAN&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;tuple&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;H3 style="margin: 1.26316em 0px 0.5em 2em; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-style: normal; font-weight: 500; letter-spacing: 0.02em; font-size: 0.875em; line-height: 1em; -webkit-font-smoothing: antialiased; width: calc(100% - 2em);"&gt;Return Value&lt;/H3&gt;&lt;TABLE style="width: calc(100% - 2em); margin-bottom: 1.5em; font-size: 0.875em; line-height: 1.71429em; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: white; border-collapse: collapse; border-spacing: 0px; border: 1px solid #dddddd; text-align: left; margin-left: 2em;"&gt;&lt;THEAD style="background-color: #f4f4f4; border-bottom: 1px solid #dddddd; font-size: 0.9375em; line-height: 1.6em; font-weight: bold;"&gt;&lt;TR style="border-bottom: none; text-align: left;"&gt;&lt;TD class="" style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Data Type&lt;/TD&gt;&lt;TD class="" style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Explanation&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR style="border-bottom: none; text-align: left;"&gt;&lt;TD style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;Integer&lt;/TD&gt;&lt;TD style="border-left: 1px solid #dddddd; border-right: 1px solid #dddddd; padding: 12px;"&gt;&lt;P style="font-size: 0.875rem; line-height: 1.71429em; margin-top: 0em; margin-bottom: 0px; -webkit-font-smoothing: antialiased;"&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-weight: bold;"&gt;insertRow&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;returns the objectid of the new row.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 14:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/acquire-objectid-value-of-inserted-row/m-p/5384#M492</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-01-31T14:27:56Z</dc:date>
    </item>
  </channel>
</rss>

