Process only report Group Header/Footer Trigger

jagtap.ganeshjagtap.ganesh Member Posts: 11
edited 2010-04-13 in NAV Three Tier
Hi,

I have created one report which is process only report.
This report is running from RTC and there is a code written on the 'group footer' section for processing of data grouped by a field.

If I run this report from Classic client, it executes correctly
whereas in RTC it wont. The control is not at all going to section triggers.

Any information on this???

(I have used Report for the ease of grouping on 3 different fields)

- Ganesh
Ganesh Jagtap | Senior Technical Consultant
PO Box 36500 | Dubai | UAE
Mobile:+97150 150 5389

Comments

  • manisharma31manisharma31 Member Posts: 285
    Hey Man,
    Codes written on section does not work in RTC reports.
    better u find another way,like function or OnAfterGet Records.

    Or you can find some standard process reports which runs in RTC & Classic both, for reference purpose.
    Regards,
    Manish
  • jagtap.ganeshjagtap.ganesh Member Posts: 11
    But the report is processing only report and RDLC will not be available for these reports.
    i.e. as soon as i make report as process only, RDLC gets disabled.
    And if its executing in classic client mode then, why not in from RTC as its again the classic client execution? :-k


    ???
    Ganesh Jagtap | Senior Technical Consultant
    PO Box 36500 | Dubai | UAE
    Mobile:+97150 150 5389
  • DenSterDenSter Member Posts: 8,304
    Just think about it. You have code written in section triggers. You have a processing only report. Do sections show for a processing only report?
  • jagtap.ganeshjagtap.ganesh Member Posts: 11
    Yes you are correct, but still it executes the same from classic client and not from RTC.

    Its better stop thinking why in Classic client and not in RTC. :idea:
    Ganesh Jagtap | Senior Technical Consultant
    PO Box 36500 | Dubai | UAE
    Mobile:+97150 150 5389
  • vijay_gvijay_g Member Posts: 884
    Yes you are correct, but still it executes the same from classic client and not from RTC.

    :idea:
    when you set PROCESSONLY property to yes in this case you are not able to see preview while code executes written in sections.
    let us see why it's not executing in RTC wait for reply.
  • manisharma31manisharma31 Member Posts: 285
    hi,
    Let the Section Code be there in the report for classic.
    Add an Function.
    Write the code on DataItem Trigger with the ISSERVICETIER & Function to execute for RTC.
    E.g.
    IF ISSERVICETIER THEN BEGIN
    UPDATEFUNCTION;
    END;

    To my knowledge this should work,if any one has other solution you can try them also.
    Regards,
    Manish
  • DenSterDenSter Member Posts: 8,304
    Yes you are correct, but still it executes the same from classic client and not from RTC.

    Its better stop thinking why in Classic client and not in RTC. :idea:
    Suit yourself, don't listen :thumbsup:
Sign In or Register to comment.