RE: [Axapta-Knowledge-Village] Difference in rounding on tax amount for sales invoice

2006-11-24 Thread James Flavell
Hi everyone I found the problem with debugging. It is a undocumented (or very little documented) way AX works. Okay it's a little of a long story but basically the tax is being calculated on the total (even though you set it in Led/parm to be by Line) So if you create sales line for item EB14

RE: [Axapta-Knowledge-Village] Method of Calculation

2006-11-24 Thread James Flavell
What is your setting on the tax code? Is the 'Marginal base' (en-au) set as 'Total invoice balance' or 'Line amount'? If its 'Total invoice balance' then this forces the calc method to be total even if you set it as line (and probably the other way around for 'Line amount') Its not very well doc

Re: [Axapta-Knowledge-Village] Dynamics AX 3.0 and FRx 6.7

2006-11-24 Thread Tarek Saleh
Hi i m also new in Frx but i think you should make a spechial ODBC for FRX rather than useng the same one that connect for AXDB Just check it out Regards Tarek - Original Message From: axapta_soporte <[EMAIL PROTECTED]> To: Axapta-Knowledge-Village@yahoogroups.com Sent: Thursday,

[Axapta-Knowledge-Village] SysMailer how to catch exception

2006-11-24 Thread Andreas Rudischhauser
Hi, das anybody know how to catch a sysmailer or dundas.mailer exception? The exceptions always go to the infolog... Mit freundlichen Grüßen Andreas Rudischhauser Andreas Rudischhauser Application Developer back2.biz [e]management GmbH Lise-Meitner-Strasse 14 89081 Ulm [phon] +49-731-88007

YNT: [Axapta-Knowledge-Village] Method of Calculation

2006-11-24 Thread Billur Kardas
As far as I know... When you select line it calculetes tax in lines and make sum... When you select total it sums the lines and calculates the tax. It can only make difference of the pennies i guess. -Özgün İleti- Kimden: Axapta-Knowledge-Village@yahoogroups.com bu ki

Re: [Axapta-Knowledge-Village] Date difference

2006-11-24 Thread Nitesh
Hi Patric, With the help of function yearDiffiff () u can get the diff in year but there is no such function exist which calculate the difference of two dates in months.U have to write ur own method : int daysCount; ; daysCount =(this.endDate - this.startDate)/365;

RE: [Axapta-Knowledge-Village] Making enum element invisible

2006-11-24 Thread Harry Deshpande
Hi Take a look at form CustVendExternalItem, search for .items This works if your enums values are sorted in the order in which you wish to hide them. For e.g. enum TableGroupAll. You can either hide All or All and Group. But you cannot hide just group and show Table,All Regards harry _