Hi people!: 

I have a doubt in a report.... 
I have an Axapta 3 SP5. 
The report is BankReconciliation. 
Before the report didn't run... 
Changing this method: 

Original code 
Code: 

public boolean fetch() 
{ 
    ; 

    queryRun = new QueryRun(this); 

    element.setRange(); 

    if (!queryRun.prompt()) 
    { 
        return false; 
    } 
 


by this code: 
Code: 

public boolean fetch() 
{ 
    query       q = new query(element.query()); 
    ; 


    element.setRange(); 


    queryRun = new QueryRun(q); 
 


I made that report runs but.... 
The report when I select from the form another transaction, 
it prints the whole transactions!. 

I put the debugger and the method setRange is "seeing" the  
right BankAccountStatement record selected. 

Any ideas?.


Reply via email to