[development-axapta] AX4.0 Internal error number 25 in script

2010-08-16 Thread James Flavell
Dear all does anyone have any ideas for this error happening in batch
processing:

 



 



 

There was some hotfix for non SP for this error but we are running Ax4.0 SP2
so should be included.

 

We have basically the following batch jobs in 2 companies:

Alerts - change abd due date based every 10 mins

OLAP - 

Custom import/export of data -

 

Looking at the entries in the batch list the alerts ran at 21:10:29 and so
would only be running at 21:20 the next time. All the other tasks also were
not scheduled to run at the time it happened which was 21:10:48

 

I saw there was another hotfix for SP2 regarding sending email from AR/AP
module can get this error. The KB said it applied to the .NET connector but
we are not using that (unless it is by default used when sending email?).
But was wondering since alert is no doubt setup to send email notification
whether there might be something related to the area of email sending?

 

Has anyone else faced this error message as all batch jobs stop and the
client crashes when we go to the batch client and click OK?

 

As always a big thanks for taking the time to read this 

James

 



[Non-text portions of this message have been removed]



[development-axapta] Re: directory control on form

2010-08-16 Thread ramankt2001

Thanks Divakar.

In fact, there is a tutorial in forms demonstrating the concept.

--- In development-axapta@yahoogroups.com, Diwakar Reddy Atchi 
divakar_uni...@... wrote:

 What type is FilePath? Use the same type. Guess it's a string, use a 
 StringEdit control and set the ExtendedDataType propety to FilePath.
 
 
 
 
 
 From: ramankt2001 raman_...@...
 To: development-axapta@yahoogroups.com
 Sent: Wed, 4 August, 2010 12:19:26 PM
 Subject: [development-axapta] directory control on form
 
   
 We are on Axapta 3.0 SP3.
 
 I would like to provide the users the choice to specify a network share on a 
 form. 
 
 
 In a dialog, I can use: 
 dialogOutputDirectory = dialog.addFieldValue(typeid(FilePath), 
 outputDirectory)
 
 What control/statements would I use on the form?
 
 Thanks. 
 
 
 
 
 
 
 [Non-text portions of this message have been removed]





RE: [development-axapta] number of users per AOS

2010-08-16 Thread Pankaj Kant
Hi

One AOS with 300 users not a good idea at all
it will crash frequently and will have performanceissues as well

ideally a AOS can support 50-60  users effectively  you need to go for load 
balalncing option
and for supporting 300 users it will good to have 7 AOS

let me know if you need more info

best regards

pankaj


From: development-axapta@yahoogroups.com [development-axa...@yahoogroups.com] 
On Behalf Of pranam mukher [pranam_shub...@yahoo.co.in]
Sent: Friday, August 06, 2010 9:25 AM
To: axa knwoldge; dev ax
Subject: [development-axapta] number of users per AOS



Hi guys
I have a question.
If i have one AOS in a  production environment, and licences for 300 users, can 
it sustain the load?
if not how many users can access the AOS at a time?
any help on load balancing is much appreciated.

thanks
Pranam.




[Non-text portions of this message have been removed]







Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/development-axapta/join
(Yahoo! ID required)

* To change settings via email:
development-axapta-dig...@yahoogroups.com 
development-axapta-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
development-axapta-unsubscr...@yahoogroups.com

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[development-axapta] Re: number of users per AOS

2010-08-16 Thread GaryG
When I was reading about microsoft's massive build to test transaction 
processing they did 20 per AOS, I run about 30, probably depends on the 
processing/transactions per hour you are planning on doing.

--- In development-axapta@yahoogroups.com, pranam mukher pranam_shub...@... 
wrote:

 Hi guys
 I have a question. 
 If i have one AOS in a  production environment, and licences for 300 users, 
 can it sustain the load? 
 if not how many users can access the AOS at a time? 
 any help on load balancing is much appreciated. 
  
 thanks
 Pranam.
  
  
  
 
 
 
 [Non-text portions of this message have been removed]





[development-axapta] MS Dynamics Ax interview Quetions,,??

2010-08-16 Thread abhi_the_star
Hi all,

Can anyone suggest me where can I find the free download of ebook Microsoft 
Dynamics Ax Interview Quetions...??

Or please provide me the links where quetions and answers are available...

Abhishek



[development-axapta] select query and grid

2010-08-16 Thread ramankt2001
We are on Axapta 3.0 sp3.

I've a query, the guts of which is:

select T1.F1, T1.F2, T2.F3, T2.F4
from T1
where some-criteria
join T2
where some-other-criteria

I would like to present the results of this query (four fields) in a form's 
grid and iterate through the grid in button control's click method.

Is it possible?

Thanks.