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
abhinav sarraf 1abhinav sarraf 1 

update the records with inactive user through apex class

i need to ignore inactive user error while updating record in apex class. and taking about user not owner.
Hemant_SoniHemant_Soni
Hi abhinav,

I think you need query like
select id,name from user where isActive=true 
for more help explain your requirement in detail.