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
dkndkn 

Too many fields describes: 11

Hi

 

I have written a simple visual force page for mass updating a field value, but when I try to update more than 10 records I face this error Too many fields describes: 11 .... I have not used any custom controller or extensions...There might be a work around to  over come this limitation...Please I would really appreciate any help ...thank you 

John De SantiagoJohn De Santiago

It might help if you can post a sample of the code that is performing the mass update. Not sure why you would be getting describe limit errors on a mass update.

mtbclimbermtbclimber

If you aren't using any Apex in your page the first place I would look is in any triggers that may exist on the object/operation you are calling from the standard controller.

Pradeep_NavatarPradeep_Navatar

Generally this error comes when you are fetching the fields through schema.describesobject. There is a limitation of 10 fields through describesobject.

dkndkn

@Pradeep....So...is there a work around for this...