SV: [development-axapta] Query on temporary table

2008-02-12 Thread Dahlsgaard Jan
: [development-axapta] Query on temporary table Hi, Use the method setRecord on the QueryRun to pass the temporary table to the Query. Br. Carsten F. Frandsen a-solutions From: development-axapta@yahoogroups.com mailto:development-axapta%40yahoogroups.com

Re: [development-axapta] Query on temporary table

2008-02-11 Thread tarun jalhotra
Try THIS qr.setrecord(tmpLedgerTable); Hope this helps, Regards, Dahlsgaard Jan [EMAIL PROTECTED] wrote: Hi For some time I have used TmpLedgerTable to hold some records, and scrolled thru these using a simple while-select:

RE: [development-axapta] Query on temporary table

2008-02-11 Thread Carsten F. Frandsen
@yahoogroups.com Subject: [development-axapta] Query on temporary table Hi For some time I have used TmpLedgerTable to hold some records, and scrolled thru these using a simple while-select: tmpLedgerTable.setTmpData(this.tmpdata()); while select tmpLedgerTable { do something } Now, for different reasons

[development-axapta] Query on temporary table

2008-02-10 Thread Dahlsgaard Jan
Hi For some time I have used TmpLedgerTable to hold some records, and scrolled thru these using a simple while-select: tmpLedgerTable.setTmpData(this.tmpdata()); while select tmpLedgerTable { do something } Now, for different reasons, I have to change this to a query