function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Shannan Robillard 2Shannan Robillard 2 

Error updating field through Lightning Component

Starting on Tuesday, started to get an error when updating a custom field on a custom object. The error just states that the system had an issue updating the field and to contact the Sys Admin. As the sysadmin, I am getting the error when trying to update the custom field but I am not getting any information as to why the error is occurring. Here is a copy of the code to update the field, hoping someone can help. 

 <aura:attribute name="buyerDetails" type="Object[]"/>
    <aura:attribute name="buyerDetailAccounts" type="String[]"/>
    <aura:attribute name="recordId" type="String"/>
    <aura:attribute name="sessionId" type="String"/>
    <aura:attribute name="serverUrl" type="String"/>
    <aura:attribute name="pdfTemplateId" type="String"/>
    <aura:attribute name="excelTemplateId" type="String"/>
    <aura:attribute name="queryId" type="String"/>
    
          
    
   
        <div class="slds-size_3-of-12 slds-m-horizontal_none slds-align_absolute-center slds-border_left slds-border_right">
            <div class="slds-size_7-of-8 slds-align_absolute-center">
                <div class="" title="Description">Description</div>
            </div>
           
Naveen KNNaveen KN
Hi Shannan, I can see only component code. add your client side and server side code where you are updating particular field. 

I recommend using console.log at client side js file and system.debug at apex code to see the output of variables and find the exact line where you are getting an error. 

Naveen