Suppose you have a report with the table LedgerTrans and a total on
the field AmountMST. You can set this field in Italic on the total
line using the following:
1) Define a boolean footerDone in classDeclaration.
2) Override reportRun.send() and add the following lines just before
the call of super():
ReportRealControl reportRealControl;
if (!footerDone)
{
footerDone = true;
reportRealControl = this.design().sectionGroup(tableNum
(LedgerTrans)).section(ReportBlockType::Footer).control(fieldNum
(LedgerTrans,AmountMST));
reportRealControl.italic(true);
}
Hope this can help you.
Best regards,
Bj�rn M�ller Pedersen
Thy Data Center Development A/S
--- In [EMAIL PROTECTED], "Ibrahim Kilicarslan"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> How can i modify the AutoReport grandtotal fields.
>
> Thanks in advance...
>
> Ibrahim
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

