質問

通常のSharePointページで組織図(組織ブラウザ)を表示する方法特定のユーザーアカウントから起動することを設定することが可能ですか?

私のサイトの組織図はSilverlightを使用し、マネージャのユーザープロファイルプロパティの階層に基づいています。 これはO365でよりよく機能するようですが、敷地内には何も示していません。

役に立ちましたか?

解決

For your requirement you can make use of Organization Browser web part.

The OOTB feature of the Organization Browser relies on the manager fields in the Active Directory, so the hierarchy is built on it. People in the same team will share the same manager. The collegues will be shown on the same level (in the horizontal row) and you'll see people you report to (or your manager reports to) on the vertical column. You will also see in the same column people "under" you.

Have a look at the below links to configure it.

  1. http://social.technet.microsoft.com/Forums/sharepoint/en-US/22557919-5a26-4927-b962-4aa48ed78d0b/organization-browser-webpart?forum=sharepointgeneralprevious

  2. http://social.technet.microsoft.com/Forums/en-US/45f177c4-c159-4b43-9899-2468184efb98/organization-browser-web-part-to-show-whole-organization?forum=sharepointgeneralprevious

  3. http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d31d080f-3f13-4c5b-8ae5-68cb4418d7c0/organization-browser-web-part?forum=sharepointgeneralprevious

Or You can create your own Organization webpart using the following links,

  1. How to create an organizational chart with SharePoint and Office 2013

  2. Org Chart in SharePoint 2010 using Google API

  3. Silverlight Organization Chart.

他のヒント

Solved by adding the below content to a CEWP on the page with organization browser:

<script type="text/javascript">
function CreateHierarchyChartControl(parentId, profileId, type, persistControlId) {
  var i = profileId.indexOf("|");
  var claimsmode = profileId.substr(i-1,1);
  if((i >=0 ) & (claimsmode=="w"))
  {
   profileId = profileId.substr(i+1,profileId.length-i-1);
   var initParam = profileId + ',' + type + ',' + persistControlId;
   var host = document.getElementById(parentId);
   host.setAttribute('width', '100%');
   host.setAttribute('height', '100%');
   Silverlight.createObject('/_layouts/ClientBin/hierarchychart.xap',
    host,
    'ProfileBrowserSilverlightControl',
    {
     top: '30',
     width: '100%',
     height: '100%',
     version: '2.0',
     isWindowless: 'true',
     enableHtmlAccess: 'true'
    },
    {
     onLoad: OnHierarchyChartLoaded
    },
     initParam,
     null);
    }
  }
</script>`

where profileId (DOMAIN\user) sets the top-level profile for the organization browser (which is on the same page).

Reference:

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top