SV: [development-axapta] data import error

2004-12-07 Thread Jens Strandberg
Hi, You will experience this if you are trying to import tables, that are shared in your application. That could be the definition group itself. /Jens   -Oprindelig meddelelse-   Fra: Danny Gaethofs [mailto:[EMAIL PROTECTED]   Sendt: 7. december 2004 22:26   Til: [EMAIL PROTECTED]  

[development-axapta] data import error

2004-12-07 Thread Danny Gaethofs
Dear all, Running axapta 3.0 sp3. I have exported data import/export definitions from my development database. When importing my data import/export definition groups into a test database I get an error message. The message says "not enough rights to insert the data or the imported file

[development-axapta] Re: Axapta 3.0 on XP Pro and MDAC

2004-12-07 Thread Mikael Sorensen
Windows XP comes with MDAC 2.7. See http://support.microsoft.com/default.aspx?scid=kb;en-us;231943 --- In [EMAIL PROTECTED], "Karadagi, Allan Peter" <[EMAIL PROTECTED]> wrote: > > Hello > > I´ve had a problem installing MDAC for SQL Server 2000 on XP Pro on a local > machine for test

[development-axapta] Form lookup for date result in error

2004-12-07 Thread Irving
In SalesTable I have a date field 'Delivery Date'. Whenever the user changes the date, I have to update a new logtable If the user agrees to that. Modified på control 'SalesTable_DeliveryDate': public boolean modified()     boolean ret;     SalesLine   salesLine;     ;     ret = super();

[development-axapta] annual stocktaking

2004-12-07 Thread Stefan Heidkamp
Hi to all, it's my first annual stocktaking in Axapta 2.5 SP4 as administrator. Must I anticipate with many surprises ;-)? Best regards, Stefan Heidkamp Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://g

[development-axapta] annual stocktaking

2004-12-07 Thread Heidkamp Stefan
Hi to all, it's my first annual stocktaking in Axapta 2.5 SP4 as administrator. Must I anticipate with many surprises ;-)? Best regards, Stefan Heidkamp [Non-text portions of this message have been removed] Yahoo! Groups Sponsor ADVERTISEMENT

RE: [development-axapta] Nested transactions and exceptions

2004-12-07 Thread Matt Benic
That is rediculous. What's the point of even having nested transactions then!? Regards, Matt Benic Axapta Developer UTi Sun Couriers Division "The universal aptitude for ineptitude makes any human accomplishment an incredible miracle." - Col. John P. Stapp -Original Message- From:

Re: [development-axapta] Nested transactions and exceptions

2004-12-07 Thread Olivier . Parent
Hi Matt, I've already the same problem as you. For your second sample(job), you must add a second try .. catch to be able catching exception int i; ;     for(i = 0; i < 5; i++)     {     try     {     ttsbegin;     try     {     ttsbegin;    

[development-axapta] Re: Error: Key Already Exists

2004-12-07 Thread k_otickashka
All line numbers are unique and none are 0. I did create some lines when journal was filtered. The error still pops up. Any ideas? --- In [EMAIL PROTECTED], "allanwallis" <[EMAIL PROTECTED]> wrote: > > > I get the same problem but I haven't had the time to fix it yet but > I can give y

RE: [development-axapta] A call to South African Axapta technical users

2004-12-07 Thread Matt Benic
Thanks for the feedback Girish and Bruno, The kind of issues we would look at working on in a South African user group are not generally those handled in this group, they would be, for example, providing a stronger motivation (by working together) to microsoft to improve it's training and supp

[development-axapta] Axapta 3.0 on XP Pro and MDAC

2004-12-07 Thread Karadagi, Allan Peter
Hello I´ve had a problem installing MDAC for SQL Server 2000 on XP Pro on a local machine for test purposes. Axapta apparently needs MDAC to access the SQL Server. So my first step was to install the SQL Server 2000. But the installation blocked each time on the MDAC install. Then I tried to

[development-axapta] Nested transactions and exceptions

2004-12-07 Thread Matt Benic
Hi all, I'm at a bit of a loss with the transactions and exceptions in Axapta. I have a nested transaction and I would like to be able to roll back the inner transaction, but not the outer one. I initially tried using ttsabort, but it seems that ttsabort rolls back the outer transaction as wel

[development-axapta] Re: garbage collection

2004-12-07 Thread wohegro
hi, in menubar click on "Help", then on "Microsoft Axapta Developer's Guide". click on tabpage "Search" and enter the following text in searchfield: "garbage collection" then you'll get some results which explain the mechanism of de-allocation of objects in axapta. b.th.w.: it's alllways a

RE: [development-axapta] string manipulation

2004-12-07 Thread Girish Bhatkal
Check AOT/ System documentation/Functions. Here you have the list of all the functions available in axapta. Ex : "mytext" ---> left(string,2) --> "my"   solution : substr("mytext",1,2);  Also nice examples are provided (double click the function to get the help). Cheers, Girish

Re: [development-axapta] garbage collection

2004-12-07 Thread Max Belugin
Hello RHODPR, âòîðíèê, 7 äåêàáðÿ 2004 ã., you wrote: R> Does Axapta provide us automatic garbage collection yes -- Best regards, Max    http://belugin.newmail.ru ICQ:9406811 Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links T

RE: [development-axapta] empty select statement

2004-12-07 Thread Deepak Shetty
Hello RHODPR Whenever we perform a fetch operation using the axapta table object if data are returned by the database then the table object used is alive which can be verified using the recid or checking if the object is not null for example InventTable   InventTable_Tst ; // declare a tab

[development-axapta] LookUp URL in CustTable - VendTable

2004-12-07 Thread Gert Strecker
Hello ! Does anyone know a good workaround for the standard failure: pressing the lookup button for URL in CustTable and VendTable? Lookup only works if field has benn modified and not yet saved. Thanks in advance Gert Yahoo! Groups Sponsor ADVERTISEMENT Yahoo

RE: [development-axapta] Add cost to inventory and recalculate issues

2004-12-07 Thread Harry Deshpande
Hi InventTransAdjust is the correct class. Updating inventory and ledger has to be in a single loop (i.e. post ledger, get voucher numbers and use them while updating inventory costs), this is absolutely essential since Axapta stores all the updates (GL code wise) to the costAmountPost

[development-axapta] garbage collection

2004-12-07 Thread RHODPR
Does Axapta provide us automatic garbage collection, or do we have to take care of the disposal of objects ourselves?  And if we do, how can this best be done? Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://

[development-axapta] barcode

2004-12-07 Thread Cenk Ince
Hi all I define a barcode for an item config, and when i create a salesline and when i insert barcode number for salesline, i'm waiting it to find item and update salesline. But nothing happens. Then why to use barcode? Thanks. Cenk İNCE ERP Teknik Danışmanı (Microsoft Axapta) ERP Technica

RE: [development-axapta] Syncronization error - Invalid object name 'INFORMATION_SCHEMA.VIEWS' sorry

2004-12-07 Thread Cenk Ince
Sorry for previous message directly open Query analyser, open database master/views. Rigth click on the views and select run the query. Like picture on attachment. Good luck. Cenk ÝNCE ERP Teknik Danýþmaný (Microsoft Axapta) ERP Technical Consultant (Microsoft Axapta) Data Sistem Genel Otoma

Re: [development-axapta] Re: add field to table

2004-12-07 Thread Joy
Have you try the answer fromSteeve Gilbert? He wrote this : The group where you add your field is linked to a dataGroup.  2 options for you here: 1- Remove the property "DataGroup" of the Identification group in the Form. 2- Add your field to the Field group "Identification" in InventTable

RE: [development-axapta] A call to South African Axapta technical users

2004-12-07 Thread Girish Bhatkal
Hi Matt,     I am working in UK. Earlier I used to check technet and then partnerguide . but things there keeps on changing . Then we also have MBS online but with the busy schedule of ours its very difficult to check the things happening in all these sites and  usergroups.     Si

Re: [development-axapta] Re: Axapta 2.5 SP2, Win XP SP2 , Office XP / Outlook

2004-12-07 Thread Deepak Shetty
Hi  Pirmin I too had the same problem everytime on Axapta startup the message box for outlook access used to pop up. I first checked against the emplyoees for Outlook synchronization which was switched off 4 all empl. Then I did unselct the outlook synchronization in the configuration

RE: [development-axapta] A call to South African Axapta technical users

2004-12-07 Thread Bruno Max Sørensen
Hi Matt Why not sharing with all? why not using all? why constrain yourself to a limited number of developers? Using this forum, you will benefit from the experience gathered across borders. I'm not sure I understand the purpose. Kind regards /Bruno   _  From: Matt Benic [mailto:[

RE: [development-axapta] Syncronization error - Invalid object name 'INFORMATION_SCHEMA.VIEWS'

2004-12-07 Thread Cenk Ince
I think you have to recreate those views. Open Ent. Manager, in masterdb find views with name dbo.[viewname] Open them and copy, then in query analyser run them one by one. This will recreate those views with owner INFORMATION_SCHEMA. Good luck Cenk İNCE ERP Teknik Danışmanı (Microsoft Axap

[development-axapta] string manipulation

2004-12-07 Thread anton_tjiptadi
Hi, how to manipulate string in Axapta. Like the old days : "mytext" ---> left(string,2) --> "my" "mytext" ---> right(string,3) ---> "ext" "mytext" ---> substring(string,3,2) ---> "in" or format string like "01234567" displayed like "0-123-456-7" thanks, Yahoo! Groups Sponsor

Re: [development-axapta] empty select statement

2004-12-07 Thread Ahmed Ibrahim
select firstonly from inventTable where inventTable.itemID = "It001"; if (inventTable) { // do something; } RHODPR <[EMAIL PROTECTED]> wrote: Hi, how can I make sure that a select statement is not empty? For example if I make a statement select firstonly from inventTable where inven