RE: [development-axapta] Ax2009 and W2008

2009-11-17 Thread James Flavell
Thanks Jesper

 

Just for everyone's info it seems we had to reinstall the client on the
W2008 for some reason and no it seems okay.  Clients on other machines
didn't have the problem

 

Thanks

James

 

From: development-axapta@yahoogroups.com
[mailto:development-axa...@yahoogroups.com] On Behalf Of
jesper.joergen...@bertelsmann.de
Sent: 03 November 2009 20:34
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Ax2009 and W2008

 

  

Hallo James,

check the entries in the event log proir to your termination log entry.

Jesper

From: development-axapta@yahoogroups.com
mailto:development-axapta%40yahoogroups.com
[mailto:development-axapta@yahoogroups.com
mailto:development-axapta%40yahoogroups.com ] On Behalf Of James Flavell
Sent: Dienstag, 3. November 2009 11:53
To: development-axapta@yahoogroups.com
mailto:development-axapta%40yahoogroups.com 
Subject: [development-axapta] Ax2009 and W2008

Hi everyone

I know it is officially supported but has anyone had issue with W2008 (x64)
and AX2009?

Am getting event log:

The Dynamics AX Object Server 5.0$01- service terminated unexpectedly.
It has done this 1 time(s).

And the log also says it says is running on a OS that is not supported and
says W2003 SP1 is the supported os ..!!!???

I am running AX2009 SP1 with GLS and RU3

Thanks

James

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

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





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



[development-axapta] Ax3.0 SP6 physical value wrong

2009-11-17 Thread James Flavell
Hi everyone I have another urgent problem that I hope someone might be able
to shine some light on

 

We have AX3.0 SP6 with DIS/DIP for Norway

 

The Inventory physical report that has a column showing Physical Posted is
giving wrong values if we back date the report.  

Things we found:

1)  If we run it on today's date the values are correct but if we run
with a date in the past then the values are wrong.

2)  If we have not run any closing (i.e. no settlements) then back dated
report seems to be okay so it seems it is related to the settlements

 

Has anyone had similar problem or know of any fix that might exist?

Or does anyone have Ax3.0 SP6 and this column is working fine?

 

Appreciate any help can get on this before the auditors turn up.

Thanks

James

 

 



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



Re: [development-axapta] AX 2009 - Reporting Service- Error

2009-11-17 Thread TOM SEBASTIAN
 
Dear Reyaz,
 
Thanks for your quick reply,
 
I process all the dimensions and cube and restarted the Reporting Service and 
AOS but i have still the same error. I have a shared datasourse in reporting 
server the connection string is as following :
 
SharedLibrary.DynamicsAXOLAP
Provider=MSOLAP;Data source=localhost;Initial Catalog=Dynamics 
AX;Integrated Security=SSPI
 
In my Role center  all the KPI's are alos not working  it gives the following 
error
 
QuQuery (1, 196) The dimension '[Master Company Reporting Currency]' was not 
found in the cube when the string, [Master Company Reporting 
Currency].[Currency].[Local], was parsed.ery (1, 196) The dimension '[Master 
Company Reporting Currency]' was not found in the cube when the string, [Master 
Company Reporting Currency].[Currency].[Local], was parsed.
 
please reply
 
Thanks
Tom
 

--- On Mon, 16/11/09, reyaz ahamad reyaz_mc...@yahoo.co.in wrote:


From: reyaz ahamad reyaz_mc...@yahoo.co.in
Subject: Re: [development-axapta] AX 2009 - Reporting Service- Error
To: development-axapta@yahoogroups.com
Date: Monday, 16 November, 2009, 14:52


  




hi dear ur problem is from the analysis server .have u installed analysis 
serevr 
if u installed analysis server then u go to the sql server and connect to 
analysis server 
and process all the dimenssion and cube .This process will resolved ur problem.

Best Regards
Reyaz Ahamad    
CorporateServe Consulting  Outsourcing| 51, Moulsari Avenue, DLF Phase-3| 
Gurgaon 122 002
 Member of Microsoft’s Presidents Club 2009 
Web:www.corporatese rve.com | email: reyaz.ahamad@ corporateserve. com

--- On Sun, 15/11/09, TOM SEBASTIAN tomvaya...@yahoo. co.uk wrote:

From: TOM SEBASTIAN tomvaya...@yahoo. co.uk
Subject: [development- axapta] AX 2009 - Reporting Service- Error
To: AxaptaGroup development- axa...@yahoogrou ps.com
Date: Sunday, 15 November, 2009, 12:29 PM

  

Dear All,
 
I  sucessfully installed AX 2009, Reporting Services and Reporting Extension 
sucessfully. I can i aceess http://localhost: 81/Reports and http://localhost: 
81/Report Server.
 
I have deployed the AX reports  but while the SRS reports through AX  am 
getting this error
 
Error during processing of ‘AX_CompanyName’ report parameter. 
(rsReportParameterP rocessingError) 
 
Please reply 
 
Thanks
TS

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

The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. 
http://in.yahoo. com/

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









  

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



[development-axapta] Reading record level security programmatically

2009-11-17 Thread syed_thezero

Hi,

i want to read the record level security details programmatically for specific 
current user and its group in AX 2009 and apply the filter on a table. I wrote 
the following code but not successfull. Please correct me in this problem.

Thanks,
Sayeed

   SysRecordLevelSecurity srls;
UserGroupList   userGroupList;
UserGroupInfo   userGroupInfo;
UserInfouserInfo;
anytype any;
;

select userGroupList
   where userGroupList.userId == oalah;
select userGroupInfo
   where userGroupInfo.id == userGroupList.groupId;
select srls
   where srls.companyId == ajp  srls.groupId == userGroupList.groupId 
 srls.tabId ==  tablenum(CustTable);