在交互式报表上使用分组依据时添加控制中断 - Oracle Apex v21.1
Add a Control Break when using a Group By on an Interactive Report - Oracle Apex v21.1
我有一个交互式报告,我在文章名称上添加了一个分组依据功能,他所在的办公室和部门。
我尝试向已有分组依据的报表添加控制中断,但该选项不再出现
我尝试以相反的方式进行操作,先添加一个控制中断,然后添加一个分组依据,但它也不起作用。
有没有办法做到这一点,或者是否无法使用分组依据功能控制拆分列表?
提前致谢,
通过这样做,我成功地控制了我的报告被破坏:
- 在SQL
中包含 GROUP BY
SELECT
nom_article,
fk_categorie_article,
pk_fk_etage_bureau,
pk_fk_service,
fk_batiment,
prix_net_article,
nom_departement,
nom_categorie,
COUNT(nom_article) AS "QUANTITE"
FROM vue_articles
GROUP BY nom_article, --here add the group by directly in the Query
fk_categorie_article,
pk_fk_etage_bureau,
pk_fk_service,
fk_batiment,
prix_net_article,
nom_departement,
nom_categorie
ORDER BY nom_categorie, nom_article ASC;
- 然后将 Control Break 添加到报告中
我有一个交互式报告,我在文章名称上添加了一个分组依据功能,他所在的办公室和部门。
我尝试向已有分组依据的报表添加控制中断,但该选项不再出现
我尝试以相反的方式进行操作,先添加一个控制中断,然后添加一个分组依据,但它也不起作用。
有没有办法做到这一点,或者是否无法使用分组依据功能控制拆分列表?
提前致谢,
通过这样做,我成功地控制了我的报告被破坏:
- 在SQL 中包含 GROUP BY
SELECT nom_article, fk_categorie_article, pk_fk_etage_bureau, pk_fk_service, fk_batiment, prix_net_article, nom_departement, nom_categorie, COUNT(nom_article) AS "QUANTITE" FROM vue_articles GROUP BY nom_article, --here add the group by directly in the Query fk_categorie_article, pk_fk_etage_bureau, pk_fk_service, fk_batiment, prix_net_article, nom_departement, nom_categorie ORDER BY nom_categorie, nom_article ASC;
- 然后将 Control Break 添加到报告中