From b23ca68d14373d3b771307f23ef2852340e67d49 Mon Sep 17 00:00:00 2001 From: Maggie Sparkman <12401230+maggiesMSFT@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:26:49 -0800 Subject: [PATCH 1/6] Update service-automate-power-bi-report-export.md https://dev.azure.com/msft-skilling/Content/_workitems/edit/350294/ --- .../service-automate-power-bi-report-export.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md index 25835b90d0..e23d38562f 100644 --- a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md +++ b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md @@ -7,7 +7,7 @@ ms.reviewer: '' ms.service: powerbi ms.subservice: pbi-collaborate-share ms.topic: how-to -ms.date: 06/28/2024 +ms.date: 12/12/2024 LocalizationGroup: Get started --- # Export and email a Power BI report with Power Automate @@ -61,6 +61,9 @@ In this task, you create a simple flow from scratch. The flow exports a Power BI `https://app.powerbi.com/groups/workspaceGuid/reports/reportGuid/xxxxxxxxxx` + Something like this: + 'https://app.powerbi.com/groups/338cd931-b957-4ba6-a5fa-b0113dab53aa/reports/85ac7583-3bb2-4c2c-a1fa-5a4a875ba88c/ReportSection?ctid=72f988bf-86f1-41af-91ab-2d7cd011db47&experience=power-bi' + 12. Optionally, indicate a specific bookmark to display in the **Bookmark Name** field. You can find the bookmark name in the report URL after bookmarkGuid=, as shown in the example. Only *report* bookmarks are supported, not *personal* bookmarks. You can specify other parameters for the Power BI report. Find detailed descriptions of these parameters in the [Export to File for Power BI Reports](/connectors/powerbi/#export-to-file-for-power-bi-reports). `https://app.powerbi.com/groups/workspaceGuid/reports/reportGuid/ReportSection?bookmarkGuid=xxxxxxxxxx` From ed0c0f80eb376a0d88843d76db82fa583bac6533 Mon Sep 17 00:00:00 2001 From: Maggie Sparkman <12401230+maggiesMSFT@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:32:07 -0800 Subject: [PATCH 2/6] Update service-automate-power-bi-report-export.md fix format --- .../collaborate-share/service-automate-power-bi-report-export.md | 1 + 1 file changed, 1 insertion(+) diff --git a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md index e23d38562f..feea2d0024 100644 --- a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md +++ b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md @@ -62,6 +62,7 @@ In this task, you create a simple flow from scratch. The flow exports a Power BI `https://app.powerbi.com/groups/workspaceGuid/reports/reportGuid/xxxxxxxxxx` Something like this: + 'https://app.powerbi.com/groups/338cd931-b957-4ba6-a5fa-b0113dab53aa/reports/85ac7583-3bb2-4c2c-a1fa-5a4a875ba88c/ReportSection?ctid=72f988bf-86f1-41af-91ab-2d7cd011db47&experience=power-bi' 12. Optionally, indicate a specific bookmark to display in the **Bookmark Name** field. You can find the bookmark name in the report URL after bookmarkGuid=, as shown in the example. Only *report* bookmarks are supported, not *personal* bookmarks. You can specify other parameters for the Power BI report. Find detailed descriptions of these parameters in the [Export to File for Power BI Reports](/connectors/powerbi/#export-to-file-for-power-bi-reports). From ac80a2e679b7500ec4569de109e593776093f1fe Mon Sep 17 00:00:00 2001 From: RuiRomano Date: Tue, 7 Jan 2025 17:30:36 +0000 Subject: [PATCH 3/6] Deploy to Fabric docs, small refactor to programatic generation --- .../developer/projects/projects-overview.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/powerbi-docs/developer/projects/projects-overview.md b/powerbi-docs/developer/projects/projects-overview.md index fc701402c6..40d6aaf004 100644 --- a/powerbi-docs/developer/projects/projects-overview.md +++ b/powerbi-docs/developer/projects/projects-overview.md @@ -22,9 +22,9 @@ Power BI Desktop introduces a new way to author, collaborate, and save your proj Saving your work as a project has the following benefits: -- **Text editor support** - Item definition files are JSON formatted text files containing semantic model and report metadata. These files are publicly documented and human readable. While project files support simple text editing tools like Notepad, it's better to use a code editor like [Visual Studio Code (VS Code)](https://code.visualstudio.com/), which provides a rich editing experience including intellisense, validation, and Git integration. +- **Text editor support** - Item definition files are formatted text files containing semantic model and report metadata. These files are publicly documented and human readable. While project files support simple text editing tools like Notepad, it's better to use a code editor like [Visual Studio Code (VS Code)](https://code.visualstudio.com/), which provides a rich editing experience including intellisense, validation, and Git integration. -- **Programmatic generation and editing item definitions** - You can create scripts using the popular and easy to use [Tabular Model Scripting Language (TMSL)](/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference?view=power-bi-premium-current&preserve-view=true) , or create your own custom applications to make changes to your item definitions. Applications can be based on public documentation of the item definition schemas and/or client libraries. +- **Programmatic generation and editing item definitions** - You can programmatically generate and modify item definition text files, enabling batch operations such as updating all report pages visuals or adding a set of measures to each table. For semantic models, you can use the [Tabular Object Model (TOM)](/analysis-services/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) client library to deserialize the semantic model metadata, make programmatic modifications, and serialize it back to the files. - **Source control** - Power BI semantic model and report item definitions can be stored in a source control system, like Git. With Git, you can track version history, compare revisions (diff), and revert to previous versions. Source control can also unblock collaboration when using Power BI Desktop by using familiar collaboration mechanisms for resolving conflicts (merge) and reviewing changes (pull requests). To learn more, see [Version control in Git](/devops/develop/git/what-is-version-control). @@ -120,6 +120,17 @@ Schema details for the following files aren't documented. During **preview**, ch - SemanticModel\ - [diagramLayout.json](projects-dataset.md#diagramlayoutjson) +## Deploy to Fabric workspace + +When working with Power BI project files, you can deploy your content to a Fabric workspace using the following publishing mechanisms: + +- Use [Fabric Git Integration](/fabric/cicd/git-integration/intro-to-git-integration). +- Use [Fabric APIs](/fabric/articles/get-started/deploy-project). +- Use [Power BI Desktop publish](/power-bi/create-reports/desktop-upload-desktop-files) option. + +> [!NOTE] +> Publishing through [Power BI Desktop publish](/power-bi/create-reports/desktop-upload-desktop-files) uses a temporary PBIX file that is published to the service, similar to saving and publishing a PBIX file. Unlike other PBIP deployment options that only deploy metadata, this publishing method deploys both the metadata and the [local data cache](/power-bi/developer/projects/projects-dataset#pbicacheabf) of the semantic model being edited. + ### Model authoring You can make changes to the semantic model definition by using external tools in two ways: From dba462216771ca01a0eaebb98cf1d5fee8cd8398 Mon Sep 17 00:00:00 2001 From: Mona Berdugo <82447518+mberdugo@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:23:15 +0200 Subject: [PATCH 4/6] fixed link - Rui --- powerbi-docs/developer/projects/projects-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerbi-docs/developer/projects/projects-overview.md b/powerbi-docs/developer/projects/projects-overview.md index 40d6aaf004..a0e0fb9677 100644 --- a/powerbi-docs/developer/projects/projects-overview.md +++ b/powerbi-docs/developer/projects/projects-overview.md @@ -125,7 +125,7 @@ Schema details for the following files aren't documented. During **preview**, ch When working with Power BI project files, you can deploy your content to a Fabric workspace using the following publishing mechanisms: - Use [Fabric Git Integration](/fabric/cicd/git-integration/intro-to-git-integration). -- Use [Fabric APIs](/fabric/articles/get-started/deploy-project). +- Use [Fabric APIs](/rest/api/fabric/articles/get-started/deploy-project). - Use [Power BI Desktop publish](/power-bi/create-reports/desktop-upload-desktop-files) option. > [!NOTE] From 9c969e977ae9f53a2043c70aef7ed35ffd3335eb Mon Sep 17 00:00:00 2001 From: David Iseminger Date: Wed, 8 Jan 2025 10:32:19 -0800 Subject: [PATCH 5/6] Add note per PM request --- .../create-reports/desktop-automatic-page-refresh.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/powerbi-docs/create-reports/desktop-automatic-page-refresh.md b/powerbi-docs/create-reports/desktop-automatic-page-refresh.md index 5a6e0abcf7..0c9d6183e4 100644 --- a/powerbi-docs/create-reports/desktop-automatic-page-refresh.md +++ b/powerbi-docs/create-reports/desktop-automatic-page-refresh.md @@ -8,7 +8,7 @@ ms.custom: ms.service: powerbi ms.subservice: pbi-reports-dashboards ms.topic: how-to -ms.date: 06/12/2024 +ms.date: 01/08/2025 LocalizationGroup: Connect to data --- @@ -203,6 +203,10 @@ This table describes with more detail where this feature is available and the li 1. *FI: Fixed interval* 2. *CD: Change detection* +> [!IMPORTANT] +> *Admin override* can only increase the refresh interval, and can't be used to set it below the minimum interval. + + > [!WARNING] > We have a known issue when connected from Power BI Desktop to Analysis Services or Power BI semantic models and the refresh interval is 30 minutes or more. Visuals in a report page might show an error after 30 minutes. From 0ca7a92d71ffc3cc26ad34ec57c9847aa0c03d2b Mon Sep 17 00:00:00 2001 From: Maggie Sparkman <12401230+maggiesMSFT@users.noreply.github.com> Date: Wed, 8 Jan 2025 11:46:41 -0800 Subject: [PATCH 6/6] Fix markdown formatting for Power BI URL --- .../service-automate-power-bi-report-export.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md index feea2d0024..f353db01e5 100644 --- a/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md +++ b/powerbi-docs/collaborate-share/service-automate-power-bi-report-export.md @@ -63,7 +63,7 @@ In this task, you create a simple flow from scratch. The flow exports a Power BI Something like this: - 'https://app.powerbi.com/groups/338cd931-b957-4ba6-a5fa-b0113dab53aa/reports/85ac7583-3bb2-4c2c-a1fa-5a4a875ba88c/ReportSection?ctid=72f988bf-86f1-41af-91ab-2d7cd011db47&experience=power-bi' + `https://app.powerbi.com/groups/338cd931-b957-4ba6-a5fa-b0113dab53aa/reports/85ac7583-3bb2-4c2c-a1fa-5a4a875ba88c/ReportSection?ctid=72f988bf-86f1-41af-91ab-2d7cd011db47&experience=power-bi` 12. Optionally, indicate a specific bookmark to display in the **Bookmark Name** field. You can find the bookmark name in the report URL after bookmarkGuid=, as shown in the example. Only *report* bookmarks are supported, not *personal* bookmarks. You can specify other parameters for the Power BI report. Find detailed descriptions of these parameters in the [Export to File for Power BI Reports](/connectors/powerbi/#export-to-file-for-power-bi-reports).