SharePoint 사이트 알림 설정을 Power Query에서 나열
2015 단어 SharePointODataPowerQuery
개요
SharePoint 알림 설정, 개인 설정은 볼 수 있지만 사이트 목록을 보는 방법을 찾지 못했기 때문에 Power Query에서 나열한 메모
결과 예
방법
방법
Alerts 얻기
= OData.Feed("{サイトURL}/_api/web/alerts", null, [Implementation="2.0"])
<code>= OData.Feed((Excel.CurrentWorkbook(){[Name="ShareSettings"]}[Content]){0}[対象URL] & "/_api/web/alerts", null, [Implementation="2.0"])</code>
Users 얻기
= OData.Feed("{サイトURL}/_api/web/siteusers", null, [Implementation="2.0"])
<code>= OData.Feed((Excel.CurrentWorkbook(){[Name="ShareSettings"]}[Content]){0}[対象URL] & "/_api/web/siteusers", null, [Implementation="2.0"])</code>
Enum을 아직 이해하기 어렵기 때문에 Table에서 Enum을 정의하고 변환하면 조금 이해하기 쉽습니다.
description
how to display sharepoint alert settings by power query
참고 정보
Reference
이 문제에 관하여(SharePoint 사이트 알림 설정을 Power Query에서 나열), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/baku2san/items/4ee181c001b2510524af텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)