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
NehaaNehaa 

I have 100 records where I need to click on a custom button for all those 100 records. IS there any way I can do this automatically> just like using data loader or some other app?

Sonam_SFDCSonam_SFDC
Hi Neha, So what I understand is that you wish to process these 100 records at a click of a single button..right? If this is the case, I suggest you to use Wrapper Class: https://developer.salesforce.com/page/Wrapper_Class

You would have to show these records on a VF page and then have a custom button do the trick and process all 100 records at once.
NehaaNehaa
thank you Sonam.

If I do this manually, here are the steps I follow:

1. Go to the record
2. Click on the custom button(already existing)

I need to repeat this step for all 100 records.

I am curious to know if the above mentioned wrapper class solution will help me to do this. I don't want to waste my time in clicking the button for all 100 records manually.