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
SudhanwaSudhanwa 

Update records through S Control

Why are the records not getting updated when I do it through S Control? Do we need to issue update statement explicitly?

 

if(RHSrecords.size == 1)
{
alert('Update Action BEFORE  '   +recordsTHS[i].Id +'  '+recordsTHS[i].currentRHS__c+'  '+RHSforHSR[0].Id);
recordsTHS[i].currentRHS__c = RHSforHSR[0].Id;
alert('Update Action point reached  '   +recordsTHS[i].Id +'  '+recordsTHS[i].currentRHS__c+'  '+RHSforHSR[0].Id);
}

 

Does not reflect when I check in the page.