<?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: CalculateField_management on table name with accent don't work in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189913#M64943</link>
    <description>&lt;P&gt;Yes Dan, it's in the script.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Jul 2022 15:19:53 GMT</pubDate>
    <dc:creator>GregoireCatineau</dc:creator>
    <dc:date>2022-07-06T15:19:53Z</dc:date>
    <item>
      <title>CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189776#M64932</link>
      <description>&lt;DIV&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I have a table name with an accent and i want to do a calculate :&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CalculateField_management&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"inTable_view"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Centralité__point___ATTACH"&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;".SEQ"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;calcExp&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"VB"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But it's seems impossible to speficy a name with accent, i have this error :&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;BR /&gt;ERROR 000728: Field Centralit&lt;SPAN&gt;Ã©&lt;/SPAN&gt;__point___ATTACH.SEQ does not exist within table&lt;BR /&gt;Failed to execute (CalculateField).&lt;/P&gt;&lt;P&gt;Failed to execute (ExtractionPJ).&lt;BR /&gt;Failed at Wed Jul &amp;nbsp;6 13:42:20 2022 (Elapsed Time: 20,79 seconds)&lt;/P&gt;&lt;P&gt;But it's work if i use manually the calculate tool with the same name :&amp;nbsp;&lt;SPAN&gt;"Centralité__point___ATTACH"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Jul 2022 11:48:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189776#M64932</guid>
      <dc:creator>GregoireCatineau</dc:creator>
      <dc:date>2022-07-06T11:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189808#M64937</link>
      <description>&lt;P&gt;Try using a raw string:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CalculateField_management&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"inTable_view"&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;STRONG&gt;r&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;"Centralité__point___ATTACH"&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;".SEQ"&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;calcExp&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"VB"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 13:12:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189808#M64937</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-07-06T13:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189847#M64941</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you Johannes but it's the same error.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 13:58:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189847#M64941</guid>
      <dc:creator>GregoireCatineau</dc:creator>
      <dc:date>2022-07-06T13:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189890#M64942</link>
      <description>&lt;P&gt;# -*- coding: utf-8 -*-&lt;/P&gt;&lt;P&gt;is that line in your script?&amp;nbsp; Although it shouldn't matter&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 14:49:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189890#M64942</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-07-06T14:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189913#M64943</link>
      <description>&lt;P&gt;Yes Dan, it's in the script.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:19:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1189913#M64943</guid>
      <dc:creator>GregoireCatineau</dc:creator>
      <dc:date>2022-07-06T15:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: CalculateField_management on table name with accent don't work</title>
      <link>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1190029#M64947</link>
      <description>&lt;P&gt;strange.&amp;nbsp; Is it a joined field?&amp;nbsp; You said it works in the calculatefield tool interface, but you would have to show more of the script in case the paths to the workspace aren't being read properly (or something else)&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 19:01:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculatefield-management-on-table-name-with/m-p/1190029#M64947</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-07-06T19:01:59Z</dc:date>
    </item>
  </channel>
</rss>

