[Axapta-Knowledge-Village] Re: Hi Guys Is this a possible scenario to boost up performance

2005-02-24 Thread victor_zuev
Hi Compashi, Pls, try to search for the keyword 'skipDataMethods' in the Developers Guide. There's some explanation of the "performance-hurting things" of the recordSet operations. I hope this will help, Victor --- In Axapta-Knowledge-Village@yahoogroups.com, "compashi" <[EMAIL PROTECTED]> wr

Re: [Axapta-Knowledge-Village] Questions Finance Exam Axapta 3.0

2005-02-24 Thread Hemant Kumthekar
Hi,    I think it is not a good idea to publish questions on this forum or even circulate it privately, as it is compromising the seriousness of the exam and there by the value of your certification.   Earlier also there were so many requests and long discussion going on this group. I feel tha

RE: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Bayliss, Barry
  Hello Raul,   Why is it that you need to find the recID for before the insertion?     Barry.     From: Raul Llorente Peña/OPENSOLUTIONS [mailto:[EMAIL PROTECTED] Sent: Thursday, 24 February 2005 3:08 AM To: Axapta-Knowledge-Village@yahoogroups.com Subject: [Axapta-Kno

AW: [Axapta-Knowledge-Village] Questions Finance Exam Axapta 3.0

2005-02-24 Thread Andrae, Tobias
No. -UrsprÃngliche Nachricht- Von: Otto de Boer [mailto:[EMAIL PROTECTED] Gesendet: Do 24.02.2005 16:49 An: Axapta-Knowledge-Village@yahoogroups.com Cc: Betreff: [Axapta-Knowledge-Village] Questions Finance Exam Axapta 3.0

[Axapta-Knowledge-Village] Questions Finance Exam Axapta 3.0

2005-02-24 Thread Otto de Boer
  Dear fellows,   At this moment I am studying for the Axapta Financial Series Exam (VUE Exam # AX 30-203, Prometric Exam # MB6-203). This exam will take place March, 4TH   Is there anyone who has (example/test) questions for this exam ?   Please reply asap.   Yours sincerely,

RE: [Axapta-Knowledge-Village] Hi Guys Is this a possible scenario to boost up performance

2005-02-24 Thread Malcolm Burtt
Hi   I think you just need to drop the "while" from your select statement and that will do the job for you. The insert_recordSet will still handle all the rows returned by the select.   Regards   Malcolm Burtt Global IT Group"Business Solutions designed for YOUR business processes"Globa

[Axapta-Knowledge-Village] Re: Hi Guys Is this a possible scenario to boost up performance

2005-02-24 Thread compashi
Hi Victor, I don't understand why do you mean by saying that skipDataMethods() please elaborate the same and also mine point is again that if we can use Insert_Recordset() in conjuction with while select it will be more productive in a various situations. looking for your further s

Re: Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Raul Llorente Peña/OPENSOLUTIONS
Of course, I DO really appreciate your attempts to help!! The fact, is I need to know EXACTLY what recId will be the next to be used. PS: the approach of inserting a "dummy" record in a "table" so its recid+1 will be the next one won't work (RECID's aren't neccessary linear and single directio

[Axapta-Knowledge-Village] Re: Hi Guys Is this a possible scenario to boost up performance

2005-02-24 Thread victor_zuev
I think, insert_Recordset works with non-temporary tables. If your non-temporary table has a overridden insert method, use skipDataMethods() otherwise it is a record-by-record operation like 'while select' I hope this will help, Victor --- In Axapta-Knowledge-Village@yahoogroups.com, "com

Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Danny Gaethofs
Raul, What is it you want us to tell? I am just telling you that looking at the other value would bring you closer to finding the recid. But that there is still the problem Axapta pulls out a number of record id's at a time. So next thing you should focus on is where are these stored and h

Re: Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Raul Llorente Peña/OPENSOLUTIONS
Well, do as you say... despite wichever method you use to read the SystemSequences Table, it will nearly always say you the record you will use!!! This is what I wanted to say. Debuggin, the only reference to global values are GlobalCache, but apparently there's no object like the table I will

[Axapta-Knowledge-Village] Hi Guys Is this a possible scenario to boost up performance

2005-02-24 Thread compashi
hello everybody, is the above code is possible in Axapta. If not then why and if yes then if there is any error then correct it. As you know guys that insert_Recordset is a performance booster then i thought if it could be used with while select then it will be a great one but i am not sure

Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Danny Gaethofs
Raul, Why do you select the firstonly record. This will give you the record for SysEvent (id 3). Now try this: select firstonly SS where SS.name == "seqno" you would get closer to the matching values. They do not match but this must have something to do with the fact that the kernel is pul

Re: Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread Raul Llorente Peña/OPENSOLUTIONS
Sorry David, but your appointment is invalid. When a user log into Axapta, the Kernel takes 25 recids into cache, and adds 25 to next value. Try yourself as below (create a table called T with a single string field called A): static void Job4(Args _args){    SystemSequences SS;    T   

YNT: [Axapta-Knowledge-Village] RE: Axapta runs slowly when windows xp performance and appearance setup change!!!

2005-02-24 Thread Cenk Ince
Can you tell me what is the price of hardware and software for that server? Kimden: Mohammed Sadiq [mailto:[EMAIL PROTECTED] Gönderilmiş: Per 24.02.2005 11:52 Kime: Axapta-Knowledge-Village@yahoogroups.com Konu: [Axapta-Knowledge-Village] RE: Axapta runs slowly

[Axapta-Knowledge-Village] RE: Axapta runs slowly when windows xp performance and appearance setup change!!!

2005-02-24 Thread Mohammed Sadiq
We had the same problem so we installed Citrix metaframe presentation server and the clients are connecting through citrix and that solved the problem.   Regards     From: Cenk Ince [mailto:[EMAIL PROTECTED] Sent: 15 محرم, 1426 12:23 م To: Axapta-Knowledge-Village@yahoogro

Re: [Axapta-Knowledge-Village] How can I find what RecId will be the next to be used?

2005-02-24 Thread David Casas
Hi Raul,   To see the next RECID to be used with the following sentence in the SQLAnalyzer:   select * from systemsequences where id = -2The field NextVal is the value for the next transaction ID Regards!!   David - Original Message - From: Raul Llorente Peña/OPENSOLUTI

[Axapta-Knowledge-Village] Axapta runs slowly when windows xp performance and appearance setup change!!!

2005-02-24 Thread Cenk Ince
Hi all, My clients connects with Aos and run pba with a lot of variables. And as normal PBA doesn't work very fast. But when i change some performance setup on windows it gets to much more slow than normal. Is there anybody who had the same problem and is there a best setup for mycomputer\prope