The task: In this scenario, reports formatted for printing should be created for planograms on a regular basis.
No report should be forgotten; even after small changes all reports should be updated reliably.
Here it makes sense to combine the reports in a script. You can set the reporting script to process
- all currently opened planograms or
- all planograms in a specific directory
By triggering a single script, many reports are generated and updated simultaneously.
Example
// use current planogram: planogram = Planogram.currentPlanogram(); // create two reports: Report.findReport("Planogramm").execute(planogram); Report.findReport("Plazierungsliste").execute(planogram);