<?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 Why am I receiving an &amp;quot;Unable to perform applyEdits error? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662861#M61837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an application where I am using the editing functionality. It works as long as I enter information for all fields, but if any field are missing information, I receive Unable to perform applyEdits error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My live application is at:&lt;A href="http://maps.decaturil.gov/streetsigns"&gt;http://maps.decaturil.gov/streetsigns&lt;/A&gt;​&lt;A href="http://geonet.esri.com/"&gt;http://geonet.esri.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;My github project is at: &lt;A href="https://github.com/csergent45/streetSigns/tree/176dbb8a76f3773964ab25987f8e4f8cabcc9308"&gt;https://github.com/csergent45/streetSigns/tree/176dbb8a76f3773964ab25987f8e4f8cabcc9308&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and here is the error that I am receiving:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="88174" alt="streetSignsError.png" class="image-1 jive-image" height="340" src="https://community.esri.com/legacyfs/online/88174_streetSignsError.png" style="height: 340px; width: 801.824104234528px;" width="802" /&gt;&lt;/P&gt;&lt;P&gt;If I enter data in for all fields, the application runs without a hitch. The JavaScript file is in the app folder named main.js.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Apr 2015 20:34:11 GMT</pubDate>
    <dc:creator>ChrisSergent</dc:creator>
    <dc:date>2015-04-22T20:34:11Z</dc:date>
    <item>
      <title>Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662861#M61837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an application where I am using the editing functionality. It works as long as I enter information for all fields, but if any field are missing information, I receive Unable to perform applyEdits error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My live application is at:&lt;A href="http://maps.decaturil.gov/streetsigns"&gt;http://maps.decaturil.gov/streetsigns&lt;/A&gt;​&lt;A href="http://geonet.esri.com/"&gt;http://geonet.esri.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;My github project is at: &lt;A href="https://github.com/csergent45/streetSigns/tree/176dbb8a76f3773964ab25987f8e4f8cabcc9308"&gt;https://github.com/csergent45/streetSigns/tree/176dbb8a76f3773964ab25987f8e4f8cabcc9308&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and here is the error that I am receiving:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="88174" alt="streetSignsError.png" class="image-1 jive-image" height="340" src="https://community.esri.com/legacyfs/online/88174_streetSignsError.png" style="height: 340px; width: 801.824104234528px;" width="802" /&gt;&lt;/P&gt;&lt;P&gt;If I enter data in for all fields, the application runs without a hitch. The JavaScript file is in the app folder named main.js.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 20:34:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662861#M61837</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-22T20:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662862#M61838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess is that your integer fields &amp;amp; date field do not like to be empty (supportID, addrCode and dateInv).&amp;nbsp; I'd start there.&amp;nbsp; If they need to be required, I'd scrub the form data and force a default value that means nothing (-9999 / '1900-01-01').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This works... (Form payload)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[{"geometry":{"x":796086.8072222222,"y":1176275.4861111112,"spatialReference":{"wkid":3435}},"attributes":{"address":"test","supportId":"1","type":"Single Post","size":"12in. tube","material":"","base":"","rating":"","dateInv":"2015-04-22","inspector":"K. Morgan","comments":"","addrCode":"1"}}]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While this fails... (Form payload)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[{"geometry":{"x":796086.8072222222,"y":1176275.4861111112,"spatialReference":{"wkid":3435}},"attributes":{"address":"test","supportId":&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG style="color: #e23d39; text-decoration: underline;"&gt;""&lt;/STRONG&gt;&lt;/SPAN&gt;,"type":"Single Post","size":"12in. tube","material":"","base":"","rating":"","dateInv":&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="color: #e23d39; text-decoration: underline;"&gt;""&lt;/SPAN&gt;&lt;/SPAN&gt;,"inspector":"K. Morgan","comments":"","addrCode":&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="color: #e23d39; text-decoration: underline;"&gt;""&lt;/SPAN&gt;&lt;/SPAN&gt;}}]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&lt;STRONG&gt;Pretty please...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Also, you will want to delete all of the records near that geometry ("geometry":{"x":796086.8072222222,"y":1176275.4861111112,"spatialReference":{"wkid":3435}}) with "inspector" 'K. Morgan'.&amp;nbsp; Tried to pick an area where there wasn't any edits for clean-up purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="88170" alt="Delete Me.png" class="image-1 jive-image" src="/legacyfs/online/88170_Delete Me.png" style="width: 620px; height: 462px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:09:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662862#M61838</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-22T21:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662863#M61839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It sounds like your fields don't allow null values but I would check your server logs to see if there are more informative errors. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:11:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662863#M61839</guid>
      <dc:creator>DanielStauning</dc:creator>
      <dc:date>2015-04-22T21:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662864#M61840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would also set the form field types to the correct behaviour of the back-end...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IE: Change text fields to number fields for supportID and addrCode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:15:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662864#M61840</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-22T21:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662865#M61841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It does look like it trying to place text into my date and number fields. Now I just need to figure out how to strip out the "" for those fields and then it may work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:29:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662865#M61841</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-22T21:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662866#M61842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't looked at your code yet but in the past, I stop the default form events, scrub the form data as I populate a JSON object and post to the server using dojo XHR. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:33:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662866#M61842</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-22T21:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662867#M61843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure how to do that. I'll work with the form the best I can.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:36:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662867#M61843</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-22T21:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662868#M61844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll look through your code later tonight on github and see what I can do to help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:39:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662868#M61844</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-22T21:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662869#M61845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran afoul this same issue with my forms, and the issue was with having a manual date field and a space in the value field (or a null value). I changed the date to an auto variable and also set all of my fields to allow Null values. I also noticed that I had a comments field that, during testing, was set to only have 10 characters so inputting a string like "This is where I saw the leprechaun" would throw the same error.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 12:23:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662869#M61845</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2015-04-23T12:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662870#M61846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had this issue in .NET and was able to fix it by removing the '' or replacing them in my insert statements, but I am not sure how to do that in JavaScript.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 13:08:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662870#M61846</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-23T13:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662871#M61847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just updated the field types. That didn't help. I was hoping it would have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 13:24:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662871#M61847</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-23T13:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662872#M61848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would try editing all the values in your input,&lt;/P&gt;&lt;P&gt;(&amp;lt;input id="location" name="location" value="Under your nose" type="text"&amp;gt;)&lt;/P&gt;&lt;P&gt;to ones that fit your schema just to ensure it is not the issue. I did notice that your "Name" field had the type set to "email" not sure if that could be a validation issue, but it could be worth double checking.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 13:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662872#M61848</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2015-04-23T13:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662873#M61849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's actually the feedback form from the project that I have been converting. I haven't been using that form.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 13:45:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662873#M61849</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-23T13:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662874#M61850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would look into using native Dojo form elements to properly validate against.&amp;nbsp; It will allow for rule enforcement like number and date values in the proper fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 16:06:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662874#M61850</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-23T16:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662875#M61851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Your GITHUB should now have a pull request addressing the form validation for the 3 problem children.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Also, note the changes reflect being ran against JSHint and addressing the errors that appeared.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 16:08:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662875#M61851</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-23T16:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662876#M61852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I modified your code and I no longer have to enter any data. Check it out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if ((attributes.supportId === undefined) || (attributes.supportId === "")) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attributes.supportId = null;
&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; if ((attributes.dateInv === undefined) || (attributes.dateInv === "")) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attributes.dateInv = null;
&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; if ((attributes.addrCode === undefined) || (attributes.addrCode === "")) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attributes.addrCode = null;
&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;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:01:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662876#M61852</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2021-12-12T04:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662877#M61853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as your back-end database supports it and the data structure doesn't panic on joins, should be fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 19:30:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662877#M61853</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-23T19:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662878#M61854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good point. We will have to address that with real data. &lt;/P&gt;&lt;P&gt;Do you know how to do a git pull? I need to merge my data to my local project.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 20:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662878#M61854</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-23T20:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662879#M61855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you talking about a local change or my pull request?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usual workflow...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git pull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For working on a branch... &amp;lt;Recalling from memory so I may be off... Anyone, please correct me where wrong.&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git checkout -b &amp;lt;branch name&amp;gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git branch&lt;/P&gt;&lt;P&gt;&amp;nbsp; master&lt;/P&gt;&lt;P&gt;* &lt;SPAN style="color: #7ed529;"&gt;&amp;lt;branch name&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d;"&gt;[ do some work ]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git commit -a -m "Comments"&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&lt;EM&gt;[ when ready to commit to master... ]&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git checkout master&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git fetch upstream // In case there is work outside of your commits.&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git merge upstream&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git merge &amp;lt;branch name&amp;gt;&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git push&lt;/P&gt;&lt;P&gt;/repository &amp;lt;user&amp;gt;$ git branch -d &amp;lt;branch name&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 20:41:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662879#M61855</guid>
      <dc:creator>KyleMorgan</dc:creator>
      <dc:date>2015-04-23T20:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why am I receiving an "Unable to perform applyEdits error?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662880#M61856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it to work. Guessed at it, but I will bookmark this, just in case I run into the issue again. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 20:46:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-am-i-receiving-an-quot-unable-to-perform/m-p/662880#M61856</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-23T20:46:13Z</dc:date>
    </item>
  </channel>
</rss>

