How to create Excel Export templates automatically on StartUp?

0
Hi,   We have an Excel template generated through the configuration pages offered by the ExcelExporter module. The problem is that every time we deploy the application in a new environment we have to reconfigure the templates. Is there a way for some JAVA or microflow action to generate these templates automatically when starting the application?   Thanks
asked
1 answers
0
  1. Make a microflow in which you do a find or create for objects of the template entity of the module you're using (so, check if the templates exist, if so, do nothing, if not, create the templates)
  2. Add the microflow to your after startup microflow

Then, every time you start your application, templates will be created if they don't exist yet.

answered