Estrazione Modello Dati dalle classi configurate in geoweb
Esporta la definizione delle classi in un file excel, usa un template jasper per renderizzarlo.
by MDS
1. Lanciare l'istruzione sql nello schema metadati;
-- query per estrazione modello dati classi -- select a.*, b.fk_theme, c.name as name_theme, c.description as theme_description, b.table_name, b.table_edit_name, b.type, b.key_column, b.NAME_COLUMN, b.class_name, b.label as label_class, b.description as description_classes from GWM_ATTRIBUTES a left join gwm_classes b on b.gwid=a.fk_class left join gwm_themes c on c.GWID=b.fk_theme where fk_group is not null order by c.description,a.FK_CLASS
2. Esportare il risultato della query in file esterno (excel);
3. Aprire la report in jasper:
4. Settare come datasource il file formato xls (non versione xlsx altrimenti non funziona) appena generato;
5. Al posto della query, dentro jasper, settare excel datasource
6. Eseguire la report con output xls.