filter axapta report based on display method
I want to filter axapta report to display only records with QTY !=0 . The field QTY is ba开发者_运维知识库sed on display method . I could acheive this by overriding send method. The problem now is that if the last record in the section has QTY=0, then the subtotal is not displayed.
You can calculate and display subtotals in the same way you've been recommended to deal with grand totals 4 hours ago - just calculate and display them in a programmableSection
manually.
Remember to return false
if you do not call super()
in the send()
method.
精彩评论