![]() |
#2 |
Участник
|
TOTALSCAUSEDBY - помогает определить, для какого поля из числа тех, по которым группируют данные возникло событие ..
Example If you are designing a report where you group records according to the contents of several fields, and you do not want to output the group header section when the Item field changes, use C/AL code like this in the OnPreSection trigger of the section: IF CurrReport.TOTALSCAUSEDBY = FIELDNO(Item) THEN CurrReport.SHOWOUTPUT(FALSE); |
|