博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cannot see customize report on web analytics(Web analytics customize reports capability missing)
阅读量:4980 次
发布时间:2019-06-12

本文共 2327 字,大约阅读时间需要 7 分钟。

How to enable "Custom Report" automatically for Web Analytics 

Web analytics customize reports capability missing

Option1:

-- =====================

-- Helpdesk Template
-- =====================
-- Install feature
-- =====================
stsadm -o installfeature -filename
DataConnectionLibrary\Feature.xml
stsadm -o installfeature -filename WACustomReports\Feature.xml
stsadm -o installfeature -filename SignaturesWorkflow\Feature.xml
-- activate feature
-- =====================
stsadm -o activatefeature -id 00bfea71-dbd7-4f72-b8cb-da7ac0440130 -url
-- Web Analytics Customize Reports functionality
stsadm -o activatefeature -id af6d9aec-7c38-4dda-997f-cc1ddbb87c92 -url
-- Collect Signatures Workflow
stsadm -o activatefeature -id 6c09612b-46af-4b2f-8dfc-59185c962a29 -url

Option2:

1. Root cause: The root cause is there is hidden site feature named WACustomReportsneeds to be enabled in order for users to see "Custom Report" button. You could check this from 14 hive directory

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\FEATURES\WACustomReports.

 

<Feature  Id="AF6D9AEC-7C38-4dda-997F-CC1DDBB87C92"

          Title="$Resources:wacore,WACustomReportsFeatureTitle"

          Description="$Resources:wacore,WACustomReportsFeatureDesc"

          Version="14.0.0.0"

          Hidden="TRUE" 

          Scope="Site"

          SolutionId="7ED6CD55-B479-4EB7-A529-E99A24C10BD3"

          ReceiverAssembly="Microsoft.Office.Server.WebAnalytics.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"

          ReceiverClass="Microsoft.Office.Server.WebAnalytics.CustomReportsFeature" 

          xmlns="http://schemas.microsoft.com/sharepoint/">

</Feature>

 

 2. Procedure to check. You could use the following powershell commend to verify whether you have this feature enabled on site collection.

 

 

Get-SPFeature -Site

 

If you have the feature enabled, you will see the following entry.

DisplayName                                               Id                                              Scope

-----------                                                   --                                               -----

WACustomReports                af6d9aec-7c38-4dda-997f-cc1ddbb87c92     Site

 

 

3. Commend to fix this if not already activated. Here is the commend to enable this feature so users could have the "Custom Report" button.

 

 

Enable-SPFEATURE WACustomReports –URL

 

 

Now you should have the "Custom Reportyou could enjoy to use. We were working with Microsoft how we . There is a thread on this already from MSDN.

转载于:https://www.cnblogs.com/csts/archive/2013/03/05/2943778.html

你可能感兴趣的文章
Java打包可执行jar包 包含外部文件
查看>>
Windows Phone开发(37):动画之ColorAnimation
查看>>
js中escape,encodeURI,encodeURIComponent 区别(转)
查看>>
sass学习笔记-安装
查看>>
Flask (二) cookie 与 session 模型
查看>>
修改添加网址的教程文件名
查看>>
[BZOJ 1017][JSOI2008]魔兽地图DotR(树形Dp)
查看>>
裁剪图片
查看>>
数据结构实习 problem L 由二叉树的中序层序重建二叉树
查看>>
VS中展开和折叠代码
查看>>
如何确定VS编译器版本
查看>>
设置PL/SQL 快捷键
查看>>
个人阅读作业7
查看>>
转载:深入浅出Zookeeper
查看>>
GMA Round 1 新程序
查看>>
node anyproxy ssi简易支持
查看>>
PHP函数 ------ ctype_alnum
查看>>
HDU 1102 Constructing Roads
查看>>
多线程之ThreadLocal类
查看>>
OC语言description方法和sel
查看>>