How to fetch all records from Account Module and also updating a field value in all record

Hi Folks,

I want to get All records from Accounts Module and want to do some manipulation on that data.

Once it is done then i will update the data to same record.

How to do this bulk operation read and update the all records.

Thanks in Advance

Regards

John

Parents Reply
  • Hi Hijab Fatima,

    What I have understood from your question is that you have a custom layout where you display all the campaign records. On top of that, you have added a search bar where upon search, you would like to list campaign data result.

    This can be done using ajax call (from JS file) and a custom backend script (API or entry point if you are using sugar 6.x). When user enters a query string in search bar, you can pass the request to backend PHP script (API or entry point) and use the sugar query (shown above) to retrieve the data and return it back to your JS file and show it on the UI.

    Please let me know if this helps.

    Regards.

Children