Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定一个包含数据项Customer和数据项SalesLine的报告。
我显示每个客户的所有销售线。如何过滤掉这些没有销售线的客户?我需要把过滤器放在哪里?
在OnAfterGetRecord每个Customer的触发器中,对他们的 SalesLines 进行计数,如果计数为零,则使用CurrReport.Skip()跳过该数据项(Customer)。
OnAfterGetRecord
CurrReport.Skip()
像这样的东西:
IF SalesLines.COUNT = 0 THEN BEGIN CurrReport.SKIP() END