Community Advisor
June 25, 2025
Hi @ashwin_raju ,
You can trigger the ACS AEM Commons Report Builder using the Event Service in AEM. You can achieve this by creating a custom event handler that listens for specific events and then initiates the report building process within the ACS Report Builder.
Implementation Steps:
- Define the Triggering Event: Identify the event that will trigger the report generation. This could be a page activation, asset upload, or any other relevant event.
- Create the Custom Event Handler:
- Register an event listener to listen for the chosen event using the EventAdmin service.
- In the handleEvent method of your event handler, check if the event matches your criteria.
- If it matches, retrieve the report configuration (e.g., report name, parameters).
- Use the Report Builder API to execute the report.
- Optionally, you can download the generated report or trigger further actions.
Hope it helps!
-Tarun

