[development-axapta] Re: microsoft.dynamics.setup.reportingservices.dll;File Version - 5.0.1000.52 File

2010-05-05 Thread gonzalo_edo
Anyone??? Please send it to gonzalo_edo at yahoo.com --- In development-axapta@yahoogroups.com, "gonzalo_edo" wrote: > > Hi all... > > Can anybody please send me the file > microsoft.dynamics.setup.reportingservices.dll;File Version - 5.0.1000.52] to > gonzal

[development-axapta] microsoft.dynamics.setup.reportingservices.dll;File Version - 5.0.1000.52 File

2010-04-28 Thread gonzalo_edo
Hi all... Can anybody please send me the file microsoft.dynamics.setup.reportingservices.dll;File Version - 5.0.1000.52] to gonzalo_...@yahoo.com I'm trying to install the reporting services extension but I'm having the issue of the version file. I do not want to upgrade the production enviro

[development-axapta] Encrypt code

2007-05-28 Thread gonzalo_edo
Hi all... Any one know how to encrypt code in AX, I've made some modules in Var layer but I want to encrypt 'em in order to not be available to be viewed or edited. Hope can help me... Regards,

[development-axapta] Licence Key validation

2007-05-28 Thread gonzalo_edo
Hi all... Does anybody knows how can I validate if custom a license key is enabled, by example, I develop a complete module and I want to enable it only if If enter a valid licence key that I define, so If a valid licence key is found, some configuration keys are enable and funcionality and s

[development-axapta] Ax 4.0 Upgrade

2007-04-25 Thread gonzalo_edo
Does anyone have a guide or steps to correctly upgrade an application from Ax 3.0 to Ax 4.0?? The customer is highly customized!!! Thanks...

[development-axapta] Re: Batch process

2007-04-25 Thread gonzalo_edo
You should do this in a Batch class... take a look to the Tutorial_RunbaseBatch class and see how it works... --- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]> wrote: > > Hi > I have a requirement where I need to run a piece of code automatically at a > given time at night. >

[development-axapta] Error upgrading to Ax 3.0 SP5

2007-04-25 Thread gonzalo_edo
Hi all... I have this error... I recently upgrade an application from SP2 to SP5, but we had some issues so we restored the application and the database, now we try to run the upgrade again and when I try to start axapta an error that the column RecVersion in the table SQLDictionary does not ex

[development-axapta] Re: Current Userid

2007-03-12 Thread gonzalo_edo
Hi... try CurUserId() Regards. Gonzalo --- In development-axapta@yahoogroups.com, "febinpc" <[EMAIL PROTECTED]> wrote: > > Hi friends > I'm working on AX 4.0, I want catch the Current Userid of application, > or in simple language we can say ,I want to print the Current user ID > Can anybod

[development-axapta] Free text invoice

2006-03-21 Thread gonzalo_edo
Hi all.. There's any have an example of how can I post and print a free text invoice via code?? I really need to do this...?? Hope ya all can help me... Regards, Gonzalo SPONSORED LINKS Computer part

[development-axapta] Re: Form problem

2006-03-21 Thread gonzalo_edo
Hi, Where do you create your display method? directly on the form or in the table?? I strongly recomend that the display be created on the table... and then assign to the form and asociate it with the datasource in the field properties. You should use the "select sum(xxx) from inventSum g

[development-axapta] Short Cuts

2006-03-14 Thread gonzalo_edo
Hi all... I have an issue and hope you can help me... Anybody know how to program the use of shortcuts for especific method?? I mean, by example, I have developed a calculation or something in a button in the clicked method and I want to able to execute this code using a combination of ke

[development-axapta] Report Design Capture

2006-03-09 Thread gonzalo_edo
Hi all.. How can I get the name of the reportDesigns of a report via code?? I mean, If I have the salesInvoice with 2 designs, Standard and CreditNote, by example how can I in a job to capture the names of the designs and put it onto a variable or a tmp table??? This because I need to set

[development-axapta] Re: mandatorily align the content in report

2006-01-27 Thread gonzalo_edo
You can set the aligment in the Aligment property of the control, this will override the standar aligment of the AmountCur Extended, by default is set to Auto. Regards, Gonzalo. --- In development-axapta@yahoogroups.com, "wanggaolu0724" <[EMAIL PROTECTED]> wrote: > >    I've created a rep

[development-axapta] Re: Concatenate two fields

2006-01-27 Thread gonzalo_edo
You can use some like: Field3.text(strfmt(%1%2,Field1,Field2)); I hope that I get your point... Regards Gonzalo. --- In development-axapta@yahoogroups.com, "manojkumar_asp" <[EMAIL PROTECTED]> wrote: > > Hi All, >  I want to concatenate two fields in form to third field which is used >

[development-axapta] Re: Resorting a table buffer

2006-01-25 Thread gonzalo_edo
You should consider a cluster index to keep your records sorted as you want, you perfectly could change the order of the records in the Ct buffer, but you need an index, otherwise the query will take so long because the database motor will create a temporary index to handle the query. Rega

[development-axapta] Re: Resorting a table buffer

2006-01-25 Thread gonzalo_edo
You should consider a cluster index to keep your records sorted as you want, you perfectly could change the order of the records in the Ct buffer, but you need an index, otherwise the query will take so long because the database motor will create a temporary index to handle the query. Rega

[development-axapta] Re: Go to main table form

2006-01-25 Thread gonzalo_edo
In the properties of the table, in the FormRef property, you can define which menuitem (must be related to the maintenance form) is the one you want to call whenever "Go to main table" is clicked. The relation is defined by the extended data type used in the reference table or the relation

[development-axapta] Using a API in Axapta

2005-09-04 Thread gonzalo_edo
Does anybody have a good example of how to use an API (Dll file) through Axapta and how I list or see the different methods included in the Dll. Hope you can help me. Thank in advance. Regards Gonzalo. SPONSORED LINKS

[development-axapta] Windows CE .NET

2005-08-31 Thread gonzalo_edo
Hi all, there's any known version of AX 3.0 SP3 or similar that runs under Windows CE .NET ?? Or any have experience with Symbol Hand Held BarCode Scanners MC3000 and Terminal Services? Can I do it throught Axapta with Api's or how? This is really urgent, hope you all can help me. Best Re

[development-axapta] Pass Data from One Temp Table to another

2005-07-08 Thread gonzalo_edo
I have a temp table that I fill with a while select statement, how can I transfer this data to another instance of the temp table, I mean, to make the 2 temp tables exactly the same, with the same records inserted??? Regards, Gonzalo YAHOO! GROUPS LINKS  V

[development-axapta] Re: Substring in query

2005-06-09 Thread gonzalo_edo
Maybe this isn't the best way to do this, there's nothing wrong with it, but will be lot slower than use the where clause because you first have to query the hole table and then discriminate the records in the If statement, instead of using where you just query the records that fulfill the

[development-axapta] Execute a report

2005-04-27 Thread gonzalo_edo
How can I execute a report through code and pass it parameters, like the active datasource?? Hope you can help me! Regards Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe from this group, send an em

[development-axapta] Re: Help on using the Import Wizard

2005-04-24 Thread gonzalo_edo
I guess this error is in Axapta 3.0, you have to check that every fields on your table (the one you wish to import) have an Extended data type related to it, once you assign Extended to all fields that doesn't have one, try again and you'll see that your problem was gone!! I guess this

[development-axapta] Re: EAN 128

2005-02-07 Thread gonzalo_edo
Take a look of the barcode class!! Regards. Gonzalo. --- In development-axapta@yahoogroups.com, "irvr80" <[EMAIL PROTECTED]> wrote: > > > Hi I need to print a barcodelabel called Ean128, normally we use bc > 39, that works fine, now we have to use EAN128, it prints one or two > lines t

[development-axapta] Re: Item Type BOM not available

2004-12-22 Thread gonzalo_edo
Hi! You probably have disable some license codes, better check it. Take a look at Menu Administrarion -> Setup -> Configuration Regards. Gonzalo --- In development-axapta@yahoogroups.com, "RHODPR" <[EMAIL PROTECTED]> wrote: > > > I have another strange thing : When I insert a new

[development-axapta] Settle a Transaction

2004-10-29 Thread gonzalo_edo
Hoa can I settle a vend invoice via code, I need manually cancel the amount of an open invoice. Best Regards. Gonzalo. Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-

[development-axapta] SQL Statement

2004-10-28 Thread gonzalo_edo
How can I use the update statement using the ODBCconnection class? I need to update  the data of a field using a ODBC after I read the information I've already use the Select * from... statement, but I don't know how to run an update. Thanks in advance. Best Regards. Gonzalo

[development-axapta] Sales Order Error

2004-09-27 Thread gonzalo_edo
I'm having the the following error: I have a Sales Order with 3 lines, the first without Pct. Disc, the second with a 5% Disc and the third with 2% Disc, so If I go back to the first line and change the value for Pct Disc, and move to other line, the error below is displayed. The funny thi

[development-axapta] Web Service/XML

2004-08-25 Thread gonzalo_edo
I execute the code to connect to an Web Service and this error is returned: Method 'MSSoapInit' in COM object of class 'MSSOAP.SoapClient' returned error code 0x80020009 (DISP_E_EXCEPTION) which means: WSDLReader:Loading of the WSDL file failed HRESULT=0x80070057 - WSDLReader:XML Parser fa

[development-axapta] Web Service/XML

2004-08-25 Thread gonzalo_edo
Does anybody has an example of how can I use a Web Service in Axapta? To connect to an web service in a simple form, not a web form, and retrieve any information??? Hope can help me... Regards. Gonzalo Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links T

[development-axapta] Data Source Range Manipulation

2004-08-25 Thread gonzalo_edo
Does anybody know how can I get the values from a Range that belongs to a data souce in a report?? I mean, I have a report based on BankAccountTrans Table, this report has four ranges at DataSources --> BankAccountTrans_1 --> Ranges, I have at this ranges the TransDate field, but I need to

[development-axapta] Relations Between Dimensions

2004-07-16 Thread gonzalo_edo
Does anybody know how can I make a relation between Cost Centers with Purposes and Departments with Cost Centers. I need that I can only select or display the Departments thar belongs to an especific Cost Center and and Cost Centers that belong to a  especific Purpose. This relation is all

[development-axapta] RunBaseBatch Class

2004-07-08 Thread gonzalo_edo
Does anybody has an example of how to implement or use RunBaseBatch class?? I need to execute a process on a form throught a class, but I don´t know how can I program this batch. I'm have to run a batch process every day at 8:00 a.m, so I need to implement a way to do this automaticaly. Or

[development-axapta] Data Export/ Import -> Excel Spreadsheets Error

2004-06-15 Thread gonzalo_edo
When I try to create a template at  Administration ->Periodic ->Data Export/ Import -> Excel Spreadsheets ->Template Wizards for a table created by myself, after I click on Finish button this error is displayed Error executing code: DictEnum object not initialized. Stack trace: \Classes\D

[development-axapta] Class name

2004-06-09 Thread gonzalo_edo
Does anybody knows the name of the class that create the lines on invent trans when I post a invent journal?? I mean, when I have an invent journal and I triggered the posting action, automatically this method create the lines into the InventTrans Table, what class and method do that?? Bes

[development-axapta] Rollback a transaction

2004-05-26 Thread gonzalo_edo
If I used the method insert() of a table (LedgerjournalName by example), can I rollback the record inserted using ttsbegin/ttscommit; I mean, If I'm doing something (I have TTSBEGIN at the beginning of the statement) and after the insert() method I have an error can I rollback the changes,

[development-axapta] Axapta Function

2004-05-26 Thread gonzalo_edo
Does Axapta have any function that give me the data type of a field or a variable. By example: A = 'ABC', returns string or B = 123.33, returns real; Best Regards Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http

[development-axapta] COM Excel.Application

2004-04-21 Thread gonzalo_edo
Does anybody know where can I find any documentation about using Excel.Application COM Or anybody has an example to connect Excel with Axapta Regards Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe from th

[development-axapta] Web Forms

2004-03-02 Thread gonzalo_edo
Does anybody have a manual or something about Web Forms, How to use it and interfaces? Thanks Best Regards Yahoo! Groups Sponsor ADVERTISEMENT Click Here Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta