Re: [Axapta-Knowledge-Village] Mathmatical Expression in ax

2009-03-03 Thread Luis Martinez
Hi... Try to make a function whithin Global class, that can be called from anywhere in Axapta. or make a class, then create a static method that performs the operation and return your value... if a,b,c... etc are fields of your table, try make a method in that table, and when you have a record

Re: [Axapta-Knowledge-Village] Cannot read text formatted numbers from excel cell

2008-02-01 Thread Luis Martinez
Try to validate the cell that you read... Str GetCellValue(sysExcelCell RCell) { Str CellValue; Int IntegerValue; ; switch(RCell.value().variantType()) { case COMVariantType::VT_R4 : IntegerValue= any2int(RCell.value().float()); CellValue =

Re: [Axapta-Knowledge-Village] Axapta ebooks

2007-11-13 Thread Luis Martinez
Try this... http://msdn2.microsoft.com/en-us/library/aa493472.aspx On Nov 13, 2007 3:39 AM, Ashokkumar [EMAIL PROTECTED] wrote: hai guys...i need axapta free ebooks...can u send the link for me...bcos i'm new one for this...already i search it...but i cant found that ebooks...can u help

[Axapta-Knowledge-Village] Ini-file corrupt AX 4.0

2007-06-20 Thread Luis Martinez
Contribution. Ini-file corrupt AX 4.0 If at starting up AX40 the wrong Ini-file appear corrupt (30 times), is this to being lacking location in the phone parameters in Control panel. Therefore these produce firstly once, solve this problem. Español: Cuando instalas AX40, y la primer vez que

Re: [Axapta-Knowledge-Village] Do we have any option to give name/Label to the Sum Control property in Reports

2007-05-08 Thread Luis Martinez
Hi, 1.- Yes, only change the label property in your Generated Design. 2.- In programmable Section you can add elements and methods to display calculated fields or texts, this section run from fetch or anyother method of an element in your design. programmable section have an

Re: [Axapta-Knowledge-Village] Facturacion En Axapta

2007-05-03 Thread Luis Martinez
Primero te llevas el método allocateNumAndVoucher, de la clase SalesFormLetter_Invoice al reporte donde tienes tu factura (SalesInvoice), Para poder quemar el folio de la factura, luego se tiene que modificar el método fetch, para que ejecute un método que hay que agregar en el mismo reporte,

[Axapta-Knowledge-Village] RFC moral people Mexico

2007-02-20 Thread Luis Martinez
Hi all. EN: Somebody has the algorithm to elaborate the characters that conform the RFC for moral people? SP: ¿ Alguien tendrá el algoritmo para obtener el RFC de personas morales ? thanks. -- Lic. Luis Enrique Martínez Peña Analista Programador Axapta Consultor

Re: [Axapta-Knowledge-Village] Date to String Conversion

2007-01-26 Thread Luis Martinez
An example... some functions. transdate KikeDate = systemdateget(); ; info(strfmt(%1 %2th, %3,mthname(mthOfyr(KikeDate)), dayofmth(KikeDate), year(KikeDate))); Saludos. On 1/25/07, Imthiyaz Ahamed [EMAIL PROTECTED] wrote: Hi Siva, Thanks for your Reply. It is vey useful for me, But My

Re: [Axapta-Knowledge-Village] Date to String Conversion

2007-01-25 Thread Luis Martinez
check properties: DateDay, DateFormat, DateMonth, DateSeparator and DateYear in properties window. or from SystemDocumentation \ Functions \ str Date2Str (date date, int sequence, int day, int separator1, int month, int separator2, int year) Examples In all examples, the variable date

Re: [Axapta-Knowledge-Village] How can we Connect PHP software to Axapta ,Is it Possible through business connector?

2007-01-09 Thread Luis Martinez
, In your example we can retrieve data from table in axapta. Can you give me exaple code or any reference website to execute query or class in axapta objects. Regards Yahya - Original Message - From: Luis Martinez To: Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village

Re: [Axapta-Knowledge-Village] How can we Connect PHP software to Axapta ,Is it Possible through business connector?

2007-01-03 Thread Luis Martinez
An example, retrieving customer information code. Observation: in my last post , I said to yours that had problems with com connector... peculiarly with php does not appear to me any error (Apache + php)... but with IIS (Internet Information Server) yes, any Idea about it ? greetings.

Re: [Axapta-Knowledge-Village] AxaptaCOMConnector error.

2007-01-03 Thread Luis Martinez
Auftrag von Luis Martinez Gesendet: Mi 03.01.2007 01:13 An: Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com Betreff: [Axapta-Knowledge-Village] AxaptaCOMConnector error. Hello all, I have an issue, When I try to connect to Axapta through DCom+, from VBScript

[Axapta-Knowledge-Village] AxaptaCOMConnector error.

2007-01-02 Thread Luis Martinez
Hello all, I have an issue, When I try to connect to Axapta through DCom+, from VBScript, get the following error: AxaptaCOMConnector.Axapta.1 error '80041200' No se ha encontrado información de licencia de Internet Server Integration para Microsoft Axapta Business Connector, por lo que no se

Re: [Axapta-Knowledge-Village] label creation

2006-06-02 Thread Luis Martinez
Have you french language licensed ? when you configure (with configuration utility) in the language field, your language licensed fr you'll access Axapta, and create labels for that language... but if you login Axapta with en-us language, you can crate labels, but primary language is english,

[Axapta-Knowledge-Village] Axapta Backup with OLAP...

2006-05-15 Thread Luis Martinez
Hi everybody, I have a qestion... If I want to make a backup for Axapta (3.0 with SP4), with OLAP configurated. What I need for make a complete backup... Application + DB + ??? Thanks in advance. -- Lic. Luis Enrique Martínez Peña Analista Programador Axapta Consultor Sistemas Web Off. (81)

Re: [Axapta-Knowledge-Village] Ax 4.0 with SQL Reporting Services

2006-05-15 Thread Luis Martinez
can share us a demo version of AX 4.0 ? On 5/15/06, Steeve Gilbert [EMAIL PROTECTED] wrote: Hi everyone, Can someone tell us about SQL Reporting Services integration in Ax 4.0? How well is it integrated? How is it to create a report that will use SQL Reporting Services in Ax 4.0? Any

Re: [Axapta-Knowledge-Village] SP5 fix list

2006-04-07 Thread Luis Martinez
can you sent it to the group... thanks. On 4/7/06, Steeve Gilbert [EMAIL PROTECTED] wrote: Hi group, Can someone tell me where to find the fix list for SP5? Or if you have it, can you send it my way? Thanks! Regards, Steeve... [Non-text portions of this message have been

Re: [Axapta-Knowledge-Village] Error number sequences

2005-08-02 Thread Luis Martinez
Hi... I got same problem with sequences... and solve with that: add ttsbegin... ttscommit, after and before your code, becose Axapta validate this... Numberseq numberseq; ; ttsbegin; // here numberseq = numberseq::newgetnum(smmparameters::numrefrelationaccount()); if(numberseq) { print

[Axapta-Knowledge-Village] use COM in Axapta with PHP

2005-08-01 Thread Luis Martinez
Hi, I want to share this piece of code... it's an example of Axapta Business Connector with PHP... ?php $Axapta = new COM(AxaptaComConnector.Axapta); $Axapta-Logon(Admin,,,c:\Cnfname.axc); $CustTable = 77; $CustTable_Name = 2; $AxaptaQuery = $Axapta-CreateObject(Query);

Re: [Axapta-Knowledge-Village] 1099 for NA DIS

2005-05-04 Thread Luis Martinez
Try with HotFix HF30SP3_037 - Tax 1099 critical update for the North American DIS Layer (NADIS Layer) Saludos. On 5/4/05, Michael Oakes [EMAIL PROTECTED] wrote: Has anyone experienced using this? ive installed it and tried to use it, but there are problems everywhere. There

Re: [Axapta-Knowledge-Village] 1099 for NA DIS

2005-05-04 Thread Luis Martinez
download here: https://www.partnerguide.com/productdownload/all/AXAPTA/Hotfix/3.0%20SP3/HF30SP3_037.exe On 5/4/05, Michael Oakes [EMAIL PROTECTED] wrote: Has anyone experienced using this? ive installed it and tried to use it, but there are problems everywhere. There is a class that