zoukankan      html  css  js  c++  java
  • Cannot see customize report on web analytics(Web analytics customize reports capability missing)

    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
    http://sitioweb

    -- Web Analytics Customize Reports functionality

    stsadm -o activatefeature -id af6d9aec-7c38-4dda-997f-cc1ddbb87c92 -url
    http://sitioweb

    -- Collect Signatures Workflow

    stsadm -o activatefeature -id 6c09612b-46af-4b2f-8dfc-59185c962a29 -url
    http://sitioweb

    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 http://sitecollectionurl

     

    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 http://sitecollectionURL

     

     

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

  • 相关阅读:
    获取最近一周
    git设置个人信息
    ajax的content-download时间过慢问题的解决与思考
    element UI table中字符太多
    git 合并代码冲突最终解决办法
    thinkphp swoole 的使用
    vue elemnet 二进制文件上传
    Python+Selenium+Chrome 笔记(2)Selenium的Hello World
    chrome 自动测试插件
    php-fpm 错误日志 与 php 错误日志的用法
  • 原文地址:https://www.cnblogs.com/csts/p/2943778.html
Copyright © 2011-2022 走看看