Re: [Axapta-Knowledge-Village] Need help on Axap3.0 Exam Preparation

2005-01-14 Thread Ahmed Maghraby
Hi Padmaja,   This is Axapta 3.0 programming exam preparation guide as in partnersource.   Regards,   Ahmed Maghraby   Microsoft Business Solutions Certified Professional–Axapta 3.0 Programming Exam (VUE Exam # AX 30-202, Prometric Exam # MB6-202) Preparation Guide Last Modified 12/15/2004 12

RE: [Axapta-Knowledge-Village] TaxTrans.sourceBaseAmountCur

2005-01-14 Thread whiteairmain
It appears, what you are expaining is the orginal soruce avlue and the edited value after some sort of functionality is used, or applied. Cant not say for sure with the limited info you proivided. Thanks And good luck Tracy White IT BI Consultant WhiteairMain -Original Message-prov

RE: [Axapta-Knowledge-Village] Need help on Axap3.0 Exam Preparation

2005-01-14 Thread whiteairmain
I would also like the feed back as well.   Thanks   Tracy White IT BI Consultant WhiteairMain   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Padmaja IyingarSent: Friday, January 14, 2005 10:04 PMTo: development-axapta@yahoogroups.comCc

[Axapta-Knowledge-Village] Need help on Axap3.0 Exam Preparation

2005-01-14 Thread Padmaja Iyingar
Hi,   MY company is pressurizing me to take the certification exam in AX3.0 programming ( new year gift!) from the company. I have only 3 months of exp with Axapta, but working hard to learn things. I have searched the forum very much to get an over view of the Axam preparation on odentifying t

Re: [Axapta-Knowledge-Village] CacheAddMethod() in VER 2.5 sp4

2005-01-14 Thread Jayson Joseph Thattil
Hi Girish, Thanks for the reply . These display methods are based on some business logic which is not stored any where. like a sales tax total for all saleslines showing in the salesTable header. TJJ --- Girish B <[EMAIL PROTECTED]> wrote: >why dont you add the table in the datasourc

Re: [Axapta-Knowledge-Village] CacheAddMethod() in VER 2.5 sp4

2005-01-14 Thread Jayson Joseph Thattil
Hi Girish, Thanks for the reply . These display methods are based on some business logic which is not stored any where. like a sales tax total for all saleslines showing in the salesTable header. TJJ --- Girish B <[EMAIL PROTECTED]> wrote: >why dont you add the table in the datasourc

Re: [Axapta-Knowledge-Village] CacheAddMethod() in VER 2.5 sp4

2005-01-14 Thread Girish B
why dont you add the table in the datasource and directly display??? where ever possible we should always avoid using display methods on the forms.. --- tj_jayson <[EMAIL PROTECTED]> wrote: - Hi All, How can I cache a method in Axapta ver 2.5 sp 4 I

[Axapta-Knowledge-Village] TaxTrans.sourceBaseAmountCur

2005-01-14 Thread Steeve Gilbert
What is the difference between sourceBaseAmountCur and taxBaseAmountCur from TaxTrans? Sometimes the value are not the same between those 2 fields and I don't know why. sourceBaseAmountCur seems to be containing the wrong value. Ideas? Steeve... Yahoo! Groups

[Axapta-Knowledge-Village] CacheAddMethod() in VER 2.5 sp4

2005-01-14 Thread tj_jayson
Hi All, How can I cache a method in Axapta ver 2.5 sp 4 I have lot of display methods in the overview which causes lot of client / server calls which in turn slows down opening the form as well as navigate through the form . Any help on this will be highly appreciated Thanks TJJ

RE : [Axapta-Knowledge-Village] Method used to fill in SalesTable

2005-01-14 Thread Steeve Gilbert
Take a look at Tables\SalesTable\initFromCustTable() Steeve... -Message d'origine- De : buckee_d [mailto:[EMAIL PROTECTED] Envoyé : 14 janvier 2005 11:50 À : Axapta-Knowledge-Village@yahoogroups.com Objet : [Axapta-Knowledge-Village] Method used to fill in SalesTable Hi Everyone

[Axapta-Knowledge-Village] Method used to fill in SalesTable

2005-01-14 Thread buckee_d
Hi Everyone I am very new to X++ so excuse my ignorance. When a sales order is created and the system populates the SalesTable what method is used to extract the data from CustTable e.g customer address. I need to be able to the change default delivery name/address. Is it generally a similar

RE: [Axapta-Knowledge-Village] Re: How many tables r updated

2005-01-14 Thread Lennart Conrad
Hi Nishant   If you want to see which tables are updated you can enable SQL tracing under: Tools/Options/Sql.   Lennart Conrad Microsoft Business Solutions This posting is provided "AS IS" with no warranties, and confers no rights.   From: Danny Gaethofs [mailto:[EMA

[Axapta-Knowledge-Village] Caching

2005-01-14 Thread Danny Gaethofs
Dear all, When doing modifications users have to log out and log in again to see the modification in a 3-tier environment. Sometimes they have to do this a few times before actually the modificiation is visible. Because of this I have a few questions: - Is it possible to realize modificatio

Re: Re: [Axapta-Knowledge-Village] How to use the sequence no.

2005-01-14 Thread Raul Llorente Peña/OPENSOLUTIONS
The easiest way to get numbersequences is the class NumberSequenceFast (or similarlly named).  Raúl Llorente Peña Análisis, Desarrollo e Implementación en Microsoft Bussiness Solutions-AxaptaOPEN SOLUTIONS Sharing the knowledge on Axapta. Yahoo! Groups Links To visit your group on t

Re: [Axapta-Knowledge-Village] How to use the sequence no.

2005-01-14 Thread joelwu
  Hi Raúl Llorente Peña :   Not Exactly, I means is for example in Sales Order, when I create a new sales order a new sales order id will ceated, i won't like to know what class, method to call to get the next sequence no.   Regards, Joel -Original Message-From: Raul Llorente Peña/

Re: [Axapta-Knowledge-Village] How to use the sequence no.

2005-01-14 Thread Raul Llorente Peña/OPENSOLUTIONS
Do you mean to create the proper RECID of a table to insert an Axapta record from outer application, or to create a record via COM connector in Axapta using a number from some numsequence??Raúl Llorente Peña Análisis, Desarrollo e Implementación en Microsoft Bussiness Solutions-AxaptaOPEN SOLU

[Axapta-Knowledge-Village] How to use the sequence no.

2005-01-14 Thread joelwu
Dear all   I am using the COM Connector, and what function should I called to call the sequence no, so that I can add to the record i am going to create?   Regards, Joel Sharing the knowledge on Axapta. Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo

Re: [Axapta-Knowledge-Village] Certain forms run very slow.

2005-01-14 Thread Girish B
Are there many display methods on this form? If there are any methods which are doing some calculations then these have to be moved from the form and can be done in a class or table depending on what is been displayed. cheers, Girish --- Raul Llorente Peña/OPENSOLUTIONS <[EMAIL PROTECTED]