Re: SV: [development-axapta] Re: Label File Updating

2005-01-07 Thread DIEGO MARIANO GAGLIANO
I have the same problem with the transactions. I think the problem is with the transaction that made the server (3 tier), is too much for the existing hardware (for this reason Microsoft canĀ“t reporduce the error), and lost the sequence, or the timeout happend. The only solution that I do

RE: [development-axapta] InventSerial.DEL_configId

2005-01-07 Thread Tony Depalo
I am aware that this is what Axapta does with the other 40 tables which had the configId move to the inventDim. Axapta's Upgrade wizard does not move the inventSerial.ConfigId data. If I take your suggestion, that means that you would have to link the InventSerial record to the InventDim

SV: [development-axapta] Re: Label File Updating

2005-01-07 Thread ozzage
I think it depends on what order you shut things down - ie 2T clients and the AOS. I'm not sure if what I'm describing below is exactly your problem, but maybe it will help. Both the AOS and the 2T clients cache the labels and only commit them to the label data file when you shut them

[development-axapta] Re: HOW TO SET TO MANDATORY A FIELD ON A FORM. WITHOUT TOUCHING THE TABLE????????

2005-01-07 Thread ozzage
Hi You should probably use .validateWrite() on the form datasource to check if the values on the relevant field(s) are entered (and valid). It's a nice idea, setting .mandatory() on the datasource. That's great as it gives you the red wavy line so the user has some visual cues. Shame

[development-axapta] Re: Open a form with marked record

2005-01-07 Thread ozzage
Also... Check out lookupField() and lookupValue() on args() (I think that's the names... I'm going from memory here). If you fill these with the fieldId and value that you want to search for, then the form will open with all records shown, and the one matching those criteria selected.

[development-axapta] moving var layer - menu changes not copied

2005-01-07 Thread jasonm
Hi, we are moving var layer from test to live after adding new reports. We create the report as a disply item in menu items and add it to the menu (all done in the var layer). But when we move the var layer to live the menu does not show the new items. The items are there in the AOT as

[development-axapta] Checking security keys

2005-01-07 Thread d_rede
Hi there, Is there a simple way to check (in code) if the logged in user has access to a certain security key? The only example we were able to find was the securities report, and that builds up the antire security tree control and checks through it! Regards, Matt Benic Axapta Developer

[development-axapta] Re: JournalCheckPost Class

2005-01-07 Thread axaptagrp
Thanks Harry, that was the problem back then. Regards, John Chircop. --- In development-axapta@yahoogroups.com, Harry Deshpande [EMAIL PROTECTED] wrote: Hi I usually get this error when I have forgotten to forward compile a class. Regards harry _

RE: [development-axapta] InventSerial.DEL_configId

2005-01-07 Thread Jesper Kehlet
As part of the 3.0 rewrite, configuration was made an inventory dimension just as the serial number. Therefore, you have a relationship from InventSerial.InventSerialId to InventDim.InventSerialId, and thus you have the combinations of s/n and configuration. InventSerial is now regarded as

[development-axapta] How to periodically refresh data source

2005-01-07 Thread Baran Sasmaz
Hi, I have an axapta weighbridge form. With the aid of an vb program, i update simutaneously an axapta table field. In the axapta form, i have a realedit control that display the weighbridge weight result (axapta table field). How can i refresh periodically the weight data in the axapta

[development-axapta] Load user saved query setups

2005-01-07 Thread Steeve Gilbert
Hi all! I've created a simple data export screen. In that form I build the queryRun by code (add ranges, sorting, etc...) on init() of the form. When the form opens, user can either click on ranges or export. If he click on ranges I call queryRun.prompt() so he can modify ranges.

RE: [development-axapta] InventSerial.DEL_configId

2005-01-07 Thread Preston A. Larimer
Tony, to further Jesper's point, if 2.5 was working as it should, any configID you had associated with an inventSerialID should have been represented on the inventTrans and inventSum tables (or one of the other 38 or so tables represented in the upgrade method) in the form of the inventDimID

RE: [development-axapta] How to periodically refresh data source

2005-01-07 Thread Malcolm Burtt
Hi Add some code like this to the executeQuery() method of your data source timer = this.setTimeOut(executeQuery, RefreshMinutes * 6, true); This will set up a new refresh timer each time the query is executed so that it reloads your data every RefreshMinutes minutes. The