모니터링 서버: Microsoft Office PowerPoint로 내보내기
업데이트: 2009-04-30
대시보드를 볼 수 있는 최종 사용자는 정보 공유를 위해 데이터 또는 데이터 뷰를 대시보드에서 Microsoft Office PowerPoint로 내보낼 수 있습니다.
시스템 요구 사항
대시보드 콘텐츠를 PowerPoint로 내보내려면 모니터링 서버를 실행하는 컴퓨터에 .NET Framework 3.0이 설치되어 있어야 합니다. 서버 요구 사항은 이것뿐입니다.
클라이언트 컴퓨터의 경우 모니터링 서버에서 생성한 PowerPoint 파일은 Open XML 파일 형식입니다. 이 형식으로 된 PowerPoint 파일은 새 파일 확장명(.pptx)으로 저장됩니다. 이 새 파일 형식은 Microsoft 다운로드 센터에서 제공하는 Word, Excel 및 PowerPoint 2007 파일 형식용 Microsoft Office 호환 기능 팩이 설치되어 있는 PowerPoint 클라이언트(PowerPoint 2000, PowerPoint 2002 및 PowerPoint 2003) 또는 Office 2007 클라이언트에서만 읽을 수 있습니다.
모니터링 서버에서는 다중 보고서 뷰가 지원됩니다. 이러한 뷰에는 성과 기록표, 분석 차트, 분석 표, 전략 맵, Reporting Services, Excel 서비스, 피벗 차트, 피벗 표, 웹 보고서, 경향 차트 등이 있습니다. PowerPoint로 내보내는 기능은 다음 표에 나와 있는 것처럼 이러한 뷰 중 일부에 대해서만 지원됩니다.
보고서 뷰 | PowerPoint로 내보낼 수 있는지 여부 | 설명 |
---|---|---|
성과 기록표 |
예 |
|
분석 차트 |
예 |
|
분석 표 |
예 |
|
전략 맵 |
예 |
기본적으로 지원 안 됨 |
Reporting Services |
||
Excel 서비스 |
||
피벗 차트 |
예 |
|
피벗 표 |
||
경향 차트 |
예 |
|
웹 보고서 |
전략 맵에 대한 지원 사용
기본적으로 보고서 뷰 전략 맵은 PowerPoint로 내보낼 수 없습니다. Visio를 통해 전략 맵을 지원하도록 모니터링 서버 컴퓨터를 이미 설정한 경우에만 전략 맵을 PowerPoint로 내보낼 수 있습니다.
전략 맵에 대한 지원 기능을 사용하려면 SharePoint 사이트의 Web.config 파일을 변경해야 합니다.
다음은 Web.config 파일의 모니터링 서버 설정에서 발췌한 코드입니다.
<appSettings>
<add key="FeedCacheTime" value="300" />
<add key="FeedPageUrl" value="/_layouts/feed.aspx?" />
<add key="FeedXsl1" value="/Style Library/Xsl Style Sheets/Rss.xsl" />
<add key="ReportViewerMessages" value="Microsoft.SharePoint.Portal.Analytics.UI.ReportViewerMessages, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
<add key="Bpm.ConnectionString" value="Data Source=localhost;Initial Catalog=PPSMonitoring;Integrated Security=True" />
<add key="Bpm.ConnectionPerUser" value="False" />
<add key="Bpm.ElementMemoryCacheTime" value="5" />
<add key="Bpm.EnableAnalyticQueryLogging" value="False" />
<add key="Bpm.UseASCustomData" value="False" />
<add key="Bpm.IndicatorImageCacheTime" value="10" />
<add key="Bpm.DataSourceQueryTimeout" value="300" />
<add key="ExportToExcelEnabledControls" value="PivotChart,SqlReport,TrendAnalysisChart,Scorecard,OLAPGrid,OLAPChart"
<add key="ExportToPowerPointEnabledControls" value="PivotChart,TrendAnalysisChart,Scorecard,OLAPGrid,OLAPChart" />
/>
변경해야 하는 요소는 ExportToPowerPointEnabledControls
입니다. 전략 맵을 사용하려면 요소 값에 StrategyMap
을 추가해야 합니다.
예:
value="PivotChart,SqlReport,TrendAnalysisChart,Scorecard,OLAPGrid,OLAPChart,StrategyMap" />
.