Options

Hiding the "processing window" using a dialog window not working

Fr0miFr0mi Member Posts: 14
edited 2016-11-03 in NAV Three Tier
Hello,

I am currently working on a report, which sadly takes quite a long time to process.
As a result the user gets prompted with a loading screen the "processing window" (As I call it..) .

As it is good practice to let the user know what is happening and as it should get rid of the "processing window", I decided to add a dialog window.
However even though the dialog window opens, displays, gets updated properly, the "processing window" will pop up after about 10 seconds of loading.

As for my Report:
  1. I am going through every Item in the DB.
  2. For every Item I am going through its Sales Lines & Value Entries.
  3. I am calculating everything I need & save it into a buffer table.

Skeleton:
Level 1 DataItem Item
Level 2 DataItem Sales Line
Level 2 DataItem Value Entry
Level 1 Buffer Table
// OnPreReport
Dialog.OPEN(...);
// OnPostReport
Dialog.CLOSE;

// DataItem Item OnAfterGetRecord
Dialog.UPDATE(...);
// DataItem Item OnPostDataItem
Dialog.UPDATE(...);
...

The "processing window" will open while it is still going through all items.

Can someone help with this problem?

EDIT:

Attached is a picture of the loading Screen or processing window.. (Its in german)



Thanks alot in advance!

Answers

  • Options
    Fr0miFr0mi Member Posts: 14
    As an answer to myself and anyone who might be interested.

    The "processing window" or "loading screen" is opened, because the server is waiting for the DataSet or more specific its lines.
    As far as I know, there is no solution to this.

    Best regards.
  • Options
    mdPartnerNLmdPartnerNL Member Posts: 802
    not sure if I get it, but you should see the itemno change in the dialog..
  • Options
    SilverXSilverX Member Posts: 134
    I am probably a bit late, but I have more or less accidently found the Report Property "ShowPrintStatus". Is that something that will help you?
    Cheers
    Carsten


    ==> How To Ask Questions The Smart Way

    This post is my own opinion and does not necessarily reflect the opinion or view of my employer.
  • Options
    Fr0miFr0mi Member Posts: 14
    Thanks for the tip @SilverX ! I just tried it, but it does not work. The help description seems fitting though.

    @mdPartnerNL I do see the itemNo Change in a customly created dialog window, which i have to open & update in my code. However I also get a "Status Screen" which can cancel the Report.

    I am trying to stop that Screen from showing and to use only a customly created dialog window.
Sign In or Register to comment.