[development-axapta] deployment problem - SQL Synchronisation

2004-02-05 Thread utku tatlidede
Hi everybody, Our project is on var layer and we usually deploy the whole var layer by copying the AOD to the test or production server. SQL is synchronised by using Administration - Periodic - SQL Administration. This worked fine but yesterday we realised a problem. Our tables (not default

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Gert Neetesonne
Hi, Use common.(fieldId2Ext(fieldId, 0)). In case of a normal field, use 0 In case of an array field, use the array number instead of 0 FieldId variable is the field ID of the field you want to access. Gert Neetesonne Technical Product Manager Edan Business Software From: byteway_so

[development-axapta] Re: read multi row select

2004-02-05 Thread byteway_so
That was quick!!! I just saw that it was also possible to not use a Common declaration, but use the table name instead. Is there also a property I need to set to prohibit that my button gets greyed out when multi selecting rows? Use common.(fieldId2Ext(fieldId, 0)). In case of a normal

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Morten Aasheim
I prefer doing it like this: ZipCode zipCode; if (DataSource1_DS.getFirst(true)) zipCode = DataSource1_DS.getFirst(true); while(zipCode) { //zipCode.DoSomething() zipCode = DataSource1_DS.getNext(); } Morten, CSY J From: byteway_so [mailto:[EMAIL

RE: [development-axapta] Re: read multi row select

2004-02-05 Thread Gert Neetesonne
Yes, There is a property multiselect on your button itself. Put that property to yes Gert Neetesonne Edan Business Software From: byteway_so [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [development-axapta] Re: read multi row select Date: Thu, 05 Feb 2004

[development-axapta] Re: read multi row select

2004-02-05 Thread byteway_so
Do you mean this? Combining your replies, I get the following: void clicked() { Common tmpDS; ZipCodeId zipCodeId; ; if (DataSource1_DS.getFirst(true)) tmpDS = DataSource1_DS.getFirst(true); while(tmpDS) { tmpDS = DataSource1_DS.getNext(); zipCodeId =

RE: [development-axapta] Transactions with multiple forms

2004-02-05 Thread Gert Neetesonne
You cannot have user interaction in the course of a long running transaction. If you really want to do it in one transaction, you should do the mass insert all at the end. If necessary, you can in the meantime store the records temporary (see eg. the old item wizard) Gert Neetesonne

Re-2: [development-axapta] Transactions with multiple forms

2004-02-05 Thread jesper.joergensen
HI, It is no Problem having interaction before the transaction. I use the class RecordInsertList to avoid using temp tables. /Jesper Original Message Subject: RE: [development-axapta] Transactions with multiple forms (05-Feb-2004 12:06) From: [EMAIL PROTECTED] To: [EMAIL

Re: Re-2: [development-axapta] Transactions with multiple forms

2004-02-05 Thread flygirltweety
Thanks for the information, but I still have a few problems ... How can I do this with mupliple forms. If I get it right, I have to collect information of the several records in the RecordInsertList, and do the transaction in 1 go. I know how I can call a form from whitin a procedure, but

[development-axapta] Query problem

2004-02-05 Thread Izabela Boguszyska
Hello !! Could someone help me with one problem ? I make a report, in this report I use my own Querry and when user run report Axapta dont remeber last user setting. User must manualy choose option "Previously user settings" from "Load and Save" tab. How can I set this option

RE : Re-2: [development-axapta] Transactions with multiple forms

2004-02-05 Thread Steeve Gilbert
... and how do I know when the form has been closed, so I can call the next form ... You can override closed method or one of the many others close methods of the Form. Steeve... Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the

[development-axapta] Fill in ItemMovement Itemid through barcode Reader

2004-02-05 Thread Gulden KISA SAYLAN
Title: Message Hi all,I have Barcode Reader is through keyboard.When I am on the field Itemid in Item MovementJournal/TransferJournal lines, I want to fill automatically in this field through this barcodereader.I defined a barcode in InventItemBarcode for a itemId with configId.When I

[spam] taxtrans sourceTableId is not set?

2004-02-05 Thread Cenk Ince
Yahoo! Groups SpamGuard has detected that the attached message to the group development-axapta is likely to be spam. For more information about SpamGuard, please visit our help pages:

[development-axapta] Spamfilter!

2004-02-05 Thread Morten Aasheim
Hey all Axapta-developers! Whats up with this Spam-filter?? Its seems to be a little bit too eager, dont you think? Morten, CSY Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ To unsubscribe from this

[development-axapta] Re: CustTrans and taxtrans relation

2004-02-05 Thread Claudia Göries
Hi Cenk, relation between CustTrans an LedgerTrans is LedgerTrans.Voucher == CustTrans.Voucher LedgerTrans.TransDate == CustTrans.TransDate Relation between LedgerTrans and TaxTrans is TaxTrans.Voucher == LedgerTrans.Voucher TaxTrans.TaxRefId == LedgerTrans.TaxRefId Hope it helps ! cu

[development-axapta] Error: Conversion of item table code was not specified

2004-02-05 Thread [EMAIL PROTECTED]
Hi, I am trying to change the quantity of onepurchase line in the purchase order and I get this error: "Conversion of item table code was not specified" . Does anyone know what does the error nessage mean and how to go about to solve it? TIA, Charles Yahoo! Groups Links To