Hi,

please try following in the report fetchMethod:

public boolean fetch()
{
    boolean          ret;
    Query           queryTmp;
    QueryRun        qr;
    ;

    queryTmp = this.query();
    qr       = new QueryRun(queryTmp);


    qr.setRecord(this.tmpBOM());      // here you get your temp Data from Class

    while (qr.next())
    {
        BOM = qr.get(tablenum(BOM));
        this.send(BOM);
    }

    return true;
}


Best Regards
Michael

  ----- Original Message ----- 
  From: juan_garcia_salas 
  To: Axapta-Knowledge-Village@yahoogroups.com 
  Sent: Friday, April 13, 2007 5:57 PM
  Subject: [Axapta-Knowledge-Village] Printing a Temporary Table from a form


  Hi, everyone 

  I'm current working in a report that goes first to a form and then 
  printing with the filters that the user enter, im already use and fill 
  a temporary table in the form and separately i'm develop an infrom that 
  makes the print, but now the direction want to print the report from 
  the form with the filters maked for the user perviously but if im use 
  the class from the inform that the dialog show the last value used.

  i'm using a class to fill the temporary table in the form is there any 
  way to used that table to make the report and do you know how to know 
  the filter maked for the user previously????

  thanks and regards 



   

[Non-text portions of this message have been removed]

Reply via email to