惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
B
Blog
L
LangChain Blog
Y
Y Combinator Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
量子位
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
D
Docker
小众软件
小众软件
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家

博客园 - Jacky Xu

Office Excel Add-ins installation for AX 2012 and Dynamics AX 2012 clients reinstalltion Develop a Dynamics AX2012 Report by Visual Studio 2010 Codes Permission Management in AX 2012 Create a security policy in Dynamics AX2012 How to use a shared configuration file& Security configuration example in Dynamics AX 2012 Security management in Dynamics AX 2012 Dynamics AX2012 Installation& AOS (Cluster) configuration on Windows 7 Office 2007 Re-installed issue Delete printer sessions on Terminal server for users Launch AX2012 Virtual Machine Change Tracking -- SQL Server 2008 new feature FILESTREAM -- SQL Server2008 New Feature Don't use SQL keyword as your feild name of a table Reports development in Axapta 3 记忆一些SQL语句 终端服务器许可问题 Can't access maintenance plan because Agent XPs component is turned off as part of the security configuration on sql2005 SQL Error log/Event ID(17890): A significant part of sql server process memory has been paged out. This may result.... command命令大全(转自http://blog.dhedu.gov.cn/u/72/archives/2009/14290.html)
Publish AX reports in AX2012 + SQL2008
Jacky Xu · 2011-11-16 · via 博客园 - Jacky Xu

First, you should insure SSRS installed and AX2012 installed correctly.

And configure it in AX2012->Sys Admin module->Setup->BI->Reporting services->Reports Server.

1, SSRS services account should have administrator permission (Local server administrator permission)

2, This account also added into AX2012 as a administrator

3, Configure its permission on http://localhost/reports (Open IE as a administrator)

  --Role center: Content Manager

  --Site configuration/setting->Security: Make the account is system administrator

When you open report manager but if it reported the error: unable to connect the remote server.

You need add DNS in your hosts file such as IP HostNme

127.0.0.1 localhost

YourIP      YourHostName

3, Insure Remote Registry services is running

4, Run windows powershell as a administrator and follow Microsoft's steps

Set-ExecutionPolicy Unrestricted

/*Confired above as Yes. */

$axmodulename ="Microsoft.Dynamics.AX.Framework.Management"
$axdllname = $axmodulename + ".dll"
$gacfolder = join-path $env:windir "assembly\GAC_MSIL"
$axdll = Get-ChildItem $gacfolder -Recurse -Include *.dll -Name $axdllname
$axdll = join-path $gacfolder $axdll
write-host "Importing AX ManaSalesgement module"
import-module $axdll

Publish-AXReport -ReportName SalesInvoice, SalesAnalysis, SalesConfirm

If no red errors and deployment completed, above AX2012 report shoud be published and you can see them:

http://localhost/Reports/Pages/Folder.aspx?ItemPath=%2fDynamicsAX&ViewMode=List

http://localhost/ReportServer?%2fDynamicsAX&rs:Command=ListChildren 

If you don't publish ax2012 reports, you can't use them in ax2012.

5, when you run reports in AX2012 and reported that init error, pls try to regenerate CIL in check list.