AW: [development-axapta] Datasource - Range

2005-05-20 Thread Matthias Schuster
Hi irvr, think about sortOrter desc for the date field in the datasource of the report an modifying the fetch in order to only fetch the first record. That will be the highest one. Regards matthias   _  Von: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von

AW: [development-axapta] COM interface

2005-05-11 Thread Matthias Schuster
Hi Wolferl, we used an ocx from TAL.com to communicate with our scale. Regards Matthias   _  Von: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Wolfgang Puttinger Gesendet: Dienstag, 10. Mai 2005 13:25 An: development-axapta@yahoogroups.com Betreff:

AW: [development-axapta] ODBC connection using file DSN

2005-04-06 Thread Matthias Schuster
Hi Bjoern, I wrote some jobs using exeldata. Text files work the same way. You have to set up an odbc-datasource with the text-file driver. Here’s the code for an excel solution. Regards matthias LoginProperty LP = new LoginProperty();     OdbcConnection myConnection;     Statement my

AW: [development-axapta] dynamic operator

2005-03-24 Thread Matthias Schuster
Hi daniel, why don’t you think about using a query for that task. You can dynamically add ranges and the corresponding values. Regards matthias   _  Von: daniellim_yh [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 18. März 2005 05:20 An: development-axapta@yahoogroups.com Betreff:

AW: [development-axapta] what are file type .alc and .ali used for?

2005-02-14 Thread Matthias Schuster
Hi Jack, .alc stands for application label comments. Files of this type contain the comments/label texts you enter in the HelpText  field of a property page. .ali stands for application label index. Files of this type contain an index for fast accessing the label content. Regards Matthias  

AW: [development-axapta] Getting a date from ProjEmplTrans

2005-01-19 Thread Matthias Schuster
Hi harry, maybe you fogot selecting a record like ProjEmplTrans projEmpltrans; Select from projEmpltrans; Print projEmplTrans.TransDate; Pause; Regards Matthias   _  Von: harrybal30 [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. Januar 2005 12:27 An: development-axapt

AW: [development-axapta] Lookup table for EDT ?

2005-01-18 Thread Matthias Schuster
Hi Anton, you have to add a relation on your EDT relating to the table containing the values to choose from. If you add a control to your form with the type edt, Axapta automatically creates a lookup to this table. On modified of the new control you have to modify the range value of the fo

AW: [development-axapta] restore sql server, user bmssa problem

2005-01-06 Thread Matthias Schuster
ser in the current database to login. login must already exist. user and login must be specified. I think this helps. Regards Matthias Matthias Schuster -Ursprüngliche Nachricht- Von: hilda cabrejos [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 5. Januar 2005 14:24 An: development-

AW: [development-axapta] Active Vs Link Active, table_ds.refresh(), table_ds.executequery()

2004-12-23 Thread Matthias Schuster
Hi, have a look at the MBS Axapta Developers handbook and search for your issues. You can find it in the help menu. Regards Matthias -Ursprüngliche Nachricht- Von: Padmaja Iyingar [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 23. Dezember 2004 05:34 An: development-axapta@yaho

AW: [development-axapta] how can i create where-condition dynamic

2004-12-23 Thread Matthias Schuster
Hi Peter, think about queries. The QueryBuildRange.value() method also takes a query string. Queries allow to create select statements in an object oriented and dynamic way. Regards Matthais Von: christuerk [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 17. Dezember 2004 16:30 An:

AW: [development-axapta] Post PurchLine

2004-12-13 Thread Matthias Schuster
Hi Kenneth, try _purchFormLetter.update(_purchTable, 'abc', Today(), PurchUpdate::ReceiveNow) Regards Matthias   _  Von: kamchung322 [mailto:[EMAIL PROTECTED] Gesendet: Montag, 13. Dezember 2004 13:17 An: [EMAIL PROTECTED] Betreff: [development-axapta] Post PurchLine Hi All,

AW: [development-axapta] Price/Discount Import

2004-10-23 Thread Matthias Schuster
Hi Dick, look at this code, it shows how to find:or to create a InventDim-record container  c; //contains the imported data maybe from file. InventDim  inventDim; InventDim  newInventDim; inventDim.inventLocationId = conpeek(c,1); //assuming c contains at

AW: [development-axapta] Number Sequences with a new table

2004-10-13 Thread Matthias Schuster
Hi Jesmond, in 3.0 things you have to do are: 1.  Create EDT for jour Number (String) 2.  Extend BaseEnum NumebrSeqModule with a new Element, name it like your NumberSequence 3.  create class derived from NumberSeqReference with your name (e.g. NumberSeqReferenc_myNumberSeq), i

AW: [development-axapta] refresh of datagrid

2004-09-29 Thread Matthias Schuster
Hi Jesmond, here is a short description on the datasourcename_ds.research method from the developer handbook: The super() (research method on the datasource) call refreshes the database search defined by the query automatically generated in the init method. Corresponds to re-activating execut

AW: [development-axapta] closing the caller form

2004-09-28 Thread Matthias Schuster
Hi Jesmond, try this! FormRun  frm; Frm = element.args().caller(); Frm.close(); Cu M   _  Von: Jesmond Giordimaina [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 28. September 2004 11:05 An: [EMAIL PROTECTED] Betreff: [development-axapta] closing the caller form Hi all, does

AW: [development-axapta] a sizing question

2004-09-27 Thread Matthias Schuster
Hi, have you already had a look at technet.navision.com? In the resources menu you can find links to hardware sizing tools of several manufacturers. Cu M   _  Von: onur kanat [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. September 2004 13:46 An: [EMAIL PROTECTED] Betreff: [developm

AW: [development-axapta] Sharepoint

2004-09-11 Thread Matthias Schuster
Hi Lars, look at  www.itis.de cu M   _  Von: Lars Helge Jacobsen [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 10. September 2004 14:53 An: [EMAIL PROTECTED] Betreff: [development-axapta] Sharepoint Hi, Has anyone made a solution where Axapta webfor

AW: [development-axapta] How to retrieve recid from insert()?

2004-09-01 Thread Matthias Schuster
Hi Alessandro, after table.insert() you can access the new recid with table.recid. cu M   _  Von: Alessandro Ghidini [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 1. September 2004 11:39 An: [EMAIL PROTECTED] Betreff: [development-axapta] How to retrieve recid from insert()? In a

AW: [development-axapta] Creating sales orders from a file

2004-08-16 Thread Matthias Schuster
Hi Jason, take a look at SalesAutoCreate Classes. M   _  Von: jasonm [mailto:[EMAIL PROTECTED] Gesendet: Montag, 16. August 2004 15:02 An: [EMAIL PROTECTED] Betreff: [development-axapta] Creating sales orders from a file I am trying to create sales order in axapta from

AW: [development-axapta] Barcode Scaners

2004-07-16 Thread Matthias Schuster
Hi Arkadiusz, we did it for a partner. They developed a framework for using handheld barcode scanners running rdp clients (wts). You might drop me an email if you're interested. Cu M   _  Von: arecki2001 [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 14. Juli 2004 13:05 An: [EMAIL P

AW: [development-axapta] problems wiht new we mea los layer

2004-07-12 Thread Matthias Schuster
Hi, maybe the new files have a write protection. Cu M   _  Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Montag, 12. Juli 2004 11:30 An: [EMAIL PROTECTED] Betreff: [development-axapta] problems wiht new we mea los layer hi all, after the installition from the new lo

AW: [development-axapta] RunBaseBatch Class

2004-07-08 Thread Matthias Schuster
Hi Gonzalo, take a look at \Classes\Tutorial_RunbaseBatch. I think it’ll help you. Cu M   _  Von: gonzalo_edo [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. Juli 2004 22:43 An: [EMAIL PROTECTED] Betreff: [development-axapta] RunBaseBatch Class Does anybody has an example of how

AW: [development-axapta] Fwd: Automation of packing slip?

2004-07-07 Thread Matthias Schuster
Hi Baran, take a look at message #4207 on technet.navision.com. Maybe it'll help you! Cu M   _  Von: baran_sasmaz [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. Juli 2004 13:24 An: [EMAIL PROTECTED] Betreff: [development-axapta] Fwd: Automation of packing slip? --- In [EMAIL PR

AW: [development-axapta] (urgent) how to delete log file from SQL server 2000

2004-07-01 Thread Matthias Schuster
Hi, there are many different ways for shrinking the log-Files. The clean one is right-click on database, all tasks, shrink database. This only works if you saved the transaction log before. If there are several log files you can do it for each file. The faster - and maybe a little less

AW: [development-axapta] Timer

2004-06-25 Thread Matthias Schuster
Hi, have a look at the timer tutorial (tutorial_timer) in the forms node of the AOT! Cu M   _  Von: markette366 [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 25. Juni 2004 09:10 An: [EMAIL PROTECTED] Betreff: [development-axapta] Timer Hi, how can I activate a Timer an where do t