Re: [Axapta-Knowledge-Village] Ask Axapta exam question

2004-11-30 Thread panda arabinda
Ans. b --- ptmhki <[EMAIL PROTECTED]> wrote: > > > when is it appropriate to define table relation > directly on table > instead of using EDT > a. when 1 field in a table relates to 1 field in a > another table > b. when multiple fields in a table define 1 relation > to multiple > fields in

[Axapta-Knowledge-Village] Ask Axapta exam question

2004-11-30 Thread ptmhki
when is it appropriate to define table relation directly on table instead of using EDT a. when 1 field in a table relates to 1 field in a another table b. when multiple fields in a table define 1 relation to multiple fields in another table c. when 1 field relates to multiple fields in another

[Axapta-Knowledge-Village] Tax Value Round

2004-11-30 Thread roberto pineda
Hello. I have a question and hope someone can help me. I need to register a tax code with value 0.00125, but the system rounds it to 0.001. How can i avoid this? It is possible to setup the round-off for tax values. thanks in advance. Roberto _

RE: [Axapta-Knowledge-Village]

2004-11-30 Thread =?iso-8859-1?Q?Steen_Rab=F8l?=
Hi   Create a class which set the correct date, then run the report. Best Steen Rabøl   From: Rocco Giumelli [mailto:[EMAIL PROTECTED] Sent: 30. november 2004 04:02 To: [EMAIL PROTECTED] Com; [EMAIL PROTECTED] Com Subject: [Axapta-Knowledge-Village]      

[Axapta-Knowledge-Village] Help for AXAPTA QA/Tesing Strategy

2004-11-30 Thread axapta_guru
Hi Can you tell me what is the White Box Testing Strategy is being used for AXAPTA based ERP projects in your company. Please give me details for following things: • Best Practice Check • Commenting Standards (for Methods, Class etc..) • Coding Conventions. • Code Cover

[Axapta-Knowledge-Village] Parent child report.

2004-11-30 Thread mbsdeveloper
I create one more field in CustTable which is "Parentcustomer" and and this related to CustTable.AccountNum. my requirment is to create a report to show the parent customers and their childern as per the following Customer No: 001Name :Ahmed Code Name Child1AAA Ch

RE: [Axapta-Knowledge-Village] Temp Table in Report

2004-11-30 Thread Ahmed Ibrahim
Thanks for all. that's working   AhmedYoni Breyne <[EMAIL PROTECTED]> wrote: Hi Steven,   Using your example I would be doing it like this:   ClassDeclaration() public class ReportRun extends ObjectRun{    tmp_SalesTotal     tmp_SalesTotal;     ReportSalesTotal  caller; // calling c

[Axapta-Knowledge-Village] Select statement sent to SQL - ORACLE

2004-11-30 Thread Irving
Hi I have a performance problem in the inventtable form. When I run Axapta in 2-tier, the form is loaded quickly but not when I run Axapta in 3-tier thin. I can see that there is a difference in the select statement sent to the SQL. In 2-tier the select includes an 'First rows' parameter, b

RE: [Axapta-Knowledge-Village] Re: Temp Table in Report

2004-11-30 Thread Yoni Breyne
Here an example that I’ve used in a job.   static void Job49(Args _args) {     AsciiIo fileOut = new AsciiIo("c:\\pallets.txt","w");     inventTrans inventTrans;     inventDim   inventDim;     ;       fileOut.outFieldDelimiter(";");     fileOut.outRecordDelimiter("\r\n");

Re: [Axapta-Knowledge-Village] Re: Temp Table in Report

2004-11-30 Thread Arijit Basu
Does anyone know how to export records into a csv file using axapta? On Sun, 28 Nov 2004 12:44:01 -, y_breyne <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > You should assign the content of your temporaryTable variable to the > table variable declared as member of the report Query. > >

RE: [Axapta-Knowledge-Village] Temp Table in Report

2004-11-30 Thread Yoni Breyne
Hi Steven,   Using your example I would be doing it like this:   ClassDeclaration() public class ReportRun extends ObjectRun {     tmp_SalesTotal     tmp_SalesTotal;     ReportSalesTotal  caller; // calling class }   public boolean fetch() { Boolean   ret = false;

RE: [Axapta-Knowledge-Village] Temp Table in Report

2004-11-30 Thread Andries Patrick
Title: Message After the setTmpDate use this line   qr.setRecord(tmpTableFill);   --->  (qr is Queryrun)   Patrick -Original Message-From: Ahmed Ibrahim [mailto:[EMAIL PROTECTED] Sent: dinsdag 30 november 2004 8:55To: [EMAIL PROTECTED]Subject: RE: [Axapta-Knowledge-Vi

RE: [Axapta-Knowledge-Village] Temp Table in Report

2004-11-30 Thread Steven Egberghs
This is what I used in Ax3.0SP2   regards Steven   ClassDeclaration() public class ReportRun extends ObjectRun{    tmp_SalesTotal    tmp_SalesTotal;     ReportSalesTotal  caller; // calling class}     public boolean fetch(){    Query   queryTmp;    QueryRun    qr;       tmp_SalesTotal