From 7991230aea1eb0edb192cdcbb16a1beb68df3c4e Mon Sep 17 00:00:00 2001 From: Joshua <61959453+mynjj@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:52:42 +0200 Subject: [PATCH] Uptaking the refactored Power BI synch engine for the OOB apps (#6763) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Introduce the `PBI Report Setup` enum and interface to represent Power BI report app configurations, replacing raw field IDs with strongly-typed enum values - Refactor all embedded report pages (~120) to use the new `OpenPowerBIEmbeddedReportPageValidation` procedure, which consolidates `EnsureUserAcceptedPowerBITerms` + `GetReportIdAndEnsureSetup` + deployment-in-progress prompts into a single call - Adds a new wizard experience for deploying reports when selecting an unconfigured embedded report page (for evaluation companies) - Add `FindReportSetup` to resolve a `Deployable Report` type back to its `PBI Report Setup` interface, eliminating repeated ordinal iteration in subscribers and the deployments page extension - Fix a pre-existing bug where the ABC Analysis page (Inventory) was incorrectly referencing the Sales report ID Fixes [AB#600448](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/600448) --------- Co-authored-by: Joshua Martínez Pineda Co-authored-by: Claude Opus 4.6 (1M context) Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> --- .../.resources}/Finance app.pbix | Bin .../.resources}/Inventory Valuation app.pbix | Bin .../.resources}/Inventory app.pbix | Bin .../.resources}/Manufacturing app.pbix | Bin .../.resources}/Projects app.pbix | Bin .../.resources}/Purchase app.pbix | Bin .../.resources}/Sales app.pbix | Bin .../.resources}/Sustainability app.pbix | Bin .../Core/Codeunits/Initialization.Codeunit.al | 14 +- .../Codeunits/PowerBIReportSetup.Codeunit.al | 83 + .../Core/PBIReportDeploymentsExt.PageExt.al | 68 + .../Core/Pages/PowerBIAssistedSetup.Page.al | 44 +- .../Core/Pages/PowerBISelectionLookup.Page.al | 1 + .../PowerBiReportBasic.PermissionSet.al | 1 + .../Core/PowerBIDeployableReport.EnumExt.al | 41 + .../App/Core/PowerBISubscribers.Codeunit.al | 29 + .../PBIDeploymentBufferExt.TableExt.al | 19 + .../PBIFinanceApp.Codeunit.al | 50 + .../PBIInventoryApp.Codeunit.al | 50 + .../PBIInventoryValApp.Codeunit.al | 50 + .../PBIManufacturingApp.Codeunit.al | 50 + .../PBIProjectsApp.Codeunit.al | 50 + .../PBIPurchasesApp.Codeunit.al | 50 + .../PBIReportDeploySelection.Page.al | 146 + .../ReportDeployments/PBIReportSetup.Enum.al | 35 + .../PBIReportSetup.Interface.al | 9 + .../ReportDeployments/PBISalesApp.Codeunit.al | 50 + .../Core/Tables/PowerBIReportsSetup.Table.al | 7 + .../Embedded/AgedPayablesBackDating.Page.al | 5 +- .../AgedReceivablesBackDating.Page.al | 5 +- .../Embedded/AverageCollectionPeriod.Page.al | 5 +- .../Embedded/BalanceSheetbyMonth.Page.al | 5 +- .../Finance/Embedded/BudgetComparison.Page.al | 5 +- .../DetailedCustLedgerEntries.Page.al | 5 +- .../DetailedVendorLedgerEntries.Page.al | 5 +- .../App/Finance/Embedded/EBITDA.Page.al | 5 +- .../Finance/Embedded/FinanceReport.Page.al | 5 +- .../Embedded/FinancialOverview.Page.al | 6 +- .../Embedded/IncomeStatementbyMonth.Page.al | 5 +- .../Embedded/LatePaymentsReceivables.Page.al | 5 +- .../App/Finance/Embedded/Liabilities.Page.al | 5 +- .../Finance/Embedded/LiquidityKPIs.Page.al | 5 +- .../PowerBIGeneralLedgEntries.Page.al | 5 +- .../Finance/Embedded/Profitability.Page.al | 5 +- .../InventoryValuationOverview.Page.al | 5 +- .../InventoryValuationReport.Page.al | 5 +- .../InventoryValuationbyItem.Page.al | 5 +- .../InventoryValuationbyLoc.Page.al | 5 +- .../BinContentsbyItemTracking.Page.al | 5 +- .../Inventory/GrossRequirement.Page.al | 5 +- .../Inventory/InventoryForecasting.Page.al | 5 +- .../Inventory/InventoryOverview.Page.al | 5 +- .../Inventory/InventoryReport.Page.al | 5 +- .../Inventory/InventorybyItem.Page.al | 5 +- .../Inventory/InventorybyLocation.Page.al | 5 +- .../Embedded/Inventory/InventorybyLot.Page.al | 5 +- .../Inventory/InventorybySerialNo.Page.al | 5 +- .../Inventory/ItemAvailability.Page.al | 5 +- .../Inventory/PowerBIABCAnalysis.Page.al | 5 +- .../Inventory/PowerBIBinContents.Page.al | 5 +- .../PurchaseandSalesQuantity.Page.al | 5 +- .../Inventory/ScheduledReceipt.Page.al | 5 +- .../Embedded/AllocatedHours.Page.al | 5 +- .../Embedded/AverageProductionsTimes.Page.al | 5 +- .../Embedded/CapacityVariance.Page.al | 5 +- .../Embedded/ConsumptionVariance.Page.al | 5 +- .../Embedded/ExpectedCapacityNeed.Page.al | 5 +- .../FinishedProdOrderBreakdown.Page.al | 5 +- .../Embedded/ManufacturingReport.Page.al | 5 +- .../Embedded/PBIMachineCenterLoad.Page.al | 5 +- .../PBIMachineCenterStatistics.Page.al | 5 +- .../Embedded/PBIWorkCenterStatistics.Page.al | 5 +- .../PowerBIReleasedProdOrders.Page.al | 5 +- .../Embedded/PowerBIWorkCenterLoad.Page.al | 5 +- .../Embedded/ProdOrderList.Page.al | 5 +- .../Embedded/ProdOrderRoutingsGantt.Page.al | 5 +- .../Embedded/ProductionOrderOverview.Page.al | 5 +- .../Embedded/ProductionOrderWIP.Page.al | 5 +- .../Embedded/ProductionScrap.Page.al | 5 +- .../Embedded/ProjectInvdSalesbyCust.Page.al | 5 +- .../ProjectInvoicedSalesbyType.Page.al | 5 +- .../ProjectPerformancetoBudget.Page.al | 5 +- .../Embedded/ProjectProfitability.Page.al | 5 +- .../Embedded/ProjectRealization.Page.al | 5 +- .../Projects/Embedded/ProjectTasks.Page.al | 5 +- .../Projects/Embedded/ProjectTimeline.Page.al | 5 +- .../Embedded/ProjectsOverview.Page.al | 5 +- .../Projects/Embedded/ProjectsReport.Page.al | 5 +- .../Embedded/DailyPurchases.Page.al | 5 +- .../Embedded/KeyPurchaseInfluencers.Page.al | 5 +- .../Embedded/PurchActualvsBudgetAmt.Page.al | 5 +- .../Embedded/PurchActualvsBudgetQty.Page.al | 5 +- .../Embedded/PurchaseForecasting.Page.al | 5 +- .../Embedded/PurchaseQuoteOverview.Page.al | 5 +- .../Embedded/PurchaseReturnOverview.Page.al | 5 +- .../Embedded/PurchasesDecomposition.Page.al | 5 +- .../PurchasesMovingAnnualTotal.Page.al | 5 +- .../Embedded/PurchasesMovingAverages.Page.al | 5 +- .../Embedded/PurchasesOverview.Page.al | 5 +- .../PurchasesPeriodOverPeriod.Page.al | 5 +- .../Embedded/PurchasesReport.Page.al | 5 +- .../Embedded/PurchasesYearOverYear.Page.al | 5 +- .../Embedded/PurchasesbyItem.Page.al | 5 +- .../Embedded/PurchasesbyLocation.Page.al | 5 +- .../Embedded/PurchasesbyPurchaser.Page.al | 5 +- .../Embedded/PurchasesbyVendor.Page.al | 5 +- .../Embedded/VendorQualityAnalysis.Page.al | 5 +- .../Embedded/CustomerRetentionHistory.Page.al | 5 +- .../CustomerRetentionOverview.Page.al | 5 +- .../App/Sales/Embedded/DailySales.Page.al | 5 +- .../Embedded/KeySalesInfluencers.Page.al | 5 +- .../Embedded/OpportunityOverview.Page.al | 5 +- .../Embedded/ReturnOrderOverview.Page.al | 5 +- .../Embedded/SalesActualvsBudgetQty.Page.al | 5 +- .../Sales/Embedded/SalesDecomposition.Page.al | 5 +- .../Sales/Embedded/SalesDemographics.Page.al | 5 +- .../Sales/Embedded/SalesForecasting.Page.al | 5 +- .../Sales/Embedded/SalesMonthToDate.Page.al | 5 +- .../Embedded/SalesMovingAnnualTotal.Page.al | 5 +- .../Sales/Embedded/SalesMovingAverage.Page.al | 5 +- .../App/Sales/Embedded/SalesOverview.Page.al | 5 +- .../Embedded/SalesPeriodOverPeriod.Page.al | 5 +- .../Sales/Embedded/SalesQuoteOverview.Page.al | 5 +- .../App/Sales/Embedded/SalesReport.Page.al | 5 +- .../Sales/Embedded/SalesbyCustomer.Page.al | 5 +- .../App/Sales/Embedded/SalesbyItem.Page.al | 5 +- .../Sales/Embedded/SalesbyLocation.Page.al | 5 +- .../Sales/Embedded/SalesbyProjects.Page.al | 5 +- .../Sales/Embedded/SalesbySalesperson.Page.al | 5 +- .../Embedded/CurrentUtilization.Page.al | 5 +- .../Embedded/HistoricalUtilization.Page.al | 5 +- .../Embedded/SalesActualvsBudgetAmt.Page.al | 5 +- src/Apps/W1/PowerBIReports/App/app.json | 11 +- .../Subscription Billing app.Report/.platform | 11 - ...Dynamics_365_Busines45845983759727005.json | 3355 ------- .../SharedResources/BaseThemes/CY19SU12.json | 430 - .../definition.pbir | 9 - ...Bookmark15eb889e4059c3146371.bookmark.json | 35 - ...Bookmark2556dbd13d90b398a787.bookmark.json | 35 - ...Bookmark496226472d24527c5e69.bookmark.json | 35 - ...Bookmark4c54ebcb0eb024e967b5.bookmark.json | 35 - ...Bookmark6746518f3cb530dd9a83.bookmark.json | 38 - ...Bookmark6837f6cd2e84a77e9b8e.bookmark.json | 35 - ...Bookmark7acc4dd5c7523a1e4003.bookmark.json | 35 - ...Bookmark7fcb39a12a27604d4d10.bookmark.json | 35 - ...Bookmarka9652147edcc8bce4301.bookmark.json | 35 - ...Bookmarkb27f7bff097c6d0905d6.bookmark.json | 35 - ...Bookmarkcddf9bad46110d655e76.bookmark.json | 35 - ...Bookmarke7692ddf63b3b5b08d0c.bookmark.json | 35 - ...Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json | 35 - .../definition/bookmarks/bookmarks.json | 44 - .../pages/04fa320747962435bf38/page.json | 317 - .../visuals/1a3b5d1098ab76056c17/visual.json | 77 - .../visuals/1e95b10309c4e42a5283/visual.json | 84 - .../visuals/3c05c5768aea4ba3404e/visual.json | 400 - .../visuals/48d196200d424e20ce04/visual.json | 400 - .../visuals/771ff56ad0a8e130d4c0/visual.json | 152 - .../visuals/81e5ce20951c8000b905/visual.json | 181 - .../visuals/9536dacfc2aa77140dd8/visual.json | 149 - .../visuals/a836edc66620c17c1891/visual.json | 179 - .../visuals/b10d81226954007e1ab3/visual.json | 312 - .../visuals/e08576f891b517a9d36f/mobile.json | 11 - .../visuals/e08576f891b517a9d36f/visual.json | 77 - .../visuals/e912627a8c8c0391b651/visual.json | 257 - .../visuals/f83bd8b3a001e962a80a/visual.json | 244 - .../visuals/ff2e42de0c29c48402e1/visual.json | 31 - .../pages/0ce6ac6d5da599bd30e9/page.json | 317 - .../visuals/3d604ae72626517949d9/visual.json | 155 - .../visuals/719df397e6cc53beabf1/visual.json | 204 - .../visuals/9c4bea6443937a7e7a06/visual.json | 77 - .../visuals/ab052cbc71ba2a434d64/visual.json | 473 - .../visuals/ca2ffd96ba4689505663/visual.json | 149 - .../visuals/e4e41d9fcbce74b5aefe/visual.json | 84 - .../pages/3e6e12bc48782630bd89/page.json | 301 - .../visuals/931b77fb5d9002d757c5/visual.json | 425 - .../visuals/966d95502e8600bf44da/visual.json | 167 - .../visuals/b287c65856d05a2a4ee2/visual.json | 77 - .../visuals/c29e1d030e61b14c0613/visual.json | 84 - .../visuals/d6d9c8a76e7172c54638/visual.json | 149 - .../visuals/e319e19fba8ec7b6db9b/visual.json | 181 - .../pages/500cc4cc7e93a1014a89/page.json | 338 - .../visuals/18d3cb15be48a7beef29/visual.json | 84 - .../visuals/a5e22fde03eea27e1de6/visual.json | 77 - .../visuals/aacc4cbb742b2008d5e1/visual.json | 183 - .../visuals/b98dd5b1501bb99b1349/visual.json | 61 - .../pages/6d4dcc705ea9db21d91b/page.json | 317 - .../visuals/156db0ae102713824310/visual.json | 107 - .../visuals/196ec74ac72d12cfda20/visual.json | 84 - .../visuals/54836f74150794daa699/visual.json | 149 - .../visuals/678c6887251c1a00779e/visual.json | 114 - .../visuals/cb6561b5bc2078de8295/visual.json | 705 -- .../visuals/ea2ac44c70c32799bd76/visual.json | 77 - .../pages/8bb19f8625a990d30466/page.json | 301 - .../visuals/12c7322794d81b03be78/visual.json | 227 - .../visuals/1a706a2e70539ce1b0bd/visual.json | 149 - .../visuals/6161988c51108e718976/visual.json | 336 - .../visuals/7e42a30884add435d50b/visual.json | 271 - .../visuals/b0be5cc5e9edc98f0a97/visual.json | 84 - .../visuals/f73a4ac1046ca739060e/visual.json | 77 - .../pages/926fa2c13070086cb999/page.json | 301 - .../visuals/07c346ab60012806c7b2/visual.json | 77 - .../visuals/34f7f6f2c05d7005195d/visual.json | 485 - .../visuals/861d05ceb5202cd55675/visual.json | 149 - .../visuals/9b6c01b944dea33000ba/visual.json | 394 - .../visuals/9e2bbe10ecf17ef20e70/visual.json | 84 - .../visuals/dcf0fad18eb044a66bbe/visual.json | 180 - .../pages/abe45c8964230489e801/page.json | 301 - .../visuals/4ed9e828ed0090701c77/visual.json | 77 - .../visuals/75e0e911681206ec6dec/visual.json | 107 - .../visuals/841baef364eda77416d0/visual.json | 149 - .../visuals/dbb73a8b605e3e451d72/visual.json | 114 - .../visuals/e8c8dae6f34d6271a9b5/visual.json | 84 - .../visuals/ebd44757c1b0f3212e63/visual.json | 750 -- .../pages/b0629e90d266c40d537d/page.json | 518 - .../visuals/1a1386014a848597f30a/visual.json | 84 - .../visuals/f3e0fe08092781c05516/visual.json | 313 - .../visuals/f40fc720c046316c4dc8/visual.json | 74 - .../visuals/f68fbd6fde8c38bc29dc/visual.json | 77 - .../pages/bf60e6bdba77e101902e/page.json | 333 - .../visuals/58289719eff95a01fdc5/visual.json | 84 - .../visuals/601b21c7ae14dcbe5d37/visual.json | 77 - .../visuals/62e7f3367d6719383b2d/visual.json | 149 - .../visuals/acb01350b168140848a6/visual.json | 265 - .../visuals/f9f64be080e7ddb75696/visual.json | 325 - .../pages/c27df17dadb4b21679dc/page.json | 317 - .../visuals/0d1543b1127b5d874382/visual.json | 149 - .../visuals/2bbb6c45bd05fa01a106/visual.json | 84 - .../visuals/2cbd558083b48e044e09/visual.json | 77 - .../visuals/74e4e1e1bc31ce696980/visual.json | 351 - .../visuals/a0b6eb87170b851e1752/visual.json | 339 - .../visuals/fd4cda9862254d9d906d/visual.json | 183 - .../pages/c9cd438d95e60a070e76/page.json | 317 - .../visuals/3273171b157ba5861e86/visual.json | 84 - .../visuals/43036724900e98d8049d/visual.json | 149 - .../visuals/ada27189a6d44850207e/visual.json | 411 - .../visuals/c611b875834a9472b524/visual.json | 77 - .../visuals/cb3b1e8658de8de900d5/visual.json | 183 - .../pages/cd6be9e72c3ae66a3dc4/page.json | 415 - .../visuals/37d594d05aac0424b752/visual.json | 668 -- .../visuals/3a20d071d0cb5fbc421d/visual.json | 312 - .../visuals/847143e04187b6cd2d9e/visual.json | 155 - .../visuals/97d778246ba270c640cc/visual.json | 77 - .../visuals/bbc79a94d4e771f2aca3/visual.json | 84 - .../visuals/ea99f23667400d548909/visual.json | 149 - .../pages/d280b52ee16d2a2b727d/page.json | 338 - .../visuals/23662959ee30b7cc71d3/visual.json | 61 - .../visuals/9d7e33db5e6a74857906/visual.json | 77 - .../visuals/cc12523be5633b50f04a/visual.json | 84 - .../visuals/dcbf6433020742aa41b8/visual.json | 184 - .../pages/daf7261ae50cb900681b/page.json | 316 - .../visuals/3e4eefafa4f5295c7ed8/visual.json | 84 - .../visuals/72a277cd79070e47e688/visual.json | 292 - .../visuals/800f2cd06183619479f5/visual.json | 168 - .../visuals/afd062858a1801ee2042/visual.json | 191 - .../visuals/e2dcb37d9e2aec6c0028/visual.json | 149 - .../visuals/edd558bc8b6ce3aa79b0/visual.json | 77 - .../pages/dcb80fad15d5002bc00d/page.json | 316 - .../visuals/04bd429e4709269ddca9/visual.json | 191 - .../visuals/15397bee55fba45e043e/visual.json | 84 - .../visuals/439cebade8580dd5b6cc/visual.json | 77 - .../visuals/45b46c949305c878cb03/visual.json | 149 - .../visuals/49957d9fe993e9f90626/visual.json | 168 - .../visuals/eca10e5446387c860e6d/visual.json | 304 - .../pages/ebdd708c02b5406dd277/page.json | 358 - .../visuals/1f5cabd68e3b6cc8154c/visual.json | 202 - .../visuals/29bad4dcc0a702aa0c35/visual.json | 332 - .../visuals/382c7a45084b273b5c6a/visual.json | 149 - .../visuals/39500444654b91e4a4e1/visual.json | 77 - .../visuals/4a8d2d587d10d5c1ac54/visual.json | 84 - .../visuals/4f8f3607891b08fc17c0/visual.json | 174 - .../visuals/81632f105a7b9c2c1744/visual.json | 1151 --- .../definition/pages/pages.json | 23 - .../definition/report.json | 74 - .../definition/version.json | 4 - .../.pbi/editorSettings.json | 7 - .../.platform | 11 - .../definition.pbism | 7 - .../definition/cultures/cs-CZ.tmdl | 731 -- .../definition/cultures/da-DK.tmdl | 731 -- .../definition/cultures/de-AT.tmdl | 731 -- .../definition/cultures/de-CH.tmdl | 731 -- .../definition/cultures/de-DE.tmdl | 876 -- .../definition/cultures/en-AU.tmdl | 731 -- .../definition/cultures/en-CA.tmdl | 731 -- .../definition/cultures/en-GB.tmdl | 731 -- .../definition/cultures/en-NZ.tmdl | 731 -- .../definition/cultures/en-US.tmdl | 8755 ----------------- .../definition/cultures/es-ES.tmdl | 834 -- .../definition/cultures/es-MX.tmdl | 731 -- .../definition/cultures/fi-FI.tmdl | 731 -- .../definition/cultures/fr-BE.tmdl | 731 -- .../definition/cultures/fr-CA.tmdl | 731 -- .../definition/cultures/fr-CH.tmdl | 731 -- .../definition/cultures/fr-FR.tmdl | 834 -- .../definition/cultures/is-IS.tmdl | 731 -- .../definition/cultures/it-CH.tmdl | 731 -- .../definition/cultures/it-IT.tmdl | 731 -- .../definition/cultures/nb-NO.tmdl | 731 -- .../definition/cultures/nl-BE.tmdl | 731 -- .../definition/cultures/nl-NL.tmdl | 731 -- .../definition/cultures/ru-RU.tmdl | 731 -- .../definition/cultures/sv-SE.tmdl | 731 -- .../definition/database.tmdl | 3 - .../definition/expressions.tmdl | 487 - .../definition/model.tmdl | 112 - .../definition/relationships.tmdl | 119 - .../definition/tables/Analysis Date.tmdl | 54 - .../definition/tables/COMPANY.tmdl | 26 - .../Calc. Group - Tec. Transformations.tmdl | 50 - ...me Intelligence for Calendar (Fiscal).tmdl | 37 - .../tables/Customer Billing Forecast.tmdl | 109 - .../tables/Customer Contract Changes.tmdl | 175 - .../tables/Customer Contract Deferrals.tmdl | 200 - .../tables/Customer Contract Line.tmdl | 490 - .../definition/tables/Customer Contract.tmdl | 65 - .../definition/tables/Customers.tmdl | 142 - .../definition/tables/Date Ref.tmdl | 2866 ------ .../definition/tables/Date Table Setup.tmdl | 374 - .../definition/tables/Date.tmdl | 1445 --- .../definition/tables/Dimension Sets.tmdl | 211 - .../definition/tables/ENVIRONMENT.tmdl | 26 - .../definition/tables/Is Released.tmdl | 47 - .../definition/tables/Item Category.tmdl | 142 - .../definition/tables/Item.tmdl | 87 - .../definition/tables/Localized Labels.tmdl | 277 - .../definition/tables/Meta Information.tmdl | 57 - .../definition/tables/Salesperson.tmdl | 39 - .../tables/Subscription Billing KPIs.tmdl | 930 -- .../definition/tables/Subscription.tmdl | 92 - .../definition/tables/Tec Dummy Values.tmdl | 31 - .../tables/Translated Localized Labels.tmdl | 1728 ---- .../definition/tables/UBB handling.tmdl | 27 - .../tables/Vendor Billing Forecast.tmdl | 110 - .../tables/Vendor Contract Deferrals.tmdl | 195 - .../tables/Vendor Contract Line.tmdl | 359 - .../definition/tables/Vendor Contract.tmdl | 54 - .../definition/tables/Vendors.tmdl | 133 - .../definition/tables/Working Days.tmdl | 40 - .../diagramLayout.json | 886 -- .../Subscription Billing app.pbip | 14 - .../Subscription Billing app.pbix | Bin 847868 -> 0 bytes .../Translations/LocProject.json | 6 +- .../SubscriptionBillingApp.cs-CZ.resx | 1622 --- .../SubscriptionBillingApp.da-DK.resx | 1622 --- .../SubscriptionBillingApp.de-AT.resx | 1622 --- .../SubscriptionBillingApp.de-CH.resx | 1622 --- .../SubscriptionBillingApp.de-DE.resx | 1622 --- .../SubscriptionBillingApp.en-AU.resx | 1622 --- .../SubscriptionBillingApp.en-CA.resx | 1622 --- .../SubscriptionBillingApp.en-GB.resx | 1622 --- .../SubscriptionBillingApp.en-NZ.resx | 1622 --- .../SubscriptionBillingApp.en-US.resx | 1682 ---- .../SubscriptionBillingApp.es-ES.resx | 1622 --- .../SubscriptionBillingApp.es-MX.resx | 1622 --- .../SubscriptionBillingApp.fi-FI.resx | 1622 --- .../SubscriptionBillingApp.fr-BE.resx | 1622 --- .../SubscriptionBillingApp.fr-CA.resx | 1622 --- .../SubscriptionBillingApp.fr-CH.resx | 1622 --- .../SubscriptionBillingApp.fr-FR.resx | 1622 --- .../SubscriptionBillingApp.is-IS.resx | 1622 --- .../SubscriptionBillingApp.it-CH.resx | 1622 --- .../SubscriptionBillingApp.it-IT.resx | 1622 --- .../SubscriptionBillingApp.nb-NO.resx | 1622 --- .../SubscriptionBillingApp.nl-BE.resx | 1622 --- .../SubscriptionBillingApp.nl-NL.resx | 1622 --- .../SubscriptionBillingApp.sv-SE.resx | 1622 --- 366 files changed, 945 insertions(+), 108174 deletions(-) rename src/Apps/W1/PowerBIReports/{Power BI Files/Finance app => App/.resources}/Finance app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Inventory Valuation app => App/.resources}/Inventory Valuation app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Inventory app => App/.resources}/Inventory app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Manufacturing app => App/.resources}/Manufacturing app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Projects app => App/.resources}/Projects app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Purchase app => App/.resources}/Purchase app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Sales app => App/.resources}/Sales app.pbix (100%) rename src/Apps/W1/PowerBIReports/{Power BI Files/Sustainability app => App/.resources}/Sustainability app.pbix (100%) create mode 100644 src/Apps/W1/PowerBIReports/App/Core/PBIReportDeploymentsExt.PageExt.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/PowerBIDeployableReport.EnumExt.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/PowerBISubscribers.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIDeploymentBufferExt.TableExt.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIFinanceApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryValApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIManufacturingApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIProjectsApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIPurchasesApp.Codeunit.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportDeploySelection.Page.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Enum.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Interface.al create mode 100644 src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBISalesApp.Codeunit.al delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/.platform delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/RegisteredResources/Microsoft_Dynamics_365_Busines45845983759727005.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/SharedResources/BaseThemes/CY19SU12.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition.pbir delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark15eb889e4059c3146371.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark2556dbd13d90b398a787.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark496226472d24527c5e69.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark4c54ebcb0eb024e967b5.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6746518f3cb530dd9a83.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6837f6cd2e84a77e9b8e.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7acc4dd5c7523a1e4003.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7fcb39a12a27604d4d10.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarka9652147edcc8bce4301.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkb27f7bff097c6d0905d6.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkcddf9bad46110d655e76.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarke7692ddf63b3b5b08d0c.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/bookmarks.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1a3b5d1098ab76056c17/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1e95b10309c4e42a5283/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/3c05c5768aea4ba3404e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/48d196200d424e20ce04/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/771ff56ad0a8e130d4c0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/81e5ce20951c8000b905/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/9536dacfc2aa77140dd8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/a836edc66620c17c1891/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/b10d81226954007e1ab3/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/mobile.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e912627a8c8c0391b651/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/f83bd8b3a001e962a80a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/ff2e42de0c29c48402e1/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/3d604ae72626517949d9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/719df397e6cc53beabf1/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/9c4bea6443937a7e7a06/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ab052cbc71ba2a434d64/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ca2ffd96ba4689505663/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/e4e41d9fcbce74b5aefe/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/931b77fb5d9002d757c5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/966d95502e8600bf44da/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/b287c65856d05a2a4ee2/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/c29e1d030e61b14c0613/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/d6d9c8a76e7172c54638/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/e319e19fba8ec7b6db9b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/18d3cb15be48a7beef29/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/a5e22fde03eea27e1de6/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/aacc4cbb742b2008d5e1/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/b98dd5b1501bb99b1349/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/156db0ae102713824310/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/196ec74ac72d12cfda20/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/54836f74150794daa699/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/678c6887251c1a00779e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/cb6561b5bc2078de8295/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/ea2ac44c70c32799bd76/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/12c7322794d81b03be78/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/1a706a2e70539ce1b0bd/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/6161988c51108e718976/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/7e42a30884add435d50b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/b0be5cc5e9edc98f0a97/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/f73a4ac1046ca739060e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/07c346ab60012806c7b2/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/34f7f6f2c05d7005195d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/861d05ceb5202cd55675/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9b6c01b944dea33000ba/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9e2bbe10ecf17ef20e70/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/dcf0fad18eb044a66bbe/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/4ed9e828ed0090701c77/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/75e0e911681206ec6dec/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/841baef364eda77416d0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/dbb73a8b605e3e451d72/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/e8c8dae6f34d6271a9b5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/ebd44757c1b0f3212e63/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/1a1386014a848597f30a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f3e0fe08092781c05516/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f40fc720c046316c4dc8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f68fbd6fde8c38bc29dc/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/58289719eff95a01fdc5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/601b21c7ae14dcbe5d37/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/62e7f3367d6719383b2d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/acb01350b168140848a6/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/f9f64be080e7ddb75696/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/0d1543b1127b5d874382/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2bbb6c45bd05fa01a106/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2cbd558083b48e044e09/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/74e4e1e1bc31ce696980/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/a0b6eb87170b851e1752/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/fd4cda9862254d9d906d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/3273171b157ba5861e86/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/43036724900e98d8049d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/ada27189a6d44850207e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/c611b875834a9472b524/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/cb3b1e8658de8de900d5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/37d594d05aac0424b752/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/3a20d071d0cb5fbc421d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/847143e04187b6cd2d9e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/97d778246ba270c640cc/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/bbc79a94d4e771f2aca3/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/ea99f23667400d548909/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/23662959ee30b7cc71d3/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/9d7e33db5e6a74857906/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/cc12523be5633b50f04a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/dcbf6433020742aa41b8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/3e4eefafa4f5295c7ed8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/72a277cd79070e47e688/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/800f2cd06183619479f5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/afd062858a1801ee2042/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/e2dcb37d9e2aec6c0028/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/edd558bc8b6ce3aa79b0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/04bd429e4709269ddca9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/15397bee55fba45e043e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/439cebade8580dd5b6cc/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/45b46c949305c878cb03/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/49957d9fe993e9f90626/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/eca10e5446387c860e6d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/1f5cabd68e3b6cc8154c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/29bad4dcc0a702aa0c35/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/382c7a45084b273b5c6a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/39500444654b91e4a4e1/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4a8d2d587d10d5c1ac54/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4f8f3607891b08fc17c0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/81632f105a7b9c2c1744/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/pages.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/report.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/version.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.pbi/editorSettings.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.platform delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition.pbism delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/cs-CZ.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/da-DK.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-AT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-DE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-AU.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-CA.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-GB.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-NZ.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-US.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-ES.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-MX.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fi-FI.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-BE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CA.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-FR.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/is-IS.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-IT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nb-NO.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-BE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-NL.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/ru-RU.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/sv-SE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/database.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/expressions.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/model.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/relationships.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Analysis Date.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/COMPANY.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Tec. Transformations.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Billing Forecast.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Changes.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Deferrals.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Line.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customers.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Ref.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Table Setup.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Dimension Sets.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/ENVIRONMENT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Is Released.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item Category.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Localized Labels.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Meta Information.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Salesperson.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription Billing KPIs.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Tec Dummy Values.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Translated Localized Labels.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/UBB handling.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Billing Forecast.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Deferrals.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Line.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendors.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Working Days.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/diagramLayout.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbip delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbix delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.cs-CZ.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.da-DK.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-AT.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-DE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-AU.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-CA.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-GB.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-NZ.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-US.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-ES.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-MX.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fi-FI.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-BE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CA.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-FR.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.is-IS.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-IT.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nb-NO.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-BE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-NL.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.sv-SE.resx diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Finance app/Finance app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Finance app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Finance app/Finance app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Finance app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Inventory Valuation app/Inventory Valuation app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Inventory Valuation app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Inventory Valuation app/Inventory Valuation app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Inventory Valuation app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Inventory app/Inventory app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Inventory app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Inventory app/Inventory app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Inventory app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Manufacturing app/Manufacturing app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Manufacturing app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Manufacturing app/Manufacturing app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Manufacturing app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Projects app/Projects app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Projects app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Projects app/Projects app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Projects app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Purchase app/Purchase app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Purchase app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Purchase app/Purchase app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Purchase app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sales app/Sales app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Sales app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Sales app/Sales app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Sales app.pbix diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Sustainability app.pbix similarity index 100% rename from src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbix rename to src/Apps/W1/PowerBIReports/App/.resources/Sustainability app.pbix diff --git a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/Initialization.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/Initialization.Codeunit.al index 3c313c3071..46d9510504 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/Initialization.Codeunit.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/Initialization.Codeunit.al @@ -25,9 +25,11 @@ codeunit 36951 Initialization DimensionSetEntriesJobQueueDescriptionLbl: Label 'Update Power BI Dimension Set Entries'; procedure SetupDefaultsForPowerBIReportsIfNotInitialized() + var + PBISetup: Record "PowerBI Reports Setup"; begin InsertGuidedExperience(); - InitializePBISetup(); + PBISetup.GetOrCreate(); InitializePBIWorkingDays(); InitializeStartingEndingDates(); InitializeDimensionSetEntryCollectionJobQueueEntry(); @@ -59,16 +61,6 @@ codeunit 36951 Initialization FinanceInstallationHandler.SetupDefaultsForPowerBIReportsIfNotInitialized(); end; - local procedure InitializePBISetup() - var - PBISetup: Record "PowerBI Reports Setup"; - begin - if not PBISetup.Get() then begin - PBISetup.Init(); - PBISetup.Insert(); - end; - end; - local procedure InitializeStartingEndingDates() var AccountingPeriod: Record "Accounting Period"; diff --git a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/PowerBIReportSetup.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/PowerBIReportSetup.Codeunit.al index 241f76627d..62f289c2e0 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/PowerBIReportSetup.Codeunit.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/PowerBIReportSetup.Codeunit.al @@ -7,6 +7,7 @@ namespace Microsoft.PowerBIReports; using System.Environment.Configuration; using System.Globalization; using System.Integration.PowerBI; +using System.Utilities; codeunit 36962 "Power BI Report Setup" { @@ -26,6 +27,47 @@ codeunit 36962 "Power BI Report Setup" end; end; + /// + /// Ensures that everything related to the specified Power BI report setup is properly configured, or directs to the appropriate setup pages. It errors if after the different prompts the report is not set up or in the process of being deployed. Typically used as a validation step before opening an embedded Power BI report page. + /// + /// The Power BI report setup to validate. + /// The GUID of the Power BI report as configured in the setup. + procedure OpenPowerBIEmbeddedReportPageValidation(PBIReportSetup: Enum "PBI Report Setup"): Guid + var + PowerBIAssistedSetup: Page "PowerBI Assisted Setup"; + DeploySelectionPage: Page "PBI Report Deploy. Selection"; + ConfiguredReportId: Guid; + ReportNotSetupErr: Label 'Your report has not been setup in PowerBI Reports Setup. You need to set up this report in order to view it.', Comment = '%1 = report name'; + begin + EnsureUserAcceptedPowerBITerms(); + ConfiguredReportId := GetConfiguredReportId(PBIReportSetup); + if not IsNullGuid(ConfiguredReportId) then + exit(ConfiguredReportId); + PromptOpeningReportDeploymentsWhenInProgress(PBIReportSetup); + if PowerBIAssistedSetup.RunModal() = Action::OK then + if PowerBIAssistedSetup.IsDeployOOBReportsSelected() then + DeploySelectionPage.RunModal(); + ConfiguredReportId := GetConfiguredReportId(PBIReportSetup); + if not IsNullGuid(ConfiguredReportId) then + exit(ConfiguredReportId); + PromptOpeningReportDeploymentsWhenInProgress(PBIReportSetup); + Error(ReportNotSetupErr) + end; + + local procedure GetConfiguredReportId(PBIReportSetup: Enum "PBI Report Setup"): Guid + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + RecRef: RecordRef; + ReportSetup: Interface "PBI Report Setup"; + ConfiguredReportId: Guid; + begin + PowerBIReportsSetup.GetOrCreate(); + RecRef.GetTable(PowerBIReportsSetup); + ReportSetup := PBIReportSetup; + ConfiguredReportId := RecRef.Field(ReportSetup.GetSetupReportIdFieldNo()).Value(); + exit(ConfiguredReportId) + end; + procedure GetReportIdAndEnsureSetup(ReportName: Text; FieldId: Integer) ReportId: Guid var AssistedSetup: Page "PowerBI Assisted Setup"; @@ -40,6 +82,47 @@ codeunit 36962 "Power BI Report Setup" end; end; + procedure FindReportSetup(DeployableReportType: Enum "Power BI Deployable Report"; var ReportSetup: Interface "PBI Report Setup"): Boolean + var + Ordinal: Integer; + begin + foreach Ordinal in Enum::"PBI Report Setup".Ordinals() do begin + ReportSetup := Enum::"PBI Report Setup".FromInteger(Ordinal); + if ReportSetup.GetDeployableReportType() = DeployableReportType then + exit(true); + end; + Clear(ReportSetup); + exit(false); + end; + + local procedure IsReportBeingDeployed(ReportSetup: Interface "PBI Report Setup"): Boolean + var + PowerBIDeployment: Record "Power BI Deployment"; + begin + if not PowerBIDeployment.Get(ReportSetup.GetDeployableReportType()) then + exit(false); + PowerBIDeployment.GetUploadStatus(); + exit(not (PowerBIDeployment.GetUploadStatus() in [ + Enum::"Power BI Upload Status"::Completed, + Enum::"Power BI Upload Status"::Failed, + Enum::"Power BI Upload Status"::Skipped, + Enum::"Power BI Upload Status"::PendingDeletion])); + end; + + local procedure PromptOpeningReportDeploymentsWhenInProgress(ReportSetup: Interface "PBI Report Setup"): Boolean + var + ConfirmMgt: Codeunit "Confirm Management"; + ReportDeployingQst: Label 'Your %1 report is being deployed to Power BI. Would you like to open the Power BI Report Deployments page to track the status?', Comment = '%1 = report name'; + DeployableReport: Interface "Power BI Deployable Report"; + begin + DeployableReport := ReportSetup.GetDeployableReportType(); + if IsReportBeingDeployed(ReportSetup) then begin + if ConfirmMgt.GetResponse(StrSubstNo(ReportDeployingQst, DeployableReport.GetReportName())) then + Page.Run(Page::"Power BI Report Deployments"); + Error(''); + end; + end; + local procedure GetReportId(FieldId: Integer): Guid var PowerBiReportsSetup: Record "PowerBI Reports Setup"; diff --git a/src/Apps/W1/PowerBIReports/App/Core/PBIReportDeploymentsExt.PageExt.al b/src/Apps/W1/PowerBIReports/App/Core/PBIReportDeploymentsExt.PageExt.al new file mode 100644 index 0000000000..9d96d90ffe --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/PBIReportDeploymentsExt.PageExt.al @@ -0,0 +1,68 @@ +namespace Microsoft.PowerBIReports; + +using System.Integration.PowerBI; + +pageextension 36965 "PBI Report Deployments Ext." extends "Power BI Report Deployments" +{ + layout + { + addafter(ReportName) + { + field(SetupConfigured; IsSetupConfigured) + { + ApplicationArea = All; + Caption = 'Linked in Setup'; + ToolTip = 'Specifies whether a Power BI report has been configured for this app in the Power BI Reports Setup.'; + Editable = false; + } + } + } + + actions + { + addlast(NavigateActions) + { + action(OpenPowerBIReportsSetup) + { + ApplicationArea = All; + Caption = 'Power BI Reports Setup'; + Image = Setup; + RunObject = page "PowerBI Reports Setup"; + ToolTip = 'Opens the Power BI Reports Setup page.'; + } + } + addlast(Category_Category2) + { + actionref(PowerBIReportsSetup_Promoted; OpenPowerBIReportsSetup) + { + } + } + } + + trigger OnAfterGetRecord() + begin + IsSetupConfigured := GetIsSetupConfigured(); + end; + + var + IsSetupConfigured: Boolean; + + local procedure GetIsSetupConfigured(): Boolean + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + SetupHelper: Codeunit "Power BI Report Setup"; + RecRef: RecordRef; + FldRef: FieldRef; + ReportSetup: Interface "PBI Report Setup"; + begin + if not PowerBIReportsSetup.Get() then + exit(false); + + if not SetupHelper.FindReportSetup(Rec."Report Id", ReportSetup) then + exit(false); + + RecRef.GetTable(PowerBIReportsSetup); + FldRef := RecRef.Field(ReportSetup.GetSetupReportIdFieldNo()); + exit(not IsNullGuid(FldRef.Value())); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBIAssistedSetup.Page.al b/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBIAssistedSetup.Page.al index f41ff8997f..d0a0711a69 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBIAssistedSetup.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBIAssistedSetup.Page.al @@ -208,6 +208,22 @@ page 36950 "PowerBI Assisted Setup" } } + group(StepReportChoice) + { + Visible = CurrentStep = Steps::ReportChoice; + group(ReportChoiceIntro) + { + Caption = 'Report Setup'; + InstructionalText = 'You can manually configure which Power BI reports to use for each area, or deploy our out-of-the-box reports directly to your Power BI workspace.'; + } + field(ReportSetupChoice; ReportSetupChoice) + { + ApplicationArea = All; + Caption = 'I would like to'; + ToolTip = 'Specifies whether to manually configure report settings or deploy pre-built reports.'; + OptionCaption = 'Deploy out-of-the-box reports,Configure report settings'; + } + } group(Step5) { Visible = CurrentStep = Steps::Setting; @@ -760,6 +776,11 @@ page 36950 "PowerBI Assisted Setup" trigger OnAction() begin + if (CurrentStep = Steps::ReportChoice) and (ReportSetupChoice = ReportSetupChoice::"Deploy out-of-the-box reports") then begin + GuidedExperience.CompleteAssistedSetup(ObjectType::Page, Page::"PowerBI Assisted Setup"); + CurrPage.Close(); + exit; + end; TakeStep(1); end; } @@ -789,7 +810,7 @@ page 36950 "PowerBI Assisted Setup" TimeZoneSelection: Codeunit "Time Zone Selection"; EnvironmentInformation: Codeunit "Environment Information"; SetupHelper: Codeunit "Power BI Report Setup"; - Steps: Option Intro,DateTableConfig,UTCOffset,WorkingDays,Setting,Finish; + Steps: Option Intro,DateTableConfig,UTCOffset,WorkingDays,ReportChoice,Setting,Finish; PrevStep: Option; CurrentStep: Option; BackEnabled: Boolean; @@ -815,10 +836,13 @@ page 36950 "PowerBI Assisted Setup" ShowLessTxt: Label 'Show Less'; AdminPermissionRequiredErr: Label 'Setting up Power BI requires the ''%1'' permission set (or equivalent) that your account doesn''t have. Ask your administrator to assign the permission set to you.', Comment = '%1 = permission set name'; PermisionSetNameTok: Label 'Power BI Core Admin', Locked = true; + IsEvalCompany: Boolean; + ReportSetupChoice: Option "Deploy out-of-the-box reports","Configure report settings"; trigger OnOpenPage() var UserSetup: Record "User Setup"; + CurrentCompany: Record Company; PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin if not PowerBIReportsSetup.WritePermission() then @@ -830,6 +854,9 @@ page 36950 "PowerBI Assisted Setup" if NavApp.GetCurrentModuleInfo(AppInfo) then AssistedSetupComplete := GuidedExperience.IsAssistedSetupComplete(ObjectType::Page, Page::"PowerBI Assisted Setup"); + CurrentCompany.Get(CompanyName()); + IsEvalCompany := CurrentCompany."Evaluation Company"; + if UserSetup.Get(UserId()) then TestEmailAddress := UserSetup."E-Mail"; @@ -855,6 +882,11 @@ page 36950 "PowerBI Assisted Setup" PrevStep := CurrentStep; CurrentStep := CurrentStep + Step; + + // Skip ReportChoice for non-evaluation companies + if (CurrentStep = Steps::ReportChoice) and (not IsEvalCompany) then + CurrentStep := CurrentStep + Step; + NextEnabled := false; BackEnabled := true; FinishEnabled := false; @@ -869,13 +901,12 @@ page 36950 "PowerBI Assisted Setup" if CalendarType > 0 then NextEnabled := true; Steps::UTCOffset: - NextEnabled := true; Steps::WorkingDays: - + NextEnabled := true; + Steps::ReportChoice: NextEnabled := true; Steps::Setting: - NextEnabled := true; Steps::Finish: begin @@ -929,4 +960,9 @@ page 36950 "PowerBI Assisted Setup" end; end; end; + + procedure IsDeployOOBReportsSelected(): Boolean + begin + exit(IsEvalCompany and (ReportSetupChoice = ReportSetupChoice::"Deploy out-of-the-box reports")); + end; } diff --git a/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBISelectionLookup.Page.al b/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBISelectionLookup.Page.al index 27ca8a2f75..b19d339baa 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBISelectionLookup.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBISelectionLookup.Page.al @@ -8,6 +8,7 @@ using System.Integration.PowerBI; page 36963 "Power BI Selection Lookup" { + ApplicationArea = All; Caption = 'Select Power BI Element'; DeleteAllowed = false; InsertAllowed = false; diff --git a/src/Apps/W1/PowerBIReports/App/Core/PermissionSets/PowerBiReportBasic.PermissionSet.al b/src/Apps/W1/PowerBIReports/App/Core/PermissionSets/PowerBiReportBasic.PermissionSet.al index 9a8ad3d7f5..2b2f92823b 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/PermissionSets/PowerBiReportBasic.PermissionSet.al +++ b/src/Apps/W1/PowerBIReports/App/Core/PermissionSets/PowerBiReportBasic.PermissionSet.al @@ -49,6 +49,7 @@ permissionset 36951 "PowerBi Report Basic" page "Working Days" = X, page "Working Days Setup" = X, page "Working Days Subform" = X, + page "PBI Report Deploy. Selection" = X, page "Account Categories" = X, query "Account Categories" = X, query "Resources - PBI API" = X, diff --git a/src/Apps/W1/PowerBIReports/App/Core/PowerBIDeployableReport.EnumExt.al b/src/Apps/W1/PowerBIReports/App/Core/PowerBIDeployableReport.EnumExt.al new file mode 100644 index 0000000000..45e4151112 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/PowerBIDeployableReport.EnumExt.al @@ -0,0 +1,41 @@ +namespace Microsoft.PowerBIReports; +using System.Integration.PowerBI; + +enumextension 36950 "Power BI Deployable Report" extends "Power BI Deployable Report" +{ + value(36950; "Finance App") + { + Caption = 'Finance'; + Implementation = "Power BI Deployable Report" = "PBI Finance App"; + } + value(36951; "Sales App") + { + Caption = 'Sales'; + Implementation = "Power BI Deployable Report" = "PBI Sales App"; + } + value(36952; "Purchases App") + { + Caption = 'Purchases'; + Implementation = "Power BI Deployable Report" = "PBI Purchases App"; + } + value(36953; "Inventory App") + { + Caption = 'Inventory'; + Implementation = "Power BI Deployable Report" = "PBI Inventory App"; + } + value(36954; "Inventory Valuation App") + { + Caption = 'Inventory Valuation'; + Implementation = "Power BI Deployable Report" = "PBI Inventory Val. App"; + } + value(36955; "Manufacturing App") + { + Caption = 'Manufacturing'; + Implementation = "Power BI Deployable Report" = "PBI Manufacturing App"; + } + value(36956; "Projects App") + { + Caption = 'Projects'; + Implementation = "Power BI Deployable Report" = "PBI Projects App"; + } +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/PowerBISubscribers.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/PowerBISubscribers.Codeunit.al new file mode 100644 index 0000000000..08bfb27592 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/PowerBISubscribers.Codeunit.al @@ -0,0 +1,29 @@ +namespace Microsoft.PowerBIReports; +using System.Integration.PowerBI; + +codeunit 36959 "Power BI Subscribers" +{ + [EventSubscriber(ObjectType::Codeunit, Codeunit::"PBI Deployment Events", OnReportDeployed, '', false, false)] + local procedure OnReportDeployed(var Report: Interface "Power BI Uploadable Report"; DeployableReportType: Enum "Power BI Deployable Report") + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + SetupHelper: Codeunit "Power BI Report Setup"; + RecRef: RecordRef; + UploadTracker: Interface "Power BI Upload Tracker"; + ReportSetup: Interface "PBI Report Setup"; + ReportName: Text[200]; + begin + if not SetupHelper.FindReportSetup(DeployableReportType, ReportSetup) then + exit; + + Report.GetUploadTracker(UploadTracker); + UploadTracker.Load(Report.GetReportKey()); + ReportName := CopyStr(UploadTracker.GetUploadedReportName(), 1, MaxStrLen(ReportName)); + + PowerBIReportsSetup.GetOrCreate(); + RecRef.GetTable(PowerBIReportsSetup); + RecRef.Field(ReportSetup.GetSetupReportIdFieldNo()).Value := UploadTracker.GetUploadedReportId(); + RecRef.Field(ReportSetup.GetSetupReportNameFieldNo()).Value := ReportName; + RecRef.Modify(); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIDeploymentBufferExt.TableExt.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIDeploymentBufferExt.TableExt.al new file mode 100644 index 0000000000..28cbc36fbb --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIDeploymentBufferExt.TableExt.al @@ -0,0 +1,19 @@ +// ------------------------------------------------------------------------------------------------ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// ------------------------------------------------------------------------------------------------ +namespace Microsoft.PowerBIReports; + +using System.Integration.PowerBI; + +tableextension 36962 "PBI Deployment Buffer Ext." extends "Power BI Deployment Buffer" +{ + fields + { + field(36950; Deploy; Boolean) + { + Caption = 'Deploy'; + DataClassification = SystemMetadata; + } + } +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIFinanceApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIFinanceApp.Codeunit.al new file mode 100644 index 0000000000..1554f83f47 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIFinanceApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36963 "PBI Finance App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Finance'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Finance app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Finance App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Finance Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Finance Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryApp.Codeunit.al new file mode 100644 index 0000000000..551a21d4e7 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36966 "PBI Inventory App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Inventory'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Inventory app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Inventory App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Inventory Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Inventory Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryValApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryValApp.Codeunit.al new file mode 100644 index 0000000000..b368e53f1d --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIInventoryValApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36967 "PBI Inventory Val. App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Inventory Valuation'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Inventory Valuation app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Inventory Valuation App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Inventory Val. Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Inventory Val. Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIManufacturingApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIManufacturingApp.Codeunit.al new file mode 100644 index 0000000000..5c1889b4e6 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIManufacturingApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36968 "PBI Manufacturing App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Manufacturing'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Manufacturing app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Manufacturing App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Manufacturing Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIProjectsApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIProjectsApp.Codeunit.al new file mode 100644 index 0000000000..b18ce250ca --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIProjectsApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36969 "PBI Projects App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Projects'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Projects app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Projects App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Projects Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Projects Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIPurchasesApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIPurchasesApp.Codeunit.al new file mode 100644 index 0000000000..2f97c34cea --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIPurchasesApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36965 "PBI Purchases App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Purchases'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Purchase app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Purchases App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Purchases Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Purchases Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportDeploySelection.Page.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportDeploySelection.Page.al new file mode 100644 index 0000000000..b378caf71b --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportDeploySelection.Page.al @@ -0,0 +1,146 @@ +// ------------------------------------------------------------------------------------------------ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// ------------------------------------------------------------------------------------------------ +namespace Microsoft.PowerBIReports; + +using System.Integration.PowerBI; + +page 36968 "PBI Report Deploy. Selection" +{ + PageType = NavigatePage; + Caption = 'Deploy Power BI Reports'; + SourceTable = "Power BI Deployment Buffer"; + SourceTableTemporary = true; + InsertAllowed = false; + DeleteAllowed = false; + + layout + { + area(Content) + { + group(IntroGroup) + { + ShowCaption = false; + InstructionalText = 'Select which reports to deploy to your Power BI workspace. Reports that are already scheduled or deployed cannot be selected.'; + } + repeater(Reports) + { + field(Deploy; Rec.Deploy) + { + ApplicationArea = All; + Caption = 'Deploy'; + ToolTip = 'Specifies whether to deploy this report.'; + Editable = DeployEditable; + } + field(ReportName; Rec."Report Name") + { + ApplicationArea = All; + Editable = false; + Caption = 'Report Name'; + ToolTip = 'Specifies the name of the Power BI report.'; + } + field(DeploymentStatus; Rec."Deployment Status") + { + ApplicationArea = All; + Editable = false; + Caption = 'Status'; + ToolTip = 'Specifies the current deployment status.'; + StyleExpr = StatusStyle; + } + } + } + } + + actions + { + area(Processing) + { + action(DeployAction) + { + ApplicationArea = All; + Caption = 'Deploy'; + Image = Approve; + InFooterBar = true; + ToolTip = 'Deploy the selected reports to your Power BI workspace.'; + + trigger OnAction() + begin + DeploySelectedReports(); + CurrPage.Close(); + end; + } + action(SkipAction) + { + ApplicationArea = All; + Caption = 'Skip'; + Image = Cancel; + InFooterBar = true; + ToolTip = 'Skip report deployment.'; + + trigger OnAction() + begin + CurrPage.Close(); + end; + } + } + } + + trigger OnOpenPage() + begin + Rec.LoadReports(); + if Rec.FindSet() then + repeat + if Rec."Deployment Status" = Enum::"Power BI Deployment Status"::"Not Installed" then begin + Rec.Deploy := true; + Rec.Modify(); + end; + until Rec.Next() = 0; + if Rec.FindFirst() then; + end; + + trigger OnAfterGetRecord() + begin + DeployEditable := Rec."Deployment Status" = Enum::"Power BI Deployment Status"::"Not Installed"; + + case Rec."Deployment Status" of + Enum::"Power BI Deployment Status"::"Not Installed": + StatusStyle := 'Standard'; + Enum::"Power BI Deployment Status"::Error: + StatusStyle := 'Unfavorable'; + Enum::"Power BI Deployment Status"::"Up to Date": + StatusStyle := 'Favorable'; + Enum::"Power BI Deployment Status"::"Update Available": + StatusStyle := 'Attention'; + else + StatusStyle := 'Ambiguous'; + end; + end; + + var + DeployEditable: Boolean; + StatusStyle: Text; + + local procedure DeploySelectedReports() + var + PowerBIDeployment: Record "Power BI Deployment"; + PowerBIServiceMgt: Codeunit "Power BI Service Mgt."; + HasSelections: Boolean; + begin + Rec.SetRange(Deploy, true); + if Rec.FindSet() then + repeat + if not PowerBIDeployment.Get(Rec."Report Id") then begin + PowerBIDeployment.Init(); + PowerBIDeployment."Report Id" := Rec."Report Id"; + PowerBIDeployment.Insert(true); + HasSelections := true; + end; + until Rec.Next() = 0; + + if HasSelections then + PowerBIServiceMgt.SynchronizeReportsInBackground(''); + + Rec.SetRange(Deploy); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Enum.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Enum.al new file mode 100644 index 0000000000..1aa20f6c2d --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Enum.al @@ -0,0 +1,35 @@ +namespace Microsoft.PowerBIReports; + +enum 36961 "PBI Report Setup" implements "PBI Report Setup" +{ + Extensible = true; + + value(36960; "Finance App") + { + Implementation = "PBI Report Setup" = "PBI Finance App"; + } + value(36961; "Sales App") + { + Implementation = "PBI Report Setup" = "PBI Sales App"; + } + value(36962; "Purchases App") + { + Implementation = "PBI Report Setup" = "PBI Purchases App"; + } + value(36963; "Inventory App") + { + Implementation = "PBI Report Setup" = "PBI Inventory App"; + } + value(36964; "Inventory Valuation App") + { + Implementation = "PBI Report Setup" = "PBI Inventory Val. App"; + } + value(36965; "Manufacturing App") + { + Implementation = "PBI Report Setup" = "PBI Manufacturing App"; + } + value(36966; "Projects App") + { + Implementation = "PBI Report Setup" = "PBI Projects App"; + } +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Interface.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Interface.al new file mode 100644 index 0000000000..3448f910d4 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBIReportSetup.Interface.al @@ -0,0 +1,9 @@ +namespace Microsoft.PowerBIReports; +using System.Integration.PowerBI; + +interface "PBI Report Setup" +{ + procedure GetDeployableReportType(): Enum "Power BI Deployable Report"; + procedure GetSetupReportIdFieldNo(): Integer; + procedure GetSetupReportNameFieldNo(): Integer; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBISalesApp.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBISalesApp.Codeunit.al new file mode 100644 index 0000000000..fe229474e4 --- /dev/null +++ b/src/Apps/W1/PowerBIReports/App/Core/ReportDeployments/PBISalesApp.Codeunit.al @@ -0,0 +1,50 @@ +namespace Microsoft.PowerBIReports; +using System.Environment; +using System.Integration.PowerBI; + +codeunit 36964 "PBI Sales App" implements "Power BI Deployable Report", "PBI Report Setup" +{ + Access = Internal; + + procedure GetReportName(): Text[200] + begin + exit('Sales'); + end; + + procedure GetStream(var InStr: InStream) + begin + NavApp.GetResource('Sales app.pbix', InStr); + end; + + procedure GetVersion(): Integer + begin + exit(1); + end; + + procedure GetDatasetParameters() Parameters: Dictionary of [Text, Text] + var + EnvironmentInformation: Codeunit "Environment Information"; + begin + Parameters.Add('COMPANY', CompanyName()); + Parameters.Add('ENVIRONMENT', EnvironmentInformation.GetEnvironmentName()); + end; + + procedure GetDeployableReportType(): Enum "Power BI Deployable Report" + begin + exit(Enum::"Power BI Deployable Report"::"Sales App"); + end; + + procedure GetSetupReportIdFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Sales Report Id")); + end; + + procedure GetSetupReportNameFieldNo(): Integer + var + PowerBIReportsSetup: Record "PowerBI Reports Setup"; + begin + exit(PowerBIReportsSetup.FieldNo("Sales Report Name")); + end; +} diff --git a/src/Apps/W1/PowerBIReports/App/Core/Tables/PowerBIReportsSetup.Table.al b/src/Apps/W1/PowerBIReports/App/Core/Tables/PowerBIReportsSetup.Table.al index 166762d317..c84c14bf62 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Tables/PowerBIReportsSetup.Table.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Tables/PowerBIReportsSetup.Table.al @@ -147,6 +147,13 @@ table 36951 "PowerBI Reports Setup" } } + procedure GetOrCreate() + begin + if Rec.Get() then + exit; + Rec.Init(); + Rec.Insert(); + end; procedure GetTimeZoneDisplayName(): Text[250] var diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedPayablesBackDating.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedPayablesBackDating.Page.al index cb05260fc3..9f00d99a30 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedPayablesBackDating.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedPayablesBackDating.Page.al @@ -48,11 +48,8 @@ page 36994 "Aged Payables (Back Dating)" ReportPageLbl: Label 'ReportSection904474b579cc92816425', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedReceivablesBackDating.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedReceivablesBackDating.Page.al index 007fbcdba9..0b5244ef1e 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedReceivablesBackDating.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AgedReceivablesBackDating.Page.al @@ -48,11 +48,8 @@ page 36993 "Aged Receivables (Back Dating)" ReportPageLbl: Label 'ReportSectionfef66fa3cf79c6d85930', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AverageCollectionPeriod.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AverageCollectionPeriod.Page.al index 105ac32b24..bda1d7f118 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AverageCollectionPeriod.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/AverageCollectionPeriod.Page.al @@ -48,11 +48,8 @@ page 36992 "Average Collection Period" ReportPageLbl: Label 'ReportSectionb1d1e3d33a031ad3b0ed', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BalanceSheetbyMonth.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BalanceSheetbyMonth.Page.al index 4a2d7a3da5..dc2bb48ecb 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BalanceSheetbyMonth.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BalanceSheetbyMonth.Page.al @@ -50,11 +50,8 @@ page 36986 "Balance Sheet by Month" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BudgetComparison.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BudgetComparison.Page.al index df397ea34f..16edde69f4 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BudgetComparison.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/BudgetComparison.Page.al @@ -48,11 +48,8 @@ page 36987 "Budget Comparison" ReportPageLbl: Label 'ReportSection64d670dfa9da1a5b7033', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedCustLedgerEntries.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedCustLedgerEntries.Page.al index 54ce0b8eb5..3c2e27c3ad 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedCustLedgerEntries.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedCustLedgerEntries.Page.al @@ -48,11 +48,8 @@ page 36997 "Detailed Cust. Ledger Entries" ReportPageLbl: Label 'ReportSection15bface0e851125fb4ea', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedVendorLedgerEntries.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedVendorLedgerEntries.Page.al index 3de51b3ebd..176ff6d87a 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedVendorLedgerEntries.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/DetailedVendorLedgerEntries.Page.al @@ -48,11 +48,8 @@ page 36996 "Detailed Vendor Ledger Entries" ReportPageLbl: Label 'ReportSectione72966404f743d39d212', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al index 377f35450a..4bc74f92dd 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al @@ -48,11 +48,8 @@ page 36991 "EBITDA" ReportPageLbl: Label 'ReportSectionab3743c6203831d31beb', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinanceReport.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinanceReport.Page.al index fce1123500..3f009ecbcc 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinanceReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinanceReport.Page.al @@ -48,11 +48,8 @@ page 37059 "Finance Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinancialOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinancialOverview.Page.al index 34d2a758a1..d834131c12 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinancialOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/FinancialOverview.Page.al @@ -50,11 +50,7 @@ page 36984 "Financial Overview" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } - diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/IncomeStatementbyMonth.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/IncomeStatementbyMonth.Page.al index 29de9616cb..e749f31644 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/IncomeStatementbyMonth.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/IncomeStatementbyMonth.Page.al @@ -48,11 +48,8 @@ page 36985 "Income Statement by Month" ReportPageLbl: Label 'ReportSectionf72eb4d7e5e35db3b283', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LatePaymentsReceivables.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LatePaymentsReceivables.Page.al index aaca8fbdfc..6f1944f85c 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LatePaymentsReceivables.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LatePaymentsReceivables.Page.al @@ -48,11 +48,8 @@ page 37113 "Late Payments (Receivables)" ReportPageLbl: Label 'c11895fd214552064bae', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Liabilities.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Liabilities.Page.al index 6a71d49033..ee62375769 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Liabilities.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Liabilities.Page.al @@ -48,11 +48,8 @@ page 36990 "Liabilities" ReportPageLbl: Label 'ReportSectioncd819efac970874e83c3', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LiquidityKPIs.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LiquidityKPIs.Page.al index 0b7e21d006..fc43f5a5a1 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LiquidityKPIs.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/LiquidityKPIs.Page.al @@ -48,11 +48,8 @@ page 36988 "Liquidity KPIs" ReportPageLbl: Label 'ReportSection6838cf9cda361d088e0a', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/PowerBIGeneralLedgEntries.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/PowerBIGeneralLedgEntries.Page.al index 186d93d063..2779ba22e6 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/PowerBIGeneralLedgEntries.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/PowerBIGeneralLedgEntries.Page.al @@ -48,11 +48,8 @@ page 36995 "PowerBI General Ledg. Entries" ReportPageLbl: Label 'ReportSectionfdc853c4230265e530cc', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Profitability.Page.al b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Profitability.Page.al index 98bfc0a96f..db203f37d0 100644 --- a/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Profitability.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Finance/Embedded/Profitability.Page.al @@ -48,11 +48,8 @@ page 36989 "Profitability" ReportPageLbl: Label 'ReportSectionbb4917d9edb6d427282c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Finance Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Finance App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationOverview.Page.al index b213738919..c7f5011293 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationOverview.Page.al @@ -48,11 +48,8 @@ page 37056 "Inventory Valuation Overview" ReportPageLbl: Label 'ReportSection41d23fcd2b0c70d16059', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Val. Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory Valuation App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationReport.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationReport.Page.al index 361246bbe6..99fc47d937 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationReport.Page.al @@ -48,11 +48,8 @@ page 37065 "Inventory Valuation Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Val. Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory Valuation App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyItem.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyItem.Page.al index 13211e0e00..9cc751b7d0 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyItem.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyItem.Page.al @@ -48,11 +48,8 @@ page 37057 "Inventory Valuation by Item" ReportPageLbl: Label '47469f126ce6603a9114', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Val. Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory Valuation App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyLoc.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyLoc.Page.al index e18b5a9351..bc2a63b844 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyLoc.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory Valuation/InventoryValuationbyLoc.Page.al @@ -48,11 +48,8 @@ page 37058 "Inventory Valuation by Loc." ReportPageLbl: Label '6a6852c0d882690a617b', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Val. Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory Valuation App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/BinContentsbyItemTracking.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/BinContentsbyItemTracking.Page.al index 5a296f2929..7041563717 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/BinContentsbyItemTracking.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/BinContentsbyItemTracking.Page.al @@ -50,11 +50,8 @@ page 37032 "Bin Contents by Item Tracking" #pragma warning restore AA240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/GrossRequirement.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/GrossRequirement.Page.al index 988a5174e3..276899c091 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/GrossRequirement.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/GrossRequirement.Page.al @@ -48,11 +48,8 @@ page 37027 "Gross Requirement" ReportPageLbl: Label 'ReportSection94c932a22e568b021aba', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryForecasting.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryForecasting.Page.al index 057d6c95e2..8d597fc4fe 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryForecasting.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryForecasting.Page.al @@ -48,11 +48,8 @@ page 37110 "Inventory Forecasting" ReportPageLbl: Label '7fea1d34602a649a1083', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryOverview.Page.al index fe80590a76..eb149e57e1 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryOverview.Page.al @@ -48,11 +48,8 @@ page 37022 "Inventory Overview" ReportPageLbl: Label 'ReportSectione24db7517a44af92f122', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryReport.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryReport.Page.al index d420d3ca81..87f54c6c76 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventoryReport.Page.al @@ -48,11 +48,8 @@ page 37064 "Inventory Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyItem.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyItem.Page.al index 910b241058..080200adc2 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyItem.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyItem.Page.al @@ -48,11 +48,8 @@ page 37023 "Inventory by Item" ReportPageLbl: Label 'ReportSection8c3ed3c2c96e298a0824', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLocation.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLocation.Page.al index 4e229c6ba0..c3ec79b68f 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLocation.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLocation.Page.al @@ -48,11 +48,8 @@ page 37024 "Inventory by Location" ReportPageLbl: Label 'ReportSection2765ed5a1005d04217d1', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLot.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLot.Page.al index 4929181c71..18c3eb3e90 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLot.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybyLot.Page.al @@ -48,11 +48,8 @@ page 37029 "Inventory by Lot" ReportPageLbl: Label 'ReportSectionec09da5413c3755982a4', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybySerialNo.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybySerialNo.Page.al index d5da57c0f8..f0d6a92ae9 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybySerialNo.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/InventorybySerialNo.Page.al @@ -48,11 +48,8 @@ page 37030 "Inventory by Serial No." ReportPageLbl: Label 'ReportSectiond99a75349d3388ca085c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ItemAvailability.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ItemAvailability.Page.al index d4d11c7b4a..0e07abe8fa 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ItemAvailability.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ItemAvailability.Page.al @@ -48,11 +48,8 @@ page 37026 "Item Availability" ReportPageLbl: Label 'ReportSection61c190709a57015b0e48', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIABCAnalysis.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIABCAnalysis.Page.al index 17c4ce180b..5794ef7380 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIABCAnalysis.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIABCAnalysis.Page.al @@ -48,11 +48,8 @@ page 37111 "PowerBI ABC Analysis" ReportPageLbl: Label 'a476d6afc8d5d544193b', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIBinContents.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIBinContents.Page.al index ec653765d6..057020ebbe 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIBinContents.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PowerBIBinContents.Page.al @@ -48,11 +48,8 @@ page 37031 "PowerBI Bin Contents" ReportPageLbl: Label 'ReportSection12b3ff23621e20c1398d', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PurchaseandSalesQuantity.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PurchaseandSalesQuantity.Page.al index 5d9f75d828..ffdfb310a7 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PurchaseandSalesQuantity.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/PurchaseandSalesQuantity.Page.al @@ -48,11 +48,8 @@ page 37025 "Purchase and Sales Quantity" ReportPageLbl: Label 'ReportSection956cd619a014201c65e3', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ScheduledReceipt.Page.al b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ScheduledReceipt.Page.al index e540b0bb42..6e4ced86fa 100644 --- a/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ScheduledReceipt.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Inventory/Embedded/Inventory/ScheduledReceipt.Page.al @@ -48,11 +48,8 @@ page 37028 "Scheduled Receipt" ReportPageLbl: Label 'ReportSection5aaca347e8eb867da682', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Inventory Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Inventory App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AllocatedHours.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AllocatedHours.Page.al index 473fdcf371..010d836aa7 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AllocatedHours.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AllocatedHours.Page.al @@ -48,11 +48,8 @@ page 37043 "Allocated Hours" ReportPageLbl: Label 'ReportSectionf3f7e4f23b609a9d9cb2', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AverageProductionsTimes.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AverageProductionsTimes.Page.al index 9f99db00a3..bca277fd8a 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AverageProductionsTimes.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/AverageProductionsTimes.Page.al @@ -48,11 +48,8 @@ page 37048 "Average Productions Times" ReportPageLbl: Label 'ReportSection13a328ff231fccdc12f7', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/CapacityVariance.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/CapacityVariance.Page.al index 60e8255fbf..1f92804445 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/CapacityVariance.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/CapacityVariance.Page.al @@ -48,11 +48,8 @@ page 37047 "Capacity Variance" ReportPageLbl: Label 'ReportSection6616bf98be16d1636d03', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ConsumptionVariance.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ConsumptionVariance.Page.al index 4ba9e197c4..4229817b29 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ConsumptionVariance.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ConsumptionVariance.Page.al @@ -48,11 +48,8 @@ page 37046 "Consumption Variance" ReportPageLbl: Label 'ReportSectiona9060ee37f667a3d554d', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ExpectedCapacityNeed.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ExpectedCapacityNeed.Page.al index 003ed89710..5310064fab 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ExpectedCapacityNeed.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ExpectedCapacityNeed.Page.al @@ -50,11 +50,8 @@ page 37044 "Expected Capacity Need" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/FinishedProdOrderBreakdown.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/FinishedProdOrderBreakdown.Page.al index e5e20299fa..1fec465d18 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/FinishedProdOrderBreakdown.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/FinishedProdOrderBreakdown.Page.al @@ -48,11 +48,8 @@ page 37045 "Finished Prod. Order Breakdown" ReportPageLbl: Label 'ReportSectionb4e9630e25c77fccda8a', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ManufacturingReport.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ManufacturingReport.Page.al index 5908fbd403..fe79422388 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ManufacturingReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ManufacturingReport.Page.al @@ -48,11 +48,8 @@ page 37063 "Manufacturing Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterLoad.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterLoad.Page.al index bf365a3e9b..ceda4417d8 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterLoad.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterLoad.Page.al @@ -48,11 +48,8 @@ page 37096 "PBI Machine Center Load" ReportPageLbl: Label 'd0b095013b4daa61d75c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterStatistics.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterStatistics.Page.al index b3ec26930c..12b9f4cc81 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterStatistics.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIMachineCenterStatistics.Page.al @@ -50,11 +50,8 @@ page 37095 "PBI Machine Center Statistics" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIWorkCenterStatistics.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIWorkCenterStatistics.Page.al index dabf23894a..e1c5d6df03 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIWorkCenterStatistics.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PBIWorkCenterStatistics.Page.al @@ -48,11 +48,8 @@ page 37094 "PBI Work Center Statistics" ReportPageLbl: Label 'd0f01228e35f48f4c891', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIReleasedProdOrders.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIReleasedProdOrders.Page.al index 6e9b6a034e..dd6bb012b4 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIReleasedProdOrders.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIReleasedProdOrders.Page.al @@ -48,11 +48,8 @@ page 37049 "PowerBI Released Prod. Orders" ReportPageLbl: Label '85214b3ea7543b0500e5', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIWorkCenterLoad.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIWorkCenterLoad.Page.al index 5edbb5fd38..cb17f535ab 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIWorkCenterLoad.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/PowerBIWorkCenterLoad.Page.al @@ -48,11 +48,8 @@ page 37042 "PowerBI Work Center Load" ReportPageLbl: Label 'ReportSection83a7395d207d5b47b1a4', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderList.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderList.Page.al index 8bd3583735..fbeb3ae4e0 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderList.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderList.Page.al @@ -48,11 +48,8 @@ page 37097 "Prod. Order - List" ReportPageLbl: Label 'a400a1281385ff890e3e', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderRoutingsGantt.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderRoutingsGantt.Page.al index c222f09ad1..4b9761ca70 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderRoutingsGantt.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProdOrderRoutingsGantt.Page.al @@ -48,11 +48,8 @@ page 37099 "Prod. Order Routings Gantt" ReportPageLbl: Label 'f0afc9178d3f83210328', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderOverview.Page.al index 274ac8959e..4652cfd693 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderOverview.Page.al @@ -48,11 +48,8 @@ page 37098 "Production Order Overview" ReportPageLbl: Label '8cb7f877949d0b12d931', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderWIP.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderWIP.Page.al index a262622a93..8ef0b80de0 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderWIP.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionOrderWIP.Page.al @@ -48,11 +48,8 @@ page 37107 "Production Order WIP" ReportPageLbl: Label '6acf7a1bcebe65700b22', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionScrap.Page.al b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionScrap.Page.al index b333cfcda3..c7f17a6cca 100644 --- a/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionScrap.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Manufacturing/Embedded/ProductionScrap.Page.al @@ -48,11 +48,8 @@ page 37055 "Production Scrap" ReportPageLbl: Label 'ReportSectionc790f50d90d7b6a6836a', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvdSalesbyCust.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvdSalesbyCust.Page.al index 636f49f091..b2ed14a10e 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvdSalesbyCust.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvdSalesbyCust.Page.al @@ -48,11 +48,8 @@ page 37039 "Project Invd. Sales by Cust." ReportPageLbl: Label 'ReportSectioncd82c6e10e816900e80b', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvoicedSalesbyType.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvoicedSalesbyType.Page.al index c8470a4508..1dc8331319 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvoicedSalesbyType.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectInvoicedSalesbyType.Page.al @@ -48,11 +48,8 @@ page 37038 "Project Invoiced Sales by Type" ReportPageLbl: Label 'ReportSection355bfd7d0ab99d6a0620', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectPerformancetoBudget.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectPerformancetoBudget.Page.al index 00e0a36935..4f5ca55d00 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectPerformancetoBudget.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectPerformancetoBudget.Page.al @@ -48,11 +48,8 @@ page 37037 "Project Performance to Budget" ReportPageLbl: Label 'ReportSection4b100a3a42980b76957c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectProfitability.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectProfitability.Page.al index c19f2cf17a..df085444b7 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectProfitability.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectProfitability.Page.al @@ -48,11 +48,8 @@ page 37035 "Project Profitability" ReportPageLbl: Label 'ReportSection16f4a9483133b8db3e12', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectRealization.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectRealization.Page.al index aa83da3cba..655b466ed4 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectRealization.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectRealization.Page.al @@ -48,11 +48,8 @@ page 37036 "Project Realization" ReportPageLbl: Label 'ReportSection1356fdbebe72ad7283d3', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTasks.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTasks.Page.al index 6ec3b65233..a4f34dba1b 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTasks.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTasks.Page.al @@ -48,11 +48,8 @@ page 37034 "Project Tasks" ReportPageLbl: Label '89b75bcf2e511c341a05', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTimeline.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTimeline.Page.al index 4c482b1ccd..010728912b 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTimeline.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectTimeline.Page.al @@ -48,11 +48,8 @@ page 37106 "Project Timeline" ReportPageLbl: Label '28ed0b540c9ca0ec0105', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsOverview.Page.al index d00ff3895e..0e9f3d7eed 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsOverview.Page.al @@ -48,11 +48,8 @@ page 37033 "Projects Overview" ReportPageLbl: Label 'ReportSectionf22cc27c0600033d5e26', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsReport.Page.al b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsReport.Page.al index c0db502af5..5db5eeae8f 100644 --- a/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Projects/Embedded/ProjectsReport.Page.al @@ -48,11 +48,8 @@ page 37062 "Projects Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Projects Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Projects App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/DailyPurchases.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/DailyPurchases.Page.al index 355e07af56..278f8e206f 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/DailyPurchases.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/DailyPurchases.Page.al @@ -48,11 +48,8 @@ page 37011 "Daily Purchases" ReportPageLbl: Label 'ReportSection02de1de9adad5ee196e0', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/KeyPurchaseInfluencers.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/KeyPurchaseInfluencers.Page.al index 234461b40d..d543402032 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/KeyPurchaseInfluencers.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/KeyPurchaseInfluencers.Page.al @@ -48,11 +48,8 @@ page 37117 "Key Purchase Influencers" ReportPageLbl: Label 'c0b7f34035721e76e546', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetAmt.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetAmt.Page.al index 23c34a7c67..251cd18276 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetAmt.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetAmt.Page.al @@ -48,11 +48,8 @@ page 37021 "Purch. Actual vs. Budget Amt." ReportPageLbl: Label 'ReportSection0cb7f30495bc871b8948', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetQty.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetQty.Page.al index 2c0c324656..9e1d0f9f7f 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetQty.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchActualvsBudgetQty.Page.al @@ -48,11 +48,8 @@ page 37020 "Purch. Actual vs. Budget Qty." ReportPageLbl: Label 'ReportSection0cb7f30495bc871b8948', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseForecasting.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseForecasting.Page.al index e5ec76ea41..7fac26f38c 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseForecasting.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseForecasting.Page.al @@ -48,11 +48,8 @@ page 37112 "Purchase Forecasting" ReportPageLbl: Label '72b59b79a0cb70b56aed', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseQuoteOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseQuoteOverview.Page.al index 1da4852411..e6341082c5 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseQuoteOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseQuoteOverview.Page.al @@ -48,11 +48,8 @@ page 37118 "Purchase Quote Overview" ReportPageLbl: Label '15386889aed0b65c35cc', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseReturnOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseReturnOverview.Page.al index 4cb7590858..fec55d7e99 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseReturnOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchaseReturnOverview.Page.al @@ -48,11 +48,8 @@ page 37116 "Purchase Return Overview" ReportPageLbl: Label '63a53744a60debfbb8ac', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesDecomposition.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesDecomposition.Page.al index f1f11ac158..025edbe655 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesDecomposition.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesDecomposition.Page.al @@ -48,11 +48,8 @@ page 37010 "Purchases Decomposition" ReportPageLbl: Label 'ReportSectiond7fdf374ab65b2861937', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAnnualTotal.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAnnualTotal.Page.al index c9b5109c93..99cba7cbca 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAnnualTotal.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAnnualTotal.Page.al @@ -48,11 +48,8 @@ page 37013 "Purchases Moving Annual Total" ReportPageLbl: Label 'ReportSection26e891a305a24bb29884', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAverages.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAverages.Page.al index 87aa1b03c8..9735a12d38 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAverages.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesMovingAverages.Page.al @@ -48,11 +48,8 @@ page 37012 "Purchases Moving Averages" ReportPageLbl: Label 'ReportSectionc4bf0b0750800ca6b0c6', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesOverview.Page.al index ec17981dd0..fede013284 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesOverview.Page.al @@ -50,11 +50,8 @@ page 37009 "Purchases Overview" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesPeriodOverPeriod.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesPeriodOverPeriod.Page.al index faafc2aa06..7d859e0bb1 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesPeriodOverPeriod.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesPeriodOverPeriod.Page.al @@ -48,11 +48,8 @@ page 37014 "Purchases Period-Over-Period" ReportPageLbl: Label 'ReportSection2c5c763cbb0914a4201d', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesReport.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesReport.Page.al index 99cfed4737..5599441047 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesReport.Page.al @@ -48,11 +48,8 @@ page 37061 "Purchases Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesYearOverYear.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesYearOverYear.Page.al index a5ada90d9c..8e444e32a8 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesYearOverYear.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesYearOverYear.Page.al @@ -48,11 +48,8 @@ page 37015 "Purchases Year-Over-Year" ReportPageLbl: Label 'ReportSection884ee5483252d4c5e096', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyItem.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyItem.Page.al index c88a3fb01b..927ab607cf 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyItem.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyItem.Page.al @@ -48,11 +48,8 @@ page 37016 "Purchases by Item" ReportPageLbl: Label 'ReportSection510c03a74548b078dc31', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyLocation.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyLocation.Page.al index 7e9f6e9e55..dfc3a0b644 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyLocation.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyLocation.Page.al @@ -48,11 +48,8 @@ page 37019 "Purchases by Location" ReportPageLbl: Label 'ReportSection86b19910d517e658b780', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyPurchaser.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyPurchaser.Page.al index 60284f5f7c..1997b796d3 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyPurchaser.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyPurchaser.Page.al @@ -48,11 +48,8 @@ page 37017 "Purchases by Purchaser" ReportPageLbl: Label 'ReportSection2530548032dd85837d8c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyVendor.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyVendor.Page.al index 01c2066330..dc05eb7cce 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyVendor.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/PurchasesbyVendor.Page.al @@ -48,11 +48,8 @@ page 37018 "Purchases by Vendor" ReportPageLbl: Label 'ReportSectiond03ece9eb5ac094617e2', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/VendorQualityAnalysis.Page.al b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/VendorQualityAnalysis.Page.al index 0d0f5ee108..b97cac4120 100644 --- a/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/VendorQualityAnalysis.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Purchasing/Embedded/VendorQualityAnalysis.Page.al @@ -48,11 +48,8 @@ page 37115 "Vendor Quality Analysis" ReportPageLbl: Label '4507bee7aaf3d01db682', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Purchases Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Purchases App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionHistory.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionHistory.Page.al index 54adcb2979..9228413898 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionHistory.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionHistory.Page.al @@ -50,11 +50,8 @@ page 37114 "Customer Retention History" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionOverview.Page.al index 2fcaad7359..ad3c60d2a3 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/CustomerRetentionOverview.Page.al @@ -50,11 +50,8 @@ page 36983 "Customer Retention Overview" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/DailySales.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/DailySales.Page.al index cf6a42adbe..ccbfb6476e 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/DailySales.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/DailySales.Page.al @@ -48,11 +48,8 @@ page 36999 "Daily Sales" ReportPageLbl: Label 'ReportSectionb3680fa80c9685297c06', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/KeySalesInfluencers.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/KeySalesInfluencers.Page.al index 2318ac8320..3297fd2b2f 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/KeySalesInfluencers.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/KeySalesInfluencers.Page.al @@ -48,11 +48,8 @@ page 37102 "Key Sales Influencers" ReportPageLbl: Label 'bbcbdfc8ed18270bc4b0', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/OpportunityOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/OpportunityOverview.Page.al index 1b13320ca0..bb3bae8be8 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/OpportunityOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/OpportunityOverview.Page.al @@ -48,11 +48,8 @@ page 37103 "Opportunity Overview" ReportPageLbl: Label '7eb61bb06993742c9b40', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/ReturnOrderOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/ReturnOrderOverview.Page.al index a8e4cc8388..ab7eeaa0f1 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/ReturnOrderOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/ReturnOrderOverview.Page.al @@ -48,11 +48,8 @@ page 37105 "Return Order Overview" ReportPageLbl: Label 'f346c5b1f9260944d3cf', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesActualvsBudgetQty.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesActualvsBudgetQty.Page.al index 37106c7726..8e7d4dd7db 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesActualvsBudgetQty.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesActualvsBudgetQty.Page.al @@ -48,11 +48,8 @@ page 37007 "Sales Actual vs. Budget Qty." ReportPageLbl: Label 'ReportSection05f91a4884be2b5c94ed', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDecomposition.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDecomposition.Page.al index e18162ebc8..53fec64c09 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDecomposition.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDecomposition.Page.al @@ -48,11 +48,8 @@ page 37101 "Sales Decomposition" ReportPageLbl: Label '3da0bb1d844d8c019741', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDemographics.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDemographics.Page.al index 743283abb2..6685e4445b 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDemographics.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesDemographics.Page.al @@ -48,11 +48,8 @@ page 37100 "Sales Demographics" ReportPageLbl: Label '04b18fd32b63ebcd4349', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesForecasting.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesForecasting.Page.al index 034b700338..4816cff4f2 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesForecasting.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesForecasting.Page.al @@ -50,11 +50,8 @@ page 37109 "Sales Forecasting" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMonthToDate.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMonthToDate.Page.al index 6f60e1bd3c..c9e9dbf3c7 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMonthToDate.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMonthToDate.Page.al @@ -48,11 +48,8 @@ page 37003 "Sales Month-To-Date" ReportPageLbl: Label 'ReportSection7d903e33b708c20e3be1', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAnnualTotal.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAnnualTotal.Page.al index 3065bfa6aa..1fae3fbbfe 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAnnualTotal.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAnnualTotal.Page.al @@ -48,11 +48,8 @@ page 37001 "Sales Moving Annual Total" ReportPageLbl: Label 'ReportSection713e48d18640066bc508', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAverage.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAverage.Page.al index 5564244e7a..2862f79674 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAverage.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesMovingAverage.Page.al @@ -50,11 +50,8 @@ page 37000 "Sales Moving Average" #pragma warning restore AA0240 trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesOverview.Page.al index f9953e7663..76f6a1b630 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesOverview.Page.al @@ -48,11 +48,8 @@ page 36998 "Sales Overview" ReportPageLbl: Label 'ReportSection918285c1bd8f1b7ef96c', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesPeriodOverPeriod.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesPeriodOverPeriod.Page.al index 032dd35fcc..f50bed19c0 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesPeriodOverPeriod.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesPeriodOverPeriod.Page.al @@ -48,11 +48,8 @@ page 37002 "Sales Period-Over-Period" ReportPageLbl: Label 'ReportSection2480499c371d97221c09', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesQuoteOverview.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesQuoteOverview.Page.al index 6f9ff01ee8..e91da3c558 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesQuoteOverview.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesQuoteOverview.Page.al @@ -48,11 +48,8 @@ page 37104 "Sales Quote Overview" ReportPageLbl: Label '15a022da356609401ade', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesReport.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesReport.Page.al index bd9955d2c7..99dc3640e7 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesReport.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesReport.Page.al @@ -48,11 +48,8 @@ page 37060 "Sales Report" ReportPageLbl: Label '', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyCustomer.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyCustomer.Page.al index b248923fcb..c47c7d4f75 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyCustomer.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyCustomer.Page.al @@ -48,11 +48,8 @@ page 37005 "Sales by Customer" ReportPageLbl: Label 'ReportSection48bbd51044e094b7a9a2', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyItem.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyItem.Page.al index 3eeb98a2a4..1991b0a24f 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyItem.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyItem.Page.al @@ -48,11 +48,8 @@ page 37004 "Sales by Item" ReportPageLbl: Label 'ReportSection913651e69467cecd580d', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyLocation.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyLocation.Page.al index 8bd12f6031..f2f772e96d 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyLocation.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyLocation.Page.al @@ -48,11 +48,8 @@ page 37066 "Sales by Location" ReportPageLbl: Label 'da16feb02b930c2292e0', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyProjects.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyProjects.Page.al index 6cb2e63d1b..980e9575a3 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyProjects.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbyProjects.Page.al @@ -48,11 +48,8 @@ page 37119 "Sales by Projects" ReportPageLbl: Label '3f3a8251c4943f8c8fb2', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbySalesperson.Page.al b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbySalesperson.Page.al index 24922a40f6..aec46659cf 100644 --- a/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbySalesperson.Page.al +++ b/src/Apps/W1/PowerBIReports/App/Sales/Embedded/SalesbySalesperson.Page.al @@ -48,11 +48,8 @@ page 37006 "Sales by Salesperson" ReportPageLbl: Label 'ReportSectiond95fc6aa44e9e612cbc4', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } diff --git a/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/CurrentUtilization.Page.al b/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/CurrentUtilization.Page.al index 6fcebb7b00..48ec762384 100644 --- a/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/CurrentUtilization.Page.al +++ b/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/CurrentUtilization.Page.al @@ -51,11 +51,8 @@ page 37040 "Current Utilization" ReportPageLbl: Label 'ReportSection1cb4eb25650060b6dbd0', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } #endif diff --git a/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/HistoricalUtilization.Page.al b/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/HistoricalUtilization.Page.al index e15424f7ce..7f3a6820a7 100644 --- a/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/HistoricalUtilization.Page.al +++ b/src/Apps/W1/PowerBIReports/App/_Obsolete/Manufacturing/Embedded/HistoricalUtilization.Page.al @@ -51,11 +51,8 @@ page 37041 "Historical Utilization" ReportPageLbl: Label 'ReportSectionf9d212728e1d71a00044', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Manufacturing Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Manufacturing App"); end; } #endif diff --git a/src/Apps/W1/PowerBIReports/App/_Obsolete/Sales/Embedded/SalesActualvsBudgetAmt.Page.al b/src/Apps/W1/PowerBIReports/App/_Obsolete/Sales/Embedded/SalesActualvsBudgetAmt.Page.al index 28a3fe644f..fc42f26adc 100644 --- a/src/Apps/W1/PowerBIReports/App/_Obsolete/Sales/Embedded/SalesActualvsBudgetAmt.Page.al +++ b/src/Apps/W1/PowerBIReports/App/_Obsolete/Sales/Embedded/SalesActualvsBudgetAmt.Page.al @@ -51,11 +51,8 @@ page 37008 "Sales Actual vs. Budget Amt." ReportPageLbl: Label 'ReportSectionce3be3bc80c816f2646b', Locked = true; trigger OnOpenPage() - var - PowerBIReportsSetup: Record "PowerBI Reports Setup"; begin - SetupHelper.EnsureUserAcceptedPowerBITerms(); - ReportId := SetupHelper.GetReportIdAndEnsureSetup(CurrPage.Caption(), PowerBIReportsSetup.FieldNo("Sales Report Id")); + ReportId := SetupHelper.OpenPowerBIEmbeddedReportPageValidation("PBI Report Setup"::"Sales App"); end; } #endif diff --git a/src/Apps/W1/PowerBIReports/App/app.json b/src/Apps/W1/PowerBIReports/App/app.json index e3ab339b69..40237cd967 100644 --- a/src/Apps/W1/PowerBIReports/App/app.json +++ b/src/Apps/W1/PowerBIReports/App/app.json @@ -4,7 +4,7 @@ "publisher": "Microsoft", "brief": "Analyse Business Central data in Power BI", "description": "Core Connector for Power BI allows you to easily integrate Business Central data with Power BI.", - "version": "28.2.0.0", + "version": "29.0.0.0", "privacyStatement": "https://go.microsoft.com/fwlink/?LinkId=724009", "EULA": "https://go.microsoft.com/fwlink/?linkid=2009120", "help": "https://go.microsoft.com/fwlink/?linkid=2104024", @@ -21,8 +21,8 @@ } ], "screenshots": [], - "application": "28.2.0.0", - "platform": "28.0.0.0", + "application": "29.0.0.0", + "platform": "29.0.0.0", "idRanges": [ { "from": 36950, @@ -36,5 +36,6 @@ "features": [ "TranslationFile", "NoImplicitWith" - ] -} \ No newline at end of file + ], + "resourceFolders": [".resources"] +} diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/.platform b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/.platform deleted file mode 100644 index d37761ff31..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/.platform +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json", - "metadata": { - "type": "Report", - "displayName": "Subscription Billing app" - }, - "config": { - "version": "2.0", - "logicalId": "40b25908-d99d-4975-8446-c5e5e55c0be1" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/RegisteredResources/Microsoft_Dynamics_365_Busines45845983759727005.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/RegisteredResources/Microsoft_Dynamics_365_Busines45845983759727005.json deleted file mode 100644 index bdc15550ed..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/RegisteredResources/Microsoft_Dynamics_365_Busines45845983759727005.json +++ /dev/null @@ -1,3355 +0,0 @@ -{ - "name": "Microsoft Dynamics 365 Business Central", - "$schema": "reportThemeSchema-2.140.json", - "dataColors": [ - "#429EAA", - "#525C6D", - "#8E939F", - "#28808A", - "#295C66", - "#9A9926", - "#52A621", - "#DD765F", - "#3599B8", - "#DFBFBF", - "#4AC5BB", - "#5F6B6D", - "#FB8281", - "#F4D25A", - "#7F898A", - "#A4DDEE", - "#FDAB89", - "#B687AC", - "#28738A", - "#A78F8F", - "#168980", - "#293537", - "#BB4A4A", - "#B59525", - "#475052", - "#6A9FB0", - "#BD7150", - "#7B4F71", - "#1B4D5C", - "#706060", - "#0F5C55", - "#1C2325", - "#7D3231", - "#796419", - "#303637", - "#476A75", - "#7E4B36", - "#52354C", - "#0D262E", - "#544848", - "#016AB8", - "#373D49", - "#FDB15D", - "#AAF20F", - "#5F646D", - "#8AA3EB", - "#FEE266", - "#A6687A", - "#3557B8", - "#DFCFBF", - "#4A91C5", - "#5F646D", - "#FBBF81", - "#C9F459", - "#7F838A", - "#A4B8EE", - "#FDE489", - "#B68794", - "#28428A", - "#A79B8F", - "#165889", - "#292E37", - "#BB824A", - "#8DB525", - "#474A52", - "#6A7CB0", - "#BDA750", - "#7B4F5A", - "#1B2C5C", - "#706860", - "#0F3C5C", - "#1C1E25", - "#7D5731", - "#5D7918", - "#303237", - "#475375", - "#7E6F36", - "#52343D", - "#0D152E", - "#544E48", - "#010EB8", - "#393749", - "#F9FD5D", - "#38F20F", - "#615F6D", - "#A08AEB", - "#CEFE66", - "#A67668", - "#5435B8", - "#DFDFBF", - "#4A53C5", - "#615F6D", - "#FAFB81", - "#7CF459", - "#807F8A", - "#B5A4EE", - "#DBFD89", - "#B69087", - "#3F288A", - "#A7A78F", - "#161F89", - "#2A2937", - "#BBBB4A", - "#45B525", - "#494752", - "#7A6AB0", - "#9CBD50", - "#7B594F", - "#291B5C", - "#707060", - "#0F155C", - "#1E1C25", - "#7C7D31", - "#2D7918", - "#303037", - "#514775", - "#697E36", - "#523B34", - "#140D2E", - "#545448", - "#4E01B8", - "#423749", - "#A9FD5D", - "#0FF256", - "#675F6D", - "#D18AEB", - "#82FE66", - "#A69468", - "#9535B8", - "#CFDFBF", - "#7D4AC5", - "#675F6D", - "#BCFB81", - "#59F484", - "#857F8A", - "#DAA4EE", - "#A1FD89", - "#B6A887", - "#6F288A", - "#9BA78F", - "#461689", - "#322937", - "#82BB4A", - "#25B54C", - "#4E4752", - "#9E6AB0", - "#65BD50", - "#7B6E4F", - "#4A1B5C", - "#687060", - "#2E0F5C", - "#221C25", - "#567D31", - "#187934", - "#343037", - "#684775", - "#457E36", - "#524934", - "#250D2E", - "#4E5448", - "#AA01B8", - "#493746", - "#5DFD62", - "#0FF2C7", - "#6D5F6B", - "#EB8AD3", - "#66FE96", - "#99A668", - "#B83598", - "#BFDFBF", - "#BA4AC5", - "#6D5F6B", - "#81FB82", - "#59F4D1", - "#8A7F89", - "#EEA4DD", - "#89FDAA", - "#ACB687", - "#8A2873", - "#8FA78F", - "#801689", - "#372934", - "#4ABB4A", - "#25B594", - "#524750", - "#B06A9F", - "#50BD70", - "#717B4F", - "#5C1B4D", - "#607060", - "#540F5C", - "#251C22", - "#317D32", - "#187964", - "#373036", - "#75476A", - "#367E4A", - "#4C5234", - "#2E0D26", - "#485448", - "#B8016A", - "#49373D", - "#5DFDB1", - "#0FAAF2", - "#6D5F64", - "#EB8AA3", - "#66FEE2", - "#7AA668", - "#B83557", - "#BFDFCF", - "#C54A91", - "#6D5F64", - "#81FBBF", - "#59C9F4", - "#8A7F83", - "#EEA4B8", - "#89FDE5", - "#94B687", - "#8A2842", - "#8FA79B", - "#891658", - "#37292E", - "#4ABB82", - "#258DB5", - "#52474A", - "#B06A7C", - "#50BDA7", - "#5B7B4F", - "#5C1B2C", - "#607068", - "#5C0F3C", - "#251C1E", - "#317D58", - "#185D79", - "#373032", - "#754752", - "#367E6F", - "#3D5234", - "#2E0D15", - "#48544E", - "#B8010E", - "#493937", - "#5DF9FD", - "#0F38F2", - "#6D615F", - "#EBA08A", - "#66CEFE", - "#68A676", - "#B85435", - "#BFDFDF", - "#C54A53", - "#6D615F", - "#81FAFB", - "#597CF4", - "#8A807F", - "#EEB5A4", - "#89DBFD", - "#87B691", - "#8A3F28", - "#8FA7A7", - "#89161E", - "#372A29", - "#4ABBBB", - "#2545B5", - "#524947", - "#B07A6A", - "#509CBD", - "#4F7B58", - "#5C291B", - "#607070", - "#5C0F15", - "#251E1C", - "#317C7D", - "#182D79", - "#373030", - "#755147", - "#36687E", - "#34523B", - "#2E140D", - "#485454", - "#B84E01", - "#494337", - "#5DA9FD", - "#560FF2", - "#6D685F", - "#EBD18A", - "#6681FE", - "#68A694", - "#B89535", - "#BFCFDF", - "#C57D4A", - "#6D685F", - "#81BCFB", - "#8459F4", - "#8A857F", - "#EEDAA4", - "#89A1FD", - "#87B6A8", - "#8A7028", - "#8F9BA7", - "#894616", - "#373229", - "#4A82BB", - "#4D25B5", - "#524E47", - "#B09E6A", - "#5065BD", - "#4F7B6F", - "#5C4A1B", - "#606870", - "#5C2E0F", - "#25221C", - "#31567D", - "#341879", - "#373430", - "#756947", - "#36447E", - "#345249", - "#2E250D", - "#484E54", - "#B8A901", - "#464937", - "#615DFD", - "#C70FF2", - "#6B6D5F", - "#D4EB8A", - "#9666FE", - "#6898A6", - "#99B835", - "#BFBFDF", - "#C5BA4A", - "#6B6D5F", - "#8181FB", - "#D159F4", - "#898A7F", - "#DDEEA4", - "#AA89FD", - "#87ACB6", - "#738A28", - "#8F8FA7", - "#897F16", - "#353729", - "#4A4ABB", - "#9425B5", - "#505247", - "#9FB06A", - "#7050BD", - "#4F717B", - "#4D5C1B", - "#606070", - "#5C540F", - "#23251C", - "#31317D", - "#641879", - "#363730", - "#6A7547", - "#4B367E", - "#344C52", - "#262E0D", - "#484854", - "#6AB801", - "#3D4937", - "#B15DFD", - "#F20FAA", - "#646D5F", - "#A3EB8A", - "#E266FE", - "#687AA6", - "#57B835", - "#CFBFDF", - "#91C54A", - "#646D5F", - "#BF81FB", - "#F459C9", - "#838A7F", - "#B7EEA4", - "#E589FD", - "#8794B6", - "#428A28", - "#9B8FA7", - "#588916", - "#2E3729", - "#824ABB", - "#B5258D", - "#4A5247", - "#7CB06A", - "#A750BD", - "#4F5B7B", - "#2C5C1B", - "#686070", - "#3C5C0F", - "#1E251C", - "#57317D", - "#79185D", - "#323730", - "#537547", - "#6F367E", - "#343D52", - "#152E0D", - "#4E4854", - "#0FB801", - "#37493A", - "#FD5DF9", - "#F20F39", - "#5F6D61", - "#8AEBA1", - "#FE66CE", - "#7568A6", - "#35B854", - "#DFBFDF", - "#54C54A", - "#5F6D61", - "#FB81FA", - "#F4597C", - "#7F8A80", - "#A4EEB5", - "#FD89DB", - "#9187B6", - "#288A3F", - "#A78FA7", - "#1F8916", - "#29372B", - "#BB4ABB", - "#B52544", - "#475249", - "#6AB07B", - "#BD509B", - "#594F7B", - "#1B5C2A", - "#706070", - "#155C0F", - "#1C251E", - "#7D317B", - "#79182D", - "#303731", - "#477552", - "#7E3668", - "#3B3452", - "#0D2E14", - "#544854", - "#01B84E", - "#374942", - "#FD5DA9", - "#F2560F", - "#5F6D67", - "#8AEBD1", - "#FE6682", - "#9468A6", - "#35B895", - "#DFBFCF", - "#4AC57D", - "#5F6D67", - "#FB81BD", - "#F48459", - "#7F8A85", - "#A4EEDA", - "#FD89A1", - "#A887B6", - "#288A6F", - "#A78F9B", - "#168946", - "#293732", - "#BB4A82", - "#B54C25", - "#47524E", - "#6AB09D", - "#BD5065", - "#6E4F7B", - "#1B5C4A", - "#706068", - "#0F5C2E", - "#1C2522", - "#7D3156", - "#793418", - "#303734", - "#477568", - "#7E3644", - "#493452", - "#0D2E25", - "#54484E" - ], - "good": "#2E881B", - "neutral": "#807900", - "bad": "#E32D23", - "background": "#FFFFFF", - "foreground": "#000000", - "tableAccent": "#00B7C3", - "visualStyles": { - "*": { - "*": { - "title": [ - { - "show": true, - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "alignment": "left", - "fontSize": 12, - "fontFamily": "Segoe UI Semibold" - } - ] - } - }, - "page": { - "*": { - "background": [ - { - "color": { - "solid": { - "color": "#F6F7F8" - } - }, - "transparency": 0 - } - ], - "outspace": [ - { - "color": { - "solid": { - "color": "#F6F7F8" - } - }, - "transparency": 0 - } - ], - "outspacePane": [ - { - "backgroundColor": { - "solid": { - "color": "#F6F7F8" - } - }, - "borderColor": { - "solid": { - "color": "#A7ADB6" - } - }, - "fontFamily": "Segoe UI", - "border": true, - "headerSize": 9 - } - ], - "filterCard": [ - { - "$id": "Applied", - "backgroundColor": { - "solid": { - "color": "#F6F7F8" - } - }, - "borderColor": { - "solid": { - "color": "#A7ADB6" - } - }, - "inputBoxColor": { - "solid": { - "color": "#F6F7F8" - } - }, - "textSize": 9, - "fontFamily": "Segoe UI", - "border": true, - "foregroundColor": { - "solid": { - "color": "#212121" - } - } - }, - { - "$id": "Available", - "backgroundColor": { - "solid": { - "color": "#F6F7F8" - } - }, - "borderColor": { - "solid": { - "color": "#A7ADB6" - } - }, - "inputBoxColor": { - "solid": { - "color": "#F6F7F8" - } - }, - "textSize": 9, - "fontFamily": "Segoe UI", - "border": true, - "foregroundColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "pageSize": [ - { - "pageSizeTypes": "Widescreen", - "pageSizeHeight": 720, - "pageSizeWidth": 1280 - } - ], - "displayArea": [ - { - "verticalAlignment": "Top" - } - ] - } - }, - "tableEx": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "grid": [ - { - "gridVertical": false, - "gridHorizontal": true, - "gridHorizontalColor": { - "solid": { - "color": "#D0D3D7" - } - }, - "gridHorizontalWeight": 1, - "outlineStyle": 1, - "outlineColor": { - "solid": { - "color": "#A7ADB6" - } - }, - "outlineWeight": 1, - "rowPadding": 6 - } - ], - "columnHeaders": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "autoSizeColumnWidth": true, - "fontFamily": "Segoe UI", - "fontSize": 9, - "alignment": "Left", - "wordWrap": true, - "outlineStyle": 5, - "outlineColor": { - "solid": { - "color": "#D0D3D7" - } - }, - "outlineWeight": 1 - } - ], - "values": [ - { - "fontColorPrimary": { - "solid": { - "color": "#212121" - } - }, - "fontFamily": "Segoe UI", - "fontSize": 10 - } - ], - "total": [ - { - "totals": true, - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "fontFamily": "Segoe UI Semibold", - "fontSize": 10, - "outlineStyle": 5, - "outlineColor": { - "solid": { - "color": "#212121" - } - }, - "outlineWeight": 1 - } - ], - "stylePreset": [ - { - "name": "None" - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "clusteredColumnChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "labels": [ - { - "show": true, - "fontSize": 9, - "fontFamily": "Segoe UI", - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "clusteredBarChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "transparency": 0, - "show": true - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "labels": [ - { - "show": true, - "fontSize": 9, - "fontFamily": "Segoe UI", - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "columnChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "totals": [ - { - "show": true, - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "labels": [ - { - "show": false - } - ] - } - }, - "hundredPercentStackedAreaChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "totals": [ - { - "show": true, - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "labels": [ - { - "show": false - } - ] - } - }, - "hundredPercentStackedColumnChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - } - } - ], - "lineStyles": [ - { - "markerShape": "circle", - "showMarker": true, - "markerSize": 3 - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": true, - "legendMarkerRendering": "lineAndMarker", - "position": "TopRight", - "fontSize": 9 - } - ], - "totals": [ - { - "show": true - } - ], - "valueAxis": [ - { - "showAxisTitle": false - } - ], - "categoryAxis": [ - { - "showAxisTitle": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "hundredPercentStackedBarChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "totals": [ - { - "show": true, - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "labels": [ - { - "show": false - } - ] - } - }, - "multiRowCard": { - "*": { - "*": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "fontFamily": "Segoe UI", - "fontSize": 22 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "padding": [ - { - "bottom": 16, - "left": 20, - "right": 20, - "top": 16 - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryLabels": [ - { - "fontFamily": "Segoe UI", - "fontColor": { - "solid": { - "color": "#505C6D" - } - }, - "fontSize": 10 - } - ], - "card": [ - { - "barShow": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "aiNarratives": { - "*": { - "*": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "fontFamily": "Segoe UI", - "fontSize": 22 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "padding": [ - { - "bottom": 16, - "left": 20, - "right": 20, - "top": 16 - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryLabels": [ - { - "fontFamily": "Segoe UI", - "fontColor": { - "solid": { - "color": "#505C6D" - } - }, - "fontSize": 10 - } - ], - "card": [ - { - "barShow": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "cardVisual": { - "*": { - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "border": [ - { - "show": true, - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "padding": [ - { - "left": 0, - "right": 0, - "top": 16, - "bottom": 16 - } - ], - "outline": [ - { - "show": false - } - ], - "value": [ - { - "show": true, - "horizontalAlignment": "center", - "$id": "default", - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "label": [ - { - "$id": "default", - "fontFamily": "Segoe UI", - "fontColor": { - "solid": { - "color": "#505C6D" - } - }, - "fontSize": 9, - "position": "aboveValue" - } - ], - "layout": [ - { - "style": "Cards", - "maxTiles": 8 - } - ], - "overFlow": [ - { - "overFlowDirection": 1, - "overFlowStyle": 0 - } - ], - "spacing": [ - { - "$id": "default", - "verticalSpacing": 0 - } - ] - } - }, - "textbox": { - "*": { - "padding": [ - { - "left": 5, - "right": 5, - "top": 5, - "bottom": 5 - } - ], - "background": [ - { - "show": false - } - ] - } - }, - "lineChart": { - "*": { - "*": [ - { - "markerSize": 3, - "showMarker": true - } - ], - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "labels": [ - { - "show": true, - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": false, - "fontSize": 9, - "position": "TopRight" - } - ], - "lineStyles": [ - { - "strokeWidth": 2, - "lineChartType": "smooth", - "interpolationSmooth": "monotoneX" - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "areaChart": { - "*": { - "*": [ - { - "markerSize": 3, - "showMarker": true - } - ], - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "labels": [ - { - "show": true, - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": true, - "legendMarkerRendering": "lineAndMarker", - "fontSize": 9, - "position": "TopRight" - } - ], - "lineStyles": [ - { - "strokeWidth": 2, - "lineChartType": "smooth", - "interpolationSmooth": "monotoneX" - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "donutChart": { - "*": { - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "left": 20, - "right": 20, - "top": 16, - "bottom": 16 - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "legend": [ - { - "show": false, - "position": "TopRight", - "fontSize": 9 - } - ] - } - }, - "pieChart": { - "*": { - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "left": 20, - "right": 20, - "top": 16, - "bottom": 16 - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "legend": [ - { - "show": false, - "position": "TopRight", - "fontSize": 9 - } - ] - } - }, - "pivotTable": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "grid": [ - { - "gridVertical": false, - "gridHorizontal": true, - "gridHorizontalColor": { - "solid": { - "color": "#D0D3D7" - } - }, - "gridHorizontalWeight": 1, - "outlineStyle": 1, - "outlineColor": { - "solid": { - "color": "#A7ADB6" - } - }, - "outlineWeight": 1, - "rowPadding": 6 - }, - { - "outlineStyle": 4, - "outlineWeight": 1, - "outlineColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "columnHeaders": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "autoSizeColumnWidth": true, - "fontFamily": "Segoe UI", - "fontSize": 9, - "alignment": "Left", - "wordWrap": true, - "outlineStyle": 5, - "outlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "values": [ - { - "fontColorPrimary": { - "solid": { - "color": "#212121" - } - }, - "fontSize": 10, - "fontFamily": "Segoe UI" - } - ], - "rowHeaders": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - }, - "fontFamily": "Segoe UI", - "fontSize": 10, - "showExpandCollapseButtons": true - } - ], - "rowTotal": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "stylePreset": [ - { - "name": "None" - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "columnTotal": [ - { - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "actionButton": { - "*": { - "icon": [ - { - "$id": "default", - "show": true, - "shapeType": "custom", - "topMargin": 0, - "bottomMargin": 0, - "leftMargin": 0, - "rightMargin": 0, - "image": { - "name": "Back Button", - "scaling": "Fit", - "url": "data:image/svg+xml;utf8,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3361 35.2697C18.9681 35.8674 19.9649 35.8396 20.5626 35.2077C21.1603 34.5757 21.1326 33.5788 20.5006 32.9811L9.49863 22.5754H36.2184C37.0882 22.5754 37.7934 21.8703 37.7934 21.0004C37.7934 20.1306 37.0882 19.4254 36.2184 19.4254H9.49386L20.5006 9.01517C21.1326 8.41746 21.1603 7.42061 20.5626 6.78865C19.9649 6.15669 18.9681 6.12892 18.3361 6.72663L4.85993 19.4725C4.5107 19.8028 4.3007 20.223 4.22992 20.6615C4.20598 20.7706 4.19336 20.884 4.19336 21.0004C4.19336 21.1214 4.20699 21.2391 4.2328 21.3522C4.30628 21.7844 4.51532 22.1979 4.85993 22.5238L18.3361 35.2697Z' fill='%23008489'/%3E%3C/svg%3E" - } - } - ] - } - }, - "barChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "valueAxis": [ - { - "showAxisTitle": false, - "fontFamily": "Segoe UI", - "fontSize": 9, - "labelColor": { - "solid": { - "color": "#212121" - } - }, - "gridlineStyle": "dotted", - "gridlineThickness": 1, - "gridlineColor": { - "solid": { - "color": "#D0D3D7" - } - } - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "legend": [ - { - "show": true, - "fontSize": 9, - "position": "TopRight" - } - ], - "labels": [ - { - "show": false - } - ], - "totals": [ - { - "show": true, - "fontSize": 9, - "fontFamily": "Segoe UI", - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "funnel": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "scatterChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "azureMap": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "ribbonChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "keyDriversVisual": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "decompositionTreeVisual": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "levelHeader": [ - { - "levelTitleFontFamily": "Segoe UI Semibold", - "levelTitleFontSize": 9, - "showSubtitles": true, - "levelSubtitleFontFamily": "Segoe UI Semibold", - "levelSubtitleFontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "treemap": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "labels": [ - { - "show": true - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "lineClusteredColumnComboChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "lineStyles": [ - { - "markerShape": "circle", - "showMarker": true, - "markerSize": 3, - "strokeWidth": 2, - "lineChartType": "smooth", - "interpolationSmooth": "monotoneX" - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - }, - "show": true - } - ], - "legend": [ - { - "show": true, - "legendMarkerRendering": "lineAndMarker", - "position": "TopRight", - "fontSize": 9 - } - ], - "valueAxis": [ - { - "showAxisTitle": false - } - ], - "categoryAxis": [ - { - "showAxisTitle": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "gauge": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "labels": [ - { - "show": false - } - ], - "calloutValue": [ - { - "fontFamily": "Segoe UI Light", - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "target": [ - { - "fontFamily": "Segoe UI", - "color": { - "solid": { - "color": "#212121" - } - }, - "fontSize": 9 - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "lineStackedColumnComboChart": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - }, - "show": true, - "transparency": 0 - } - ], - "lineStyles": [ - { - "markerShape": "circle", - "showMarker": true, - "markerSize": 3 - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - } - } - ], - "legend": [ - { - "show": true, - "legendMarkerRendering": "lineAndMarker", - "position": "TopRight", - "fontSize": 9 - } - ], - "totals": [ - { - "show": true - } - ], - "valueAxis": [ - { - "showAxisTitle": false - } - ], - "categoryAxis": [ - { - "showAxisTitle": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ] - } - }, - "kpi": { - "*": { - "title": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 12, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "dropShadow": [ - { - "color": { - "solid": { - "color": "#D0D3D7" - } - }, - "show": true, - "position": "Outer", - "preset": "Bottom", - "shadowDistance": 1 - } - ], - "border": [ - { - "radius": 4, - "color": { - "solid": { - "color": "#E6E6E6" - } - }, - "show": true - } - ], - "padding": [ - { - "top": 16, - "bottom": 16, - "left": 20, - "right": 20 - } - ], - "background": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - } - } - ], - "lineStyles": [ - { - "markerShape": "circle", - "showMarker": true, - "markerSize": 3, - "strokeWidth": 2, - "lineChartType": "smooth", - "interpolationSmooth": "monotoneX" - } - ], - "labels": [ - { - "fontFamily": "Segoe UI", - "fontSize": 9, - "color": { - "solid": { - "color": "#212121" - } - }, - "show": true - } - ], - "legend": [ - { - "show": true, - "legendMarkerRendering": "lineAndMarker", - "position": "TopRight", - "fontSize": 9 - } - ], - "valueAxis": [ - { - "showAxisTitle": false - } - ], - "categoryAxis": [ - { - "showAxisTitle": false - } - ], - "spacing": [ - { - "customizeSpacing": true, - "spaceBelowTitle": 10 - } - ], - "goals": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 10, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ], - "indicator": [ - { - "fontFamily": "Segoe UI Semibold", - "fontSize": 38, - "fontColor": { - "solid": { - "color": "#212121" - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/SharedResources/BaseThemes/CY19SU12.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/SharedResources/BaseThemes/CY19SU12.json deleted file mode 100644 index 2622bf8620..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/StaticResources/SharedResources/BaseThemes/CY19SU12.json +++ /dev/null @@ -1,430 +0,0 @@ -{ - "name": "CY19SU12", - "dataColors": [ - "#118DFF", - "#12239E", - "#E66C37", - "#6B007B", - "#E044A7", - "#744EC2", - "#D9B300", - "#D64550", - "#197278", - "#1AAB40", - "#15C6F4", - "#4092FF", - "#FFA058", - "#BE5DC9", - "#F472D0", - "#B5A1FF", - "#C4A200", - "#FF8080", - "#00DBBC", - "#5BD667", - "#0091D5", - "#4668C5", - "#FF6300", - "#99008A", - "#EC008C", - "#533285", - "#99700A", - "#FF4141", - "#1F9A85", - "#25891C", - "#0057A2", - "#002050", - "#C94F0F", - "#450F54", - "#B60064", - "#34124F", - "#6A5A29", - "#1AAB40", - "#BA141A", - "#0C3D37", - "#0B511F" - ], - "foreground": "#252423", - "foregroundNeutralSecondary": "#605E5C", - "foregroundNeutralTertiary": "#B3B0AD", - "background": "#FFFFFF", - "backgroundLight": "#F3F2F1", - "backgroundNeutral": "#C8C6C4", - "tableAccent": "#118DFF", - "good": "#1AAB40", - "neutral": "#D9B300", - "bad": "#D64554", - "maximum": "#118DFF", - "center": "#D9B300", - "minimum": "#DEEFFF", - "null": "#FF7F48", - "hyperlink": "#0078d4", - "visitedHyperlink": "#0078d4", - "textClasses": { - "callout": { - "fontSize": 45, - "fontFace": "DIN", - "color": "#252423" - }, - "title": { - "fontSize": 12, - "fontFace": "DIN", - "color": "#252423" - }, - "header": { - "fontSize": 12, - "fontFace": "Segoe UI Semibold", - "color": "#252423" - }, - "label": { - "fontSize": 10, - "fontFace": "Segoe UI", - "color": "#252423" - } - }, - "visualStyles": { - "*": { - "*": { - "*": [ - { - "transparency": 0, - "wordWrap": true - } - ], - "categoryAxis": [ - { - "showAxisTitle": true, - "gridlineStyle": "dotted" - } - ], - "valueAxis": [ - { - "showAxisTitle": true, - "gridlineStyle": "dotted" - } - ], - "title": [ - { - "titleWrap": true - } - ], - "lineStyles": [ - { - "strokeWidth": 3 - } - ], - "wordWrap": [ - { - "show": true - } - ], - "background": [ - { - "show": true, - "transparency": 0 - } - ], - "outspacePane": [ - { - "backgroundColor": { - "solid": { - "color": "#ffffff" - } - }, - "foregroundColor": { - "solid": { - "color": "#252423" - } - }, - "transparency": 0, - "border": true, - "borderColor": { - "solid": { - "color": "#B3B0AD" - } - } - } - ], - "filterCard": [ - { - "$id": "Applied", - "transparency": 0, - "foregroundColor": { - "solid": { - "color": "#252423" - } - }, - "border": true - }, - { - "$id": "Available", - "transparency": 0, - "foregroundColor": { - "solid": { - "color": "#252423" - } - }, - "border": true - } - ] - } - }, - "scatterChart": { - "*": { - "bubbles": [ - { - "bubbleSize": -10 - } - ], - "general": [ - { - "responsive": true - } - ], - "fillPoint": [ - { - "show": true - } - ] - } - }, - "lineChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "map": { - "*": { - "bubbles": [ - { - "bubbleSize": -10 - } - ] - } - }, - "pieChart": { - "*": { - "legend": [ - { - "show": true, - "position": "RightCenter" - } - ], - "labels": [ - { - "labelStyle": "Data value, percent of total" - } - ] - } - }, - "donutChart": { - "*": { - "legend": [ - { - "show": true, - "position": "RightCenter" - } - ], - "labels": [ - { - "labelStyle": "Data value, percent of total" - } - ] - } - }, - "pivotTable": { - "*": { - "*": [ - { - "showExpandCollapseButtons": true - } - ] - } - }, - "multiRowCard": { - "*": { - "card": [ - { - "outlineWeight": 2, - "barShow": true, - "barWeight": 2 - } - ] - } - }, - "kpi": { - "*": { - "trendline": [ - { - "transparency": 20 - } - ] - } - }, - "slicer": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "waterfallChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "columnChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "clusteredColumnChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "hundredPercentStackedColumnChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "barChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "clusteredBarChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "hundredPercentStackedBarChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "areaChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "stackedAreaChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "lineClusteredColumnComboChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "lineStackedColumnComboChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "ribbonChart": { - "*": { - "general": [ - { - "responsive": true - } - ] - } - }, - "group": { - "*": { - "background": [ - { - "show": false - } - ] - } - }, - "basicShape": { - "*": { - "background": [ - { - "show": false - } - ] - } - }, - "image": { - "*": { - "background": [ - { - "show": false - } - ] - } - }, - "page": { - "*": { - "outspace": [ - { - "color": { - "solid": { - "color": "#FFFFFF" - } - } - } - ], - "background": [ - { - "transparency": 100 - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition.pbir b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition.pbir deleted file mode 100644 index 72c44ac970..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition.pbir +++ /dev/null @@ -1,9 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definitionProperties/2.0.0/schema.json", - "version": "4.0", - "datasetReference": { - "byPath": { - "path": "../Subscription Billing app.SemanticModel" - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark15eb889e4059c3146371.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark15eb889e4059c3146371.bookmark.json deleted file mode 100644 index 919dd6d19f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark15eb889e4059c3146371.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Income Statement by Month Link", - "name": "Bookmark15eb889e4059c3146371", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection09326b15a1e30a45e60b", - "sections": { - "ReportSection09326b15a1e30a45e60b": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark2556dbd13d90b398a787.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark2556dbd13d90b398a787.bookmark.json deleted file mode 100644 index 2d099df2c2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark2556dbd13d90b398a787.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Menu Link", - "name": "Bookmark2556dbd13d90b398a787", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection1955fc97546422323dea", - "sections": { - "ReportSection1955fc97546422323dea": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark496226472d24527c5e69.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark496226472d24527c5e69.bookmark.json deleted file mode 100644 index 4c265dce10..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark496226472d24527c5e69.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Chart of Accounts by Month Link", - "name": "Bookmark496226472d24527c5e69", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSectionf72eb4d7e5e35db3b283", - "sections": { - "ReportSectionf72eb4d7e5e35db3b283": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark4c54ebcb0eb024e967b5.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark4c54ebcb0eb024e967b5.bookmark.json deleted file mode 100644 index 6b8dbabd2f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark4c54ebcb0eb024e967b5.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Profitability KPIs Link", - "name": "Bookmark4c54ebcb0eb024e967b5", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSectionbb4917d9edb6d427282c", - "sections": { - "ReportSectionbb4917d9edb6d427282c": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6746518f3cb530dd9a83.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6746518f3cb530dd9a83.bookmark.json deleted file mode 100644 index cf86e7f9d8..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6746518f3cb530dd9a83.bookmark.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Respect Layers", - "name": "Bookmark6746518f3cb530dd9a83", - "options": { - "applyOnlyToTargetVisuals": true, - "targetVisualNames": [], - "suppressActiveSection": true, - "suppressData": true, - "suppressDisplay": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection1955fc97546422323dea", - "sections": { - "ReportSection1955fc97546422323dea": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6837f6cd2e84a77e9b8e.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6837f6cd2e84a77e9b8e.bookmark.json deleted file mode 100644 index 6896905a79..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark6837f6cd2e84a77e9b8e.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Average Collection Period Link", - "name": "Bookmark6837f6cd2e84a77e9b8e", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSectionb1d1e3d33a031ad3b0ed", - "sections": { - "ReportSectionb1d1e3d33a031ad3b0ed": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7acc4dd5c7523a1e4003.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7acc4dd5c7523a1e4003.bookmark.json deleted file mode 100644 index d02e43d47d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7acc4dd5c7523a1e4003.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Finance Overview Link", - "name": "Bookmark7acc4dd5c7523a1e4003", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection2fa580b0181e8c981cdc", - "sections": { - "ReportSection2fa580b0181e8c981cdc": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7fcb39a12a27604d4d10.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7fcb39a12a27604d4d10.bookmark.json deleted file mode 100644 index 4dddc4a741..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmark7fcb39a12a27604d4d10.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Balance Sheet by Month Link", - "name": "Bookmark7fcb39a12a27604d4d10", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection1d72ed5fad2ab88686bd", - "sections": { - "ReportSection1d72ed5fad2ab88686bd": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarka9652147edcc8bce4301.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarka9652147edcc8bce4301.bookmark.json deleted file mode 100644 index 39b7078f68..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarka9652147edcc8bce4301.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Get Started", - "name": "Bookmarka9652147edcc8bce4301", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection31df4b90dc8e996715ce", - "sections": { - "ReportSection31df4b90dc8e996715ce": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkb27f7bff097c6d0905d6.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkb27f7bff097c6d0905d6.bookmark.json deleted file mode 100644 index 021ca0d231..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkb27f7bff097c6d0905d6.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Activity KPIs Link", - "name": "Bookmarkb27f7bff097c6d0905d6", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection3993550d709336a53a17", - "sections": { - "ReportSection3993550d709336a53a17": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkcddf9bad46110d655e76.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkcddf9bad46110d655e76.bookmark.json deleted file mode 100644 index 55dea6d0be..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkcddf9bad46110d655e76.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Budget Comparison Link", - "name": "Bookmarkcddf9bad46110d655e76", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection0ce933af4354cb85391d", - "sections": { - "ReportSection0ce933af4354cb85391d": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarke7692ddf63b3b5b08d0c.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarke7692ddf63b3b5b08d0c.bookmark.json deleted file mode 100644 index 188cae12e8..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarke7692ddf63b3b5b08d0c.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Liquidity KPIs Link", - "name": "Bookmarke7692ddf63b3b5b08d0c", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection6838cf9cda361d088e0a", - "sections": { - "ReportSection6838cf9cda361d088e0a": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json deleted file mode 100644 index 51b8d5a3f0..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmark/1.4.0/schema.json", - "displayName": "Chart of Accounts Link", - "name": "Bookmarkfa6d9d9e3eb90e2d49e5", - "options": { - "targetVisualNames": [], - "suppressData": true - }, - "explorationState": { - "version": "1.3", - "activeSection": "ReportSection2fc4e6bb04ed4087ddb9", - "sections": { - "ReportSection2fc4e6bb04ed4087ddb9": { - "visualContainers": {} - } - }, - "objects": { - "merge": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/bookmarks.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/bookmarks.json deleted file mode 100644 index ffa1d4b71a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/bookmarks/bookmarks.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/bookmarksMetadata/1.0.0/schema.json", - "items": [ - { - "name": "Bookmark2556dbd13d90b398a787" - }, - { - "name": "Bookmarka9652147edcc8bce4301" - }, - { - "name": "Bookmark7acc4dd5c7523a1e4003" - }, - { - "name": "Bookmarkfa6d9d9e3eb90e2d49e5" - }, - { - "name": "Bookmark496226472d24527c5e69" - }, - { - "name": "Bookmark7fcb39a12a27604d4d10" - }, - { - "name": "Bookmark15eb889e4059c3146371" - }, - { - "name": "Bookmarkcddf9bad46110d655e76" - }, - { - "name": "Bookmarkb27f7bff097c6d0905d6" - }, - { - "name": "Bookmarke7692ddf63b3b5b08d0c" - }, - { - "name": "Bookmark4c54ebcb0eb024e967b5" - }, - { - "name": "Bookmark6837f6cd2e84a77e9b8e" - }, - { - "name": "Bookmark6746518f3cb530dd9a83" - } - ] -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/page.json deleted file mode 100644 index fa62fb73dc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/page.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "04fa320747962435bf38", - "displayName": "Subscription Overview", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "b92fd7f548832e03273c", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d3d0d36385e1402f5bfe", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3ed1300ff4abf71206bb", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "28186fdf94a1162df025", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d837575a70a401826a9a", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1bbc01978e5e9ad103a3", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ce775603be0c35be8120", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ab59a5d2aa390e238b80", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "b932255c0480075aca39", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "b52fb349022c04acc005", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8d057cc271120e65d72c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "65ba3b4a517202493e07", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1ad7b73a102260ba60dd", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "03aa001839ebb874870a", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7d03881d03e7ae3390b", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a90d372011c7d6165d4d", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "892df28804e00ae29dc2", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9ecfdf2d38a58b632425", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1cb12181a5500d2d22e1", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "UBB handling" - } - }, - "Property": "Treat Usage Based Billing as constant" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1a3b5d1098ab76056c17/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1a3b5d1098ab76056c17/visual.json deleted file mode 100644 index 9c49a4ecd8..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1a3b5d1098ab76056c17/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "1a3b5d1098ab76056c17", - "position": { - "x": 22.219884271436086, - "y": 10.099947396107313, - "z": 4000, - "height": 43.766438716465018, - "width": 604.65018411362439, - "tabOrder": 4000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Subscription Billing Overview Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1e95b10309c4e42a5283/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1e95b10309c4e42a5283/visual.json deleted file mode 100644 index 668931b8ed..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/1e95b10309c4e42a5283/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "1e95b10309c4e42a5283", - "position": { - "x": 626.35794391512638, - "y": 23.034379832805215, - "z": 3000, - "height": 30, - "width": 602.4376263964441, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/3c05c5768aea4ba3404e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/3c05c5768aea4ba3404e/visual.json deleted file mode 100644 index 7e52ed00e1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/3c05c5768aea4ba3404e/visual.json +++ /dev/null @@ -1,400 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "3c05c5768aea4ba3404e", - "position": { - "x": 1.9564503896695946, - "y": 169.16332758739122, - "z": 4500, - "height": 60.7420442688316, - "width": 595.41306858944665, - "tabOrder": 1000 - }, - "visual": { - "visualType": "cardVisual", - "query": { - "queryState": { - "Data": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers", - "nativeQueryRef": "Active Customers" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Avg. Mon. Churn Rate %" - } - }, - "queryRef": "Subscription Billing KPIs.Avg. Mon. Churn Rate %", - "nativeQueryRef": "Avg. Mon. Churn Rate %" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Avg. Downgrade Rate %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Avg. Downgrade Rate %", - "nativeQueryRef": "Mon. Avg. Downgrade Rate %" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "layout": [ - { - "properties": { - "orientation": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "rowCount": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "columnCount": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'top'" - } - } - }, - "cellPadding": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - } - } - ], - "value": [ - { - "properties": { - "horizontalAlignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "fillCustom": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "paddingSelection": { - "expr": { - "Literal": { - "Value": "'Custom'" - } - } - }, - "leftMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "rightMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "topMargin": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "bottomMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "accentBar": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'Top'" - } - } - }, - "width": { - "expr": { - "Literal": { - "Value": "1D" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#A7ADB6'" - } - } - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "spacing": [ - { - "properties": { - "verticalSpacing": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "text": { - "expr": { - "Literal": { - "Value": "'Purchasing Matric Details Card Bottom'" - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - }, - "titleWrap": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "angle": { - "expr": { - "Literal": { - "Value": "90L" - } - } - }, - "shadowDistance": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowBlur": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowSpread": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "70L" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - } - } - } - ] - } - }, - "parentGroupName": "ff2e42de0c29c48402e1" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/48d196200d424e20ce04/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/48d196200d424e20ce04/visual.json deleted file mode 100644 index 00c11cf350..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/48d196200d424e20ce04/visual.json +++ /dev/null @@ -1,400 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "48d196200d424e20ce04", - "position": { - "x": 2.1787633975367129, - "y": 114.49456604219388, - "z": 1000, - "height": 115.41080581402892, - "width": 594.96844257371242, - "tabOrder": 0 - }, - "visual": { - "visualType": "cardVisual", - "query": { - "queryState": { - "Data": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Cost", - "nativeQueryRef": "Mon. Recurring Cost" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Net Profit %", - "nativeQueryRef": "Mon. Net Profit %" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "layout": [ - { - "properties": { - "orientation": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "rowCount": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "columnCount": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'top'" - } - } - }, - "cellPadding": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - } - } - ], - "value": [ - { - "properties": { - "horizontalAlignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "fillCustom": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "paddingSelection": { - "expr": { - "Literal": { - "Value": "'Custom'" - } - } - }, - "leftMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "rightMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "topMargin": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "bottomMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "accentBar": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'Top'" - } - } - }, - "width": { - "expr": { - "Literal": { - "Value": "1D" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#A7ADB6'" - } - } - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "spacing": [ - { - "properties": { - "verticalSpacing": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "text": { - "expr": { - "Literal": { - "Value": "'Purchasing Matric Details Card Top'" - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - }, - "titleWrap": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "angle": { - "expr": { - "Literal": { - "Value": "90L" - } - } - }, - "shadowDistance": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowBlur": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowSpread": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "70L" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - }, - "parentGroupName": "ff2e42de0c29c48402e1" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/771ff56ad0a8e130d4c0/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/771ff56ad0a8e130d4c0/visual.json deleted file mode 100644 index b7af59a238..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/771ff56ad0a8e130d4c0/visual.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "771ff56ad0a8e130d4c0", - "position": { - "x": 444.74071831031608, - "y": 145.29378048384828, - "z": 1000, - "height": 299.44693782646777, - "width": 392.47039484356577, - "tabOrder": 1000 - }, - "visual": { - "visualType": "barChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendors" - } - }, - "Property": "Vendor No. & Name" - } - }, - "queryRef": "Vendors.Vendor No. & Name", - "nativeQueryRef": "Vendor No. & Name", - "active": true - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Package Code" - } - }, - "queryRef": "Subscription.Package Code", - "nativeQueryRef": "Package Code" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Cost", - "nativeQueryRef": "Mon. Recurring Cost" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "labels": [ - { - "properties": {} - } - ], - "legend": [ - { - "properties": { - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Top 5 Vendors by Mon. Recurring Cost Label" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/81e5ce20951c8000b905/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/81e5ce20951c8000b905/visual.json deleted file mode 100644 index c7fd9b321c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/81e5ce20951c8000b905/visual.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "81e5ce20951c8000b905", - "position": { - "x": 651.39855359263129, - "y": 463.74075006896226, - "z": 0, - "height": 229.90537185622281, - "width": 602.27347413617338, - "tabOrder": 0 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": false - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Avg. Mon. Churn Rate %" - } - }, - "queryRef": "Subscription Billing KPIs.Avg. Mon. Churn Rate %", - "nativeQueryRef": "Avg. Mon. Churn Rate %" - } - ] - } - } - }, - "objects": { - "labels": [ - { - "properties": {} - } - ] - }, - "visualContainerObjects": { - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeaderTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Avg. Mon. Churn Rate % by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/9536dacfc2aa77140dd8/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/9536dacfc2aa77140dd8/visual.json deleted file mode 100644 index bf172b0813..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/9536dacfc2aa77140dd8/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "9536dacfc2aa77140dd8", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 9000, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 8000 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/srb/analytics/subscription-powerbi-overview'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/a836edc66620c17c1891/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/a836edc66620c17c1891/visual.json deleted file mode 100644 index f1ba909d67..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/a836edc66620c17c1891/visual.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "a836edc66620c17c1891", - "position": { - "x": 862.01736835844133, - "y": 145.29378048384828, - "z": 7000, - "height": 299.44693782646777, - "width": 391.58445715768863, - "tabOrder": 6000 - }, - "visual": { - "visualType": "pieChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Package Code" - } - }, - "queryRef": "Subscription.Package Code", - "nativeQueryRef": "Package Code", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Month Year", - "nativeQueryRef": "Fiscal Month Year", - "active": false - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value", - "nativeQueryRef": "Total Contract Value" - } - ] - } - } - }, - "objects": { - "labels": [ - { - "properties": { - "labelStyle": { - "expr": { - "Literal": { - "Value": "'Both'" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeaderTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value by Package Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/b10d81226954007e1ab3/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/b10d81226954007e1ab3/visual.json deleted file mode 100644 index 49f833a7c4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/b10d81226954007e1ab3/visual.json +++ /dev/null @@ -1,312 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "b10d81226954007e1ab3", - "position": { - "x": 0, - "y": 0, - "z": 0, - "height": 229.90537185622276, - "width": 599.32596936878588, - "tabOrder": 2000 - }, - "visual": { - "visualType": "cardVisual", - "query": { - "queryState": { - "Data": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Annual Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Annual Recurring Revenue", - "nativeQueryRef": "Annual Recurring Revenue" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Annual Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "value": [ - { - "properties": { - "fontSize": { - "expr": { - "Literal": { - "Value": "22D" - } - } - }, - "horizontalAlignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "label": [ - { - "properties": { - "position": { - "expr": { - "Literal": { - "Value": "'aboveValue'" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "layout": [ - { - "properties": { - "alignment": { - "expr": { - "Literal": { - "Value": "'top'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "paddingSelection": { - "expr": { - "Literal": { - "Value": "'Custom'" - } - } - }, - "leftMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "rightMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "topMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - }, - "bottomMargin": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ], - "fillCustom": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "spacing": [ - { - "properties": { - "verticalSpacing": { - "expr": { - "Literal": { - "Value": "0L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Literal": { - "Value": "'Purchasing Metrics Card'" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "titleWrap": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'left'" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "color": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#D9F0F2'" - } - } - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "color": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#00A4AF'" - } - } - } - } - }, - "width": { - "expr": { - "Literal": { - "Value": "2D" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "This card displays key metrics for business analysis. The card shows total purchase amount, document count, number of outstanding purchase orders, number of purchase invoices, outstanding amount, and invoiced amount. Label" - } - } - } - } - } - ] - } - }, - "parentGroupName": "ff2e42de0c29c48402e1" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/mobile.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/mobile.json deleted file mode 100644 index e4a4350383..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/mobile.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainerMobileState/2.2.0/schema.json", - "position": { - "x": 0, - "y": 0, - "z": 0, - "height": 40, - "width": 324, - "tabOrder": 0 - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/visual.json deleted file mode 100644 index e3eaa73275..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e08576f891b517a9d36f/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e08576f891b517a9d36f", - "position": { - "x": 22.219884271436086, - "y": 10.099947396107313, - "z": 8000, - "height": 43.766438716465018, - "width": 604.65018411362439, - "tabOrder": 7000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Subscription Billing Overview Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e912627a8c8c0391b651/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e912627a8c8c0391b651/visual.json deleted file mode 100644 index 9e717b12ae..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/e912627a8c8c0391b651/visual.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e912627a8c8c0391b651", - "position": { - "x": 27.464068262190832, - "y": 145.29378048384828, - "z": 6000, - "height": 299.44693782646777, - "width": 392.47039484356577, - "tabOrder": 5000 - }, - "visual": { - "visualType": "barChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": true - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Package Code" - } - }, - "queryRef": "Subscription.Package Code", - "nativeQueryRef": "Package Code" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "labels": [ - { - "properties": {} - } - ], - "legend": [ - { - "properties": { - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Top 5 Customers by Mon. Recurring Revenue Label" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "1823f9060a10b2b0a3ba", - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "TopN", - "filter": { - "Version": 2, - "From": [ - { - "Name": "subquery", - "Expression": { - "Subquery": { - "Query": { - "Version": 2, - "From": [ - { - "Name": "c", - "Entity": "Customers", - "Type": 0 - }, - { - "Name": "s", - "Entity": "Subscription Billing KPIs", - "Type": 0 - } - ], - "Select": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Source": "c" - } - }, - "Property": "Customer No. & Name" - }, - "Name": "field" - } - ], - "OrderBy": [ - { - "Direction": 2, - "Expression": { - "Measure": { - "Expression": { - "SourceRef": { - "Source": "s" - } - }, - "Property": "Mon. Recurring Revenue" - } - } - } - ], - "Top": 5 - } - } - }, - "Type": 2 - }, - { - "Name": "c", - "Entity": "Customers", - "Type": 0 - } - ], - "Where": [ - { - "Condition": { - "In": { - "Expressions": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Source": "c" - } - }, - "Property": "Customer No. & Name" - } - } - ], - "Table": { - "SourceRef": { - "Source": "subquery" - } - } - } - } - } - ] - } - } - ] - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/f83bd8b3a001e962a80a/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/f83bd8b3a001e962a80a/visual.json deleted file mode 100644 index 65a3e777ea..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/f83bd8b3a001e962a80a/visual.json +++ /dev/null @@ -1,244 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f83bd8b3a001e962a80a", - "position": { - "x": 27.510044495616402, - "y": 61.89760011513691, - "z": 2000, - "height": 65.827606471653539, - "width": 1226.1619832331883, - "tabOrder": 2000 - }, - "visual": { - "visualType": "cardVisual", - "query": { - "queryState": { - "Data": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.MRC", - "nativeQueryRef": "Mon. Recurring Cost1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP", - "nativeQueryRef": "Mon. Net Profit1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.TCV", - "nativeQueryRef": "Total Contract Value1" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "text": { - "expr": { - "Literal": { - "Value": "'Financial KPIs Card'" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue Label" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "angle": { - "expr": { - "Literal": { - "Value": "90L" - } - } - }, - "shadowDistance": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowBlur": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowSpread": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "70L" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/ff2e42de0c29c48402e1/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/ff2e42de0c29c48402e1/visual.json deleted file mode 100644 index 3aaf38d99f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/04fa320747962435bf38/visuals/ff2e42de0c29c48402e1/visual.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ff2e42de0c29c48402e1", - "position": { - "x": 27.510044495616402, - "y": 463.74075006896226, - "z": 5000, - "height": 229.90537185622281, - "width": 599.32596936878588, - "tabOrder": 9000 - }, - "visualGroup": { - "displayName": "Purchasing Metrics Group", - "groupMode": "ScaleMode", - "objects": { - "general": [ - { - "properties": { - "altText": { - "expr": { - "Literal": { - "Value": "''" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/page.json deleted file mode 100644 index e20f2a982c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/page.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "0ce6ac6d5da599bd30e9", - "displayName": "Revenue by Customer", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "eef57f8ad387715d9ee3", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c3ec4158b9ab900d0af7", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "284ec743dc0ff15798f8", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7b240451ed75fdca39a4", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5f1d75580e0342d84042", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "853c5e1b655d49605778", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9a9aa16c0a32963db00c", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2dc2f5a1a8d4d63a51bc", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1ff6b6ec4d18304eb751", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3774157da360a14a4e66", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "50800f9cd2ab3b530eee", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ee9c36814004681e2a8c", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "79007a5ba80102d5dde8", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "981a33560b6ec2b73433", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9ad30bb8d746002aeb76", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2bd60b550dd0c4409b88", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9fc54d1067c8a7de0599", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a597909ce10799330125", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c4d6b67a156949b23559", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/3d604ae72626517949d9/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/3d604ae72626517949d9/visual.json deleted file mode 100644 index 7850f20965..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/3d604ae72626517949d9/visual.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "3d604ae72626517949d9", - "position": { - "x": 25.545041317358088, - "y": 59.932596936878596, - "z": 1000, - "height": 304.57549263003875, - "width": 602.27347413617338, - "tabOrder": 1000 - }, - "visual": { - "visualType": "clusteredColumnChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Name" - } - }, - "queryRef": "Customers.Customer Name", - "nativeQueryRef": "Customer Name", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue1" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'BottomCenter'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Customer Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/719df397e6cc53beabf1/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/719df397e6cc53beabf1/visual.json deleted file mode 100644 index fdf6ffebbf..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/719df397e6cc53beabf1/visual.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "719df397e6cc53beabf1", - "position": { - "x": 651, - "y": 60, - "z": 4000, - "height": 305, - "width": 602, - "tabOrder": 4000 - }, - "visual": { - "visualType": "azureMap", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - }, - "queryRef": "Customers.Country/Region Code", - "nativeQueryRef": "Country/Region Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "City" - } - }, - "queryRef": "Customers.City", - "nativeQueryRef": "City", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Address" - } - }, - "queryRef": "Customers.Address", - "nativeQueryRef": "Address", - "active": true - } - ] - }, - "Size": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - } - ] - } - } - }, - "objects": { - "mapControls": [ - { - "properties": { - "defaultStyle": { - "expr": { - "Literal": { - "Value": "'road'" - } - } - }, - "showStylePicker": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "showNavigationControls": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "showSelectionControl": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "autoZoomIncludesReferenceLayer": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "bubbleLayer": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "bubbleRadius": { - "expr": { - "Literal": { - "Value": "6L" - } - } - }, - "minBubbleRadius": { - "expr": { - "Literal": { - "Value": "6L" - } - } - }, - "maxRadius": { - "expr": { - "Literal": { - "Value": "21L" - } - } - }, - "bubbleStrokeWidth": { - "expr": { - "Literal": { - "Value": "1L" - } - } - }, - "autoStrokeColor": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "layerPosition": { - "expr": { - "Literal": { - "Value": "''" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Customer Location Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/9c4bea6443937a7e7a06/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/9c4bea6443937a7e7a06/visual.json deleted file mode 100644 index f89664ce37..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/9c4bea6443937a7e7a06/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "9c4bea6443937a7e7a06", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue by Customer Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ab052cbc71ba2a434d64/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ab052cbc71ba2a434d64/visual.json deleted file mode 100644 index c51dd8da81..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ab052cbc71ba2a434d64/visual.json +++ /dev/null @@ -1,473 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ab052cbc71ba2a434d64", - "position": { - "x": 25.545041317358088, - "y": 380.22811499298388, - "z": 0, - "height": 313.41800693220119, - "width": 1227.1444848223175, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year", - "nativeQueryRef": "Fiscal Year", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Month Year", - "nativeQueryRef": "Fiscal Month Year", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "queryRef": "Customers.Customer Posting Group", - "nativeQueryRef": "Customer Posting Group", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Name" - } - }, - "queryRef": "Customers.Customer Name", - "nativeQueryRef": "Customer Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "queryRef": "Item.Item No. & Description", - "nativeQueryRef": "Item No. & Description", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.MRC", - "nativeQueryRef": "Mon. Recurring Cost1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP", - "nativeQueryRef": "Mon. Net Profit Amount1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP % of MRR", - "nativeQueryRef": "Mon. Net Profit %1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn", - "nativeQueryRef": "Churn" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers", - "nativeQueryRef": "Active Customers" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Month Year" - ], - "isCollapsed": true, - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer Posting Group" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer Name" - ], - "isCollapsed": true, - "isPinned": true - }, - { - "queryRefs": [ - "Item.Item No. & Description" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'F 2026'" - } - } - ], - "isToggled": true - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "111.70056497175142D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.Churn" - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRR" - } - }, - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRC" - } - } - ], - "columnFormatting": [ - { - "properties": { - "dataBars": { - "positiveColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - } - } - }, - "negativeColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#f1c8bf'" - } - } - } - } - }, - "axisColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#FFFFFF'" - } - } - } - } - }, - "reverseDirection": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "hideText": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "totalMatchingOption": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.NMRP % of MRR" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Customer Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ca2ffd96ba4689505663/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ca2ffd96ba4689505663/visual.json deleted file mode 100644 index af6f8ee9c1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/ca2ffd96ba4689505663/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ca2ffd96ba4689505663", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-by-customer'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/e4e41d9fcbce74b5aefe/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/e4e41d9fcbce74b5aefe/visual.json deleted file mode 100644 index 9adb53cf84..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/0ce6ac6d5da599bd30e9/visuals/e4e41d9fcbce74b5aefe/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e4e41d9fcbce74b5aefe", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/page.json deleted file mode 100644 index 898d0f332a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/page.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "3e6e12bc48782630bd89", - "displayName": "Revenue Year-Over-Year", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "fa22d49a414f8f8a7056", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bd3b3f0adb902f21a48d", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "178d05f55b93b0230f30", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5fec45bf810309ed567c", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/931b77fb5d9002d757c5/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/931b77fb5d9002d757c5/visual.json deleted file mode 100644 index e4e3c8f490..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/931b77fb5d9002d757c5/visual.json +++ /dev/null @@ -1,425 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "931b77fb5d9002d757c5", - "position": { - "x": 25.545041317358088, - "y": 387.10562611688795, - "z": 0, - "height": 306.54049580829707, - "width": 601.29097254704425, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": true - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue PY" - } - }, - "queryRef": "Subscription Billing KPIs.MRR PY", - "nativeQueryRef": "Mon. Recurring Revenue PY" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue Δ vs. PY" - } - }, - "queryRef": "Subscription Billing KPIs.MRR Δ vs. PY", - "nativeQueryRef": "MRR Δ vs. PY" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn", - "nativeQueryRef": "Churn" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year-Month.Fiscal Year" - ], - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Month.Fiscal Month Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - } - ], - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'F 2026'" - } - } - ], - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'Aug 2025'" - } - } - ], - "isToggled": true - }, - { - "identityValues": [ - { - "Literal": { - "Value": "'Jul 2025'" - } - } - ], - "isToggled": true - } - ] - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "87.69251183259021D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.Churn" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "104.8534713834322D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRR PY" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "117.2073793627113D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRR Δ vs. PY" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "128.20998093045012D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRR" - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRR" - } - } - ], - "columnFormatting": [ - { - "properties": { - "dataBars": { - "positiveColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - } - } - }, - "negativeColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#f1c8bf'" - } - } - } - } - }, - "axisColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#FFFFFF'" - } - } - } - } - }, - "reverseDirection": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "hideText": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "totalMatchingOption": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRR" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/966d95502e8600bf44da/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/966d95502e8600bf44da/visual.json deleted file mode 100644 index ea810736c3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/966d95502e8600bf44da/visual.json +++ /dev/null @@ -1,167 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "966d95502e8600bf44da", - "position": { - "x": 651.39855359263129, - "y": 387.10562611688795, - "z": 4000, - "height": 306.54049580829707, - "width": 601.29097254704425, - "tabOrder": 4000 - }, - "visual": { - "visualType": "clusteredBarChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Package Code" - } - }, - "queryRef": "Subscription.Package Code", - "nativeQueryRef": "Package Code", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeaderTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Package Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/b287c65856d05a2a4ee2/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/b287c65856d05a2a4ee2/visual.json deleted file mode 100644 index 3c339868df..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/b287c65856d05a2a4ee2/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "b287c65856d05a2a4ee2", - "position": { - "x": 22, - "y": 10, - "z": 3000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue Year-Over-Year Growth Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/c29e1d030e61b14c0613/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/c29e1d030e61b14c0613/visual.json deleted file mode 100644 index 512cc76ee3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/c29e1d030e61b14c0613/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "c29e1d030e61b14c0613", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 2000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/d6d9c8a76e7172c54638/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/d6d9c8a76e7172c54638/visual.json deleted file mode 100644 index 9183d8cb4d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/d6d9c8a76e7172c54638/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "d6d9c8a76e7172c54638", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 5000, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 5000 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-year-over-year'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/e319e19fba8ec7b6db9b/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/e319e19fba8ec7b6db9b/visual.json deleted file mode 100644 index a7c6eaa9ba..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/3e6e12bc48782630bd89/visuals/e319e19fba8ec7b6db9b/visual.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e319e19fba8ec7b6db9b", - "position": { - "x": 25.802047781569964, - "y": 60.81911262798635, - "z": 1000, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 1000 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": true - } - ] - }, - "Tooltips": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn", - "nativeQueryRef": "Churn" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue PY" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue PY", - "nativeQueryRef": "MRR PY" - } - ] - } - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/page.json deleted file mode 100644 index 30e7dd5479..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/page.json +++ /dev/null @@ -1,338 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "500cc4cc7e93a1014a89", - "displayName": "Cust. Contract Deferral Drill Through", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "cf66b10317be19e91085", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "773556aba8c30d6adde9", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "0d826f7975349131893b", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7d4770bfeda0392ff85", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f154b48bcdb9a09cbc02", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "de762926ce0b686060c9", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6ce5894f753251b6a78b", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8d17b7607e65480d1038", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a44650b0b76080e34936", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9fa200c40b8206a23d9d", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cfb1b5c8d0b2ce25126c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1cd0c9b541724c0770c6", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "256ab881841d6dcd020b", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "87198fc604b2bead0441", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7b558647b5da40641638", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7367155202be12aed797", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5225f38639b166858009", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3379b549db0010b28389", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e0b55183ce088014cbc8", - "ordinal": 18, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - } - ], - "filterSortOrder": "Custom" - }, - "pageBinding": { - "name": "2fe9ea72ca0620355b7d", - "type": "Drillthrough", - "parameters": [ - { - "name": "540600231178c1507e20", - "boundFilter": "e0b55183ce088014cbc8", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - } - } - ] - }, - "visibility": "HiddenInViewMode" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/18d3cb15be48a7beef29/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/18d3cb15be48a7beef29/visual.json deleted file mode 100644 index 49e3b33224..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/18d3cb15be48a7beef29/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "18d3cb15be48a7beef29", - "position": { - "x": 634.04958677685954, - "y": 23.140495867768596, - "z": 3000, - "height": 31.074380165289256, - "width": 618.84297520661164, - "tabOrder": 5 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/a5e22fde03eea27e1de6/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/a5e22fde03eea27e1de6/visual.json deleted file mode 100644 index 24a48ec734..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/a5e22fde03eea27e1de6/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "a5e22fde03eea27e1de6", - "position": { - "x": 55, - "y": 9, - "z": 1000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Contract Deferrals Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/aacc4cbb742b2008d5e1/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/aacc4cbb742b2008d5e1/visual.json deleted file mode 100644 index ef5c20b450..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/aacc4cbb742b2008d5e1/visual.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "aacc4cbb742b2008d5e1", - "position": { - "x": 26, - "y": 64, - "z": 0, - "height": 630, - "width": 1228, - "tabOrder": 0 - }, - "visual": { - "visualType": "tableEx", - "query": { - "queryState": { - "Values": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "queryRef": "Date.Date", - "nativeQueryRef": "Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Document Type" - } - }, - "queryRef": "Customer Contract Deferrals.Document Type", - "nativeQueryRef": "Document Type" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Document No." - } - }, - "queryRef": "Customer Contract Deferrals.Document No.", - "nativeQueryRef": "Document No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Document Line No." - } - }, - "queryRef": "Customer Contract Deferrals.Document Line No.", - "nativeQueryRef": "Document Line No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Contract No." - } - }, - "queryRef": "Customer Contract Deferrals.Contract No.", - "nativeQueryRef": "Contract No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Contract Line No." - } - }, - "queryRef": "Customer Contract Deferrals.Contract Line No.", - "nativeQueryRef": "Contract Line No." - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Customer Deferrals", - "nativeQueryRef": "Customer Deferrals" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "Release Posting Date" - } - }, - "queryRef": "Customer Contract Deferrals.Release Posting Date", - "nativeQueryRef": "Release Posting Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Deferrals" - } - }, - "Property": "G LEntry No." - } - }, - "queryRef": "Customer Contract Deferrals.G LEntry No.", - "nativeQueryRef": "G LEntry No." - } - ] - } - } - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Contract Deferrals Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/b98dd5b1501bb99b1349/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/b98dd5b1501bb99b1349/visual.json deleted file mode 100644 index 06f3d2830d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/500cc4cc7e93a1014a89/visuals/b98dd5b1501bb99b1349/visual.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "b98dd5b1501bb99b1349", - "position": { - "x": 11, - "y": 14, - "z": 2000, - "height": 36, - "width": 35, - "tabOrder": 10 - }, - "visual": { - "visualType": "actionButton", - "visualContainerObjects": { - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Back button Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/page.json deleted file mode 100644 index cdb11718c6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/page.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "6d4dcc705ea9db21d91b", - "displayName": "Total Contract Value Analysis", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "e6ec1040a63318210857", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "35c50a6377f65307ad3b", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1be1ca4348680bb85343", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c78f7f9f33b422e3ace0", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2a3c352507d1c0c8d61a", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6fc3b2d297b400e88c05", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2290ea2f7d89e6896567", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "699f28fa0ea5c850621c", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92121e862c505ee203d1", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d85061bd606ae014c429", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5b691613169200013879", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c3e3a32b600e9409c574", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6e2050996e6250247077", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cb83b7788010db9e8878", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "41a7b0e1e7830aad99c7", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cf5d4e8138506d779add", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f6cff9d25a1aad3e608b", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2d1bfbeb0008aa5e9607", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e1e1e2e478a157d6e03e", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "UBB handling" - } - }, - "Property": "Treat Usage Based Billing as constant" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/156db0ae102713824310/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/156db0ae102713824310/visual.json deleted file mode 100644 index ef31bd9730..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/156db0ae102713824310/visual.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "156db0ae102713824310", - "position": { - "x": 25.776754890678941, - "y": 61.1277330264672, - "z": 3000, - "height": 307.11162255466053, - "width": 399.9079401611047, - "tabOrder": 4000 - }, - "visual": { - "visualType": "clusteredBarChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Package Code" - } - }, - "queryRef": "Subscription.Package Code", - "nativeQueryRef": "Package Code", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value", - "nativeQueryRef": "Total Contract Value" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value by Package Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/196ec74ac72d12cfda20/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/196ec74ac72d12cfda20/visual.json deleted file mode 100644 index eecc17477d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/196ec74ac72d12cfda20/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "196ec74ac72d12cfda20", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 2000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 1000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/54836f74150794daa699/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/54836f74150794daa699/visual.json deleted file mode 100644 index 47763c552d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/54836f74150794daa699/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "54836f74150794daa699", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-total-contract-value-analysis'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/678c6887251c1a00779e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/678c6887251c1a00779e/visual.json deleted file mode 100644 index c0cf5df5de..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/678c6887251c1a00779e/visual.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "678c6887251c1a00779e", - "position": { - "x": 25.776754890678941, - "y": 385.91484464902186, - "z": 4000, - "height": 307.11162255466053, - "width": 399.9079401611047, - "tabOrder": 3000 - }, - "visual": { - "visualType": "clusteredBarChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value", - "nativeQueryRef": "Total Contract Value" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value by Salesperson Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/cb6561b5bc2078de8295/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/cb6561b5bc2078de8295/visual.json deleted file mode 100644 index 374c8dbc27..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/cb6561b5bc2078de8295/visual.json +++ /dev/null @@ -1,705 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "cb6561b5bc2078de8295", - "position": { - "x": 441.14321351899162, - "y": 60.915098526007753, - "z": 0, - "height": 631.74852181004815, - "width": 811.54631262068392, - "tabOrder": 0 - }, - "visual": { - "visualType": "decompositionTreeVisual", - "query": { - "queryState": { - "Analyze": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.TCV", - "nativeQueryRef": "Total Contract Value1" - } - ] - }, - "ExplainBy": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "queryRef": "Customer Contract.Customer Contract Type", - "nativeQueryRef": "Customer Contract Type", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "State" - } - }, - "queryRef": "Customers.State", - "nativeQueryRef": "State", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Post Code" - } - }, - "queryRef": "Customers.Post Code", - "nativeQueryRef": "Post Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "queryRef": "Dimension Sets.Global Dimension 1", - "nativeQueryRef": "Global Dimension 1", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "queryRef": "Dimension Sets.Global Dimension 2", - "nativeQueryRef": "Global Dimension 2", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 3", - "nativeQueryRef": "Shortcut Dimension 3", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 4", - "nativeQueryRef": "Shortcut Dimension 4", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 5", - "nativeQueryRef": "Shortcut Dimension 5", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 6", - "nativeQueryRef": "Shortcut Dimension 6", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 7", - "nativeQueryRef": "Shortcut Dimension 7", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 8", - "nativeQueryRef": "Shortcut Dimension 8", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Initial Term" - } - }, - "queryRef": "Customer Contract Line.Initial Term", - "nativeQueryRef": "Initial Term", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No." - } - }, - "queryRef": "Item.Item No.", - "nativeQueryRef": "Item No.", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Name" - } - }, - "queryRef": "Item.Item Name", - "nativeQueryRef": "Item Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "queryRef": "Item.Item Category Code", - "nativeQueryRef": "Item Category Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Remaining Term" - } - }, - "queryRef": "Customer Contract Line.Remaining Term", - "nativeQueryRef": "Remaining Term", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - }, - "queryRef": "Customers.Country/Region Code", - "nativeQueryRef": "Country/Region Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "queryRef": "Customer Contract.Customer Contract No. Desc.", - "nativeQueryRef": "Customer Contract No. Desc.", - "active": false - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "expansionStates": [ - { - "roles": [ - "ExplainBy" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract.Customer Contract Type" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract Line.Billing Rhythm" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.State" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Post Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 1" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 2" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 3" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 4" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 5" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 6" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 7" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 8" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract Line.Initial Term" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item No." - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Name" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Category Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract Line.Remaining Term" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Customer No. & Name" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Country/Region Code" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - } - ] - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract No. Desc." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - } - ] - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'SUPPORT'" - } - } - ], - "isToggled": true - } - ] - } - } - ], - "objects": { - "tree": [ - { - "properties": { - "effectiveBarsPerLevel": { - "expr": { - "Literal": { - "Value": "7L" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value Analysis Label" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 0, - "Percent": -0.1 - } - } - } - } - }, - "radius": { - "expr": { - "Literal": { - "Value": "4D" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 4, - "Percent": 0.4 - } - } - } - } - }, - "preset": { - "expr": { - "Literal": { - "Value": "'Bottom'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/ea2ac44c70c32799bd76/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/ea2ac44c70c32799bd76/visual.json deleted file mode 100644 index 90605c2b3e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/6d4dcc705ea9db21d91b/visuals/ea2ac44c70c32799bd76/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ea2ac44c70c32799bd76", - "position": { - "x": 22, - "y": 10, - "z": 1000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value Analysis Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/page.json deleted file mode 100644 index b2cec54bbb..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/page.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "8bb19f8625a990d30466", - "displayName": "Revenue Development", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "68f73dbaa378839ad9d1", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e1e74943e1f87d6065a0", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d4f25b3c33fe6b0c70e6", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ff1a6adf612fe29a58d2", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f154b48bcdb9a09cbc02", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "de762926ce0b686060c9", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6ce5894f753251b6a78b", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8d17b7607e65480d1038", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a44650b0b76080e34936", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9fa200c40b8206a23d9d", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "256ab881841d6dcd020b", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "87198fc604b2bead0441", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7b558647b5da40641638", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7367155202be12aed797", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5225f38639b166858009", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3379b549db0010b28389", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cfb1b5c8d0b2ce25126c", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1cd0c9b541724c0770c6", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/12c7322794d81b03be78/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/12c7322794d81b03be78/visual.json deleted file mode 100644 index 799ef67b04..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/12c7322794d81b03be78/visual.json +++ /dev/null @@ -1,227 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "12c7322794d81b03be78", - "position": { - "x": 25.802047781569964, - "y": 387.03071672354952, - "z": 3250, - "height": 307, - "width": 600, - "tabOrder": 5 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No." - } - }, - "queryRef": "Customer Contract.Customer Contract No.", - "nativeQueryRef": "Customer Contract No.", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Subscription Desc." - } - }, - "queryRef": "Service Object.Service Object Desc.", - "nativeQueryRef": "Service Object Desc.", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Customer Contract Line Desc." - } - }, - "queryRef": "Customer Contract Line.Customer Contract Line Desc.", - "nativeQueryRef": "Customer Contract Line Desc.", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn1", - "nativeQueryRef": "Churn" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Downgrade" - } - }, - "queryRef": "Subscription Billing KPIs.Downgrade1", - "nativeQueryRef": "Downgrade" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract.Customer Contract No." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No." - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Service Object.Service Object Desc." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Subscription Desc." - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract Line.Customer Contract Line Desc." - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": {} - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue Churn and Downgrade by Customer Contract Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/1a706a2e70539ce1b0bd/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/1a706a2e70539ce1b0bd/visual.json deleted file mode 100644 index 15cf46a68d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/1a706a2e70539ce1b0bd/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "1a706a2e70539ce1b0bd", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4501, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 21 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-development'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/6161988c51108e718976/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/6161988c51108e718976/visual.json deleted file mode 100644 index b954623143..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/6161988c51108e718976/visual.json +++ /dev/null @@ -1,336 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "6161988c51108e718976", - "position": { - "x": 25, - "y": 61, - "z": 3500, - "height": 307, - "width": 1226, - "tabOrder": 10 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": true - } - ] - }, - "Tooltips": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn (-)" - } - }, - "queryRef": "Subscription Billing KPIs.Churn (-)", - "nativeQueryRef": "Churn1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Downgrade (-)" - } - }, - "queryRef": "Subscription Billing KPIs.Downgrade (-)", - "nativeQueryRef": "Downgrade1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "New" - } - }, - "queryRef": "Subscription Billing KPIs.New", - "nativeQueryRef": "New1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Upgrade" - } - }, - "queryRef": "Subscription Billing KPIs.Upgrade", - "nativeQueryRef": "Upgrade1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Usage Based Billing Change" - } - }, - "queryRef": "Subscription Billing KPIs.Usage Based Billing Change", - "nativeQueryRef": "Usage Based Billing Change1" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Change" - } - }, - "queryRef": "Subscription Billing KPIs.Total Change", - "nativeQueryRef": "Total Change" - } - ] - } - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "lineStyles": [ - { - "properties": { - "lineChartType": { - "expr": { - "Literal": { - "Value": "'smooth'" - } - } - }, - "strokeWidth": { - "expr": { - "Literal": { - "Value": "2D" - } - } - }, - "interpolationSmooth": { - "expr": { - "Literal": { - "Value": "'monotoneX'" - } - } - } - } - } - ], - "dataPoint": [ - { - "properties": { - "fill": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0.6 - } - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.Overall Change" - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Change of Mon. Recurring Revenue by Year and Month Label" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 0, - "Percent": -0.1 - } - } - } - } - }, - "radius": { - "expr": { - "Literal": { - "Value": "4D" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 4, - "Percent": 0.4 - } - } - } - } - }, - "preset": { - "expr": { - "Literal": { - "Value": "'Bottom'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/7e42a30884add435d50b/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/7e42a30884add435d50b/visual.json deleted file mode 100644 index ebff31af87..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/7e42a30884add435d50b/visual.json +++ /dev/null @@ -1,271 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "7e42a30884add435d50b", - "position": { - "x": 651, - "y": 387, - "z": 3000, - "height": 307, - "width": 600, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No." - } - }, - "queryRef": "Customer Contract.Customer Contract No.", - "nativeQueryRef": "Customer Contract No.", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Subscription Desc." - } - }, - "queryRef": "Service Object.Service Object Desc.", - "nativeQueryRef": "Service Object Desc.", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Customer Contract Line Desc." - } - }, - "queryRef": "Customer Contract Line.Customer Contract Line Desc.", - "nativeQueryRef": "Customer Contract Line Desc.", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "New" - } - }, - "queryRef": "Subscription Billing KPIs.New", - "nativeQueryRef": "New1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Upgrade" - } - }, - "queryRef": "Subscription Billing KPIs.Upgrade", - "nativeQueryRef": "Upgrade1" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract.Customer Contract No." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No." - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Service Object.Service Object Desc." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Subscription Desc." - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract Line.Customer Contract Line Desc." - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'CUC000013'" - } - } - ], - "isToggled": true - }, - { - "identityValues": [ - { - "Literal": { - "Value": "'CUC000001'" - } - } - ], - "isToggled": true - }, - { - "identityValues": [ - { - "Literal": { - "Value": "'CSC100001'" - } - } - ], - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'Digital newspaper'" - } - } - ], - "isToggled": true - } - ] - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue New and Upgrade by Customer Contract Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/b0be5cc5e9edc98f0a97/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/b0be5cc5e9edc98f0a97/visual.json deleted file mode 100644 index a661952b6a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/b0be5cc5e9edc98f0a97/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "b0be5cc5e9edc98f0a97", - "position": { - "x": 625.47200622924936, - "y": 23.034379832805215, - "z": 4000, - "height": 30.121881319822204, - "width": 603.32356408232124, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/f73a4ac1046ca739060e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/f73a4ac1046ca739060e/visual.json deleted file mode 100644 index c5694fe92b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/8bb19f8625a990d30466/visuals/f73a4ac1046ca739060e/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f73a4ac1046ca739060e", - "position": { - "x": 22, - "y": 10, - "z": 4500, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 20 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue Development Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/page.json deleted file mode 100644 index 2c09bd4c8b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/page.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "926fa2c13070086cb999", - "displayName": "Revenue by Salesperson", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "1be596bb739638d40b2e", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "08a4a2d496bc29ca7060", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "00f428bd15312f56804e", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "24434b48f70e633899d6", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "39df276b26045905bd8e", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "373e3f20b6ce5b20d224", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "048909a4d10dc123a024", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "88e568938488361ce1cd", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "344cdf080dab2b5cbe70", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "93fa744092e29e670069", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1fec0c194a1e50b0da7b", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c656a2a8207be8006202", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ff42bae0044207c8c929", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f972857006016038d85a", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1fddeba31c5b903e71c0", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ea0495092c42bc9778d7", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "b8b38a991a44017b79e0", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7fd365ca74343d355b49", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/07c346ab60012806c7b2/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/07c346ab60012806c7b2/visual.json deleted file mode 100644 index ddf54689f2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/07c346ab60012806c7b2/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "07c346ab60012806c7b2", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue by Salesperson Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/34f7f6f2c05d7005195d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/34f7f6f2c05d7005195d/visual.json deleted file mode 100644 index c42a1a0b1f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/34f7f6f2c05d7005195d/visual.json +++ /dev/null @@ -1,485 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "34f7f6f2c05d7005195d", - "position": { - "x": 25.802047781569964, - "y": 387.03071672354952, - "z": 0, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year", - "nativeQueryRef": "Fiscal Year", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Month Year", - "nativeQueryRef": "Fiscal Month Year", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Name" - } - }, - "queryRef": "Customers.Customer Name", - "nativeQueryRef": "Customer Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "queryRef": "Item.Item No. & Description", - "nativeQueryRef": "Item No. & Description", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.MRC", - "nativeQueryRef": "Mon. Recurring Cost1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP", - "nativeQueryRef": "Mon. Net Profit Amount1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP % of MRR", - "nativeQueryRef": "Mon. Net Profit %1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn", - "nativeQueryRef": "Churn" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers", - "nativeQueryRef": "Active Customers" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Month Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Salesperson.Salesperson Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer Name" - ], - "isCollapsed": true, - "isPinned": true - }, - { - "queryRefs": [ - "Item.Item No. & Description" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'F 2026'" - } - } - ], - "isToggled": true - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "124.9840423944763D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.Churn" - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRR" - } - }, - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRC" - } - } - ], - "columnFormatting": [ - { - "properties": { - "dataBars": { - "positiveColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - } - } - }, - "negativeColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#f1c8bf'" - } - } - } - } - }, - "axisColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#FFFFFF'" - } - } - } - } - }, - "reverseDirection": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "hideText": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "totalMatchingOption": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.NMRP % of MRR" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Salesperson Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/861d05ceb5202cd55675/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/861d05ceb5202cd55675/visual.json deleted file mode 100644 index 7934460b85..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/861d05ceb5202cd55675/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "861d05ceb5202cd55675", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-by-salesperson'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9b6c01b944dea33000ba/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9b6c01b944dea33000ba/visual.json deleted file mode 100644 index 96cef1bead..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9b6c01b944dea33000ba/visual.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "9b6c01b944dea33000ba", - "position": { - "x": 651.16419911968592, - "y": 60.243762639644409, - "z": 4000, - "height": 304.76256394173055, - "width": 608.639190197584, - "tabOrder": 4000 - }, - "visual": { - "visualType": "scatterChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": true - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name" - } - ] - }, - "Size": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Net Profit Amount", - "nativeQueryRef": "Mon. Net Profit Amount" - } - ] - }, - "X": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Net Profit %", - "nativeQueryRef": "Mon. Net Profit %" - } - ] - } - }, - "sortDefinition": { - "isDefaultSort": true - } - }, - "objects": { - "dataPoint": [ - { - "properties": { - "fill": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 3, - "Percent": 0 - } - } - } - } - } - }, - "selector": { - "metadata": "Fiscal Calendar Time Intelligence.Sales Amount PYMAT (Fiscal)" - } - }, - { - "properties": { - "fill": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - } - }, - "selector": { - "metadata": "Fiscal Calendar Time Intelligence.Sales Amount MAT (Fiscal)" - } - }, - { - "properties": { - "fill": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 3, - "Percent": 0 - } - } - } - } - } - }, - "selector": { - "metadata": "Fiscal Calendar Measures.Sales Amount PP (Fiscal)" - } - }, - { - "properties": { - "fill": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - } - }, - "selector": { - "metadata": "Sales.Sales Amount" - } - } - ], - "categoryLabels": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "legend": [ - { - "properties": { - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "plotAreaShading": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "displayName": { - "expr": { - "Literal": { - "Value": "'Symmetry shading 1'" - } - } - }, - "upperShadingColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0.6 - } - } - } - } - }, - "lowerShadingColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 9, - "Percent": 0.6 - } - } - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "79D" - } - } - } - } - } - ], - "ratioLine": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "displayName": { - "expr": { - "Literal": { - "Value": "'Ratio line 1'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 3, - "Percent": 0 - } - } - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "width": { - "expr": { - "Literal": { - "Value": "1D" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI Semibold'', wf_segoe-ui_semibold, helvetica, arial, sans-serif'" - } - } - }, - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Profitability by Salesperson Label" - } - } - } - } - } - ], - "divider": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 0, - "Percent": -0.1 - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9e2bbe10ecf17ef20e70/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9e2bbe10ecf17ef20e70/visual.json deleted file mode 100644 index c55e0980cc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/9e2bbe10ecf17ef20e70/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "9e2bbe10ecf17ef20e70", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/dcf0fad18eb044a66bbe/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/dcf0fad18eb044a66bbe/visual.json deleted file mode 100644 index 5b0be50811..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/926fa2c13070086cb999/visuals/dcf0fad18eb044a66bbe/visual.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "dcf0fad18eb044a66bbe", - "position": { - "x": 25.545041317358088, - "y": 61.89760011513691, - "z": 1000, - "height": 306.54049580829707, - "width": 601.29097254704425, - "tabOrder": 1000 - }, - "visual": { - "visualType": "barChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": true - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue1" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'BottomCenter'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - }, - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Salesperson Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/page.json deleted file mode 100644 index caee1b160c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/page.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "abe45c8964230489e801", - "displayName": "Revenue Analysis", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "0bee7b91dc87f6ace1c0", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1abf14d474b556e8c27a", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "510042a2d09763d630f1", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "96a162b53004077d71ac", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2a3c352507d1c0c8d61a", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6fc3b2d297b400e88c05", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2290ea2f7d89e6896567", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "699f28fa0ea5c850621c", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92121e862c505ee203d1", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d85061bd606ae014c429", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5b691613169200013879", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c3e3a32b600e9409c574", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6e2050996e6250247077", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cb83b7788010db9e8878", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "41a7b0e1e7830aad99c7", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cf5d4e8138506d779add", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f6cff9d25a1aad3e608b", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2d1bfbeb0008aa5e9607", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/4ed9e828ed0090701c77/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/4ed9e828ed0090701c77/visual.json deleted file mode 100644 index 4af31b31d3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/4ed9e828ed0090701c77/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "4ed9e828ed0090701c77", - "position": { - "x": 22, - "y": 10, - "z": 1000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 1000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue Analysis Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/75e0e911681206ec6dec/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/75e0e911681206ec6dec/visual.json deleted file mode 100644 index fa18fe787e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/75e0e911681206ec6dec/visual.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "75e0e911681206ec6dec", - "position": { - "x": 25.776754890678941, - "y": 61.1277330264672, - "z": 2000, - "height": 307.11162255466053, - "width": 399.9079401611047, - "tabOrder": 3000 - }, - "visual": { - "visualType": "clusteredBarChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Property": "Item Category Description" - } - }, - "queryRef": "Item Category.Item Category Description", - "nativeQueryRef": "Item Category Description", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Item Category Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/841baef364eda77416d0/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/841baef364eda77416d0/visual.json deleted file mode 100644 index 3e5a7e8f1e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/841baef364eda77416d0/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "841baef364eda77416d0", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 5000, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 5000 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-analysis'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/dbb73a8b605e3e451d72/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/dbb73a8b605e3e451d72/visual.json deleted file mode 100644 index ce145ee4c9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/dbb73a8b605e3e451d72/visual.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "dbb73a8b605e3e451d72", - "position": { - "x": 25.776754890678941, - "y": 385.91484464902186, - "z": 3000, - "height": 307.11162255466053, - "width": 399.9079401611047, - "tabOrder": 2000 - }, - "visual": { - "visualType": "clusteredBarChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Salesperson Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/e8c8dae6f34d6271a9b5/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/e8c8dae6f34d6271a9b5/visual.json deleted file mode 100644 index eca73314b9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/e8c8dae6f34d6271a9b5/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e8c8dae6f34d6271a9b5", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 0, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 0 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/ebd44757c1b0f3212e63/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/ebd44757c1b0f3212e63/visual.json deleted file mode 100644 index 9f005ab0a3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/abe45c8964230489e801/visuals/ebd44757c1b0f3212e63/visual.json +++ /dev/null @@ -1,750 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ebd44757c1b0f3212e63", - "position": { - "x": 440.16071192986243, - "y": 60.915098526007753, - "z": 4000, - "height": 632.73102339917727, - "width": 812.528814209813, - "tabOrder": 4000 - }, - "visual": { - "visualType": "decompositionTreeVisual", - "query": { - "queryState": { - "Analyze": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "MRR" - } - ] - }, - "ExplainBy": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "queryRef": "Customer Contract.Customer Contract No. Desc.", - "nativeQueryRef": "Customer Contract No. Desc.", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "State" - } - }, - "queryRef": "Customers.State", - "nativeQueryRef": "State", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Post Code" - } - }, - "queryRef": "Customers.Post Code", - "nativeQueryRef": "Post Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "queryRef": "Dimension Sets.Global Dimension 1", - "nativeQueryRef": "Global Dimension 1", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "queryRef": "Dimension Sets.Global Dimension 2", - "nativeQueryRef": "Global Dimension 2", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 3", - "nativeQueryRef": "Shortcut Dimension 3", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 4", - "nativeQueryRef": "Shortcut Dimension 4", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 5", - "nativeQueryRef": "Shortcut Dimension 5", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 6", - "nativeQueryRef": "Shortcut Dimension 6", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 7", - "nativeQueryRef": "Shortcut Dimension 7", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 8", - "nativeQueryRef": "Shortcut Dimension 8", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "queryRef": "Customer Contract.Customer Contract Type", - "nativeQueryRef": "Customer Contract Type", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Initial Term" - } - }, - "queryRef": "Customer Contract Line.Initial Term", - "nativeQueryRef": "Initial Term", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No." - } - }, - "queryRef": "Item.Item No.", - "nativeQueryRef": "Item No.", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Name" - } - }, - "queryRef": "Item.Item Name", - "nativeQueryRef": "Item Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "queryRef": "Item.Item Category Code", - "nativeQueryRef": "Item Category Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Remaining Term" - } - }, - "queryRef": "Customer Contract Line.Remaining Term", - "nativeQueryRef": "Remaining Term", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - }, - "queryRef": "Customers.Country/Region Code", - "nativeQueryRef": "Country/Region Code", - "active": false - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "expansionStates": [ - { - "roles": [ - "ExplainBy" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract Line.Billing Rhythm" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer No. & Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract No. Desc." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.State" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Post Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 1" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 2" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 3" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 4" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 5" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 6" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 7" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 8" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract Type" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract Line.Initial Term" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item No." - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Name" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Category Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract Line.Remaining Term" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Country/Region Code" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - } - ] - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'1M'" - } - } - ], - "isToggled": true, - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'40000 Alpine Ski House'" - } - } - ], - "isToggled": true - } - ] - } - ] - } - } - ], - "objects": { - "tree": [ - { - "properties": { - "effectiveBarsPerLevel": { - "expr": { - "Literal": { - "Value": "7L" - } - } - } - } - } - ], - "analysis": [ - { - "properties": { - "aiMode": { - "expr": { - "Literal": { - "Value": "'relative'" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue Analysis Label" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 0, - "Percent": -0.1 - } - } - } - } - }, - "radius": { - "expr": { - "Literal": { - "Value": "4D" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 4, - "Percent": 0.4 - } - } - } - } - }, - "preset": { - "expr": { - "Literal": { - "Value": "'Bottom'" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "Filter44a096da0ea0b6266ce2", - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Sales" - } - }, - "Property": "Source Type" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ] - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/page.json deleted file mode 100644 index 5a5513d727..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/page.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "b0629e90d266c40d537d", - "displayName": "Cust. Contract Drill Through", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "4fa7eecf4639d9c3d0b9", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "73bc42d1e1da2f65f179", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cfcc7ba360495c93c6e6", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f154b48bcdb9a09cbc02", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c690df01097f1259c2d9", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "de762926ce0b686060c9", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6ce5894f753251b6a78b", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8d17b7607e65480d1038", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a44650b0b76080e34936", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9fa200c40b8206a23d9d", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cfb1b5c8d0b2ce25126c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1cd0c9b541724c0770c6", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "256ab881841d6dcd020b", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "87198fc604b2bead0441", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7b558647b5da40641638", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7367155202be12aed797", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5225f38639b166858009", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3379b549db0010b28389", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "61986d3d5008d8a6ad10", - "ordinal": 18, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Change in Mon. Recurring Revenue" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "7089358a918c86a61983", - "ordinal": 19, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue PY" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "49802f0d8d4d0d9362ab", - "ordinal": 20, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "99ffccd9904a5d806234", - "ordinal": 21, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "84c7e49422a3e47a5a00", - "ordinal": 22, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers PY" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "f103d0f21c997c58691c", - "ordinal": 23, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - }, - { - "name": "3868c7a27a5875833763", - "ordinal": 24, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value PY" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - } - ], - "filterSortOrder": "Custom" - }, - "pageBinding": { - "name": "ad133b10899e92870a69", - "type": "Drillthrough", - "parameters": [ - { - "name": "d5f0417c06bc082ab015", - "boundFilter": "f103d0f21c997c58691c", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - } - }, - { - "name": "fc60134845b3e8cc0b37", - "boundFilter": "99ffccd9904a5d806234", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - } - }, - { - "name": "73f812d750c436574201", - "boundFilter": "7089358a918c86a61983", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue PY" - } - } - }, - { - "name": "dcc3a2805126e946b868", - "boundFilter": "3868c7a27a5875833763", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value PY" - } - } - }, - { - "name": "5dbac82de8a07b1000bc", - "boundFilter": "49802f0d8d4d0d9362ab", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - } - }, - { - "name": "1def94037dd0078c9532", - "boundFilter": "84c7e49422a3e47a5a00", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers PY" - } - } - }, - { - "name": "91f792f386a6a1eb34d7", - "boundFilter": "61986d3d5008d8a6ad10", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Change in Mon. Recurring Revenue" - } - } - } - ] - }, - "visibility": "HiddenInViewMode" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/1a1386014a848597f30a/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/1a1386014a848597f30a/visual.json deleted file mode 100644 index 984905c7c4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/1a1386014a848597f30a/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "1a1386014a848597f30a", - "position": { - "x": 634.04958677685954, - "y": 23.140495867768596, - "z": 3000, - "height": 31.074380165289256, - "width": 618.84297520661164, - "tabOrder": 5 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f3e0fe08092781c05516/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f3e0fe08092781c05516/visual.json deleted file mode 100644 index 713ec769de..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f3e0fe08092781c05516/visual.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f3e0fe08092781c05516", - "position": { - "x": 26, - "y": 64, - "z": 1000, - "height": 630, - "width": 1228, - "tabOrder": 0 - }, - "visual": { - "visualType": "tableEx", - "query": { - "queryState": { - "Values": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "queryRef": "Customer Contract.Customer Contract Type", - "nativeQueryRef": "Customer Contract Type" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No." - } - }, - "queryRef": "Customer Contract.Customer Contract No.", - "nativeQueryRef": "Customer Contract No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Customer Contract Line No." - } - }, - "queryRef": "Customer Contract Line.Customer Contract Line No.", - "nativeQueryRef": "Customer Contract Line No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Subscription" - } - }, - "Property": "Subscription Desc." - } - }, - "queryRef": "Service Object.Service Object Desc.", - "nativeQueryRef": "Service Object Desc." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Customer Contract Line Desc." - } - }, - "queryRef": "Customer Contract Line.Customer Contract Line Desc.", - "nativeQueryRef": "Customer Contract Line Desc." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Subscription Start Date" - } - }, - "queryRef": "Customer Contract Line.Service Start Date", - "nativeQueryRef": "Service Start Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Subscription End Date" - } - }, - "queryRef": "Customer Contract Line.Service End Date", - "nativeQueryRef": "Service End Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Next Billing Date" - } - }, - "queryRef": "Customer Contract Line.Next Billing Date", - "nativeQueryRef": "Next Billing Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Change in Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR overall change", - "nativeQueryRef": "Change in Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.TCV", - "nativeQueryRef": "Total Contract Value1" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Initial Term" - } - }, - "queryRef": "Customer Contract Line.Initial Term", - "nativeQueryRef": "Initial Term" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Extension Term" - } - }, - "queryRef": "Customer Contract Line.Extension Term", - "nativeQueryRef": "Extension Term" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Remaining Term" - } - }, - "queryRef": "Customer Contract Line.Remaining Term", - "nativeQueryRef": "Remaining Term" - } - ] - } - } - }, - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "93.48027394480864D" - } - } - } - }, - "selector": { - "metadata": "Customer Contract.Customer Contract No." - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "108.59430141457938D" - } - } - } - }, - "selector": { - "metadata": "Customer Contract Line.Customer Contract Line No." - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "277.58662222903513D" - } - } - } - }, - "selector": { - "metadata": "Service Object.Service Object Desc." - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Contract Lines Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f40fc720c046316c4dc8/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f40fc720c046316c4dc8/visual.json deleted file mode 100644 index 7224334a8a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f40fc720c046316c4dc8/visual.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f40fc720c046316c4dc8", - "position": { - "x": 11, - "y": 14, - "z": 0, - "height": 36, - "width": 35, - "tabOrder": 10 - }, - "visual": { - "visualType": "actionButton", - "visualContainerObjects": { - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Back button Label" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Literal": { - "Value": "''" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f68fbd6fde8c38bc29dc/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f68fbd6fde8c38bc29dc/visual.json deleted file mode 100644 index 0710339613..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/b0629e90d266c40d537d/visuals/f68fbd6fde8c38bc29dc/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f68fbd6fde8c38bc29dc", - "position": { - "x": 53, - "y": 10, - "z": 3500, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Contract Lines Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/page.json deleted file mode 100644 index f34d54ad45..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/page.json +++ /dev/null @@ -1,333 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "bf60e6bdba77e101902e", - "displayName": "Total Contract Value Year-Over-Year", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "cadb61d9d2e2a9cfe1e4", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1fd2e88428051fbf2674", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "03be2e61baba3a10edc9", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2d03b13b482725ce23cd", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "32a840e8448e43832986", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date Ref" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "869863d7845238472c68", - "ordinal": 19, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "UBB handling" - } - }, - "Property": "Treat Usage Based Billing as constant" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/58289719eff95a01fdc5/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/58289719eff95a01fdc5/visual.json deleted file mode 100644 index 8b3d0fcb51..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/58289719eff95a01fdc5/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "58289719eff95a01fdc5", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 10 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/601b21c7ae14dcbe5d37/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/601b21c7ae14dcbe5d37/visual.json deleted file mode 100644 index f8793edf2c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/601b21c7ae14dcbe5d37/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "601b21c7ae14dcbe5d37", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value Year-Over-Year Growth Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/62e7f3367d6719383b2d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/62e7f3367d6719383b2d/visual.json deleted file mode 100644 index 62bb8a263a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/62e7f3367d6719383b2d/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "62e7f3367d6719383b2d", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 3001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 16 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-total-contract-value-year-over-year'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/acb01350b168140848a6/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/acb01350b168140848a6/visual.json deleted file mode 100644 index 8a1a8496f6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/acb01350b168140848a6/visual.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "acb01350b168140848a6", - "position": { - "x": 25.802047781569964, - "y": 60.81911262798635, - "z": 1000, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 5 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": true - } - ] - }, - "Tooltips": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value Δ vs. PY" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value Δ vs. PY", - "nativeQueryRef": "Total Contract Value Δ vs. PY" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value", - "nativeQueryRef": "Total Contract Value1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value PY" - } - }, - "queryRef": "Subscription Billing KPIs.Total Contract Value PY", - "nativeQueryRef": "Total Contract Value PY1" - } - ] - } - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value and Year-Over-Year Growth by Year and Month Label" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "943e19233e9695e9c450", - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "type": "Categorical" - }, - { - "name": "28a0684a4a28a8b5c489", - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "type": "Categorical" - }, - { - "name": "69deb4fc9960c266c059", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "type": "Advanced" - }, - { - "name": "6ee060bf819207d49107", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value PY" - } - }, - "type": "Advanced" - }, - { - "name": "21024f60c1d446b5d528", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value Δ vs. PY" - } - }, - "type": "Advanced" - } - ] - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/f9f64be080e7ddb75696/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/f9f64be080e7ddb75696/visual.json deleted file mode 100644 index 771c60de64..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/bf60e6bdba77e101902e/visuals/f9f64be080e7ddb75696/visual.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "f9f64be080e7ddb75696", - "position": { - "x": 25.802047781569964, - "y": 387.03071672354952, - "z": 0, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": true - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value" - } - }, - "queryRef": "Subscription Billing KPIs.TCV", - "nativeQueryRef": "Total Contract Value1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value PY" - } - }, - "queryRef": "Subscription Billing KPIs.TCV PY", - "nativeQueryRef": "Total Contract Value PY1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Contract Value Δ vs. PY" - } - }, - "queryRef": "Subscription Billing KPIs.TCV Δ vs. PY", - "nativeQueryRef": "TCV Δ vs. PY" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers", - "nativeQueryRef": "Active Customers" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers PY" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers PY", - "nativeQueryRef": "Active Customers PY" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers Δ vs. PY" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers Δ vs. PY", - "nativeQueryRef": "Active Customers Δ vs. PY" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year-Month.Fiscal Year" - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Month.Fiscal Month Year" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": {} - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "180.31404060189473D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.Active Customers Δ vs. PY" - } - } - ], - "columnFormatting": [ - { - "properties": { - "dataBars": { - "positiveColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - } - } - }, - "negativeColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#f1c8bf'" - } - } - } - } - }, - "axisColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#FFFFFF'" - } - } - } - } - }, - "reverseDirection": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "hideText": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "totalMatchingOption": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.TCV" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Total Contract Value and Year-Over-Year Growth by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/page.json deleted file mode 100644 index 8aafd8bb3d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/page.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "c27df17dadb4b21679dc", - "displayName": "Billing Schedule", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "aa733567fc4edc36fe08", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d298cc4d4ab02da2ea5f", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "adf630af5a69faba1974", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f6937ad9a7da093c3146", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "b89bb620dec3c4cd0506", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "UBB handling" - } - }, - "Property": "Treat Usage Based Billing as constant" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/0d1543b1127b5d874382/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/0d1543b1127b5d874382/visual.json deleted file mode 100644 index 080db444a3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/0d1543b1127b5d874382/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "0d1543b1127b5d874382", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-billing-schedule'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2bbb6c45bd05fa01a106/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2bbb6c45bd05fa01a106/visual.json deleted file mode 100644 index 012d2611d7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2bbb6c45bd05fa01a106/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "2bbb6c45bd05fa01a106", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2cbd558083b48e044e09/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2cbd558083b48e044e09/visual.json deleted file mode 100644 index f246db2d98..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/2cbd558083b48e044e09/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "2cbd558083b48e044e09", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Billing Schedule Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/74e4e1e1bc31ce696980/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/74e4e1e1bc31ce696980/visual.json deleted file mode 100644 index d5a09fd013..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/74e4e1e1bc31ce696980/visual.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "74e4e1e1bc31ce696980", - "position": { - "x": 25.498074104815387, - "y": 386.7207905897, - "z": 0, - "height": 307.03930901215193, - "width": 601.32958097189623, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Columns": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": true - } - ] - }, - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "queryRef": "Customer Contract.Customer Contract No. Desc.", - "nativeQueryRef": "Customer Contract No. Desc.", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Billing Forecast" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Cash Inflow", - "nativeQueryRef": "Customer Billing Forecast" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract Line.Billing Rhythm" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer No. & Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract No. Desc." - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'12M'" - } - } - ], - "isToggled": true - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - } - ], - "values": [ - { - "properties": { - "backColor": { - "solid": { - "color": { - "expr": { - "FillRule": { - "Input": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Billing Forecast" - } - }, - "FillRule": { - "linearGradient2": { - "min": { - "color": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - }, - "max": { - "color": { - "Literal": { - "Value": "'#429EAA'" - } - } - }, - "nullColoringStrategy": { - "strategy": { - "Literal": { - "Value": "'noColor'" - } - } - } - } - } - } - } - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 1 - } - } - ], - "metadata": "Subscription Billing KPIs.Forecast Cash Inflow" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Billing Forecast by Billing Period, Customer and Contract No. Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/a0b6eb87170b851e1752/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/a0b6eb87170b851e1752/visual.json deleted file mode 100644 index 90f748dd38..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/a0b6eb87170b851e1752/visual.json +++ /dev/null @@ -1,339 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "a0b6eb87170b851e1752", - "position": { - "x": 650.20088967279241, - "y": 386.7207905897, - "z": 4000, - "height": 307.03930901215193, - "width": 602.39200072626352, - "tabOrder": 4000 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Columns": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": true - } - ] - }, - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendors" - } - }, - "Property": "Vendor No. & Name" - } - }, - "queryRef": "Vendors.Vendor No. & Name", - "nativeQueryRef": "Vendor No. & Name", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Line" - } - }, - "Property": "Vendor Contract No." - } - }, - "queryRef": "Vendor Contract Line.Vendor Contract No.", - "nativeQueryRef": "Vendor Contract No.", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Billing Forecast" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Cash Outflow", - "nativeQueryRef": "Vendor Billing Forecast" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract Line.Billing Rhythm" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Vendors.Vendor No. & Name" - ], - "isCollapsed": true, - "isPinned": true - }, - { - "queryRefs": [ - "Vendor Contract Line.Vendor Contract No." - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'12M'" - } - } - ], - "isToggled": true - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - } - ], - "values": [ - { - "properties": { - "backColor": { - "solid": { - "color": { - "expr": { - "FillRule": { - "Input": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Billing Forecast" - } - }, - "FillRule": { - "linearGradient2": { - "min": { - "color": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - }, - "max": { - "color": { - "Literal": { - "Value": "'#429EAA'" - } - } - }, - "nullColoringStrategy": { - "strategy": { - "Literal": { - "Value": "'noColor'" - } - } - } - } - } - } - } - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 1 - } - } - ], - "metadata": "Subscription Billing KPIs.Forecast Cash Outflow" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Billing Forecast by Billing Period, Vendor and Contract No. Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/fd4cda9862254d9d906d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/fd4cda9862254d9d906d/visual.json deleted file mode 100644 index 8881966244..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c27df17dadb4b21679dc/visuals/fd4cda9862254d9d906d/visual.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "fd4cda9862254d9d906d", - "position": { - "x": 25.802047781569964, - "y": 60.81911262798635, - "z": 1000, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 1000 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": false - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Billing Forecast" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Cash Inflow", - "nativeQueryRef": "Customer Billing Forecast" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Billing Forecast" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Cash Outflow", - "nativeQueryRef": "Vendor Billing Forecast" - } - ] - } - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Billing Forecast by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/page.json deleted file mode 100644 index 37f9b17926..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/page.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "c9cd438d95e60a070e76", - "displayName": "Sales and Cost Forecast", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "7773267752c35d52b755", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "305967d96d59525e1fdf", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d094c4f4ab9bc0c3252d", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e985820b6d197e2a657e", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "58fa13e0037057d9300d", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "UBB handling" - } - }, - "Property": "Treat Usage Based Billing as constant" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/3273171b157ba5861e86/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/3273171b157ba5861e86/visual.json deleted file mode 100644 index 9fe7c3a4ba..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/3273171b157ba5861e86/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "3273171b157ba5861e86", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30, - "width": 601.551688710567, - "tabOrder": 10 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/43036724900e98d8049d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/43036724900e98d8049d/visual.json deleted file mode 100644 index 45954979af..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/43036724900e98d8049d/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "43036724900e98d8049d", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 3001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 16 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-sales-cost-forecast'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/ada27189a6d44850207e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/ada27189a6d44850207e/visual.json deleted file mode 100644 index 8ed5dafdd1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/ada27189a6d44850207e/visual.json +++ /dev/null @@ -1,411 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ada27189a6d44850207e", - "position": { - "x": 25.802047781569964, - "y": 387.03071672354952, - "z": 0, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Columns": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": true - } - ] - }, - "Rows": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - }, - "queryRef": "Salesperson.Salesperson Name", - "nativeQueryRef": "Salesperson Name", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "queryRef": "Customer Contract.Customer Contract No. Desc.", - "nativeQueryRef": "Customer Contract No. Desc.", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Sales" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Sales", - "nativeQueryRef": "Forecast Sales" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Costs" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Costs", - "nativeQueryRef": "Forecast Costs" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Salesperson.Salesperson Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Salesperson" - } - }, - "Property": "Salesperson Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer No. & Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract No. Desc." - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": {} - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - } - ], - "values": [ - { - "properties": { - "backColor": { - "solid": { - "color": { - "expr": { - "FillRule": { - "Input": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Sales" - } - }, - "FillRule": { - "linearGradient2": { - "min": { - "color": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - }, - "max": { - "color": { - "Literal": { - "Value": "'#429EAA'" - } - } - }, - "nullColoringStrategy": { - "strategy": { - "Literal": { - "Value": "'asZero'" - } - } - } - } - } - } - } - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 1 - } - } - ], - "metadata": "Subscription Billing KPIs.Forecast Sales" - } - }, - { - "properties": { - "backColor": { - "solid": { - "color": { - "expr": { - "FillRule": { - "Input": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Costs" - } - }, - "FillRule": { - "linearGradient2": { - "min": { - "color": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - }, - "max": { - "color": { - "Literal": { - "Value": "'#429EAA'" - } - } - }, - "nullColoringStrategy": { - "strategy": { - "Literal": { - "Value": "'asZero'" - } - } - } - } - } - } - } - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 1 - } - } - ], - "metadata": "Subscription Billing KPIs.Forecast Costs" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No. Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/c611b875834a9472b524/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/c611b875834a9472b524/visual.json deleted file mode 100644 index 90be9a7253..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/c611b875834a9472b524/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "c611b875834a9472b524", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Sales and Cost Forecast Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/cb3b1e8658de8de900d5/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/cb3b1e8658de8de900d5/visual.json deleted file mode 100644 index 025a3b310e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/c9cd438d95e60a070e76/visuals/cb3b1e8658de8de900d5/visual.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "cb3b1e8658de8de900d5", - "position": { - "x": 25.802047781569964, - "y": 60.81911262798635, - "z": 1000, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 5 - }, - "visual": { - "visualType": "lineChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Sales" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Sales", - "nativeQueryRef": "Forecast Sales" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Forecast Costs" - } - }, - "queryRef": "Subscription Billing KPIs.Forecast Costs", - "nativeQueryRef": "Forecast Costs" - } - ] - } - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Monthly Sales and Cost Forecast by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/page.json deleted file mode 100644 index 7e126765c1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/page.json +++ /dev/null @@ -1,415 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "cd6be9e72c3ae66a3dc4", - "displayName": "Revenue by Item", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "cbd5d06c4854d6233150", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Source Type" - } - }, - "type": "Categorical", - "filter": { - "Version": 2, - "From": [ - { - "Name": "c", - "Entity": "Customer Contract Line", - "Type": 0 - } - ], - "Where": [ - { - "Condition": { - "In": { - "Expressions": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Source": "c" - } - }, - "Property": "Source Type" - } - } - ], - "Values": [ - [ - { - "Literal": { - "Value": "'Item'" - } - } - ] - ] - } - } - } - ] - }, - "howCreated": "User", - "isHiddenInViewMode": true, - "isLockedInViewMode": true - }, - { - "name": "45a0676061afbe86c2d0", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "ab6fd23e1ae2f0d77ef6", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f3a6d4b2c5117d4e2959", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "44c869f79d72d41351df", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6922ef560b9797a50625", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f3c1bf4006e52dd608c0", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "431278700829b0ade060", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8f1e93ade2706ed439e6", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "386d088f4720812697e9", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cb9175bae206c8a7a68a", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "4f405e0f6318d5052b06", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6fd736cdb75e9e1a94b6", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "57e7cc700758908dabe9", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "99da61a5dce30000286b", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "22db18203734235be991", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2f90e36d00e930be9bb0", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5f654c959a5e365b50bb", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5154925c317ea37e4e1a", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e8754fbf31e87cc83564", - "ordinal": 19, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Analysis Date" - } - }, - "Property": "Is Current Version" - } - }, - "type": "Categorical", - "filter": { - "Version": 2, - "From": [ - { - "Name": "a", - "Entity": "Analysis Date", - "Type": 0 - } - ], - "Where": [ - { - "Condition": { - "In": { - "Expressions": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Source": "a" - } - }, - "Property": "Is Current Version" - } - } - ], - "Values": [ - [ - { - "Literal": { - "Value": "true" - } - } - ] - ] - } - } - } - ] - }, - "howCreated": "User", - "isHiddenInViewMode": true, - "isLockedInViewMode": true - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/37d594d05aac0424b752/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/37d594d05aac0424b752/visual.json deleted file mode 100644 index 9699db5508..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/37d594d05aac0424b752/visual.json +++ /dev/null @@ -1,668 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "37d594d05aac0424b752", - "position": { - "x": 25.545041317358088, - "y": 387.10562611688795, - "z": 0, - "height": 310.47050216481369, - "width": 1227.1444848223175, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Rows": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 1" - } - }, - "queryRef": "Item Category.Item Category Code Hierarchy.Item Category Code Level 1", - "nativeQueryRef": "Item Category Code Hierarchy Item Category Code Level 1", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 2" - } - }, - "queryRef": "Item Category.Item Category Code Hierarchy.Item Category Code Level 2", - "nativeQueryRef": "Item Category Code Hierarchy Item Category Code Level 2", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 3" - } - }, - "queryRef": "Item Category.Item Category Code Hierarchy.Item Category Code Level 3", - "nativeQueryRef": "Item Category Code Hierarchy Item Category Code Level 3", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "queryRef": "Item.Item No. & Description", - "nativeQueryRef": "Item No. & Description", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.MRR", - "nativeQueryRef": "Mon. Recurring Revenue1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "queryRef": "Subscription Billing KPIs.MRC", - "nativeQueryRef": "Mon. Recurring Cost1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP", - "nativeQueryRef": "Mon. Net Profit Amount1" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.NMRP % of MRR", - "nativeQueryRef": "Mon. Net Profit %", - "displayName": "Mon. Net Profit %" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "queryRef": "Subscription Billing KPIs.Active Customers", - "nativeQueryRef": "Active Customers" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ] - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Item Category.Item Category Code Hierarchy.Item Category Code Level 1" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Property": "Item Category Code Level 1" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Item Category.Item Category Code Hierarchy.Item Category Code Level 2" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Property": "Item Category Code Level 2" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Item Category.Item Category Code Hierarchy.Item Category Code Level 3" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Property": "Item Category Code Level 3" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Item.Item No. & Description" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'Assorted Tables'" - } - } - ] - } - ] - } - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "105.19497839629163D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.NMRP % of MRR" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "85.94490960923855D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.NMRP" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "96.40247113657279D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRC" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "111.50745391525444D" - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.MRR" - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRR" - } - }, - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Contract Line Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.MRC" - } - } - ], - "columnFormatting": [ - { - "properties": { - "dataBars": { - "positiveColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#b3d8dd'" - } - } - } - } - }, - "negativeColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#f1c8bf'" - } - } - } - } - }, - "axisColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#FFFFFF'" - } - } - } - } - }, - "reverseDirection": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "hideText": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "totalMatchingOption": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - } - }, - "selector": { - "metadata": "Subscription Billing KPIs.NMRP % of MRR" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Item Label" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "e7e940d205472368a917", - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 1" - } - }, - "type": "Categorical" - }, - { - "name": "536382bfbaa95300b563", - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 2" - } - }, - "type": "Categorical" - }, - { - "name": "3bde8dc8a050b37a5450", - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Hierarchy": "Item Category Code Hierarchy" - } - }, - "Level": "Item Category Code Level 3" - } - }, - "type": "Categorical" - }, - { - "name": "8d84094fceb120c0ab8a", - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical" - }, - { - "name": "23613fa5d3e054421970", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "type": "Advanced" - }, - { - "name": "40850c08e97ba35a32ba", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Cost" - } - }, - "type": "Advanced" - }, - { - "name": "dc4c8afed8b2b0549349", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "type": "Advanced" - }, - { - "name": "3b30cbbd0a09d0761c7c", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "type": "Advanced" - }, - { - "name": "4b3a29f14718dab14ade", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Active Customers" - } - }, - "type": "Advanced" - } - ] - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/3a20d071d0cb5fbc421d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/3a20d071d0cb5fbc421d/visual.json deleted file mode 100644 index 3982c99025..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/3a20d071d0cb5fbc421d/visual.json +++ /dev/null @@ -1,312 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "3a20d071d0cb5fbc421d", - "position": { - "x": 650.41605200350216, - "y": 61.89760011513691, - "z": 4000, - "height": 306.54049580829707, - "width": 602.27347413617338, - "tabOrder": 4000 - }, - "visual": { - "visualType": "scatterChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "queryRef": "Item.Item No. & Description", - "nativeQueryRef": "Item No. & Description", - "active": true - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Description" - } - }, - "queryRef": "Item.Item Category Description", - "nativeQueryRef": "Item Category Description" - } - ] - }, - "Size": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit Amount" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Net Profit Amount", - "nativeQueryRef": "Mon. Net Profit Amount" - } - ] - }, - "X": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Net Profit %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Net Profit %", - "nativeQueryRef": "Mon. Net Profit %" - } - ] - } - }, - "sortDefinition": { - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'Top'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - }, - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "plotAreaShading": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "displayName": { - "expr": { - "Literal": { - "Value": "'Symmetry shading 1'" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "79D" - } - } - }, - "lowerShadingColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 9, - "Percent": 0.6 - } - } - } - } - }, - "upperShadingColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0.6 - } - } - } - } - } - } - } - ], - "ratioLine": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "displayName": { - "expr": { - "Literal": { - "Value": "'Ratio line 1'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 3, - "Percent": 0 - } - } - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "width": { - "expr": { - "Literal": { - "Value": "1D" - } - } - } - } - } - ], - "categoryLabels": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Profitability by Item Label" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/847143e04187b6cd2d9e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/847143e04187b6cd2d9e/visual.json deleted file mode 100644 index ecb8de5e41..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/847143e04187b6cd2d9e/visual.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "847143e04187b6cd2d9e", - "position": { - "x": 25.545041317358088, - "y": 61.89760011513691, - "z": 1000, - "height": 306.54049580829707, - "width": 601.29097254704425, - "tabOrder": 1000 - }, - "visual": { - "visualType": "treemap", - "query": { - "queryState": { - "Group": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item Category" - } - }, - "Property": "Item Category Description" - } - }, - "queryRef": "Item Category.Item Category Description", - "nativeQueryRef": "Item Category Description", - "active": true - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue", - "nativeQueryRef": "Mon. Recurring Revenue1" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'BottomCenter'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue by Item Category Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/97d778246ba270c640cc/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/97d778246ba270c640cc/visual.json deleted file mode 100644 index a41ad29289..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/97d778246ba270c640cc/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "97d778246ba270c640cc", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Revenue by Item Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/bbc79a94d4e771f2aca3/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/bbc79a94d4e771f2aca3/visual.json deleted file mode 100644 index f9cca62755..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/bbc79a94d4e771f2aca3/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "bbc79a94d4e771f2aca3", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/ea99f23667400d548909/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/ea99f23667400d548909/visual.json deleted file mode 100644 index ed1eecb975..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/cd6be9e72c3ae66a3dc4/visuals/ea99f23667400d548909/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "ea99f23667400d548909", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-revenue-by-item'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/page.json deleted file mode 100644 index 91bb4040d7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/page.json +++ /dev/null @@ -1,338 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "d280b52ee16d2a2b727d", - "displayName": "Vend. Contract Deferral Drill Through", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "dae1dfd096e160a030d5", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5dd4fcb5f8be5143e0ad", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e339e9cd3c04dfa804e6", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "0456ebf3a604ddae5e94", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f154b48bcdb9a09cbc02", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "de762926ce0b686060c9", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6ce5894f753251b6a78b", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "8d17b7607e65480d1038", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "a44650b0b76080e34936", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "9fa200c40b8206a23d9d", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cfb1b5c8d0b2ce25126c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1cd0c9b541724c0770c6", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "256ab881841d6dcd020b", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "87198fc604b2bead0441", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7b558647b5da40641638", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "7367155202be12aed797", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5225f38639b166858009", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "3379b549db0010b28389", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d21e1e528d040090dc53", - "ordinal": 18, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "type": "Categorical", - "howCreated": "Drillthrough" - } - ], - "filterSortOrder": "Custom" - }, - "pageBinding": { - "name": "63cd9f5dc3cd924ecd20", - "type": "Drillthrough", - "parameters": [ - { - "name": "1bd847177e65d97ad210", - "boundFilter": "d21e1e528d040090dc53", - "fieldExpr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - } - } - ] - }, - "visibility": "HiddenInViewMode" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/23662959ee30b7cc71d3/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/23662959ee30b7cc71d3/visual.json deleted file mode 100644 index bff50dc50f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/23662959ee30b7cc71d3/visual.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "23662959ee30b7cc71d3", - "position": { - "x": 11, - "y": 14, - "z": 2000, - "height": 36, - "width": 35, - "tabOrder": 10 - }, - "visual": { - "visualType": "actionButton", - "visualContainerObjects": { - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Back button Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/9d7e33db5e6a74857906/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/9d7e33db5e6a74857906/visual.json deleted file mode 100644 index 6740d5d0f1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/9d7e33db5e6a74857906/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "9d7e33db5e6a74857906", - "position": { - "x": 55, - "y": 9, - "z": 1000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 15 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Vendor Contract Deferrals Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/cc12523be5633b50f04a/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/cc12523be5633b50f04a/visual.json deleted file mode 100644 index a08d03e4ef..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/cc12523be5633b50f04a/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "cc12523be5633b50f04a", - "position": { - "x": 634.04958677685954, - "y": 23.140495867768596, - "z": 3000, - "height": 31.074380165289256, - "width": 618.84297520661164, - "tabOrder": 5 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/dcbf6433020742aa41b8/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/dcbf6433020742aa41b8/visual.json deleted file mode 100644 index ae6828aa55..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/d280b52ee16d2a2b727d/visuals/dcbf6433020742aa41b8/visual.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "dcbf6433020742aa41b8", - "position": { - "x": 26, - "y": 64, - "z": 0, - "height": 630, - "width": 1228, - "tabOrder": 0 - }, - "visual": { - "visualType": "tableEx", - "query": { - "queryState": { - "Values": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "queryRef": "Date.Date", - "nativeQueryRef": "Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Document Type" - } - }, - "queryRef": "Vendor Contract Deferrals.Document Type", - "nativeQueryRef": "Document Type" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Document No." - } - }, - "queryRef": "Vendor Contract Deferrals.Document No.", - "nativeQueryRef": "Document No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Document Line No." - } - }, - "queryRef": "Vendor Contract Deferrals.Document Line No.", - "nativeQueryRef": "Line No.", - "displayName": "Line No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Contract No." - } - }, - "queryRef": "Vendor Contract Deferrals.Contract No.", - "nativeQueryRef": "Contract No." - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Contract Line No." - } - }, - "queryRef": "Vendor Contract Deferrals.Contract Line No.", - "nativeQueryRef": "Contract Line No." - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Vendor Deferrals", - "nativeQueryRef": "Vendor Deferrals" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "Release Posting Date" - } - }, - "queryRef": "Vendor Contract Deferrals.Release Posting Date", - "nativeQueryRef": "Release Posting Date" - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Vendor Contract Deferrals" - } - }, - "Property": "G LEntry No." - } - }, - "queryRef": "Vendor Contract Deferrals.G LEntry No.", - "nativeQueryRef": "G LEntry No." - } - ] - } - } - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Vendor Contract Deferrals Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/page.json deleted file mode 100644 index 66a068cb20..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/page.json +++ /dev/null @@ -1,316 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "daf7261ae50cb900681b", - "displayName": "Vendor Deferrals", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "4f6437e55a8af6930642", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "79bc24e1bc59dce3621e", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "b30c0336459bf03985d6", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "adaf297eeaecc2c4114b", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User", - "objects": { - "general": [ - { - "properties": { - "isInvertedSelectionMode": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - } - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/3e4eefafa4f5295c7ed8/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/3e4eefafa4f5295c7ed8/visual.json deleted file mode 100644 index e63af30679..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/3e4eefafa4f5295c7ed8/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "3e4eefafa4f5295c7ed8", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 3000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/72a277cd79070e47e688/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/72a277cd79070e47e688/visual.json deleted file mode 100644 index b221e9e0b9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/72a277cd79070e47e688/visual.json +++ /dev/null @@ -1,292 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "72a277cd79070e47e688", - "position": { - "x": 25.545041317358088, - "y": 387.10562611688795, - "z": 0, - "height": 310.47050216481369, - "width": 602, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Columns": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released", - "active": true - } - ] - }, - "Rows": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Vendor Deferrals", - "nativeQueryRef": "Vendor Deferrals" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year" - ], - "isCollapsed": true, - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": {} - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "72.74999791383793D" - } - } - } - }, - "selector": { - "data": [ - { - "total": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - } - ] - } - ] - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.Vendor Deferrals" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Released and Deferred Amount by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/800f2cd06183619479f5/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/800f2cd06183619479f5/visual.json deleted file mode 100644 index 864a93ffb9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/800f2cd06183619479f5/visual.json +++ /dev/null @@ -1,168 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "800f2cd06183619479f5", - "position": { - "x": 650.41605200350216, - "y": 387.10562611688795, - "z": 4000, - "height": 310.47050216481369, - "width": 602.27347413617338, - "tabOrder": 4000 - }, - "visual": { - "visualType": "pieChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Vendor Deferrals", - "nativeQueryRef": "Vendor Deferrals" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'Top'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - } - } - } - ], - "labels": [ - { - "properties": { - "labelStyle": { - "expr": { - "Literal": { - "Value": "'Category, data value, percent of total'" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Vendor Deferrals by Released Status Label" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/afd062858a1801ee2042/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/afd062858a1801ee2042/visual.json deleted file mode 100644 index f7fac05ae7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/afd062858a1801ee2042/visual.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "afd062858a1801ee2042", - "position": { - "x": 25.802047781569964, - "y": 60.81911262798635, - "z": 1000, - "height": 307, - "width": 1226.8259385665528, - "tabOrder": 1000 - }, - "visual": { - "visualType": "columnChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": false - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Vendor Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Vendor Deferrals", - "nativeQueryRef": "Vendor Deferrals" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "direction": "Descending" - } - ] - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Released and Deferred Amount by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/e2dcb37d9e2aec6c0028/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/e2dcb37d9e2aec6c0028/visual.json deleted file mode 100644 index a4122ea231..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/e2dcb37d9e2aec6c0028/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "e2dcb37d9e2aec6c0028", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-vendor-deferrals'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/edd558bc8b6ce3aa79b0/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/edd558bc8b6ce3aa79b0/visual.json deleted file mode 100644 index e60b473731..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/daf7261ae50cb900681b/visuals/edd558bc8b6ce3aa79b0/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "edd558bc8b6ce3aa79b0", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Vendor Deferrals (Caption) Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/page.json deleted file mode 100644 index 834ce55ea9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/page.json +++ /dev/null @@ -1,316 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "dcb80fad15d5002bc00d", - "displayName": "Customer Deferrals", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "fa99ef24f3a41c94c218", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d34105352564785f3fd5", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "fa6167e263e0ac3fa906", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "669bf78dac49c86549c3", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User", - "objects": { - "general": [ - { - "properties": { - "isInvertedSelectionMode": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - } - }, - { - "name": "7f2d6ae4908186d1850c", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "eda797a5e1919023b649", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "06d3d5abcaea9db50805", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c2cb24ca3bdb0186ac05", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "e452d18014609209a23e", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2b633d1547ae6d3e4602", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "67a6deb48e7bc949d03c", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "753a554fa2b60b546400", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "33341ab96bd776aac220", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d18c55b3b30ea9803323", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92ce422c31db4042248e", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bcb9b3c45ee2eb016635", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d7fe73323610adc40703", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "bdea3275d7ce415900a9", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/04bd429e4709269ddca9/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/04bd429e4709269ddca9/visual.json deleted file mode 100644 index 1d86c8bbcc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/04bd429e4709269ddca9/visual.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "04bd429e4709269ddca9", - "position": { - "x": 21.615034960841459, - "y": 60.915098526007753, - "z": 1000, - "height": 306.54049580829707, - "width": 1231.074491178834, - "tabOrder": 1000 - }, - "visual": { - "visualType": "columnChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": false - } - ] - }, - "Series": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released" - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Customer Deferrals", - "nativeQueryRef": "Customer Deferrals" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "direction": "Descending" - } - ] - } - }, - "objects": { - "categoryAxis": [ - { - "properties": { - "concatenateLabels": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Released and Deferred Amount by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/15397bee55fba45e043e/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/15397bee55fba45e043e/visual.json deleted file mode 100644 index fba3c60cab..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/15397bee55fba45e043e/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "15397bee55fba45e043e", - "position": { - "x": 622.814193171618, - "y": 23.034379832805215, - "z": 3000, - "height": 30, - "width": 605.98137713995254, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/439cebade8580dd5b6cc/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/439cebade8580dd5b6cc/visual.json deleted file mode 100644 index 167424058a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/439cebade8580dd5b6cc/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "439cebade8580dd5b6cc", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 3000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Deferrals (Caption) Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/45b46c949305c878cb03/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/45b46c949305c878cb03/visual.json deleted file mode 100644 index 5560e1a87b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/45b46c949305c878cb03/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "45b46c949305c878cb03", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 4001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 4001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-customer-deferrals'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/49957d9fe993e9f90626/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/49957d9fe993e9f90626/visual.json deleted file mode 100644 index 33a7cc5ac6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/49957d9fe993e9f90626/visual.json +++ /dev/null @@ -1,168 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "49957d9fe993e9f90626", - "position": { - "x": 650.41605200350216, - "y": 387.10562611688795, - "z": 4000, - "height": 310.47050216481369, - "width": 602.27347413617338, - "tabOrder": 4000 - }, - "visual": { - "visualType": "pieChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Customer Deferrals", - "nativeQueryRef": "Customer Deferrals" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "position": { - "expr": { - "Literal": { - "Value": "'Top'" - } - } - }, - "showTitle": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "labelColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 1, - "Percent": 0 - } - } - } - } - } - } - } - ], - "labels": [ - { - "properties": { - "labelStyle": { - "expr": { - "Literal": { - "Value": "'Category, data value, percent of total'" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Customer Deferrals by Released Status Label" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/eca10e5446387c860e6d/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/eca10e5446387c860e6d/visual.json deleted file mode 100644 index e9444c6c3f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/dcb80fad15d5002bc00d/visuals/eca10e5446387c860e6d/visual.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "eca10e5446387c860e6d", - "position": { - "x": 21.615034960841459, - "y": 387.10562611688795, - "z": 0, - "height": 310.47050216481369, - "width": 601.29097254704425, - "tabOrder": 0 - }, - "visual": { - "visualType": "pivotTable", - "query": { - "queryState": { - "Columns": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - }, - "queryRef": "Is Released.Is Released", - "nativeQueryRef": "Is Released", - "active": true - } - ] - }, - "Rows": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Quarter Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Quarter Year", - "active": false - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Quarter-Month-Week" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Quarter-Month-Week Fiscal Month Year", - "active": false - } - ] - }, - "Values": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals" - } - }, - "queryRef": "Subscription Billing KPIs.Customer Deferrals", - "nativeQueryRef": "Customer Deferrals" - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "Rows" - ], - "levels": [ - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Quarter Year" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Date.Fiscal Year-Quarter-Month-Week.Fiscal Month Year" - ], - "isCollapsed": true, - "isPinned": true - } - ], - "root": {} - } - ], - "objects": { - "columnWidth": [ - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "113D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Month" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "95D" - } - } - } - }, - "selector": { - "metadata": "Sales Measures.Average Sales Amount per Day" - } - }, - { - "properties": { - "value": { - "expr": { - "Literal": { - "Value": "83.24999738508687D" - } - } - } - }, - "selector": { - "data": [ - { - "total": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Is Released" - } - }, - "Property": "Is Released" - } - } - ] - } - ] - } - } - ], - "values": [ - { - "properties": { - "webURL": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Customer Deferrals Back Link" - } - } - } - }, - "selector": { - "data": [ - { - "dataViewWildcard": { - "matchingOption": 0 - } - } - ], - "metadata": "Subscription Billing KPIs.Customer Deferrals" - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Released and Deferred Amount by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/page.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/page.json deleted file mode 100644 index 9edc1be827..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/page.json +++ /dev/null @@ -1,358 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/page/2.0.0/schema.json", - "name": "ebdd708c02b5406dd277", - "displayName": "Churn Analysis", - "displayOption": "FitToPage", - "height": 720, - "width": 1280, - "filterConfig": { - "filters": [ - { - "name": "0bee7b91dc87f6ace1c0", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Date" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "1abf14d474b556e8c27a", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "510042a2d09763d630f1", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Quarter Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "96a162b53004077d71ac", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Year" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2a3c352507d1c0c8d61a", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6fc3b2d297b400e88c05", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2290ea2f7d89e6896567", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "699f28fa0ea5c850621c", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Posting Group" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "92121e862c505ee203d1", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "d85061bd606ae014c429", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5b691613169200013879", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "c3e3a32b600e9409c574", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "6e2050996e6250247077", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cb83b7788010db9e8878", - "ordinal": 13, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "41a7b0e1e7830aad99c7", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "cf5d4e8138506d779add", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "f6cff9d25a1aad3e608b", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No. & Description" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "2d1bfbeb0008aa5e9607", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical", - "howCreated": "User" - }, - { - "name": "5a399a70ce1638b17e90", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date Ref" - } - }, - "Property": "Data Range Analysis" - } - }, - "type": "Categorical", - "filter": { - "Version": 2, - "From": [ - { - "Name": "d", - "Entity": "Date Ref", - "Type": 0 - } - ], - "Where": [ - { - "Condition": { - "In": { - "Expressions": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Source": "d" - } - }, - "Property": "Data Range Analysis" - } - } - ], - "Values": [ - [ - { - "Literal": { - "Value": "true" - } - } - ] - ] - } - } - } - ] - }, - "howCreated": "User", - "isHiddenInViewMode": true, - "isLockedInViewMode": true - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/1f5cabd68e3b6cc8154c/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/1f5cabd68e3b6cc8154c/visual.json deleted file mode 100644 index 5361567e79..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/1f5cabd68e3b6cc8154c/visual.json +++ /dev/null @@ -1,202 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "1f5cabd68e3b6cc8154c", - "position": { - "x": 21.615034960841459, - "y": 427.38819127118342, - "z": 5000, - "height": 264.29292747574328, - "width": 399.878146775567, - "tabOrder": 5000 - }, - "visual": { - "visualType": "barChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer Name" - } - }, - "queryRef": "Customers.Customer Name", - "nativeQueryRef": "Customer Name", - "active": true - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Churn", - "nativeQueryRef": "Churn" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "objects": { - "legend": [ - { - "properties": { - "showGradientLegend": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "labels": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "visualContainerObjects": { - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeaderTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Churn by Customer Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/29bad4dcc0a702aa0c35/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/29bad4dcc0a702aa0c35/visual.json deleted file mode 100644 index 12fbbf7e5f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/29bad4dcc0a702aa0c35/visual.json +++ /dev/null @@ -1,332 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "29bad4dcc0a702aa0c35", - "position": { - "x": 21.615034960841459, - "y": 61.89760011513691, - "z": 3000, - "height": 65.827606471653539, - "width": 1232.0569927679633, - "tabOrder": 3000 - }, - "visual": { - "visualType": "cardVisual", - "query": { - "queryState": { - "Data": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "MRR End of Period" - } - }, - "queryRef": "Subscription Billing KPIs.MRR End of Period", - "nativeQueryRef": "MRR End of Period" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Change" - } - }, - "queryRef": "Subscription Billing KPIs.Total Change", - "nativeQueryRef": "Total Change" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Downgrade" - } - }, - "queryRef": "Subscription Billing KPIs.Total Downgrade", - "nativeQueryRef": "Downgrade" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Total Churn", - "nativeQueryRef": "Churn" - }, - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Avg. Mon. Churn Rate %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue Churn Avg. %", - "nativeQueryRef": "Mon. Avg. Churn Rate %" - } - ] - } - }, - "sortDefinition": { - "sort": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "MRR End of Period" - } - }, - "direction": "Descending" - } - ], - "isDefaultSort": true - } - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - }, - "text": { - "expr": { - "Literal": { - "Value": "'Financial KPIs Card'" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "general": [ - { - "properties": { - "altText": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue Label" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "angle": { - "expr": { - "Literal": { - "Value": "90L" - } - } - }, - "shadowDistance": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowBlur": { - "expr": { - "Literal": { - "Value": "10L" - } - } - }, - "shadowSpread": { - "expr": { - "Literal": { - "Value": "3L" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "70L" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "0D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "351feee601302be0701d", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "MRR End of Period" - } - }, - "type": "Advanced" - }, - { - "name": "25bf0a00064e0917b179", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Total Change" - } - }, - "type": "Advanced" - }, - { - "name": "336624a9b28690bcb0b9", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Downgrade" - } - }, - "type": "Advanced" - }, - { - "name": "a4d33d98646690deda7d", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Churn" - } - }, - "type": "Advanced" - }, - { - "name": "675210d141e123c4eee6", - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Avg. Mon. Churn Rate %" - } - }, - "type": "Advanced" - } - ] - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/382c7a45084b273b5c6a/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/382c7a45084b273b5c6a/visual.json deleted file mode 100644 index 30001f0f00..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/382c7a45084b273b5c6a/visual.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "382c7a45084b273b5c6a", - "position": { - "x": 1228.75, - "y": 23.333333333333336, - "z": 5001, - "height": 26, - "width": 26.666666666666668, - "tabOrder": 5001 - }, - "visual": { - "visualType": "actionButton", - "objects": { - "icon": [ - { - "properties": { - "shapeType": { - "expr": { - "Literal": { - "Value": "'help'" - } - } - }, - "lineColor": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 2, - "Percent": 0 - } - } - } - } - }, - "lineWeight": { - "expr": { - "Literal": { - "Value": "1L" - } - } - } - }, - "selector": { - "id": "default" - } - } - ] - }, - "visualContainerObjects": { - "lockAspect": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ], - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "visualLink": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "type": { - "expr": { - "Literal": { - "Value": "'WebUrl'" - } - } - }, - "webUrl": { - "expr": { - "Literal": { - "Value": "'https://learn.microsoft.com/dynamics365/business-central/SRB/analytics/subscription-powerbi-churn-analysis'" - } - } - }, - "tooltip": { - "expr": { - "Literal": { - "Value": "'Go to Microsoft Learn'" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "5D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "5D" - } - } - } - } - } - ] - } - }, - "howCreated": "InsertVisualButton" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/39500444654b91e4a4e1/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/39500444654b91e4a4e1/visual.json deleted file mode 100644 index 0e1965ccb4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/39500444654b91e4a4e1/visual.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "39500444654b91e4a4e1", - "position": { - "x": 22, - "y": 10, - "z": 2000, - "height": 43.828793774319067, - "width": 605, - "tabOrder": 2000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Churn Analysis Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "18D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#212121'" - } - } - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4a8d2d587d10d5c1ac54/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4a8d2d587d10d5c1ac54/visual.json deleted file mode 100644 index d92b253321..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4a8d2d587d10d5c1ac54/visual.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "4a8d2d587d10d5c1ac54", - "position": { - "x": 627.24388160100352, - "y": 23.034379832805215, - "z": 1000, - "height": 30.121881319822204, - "width": 601.551688710567, - "tabOrder": 1000 - }, - "visual": { - "visualType": "textbox", - "objects": { - "general": [ - { - "properties": { - "paragraphs": [ - { - "textRuns": [ - { - "value": "" - } - ] - } - ] - } - } - ] - }, - "visualContainerObjects": { - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Date Table Setup" - } - }, - "Property": "Last Refresh Label" - } - } - }, - "fontFamily": { - "expr": { - "Literal": { - "Value": "'''Segoe UI'', wf_segoe-ui_normal, helvetica, arial, sans-serif'" - } - } - }, - "fontSize": { - "expr": { - "Literal": { - "Value": "9D" - } - } - }, - "fontColor": { - "solid": { - "color": { - "expr": { - "Literal": { - "Value": "'#505C6D'" - } - } - } - } - }, - "alignment": { - "expr": { - "Literal": { - "Value": "'right'" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4f8f3607891b08fc17c0/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4f8f3607891b08fc17c0/visual.json deleted file mode 100644 index f513cdc44b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/4f8f3607891b08fc17c0/visual.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "4f8f3607891b08fc17c0", - "position": { - "x": 21.615034960841459, - "y": 145.41023519111528, - "z": 4000, - "height": 264, - "width": 399.878146775567, - "tabOrder": 4000 - }, - "visual": { - "visualType": "clusteredColumnChart", - "query": { - "queryState": { - "Category": { - "projections": [ - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Year", - "active": true - }, - { - "field": { - "HierarchyLevel": { - "Expression": { - "Hierarchy": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Hierarchy": "Fiscal Year-Month" - } - }, - "Level": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Year-Month.Fiscal Month Year", - "nativeQueryRef": "Fiscal Year-Month Fiscal Month Year", - "active": false - } - ] - }, - "Y": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Avg. Mon. Churn Rate %" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Avg. Churn Rate %", - "nativeQueryRef": "Avg. Mon. Churn Rate %" - } - ] - } - } - }, - "visualContainerObjects": { - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "visualTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeader": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "visualHeaderTooltip": [ - { - "properties": { - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Avg. Mon. Churn Rate % by Year and Month Label" - } - } - } - } - } - ] - } - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/81632f105a7b9c2c1744/visual.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/81632f105a7b9c2c1744/visual.json deleted file mode 100644 index 8d4ed07c19..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/ebdd708c02b5406dd277/visuals/81632f105a7b9c2c1744/visual.json +++ /dev/null @@ -1,1151 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/visualContainer/2.4.0/schema.json", - "name": "81632f105a7b9c2c1744", - "position": { - "x": 443.10821669724993, - "y": 145.41023519111528, - "z": 0, - "height": 546.27088355581145, - "width": 809.58130944242555, - "tabOrder": 0 - }, - "visual": { - "visualType": "decompositionTreeVisual", - "query": { - "queryState": { - "Analyze": { - "projections": [ - { - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue Downgrade & Churn" - } - }, - "queryRef": "Subscription Billing KPIs.Mon. Recurring Revenue Downgrade & Churn", - "nativeQueryRef": "Mon. Recurring Revenue Downgrade & Churn" - } - ] - }, - "ExplainBy": { - "projections": [ - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Changes" - } - }, - "Property": "Change Type" - } - }, - "queryRef": "Customer Contract Changes.Change Type", - "nativeQueryRef": "Change Type", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "queryRef": "Customer Contract Line.Billing Rhythm", - "nativeQueryRef": "Billing Rhythm", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "queryRef": "Customers.Customer No. & Name", - "nativeQueryRef": "Customer No. & Name", - "active": true - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Post Code" - } - }, - "queryRef": "Customers.Post Code", - "nativeQueryRef": "Post Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "queryRef": "Dimension Sets.Global Dimension 1", - "nativeQueryRef": "Global Dimension 1", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "queryRef": "Dimension Sets.Global Dimension 2", - "nativeQueryRef": "Global Dimension 2", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 3", - "nativeQueryRef": "Shortcut Dimension 3", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 4", - "nativeQueryRef": "Shortcut Dimension 4", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 5", - "nativeQueryRef": "Shortcut Dimension 5", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 6", - "nativeQueryRef": "Shortcut Dimension 6", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 7", - "nativeQueryRef": "Shortcut Dimension 7", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "queryRef": "Dimension Sets.Shortcut Dimension 8", - "nativeQueryRef": "Shortcut Dimension 8", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "queryRef": "Customer Contract.Customer Contract Type", - "nativeQueryRef": "Customer Contract Type", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No." - } - }, - "queryRef": "Item.Item No.", - "nativeQueryRef": "Item No.", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Name" - } - }, - "queryRef": "Item.Item Name", - "nativeQueryRef": "Item Name", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "queryRef": "Item.Item Category Code", - "nativeQueryRef": "Item Category Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Remaining Term" - } - }, - "queryRef": "Customer Contract Line.Remaining Term", - "nativeQueryRef": "Remaining Term", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - }, - "queryRef": "Customers.Country/Region Code", - "nativeQueryRef": "Country/Region Code", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "queryRef": "Date.Fiscal Month Year", - "nativeQueryRef": "Fiscal Month Year", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "State" - } - }, - "queryRef": "Customers.State", - "nativeQueryRef": "State", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "queryRef": "Customer Contract.Customer Contract No. Desc.", - "nativeQueryRef": "Customer Contract No. Desc.", - "active": false - }, - { - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Initial Term" - } - }, - "queryRef": "Customer Contract Line.Initial Term", - "nativeQueryRef": "Initial Term", - "active": false - } - ] - } - } - }, - "expansionStates": [ - { - "roles": [ - "ExplainBy" - ], - "levels": [ - { - "queryRefs": [ - "Customer Contract Changes.Change Type" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Changes" - } - }, - "Property": "Change Type" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customer Contract Line.Billing Rhythm" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Customer No. & Name" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - } - ], - "isPinned": true - }, - { - "queryRefs": [ - "Customers.Post Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 1" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Global Dimension 2" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 3" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 4" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 5" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 6" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 7" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Dimension Sets.Shortcut Dimension 8" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract Type" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item No." - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Name" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Item.Item Category Code" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract Line.Remaining Term" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.Country/Region Code" - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - } - ] - }, - { - "queryRefs": [ - "Date.Fiscal Month Year" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customers.State" - ], - "isCollapsed": true - }, - { - "queryRefs": [ - "Customer Contract.Customer Contract No. Desc." - ], - "isCollapsed": true, - "identityKeys": [ - { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - } - ] - }, - { - "queryRefs": [ - "Customer Contract Line.Initial Term" - ], - "isCollapsed": true - } - ], - "root": { - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'Churn'" - } - } - ], - "isToggled": true, - "children": [ - { - "identityValues": [ - { - "Literal": { - "Value": "'1M'" - } - } - ], - "isToggled": true - } - ] - } - ] - } - } - ], - "objects": { - "tree": [ - { - "properties": { - "effectiveBarsPerLevel": { - "expr": { - "Literal": { - "Value": "6L" - } - } - } - } - } - ], - "insights": [ - { - "properties": { - "isAINode": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - }, - "selector": { - "data": [ - { - "scopeId": { - "Comparison": { - "ComparisonKind": 0, - "Left": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Changes" - } - }, - "Property": "Change Type" - } - }, - "Right": { - "Literal": { - "Value": "'Churn'" - } - } - } - } - } - ] - } - } - ] - }, - "visualContainerObjects": { - "background": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "transparency": { - "expr": { - "Literal": { - "Value": "0D" - } - } - } - } - } - ], - "title": [ - { - "properties": { - "text": { - "expr": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Translated Localized Labels" - } - }, - "Property": "Mon. Recurring Revenue Analysis Label" - } - } - }, - "show": { - "expr": { - "Literal": { - "Value": "false" - } - } - } - } - } - ], - "padding": [ - { - "properties": { - "top": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "bottom": { - "expr": { - "Literal": { - "Value": "16D" - } - } - }, - "left": { - "expr": { - "Literal": { - "Value": "20D" - } - } - }, - "right": { - "expr": { - "Literal": { - "Value": "20D" - } - } - } - } - } - ], - "border": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 0, - "Percent": -0.1 - } - } - } - } - }, - "radius": { - "expr": { - "Literal": { - "Value": "4D" - } - } - } - } - } - ], - "dropShadow": [ - { - "properties": { - "show": { - "expr": { - "Literal": { - "Value": "true" - } - } - }, - "color": { - "solid": { - "color": { - "expr": { - "ThemeDataColor": { - "ColorId": 4, - "Percent": 0.4 - } - } - } - } - }, - "preset": { - "expr": { - "Literal": { - "Value": "'Bottom'" - } - } - } - } - } - ] - } - }, - "filterConfig": { - "filters": [ - { - "name": "48549bc0b92c9d1c05b6", - "ordinal": 0, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Billing Rhythm" - } - }, - "type": "Categorical" - }, - { - "name": "2a81f71394b15db2cba3", - "ordinal": 1, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Country/Region Code" - } - }, - "type": "Categorical" - }, - { - "name": "a8bb1b6376417163c811", - "ordinal": 2, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract No. Desc." - } - }, - "type": "Categorical" - }, - { - "name": "8ee05ad497612b4c0020", - "ordinal": 3, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract" - } - }, - "Property": "Customer Contract Type" - } - }, - "type": "Categorical" - }, - { - "name": "a901805f020d76d0503b", - "ordinal": 4, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Changes" - } - }, - "Property": "Change Type" - } - }, - "type": "Categorical" - }, - { - "name": "b077487e04484d159992", - "ordinal": 5, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Customer No. & Name" - } - }, - "type": "Categorical" - }, - { - "name": "0303f4b2b7eb015799aa", - "ordinal": 6, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Date" - } - }, - "Property": "Fiscal Month Year" - } - }, - "type": "Categorical" - }, - { - "name": "6bfa0c40c90c45819d27", - "ordinal": 7, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 1" - } - }, - "type": "Categorical" - }, - { - "name": "523bbaa6806b621612a3", - "ordinal": 8, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Global Dimension 2" - } - }, - "type": "Categorical" - }, - { - "name": "7369e3725b8a2a928133", - "ordinal": 9, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Initial Term" - } - }, - "type": "Categorical" - }, - { - "name": "4052ca1d46405d2dea1b", - "ordinal": 10, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Category Code" - } - }, - "type": "Categorical" - }, - { - "name": "31abddbf24b778241a9b", - "ordinal": 11, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item Name" - } - }, - "type": "Categorical" - }, - { - "name": "483350850d87aad98a31", - "ordinal": 12, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Item" - } - }, - "Property": "Item No." - } - }, - "type": "Categorical" - }, - { - "name": "41b31fb0d2255e386694", - "ordinal": 13, - "field": { - "Measure": { - "Expression": { - "SourceRef": { - "Entity": "Subscription Billing KPIs" - } - }, - "Property": "Mon. Recurring Revenue Churn" - } - }, - "type": "Advanced", - "howCreated": "User" - }, - { - "name": "58ae3ab08d26a901001a", - "ordinal": 14, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "Post Code" - } - }, - "type": "Categorical" - }, - { - "name": "2ce11c71bce790e90127", - "ordinal": 15, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customer Contract Line" - } - }, - "Property": "Remaining Term" - } - }, - "type": "Categorical" - }, - { - "name": "6234e1c3203e4b80d7dd", - "ordinal": 16, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 3" - } - }, - "type": "Categorical" - }, - { - "name": "af0bcfd240dbad7d98e0", - "ordinal": 17, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 4" - } - }, - "type": "Categorical" - }, - { - "name": "f5ce93ea0a9e19da375c", - "ordinal": 18, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 5" - } - }, - "type": "Categorical" - }, - { - "name": "73445087b30625e12db1", - "ordinal": 19, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 6" - } - }, - "type": "Categorical" - }, - { - "name": "f8964b1ec538a6429131", - "ordinal": 20, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 7" - } - }, - "type": "Categorical" - }, - { - "name": "0036065d034020d400ae", - "ordinal": 21, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Dimension Sets" - } - }, - "Property": "Shortcut Dimension 8" - } - }, - "type": "Categorical" - }, - { - "name": "d489aefd21a88dec9d61", - "ordinal": 22, - "field": { - "Column": { - "Expression": { - "SourceRef": { - "Entity": "Customers" - } - }, - "Property": "State" - } - }, - "type": "Categorical" - } - ], - "filterSortOrder": "Custom" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/pages.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/pages.json deleted file mode 100644 index 6920c3f7fa..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/pages/pages.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/pagesMetadata/1.0.0/schema.json", - "pageOrder": [ - "04fa320747962435bf38", - "3e6e12bc48782630bd89", - "abe45c8964230489e801", - "8bb19f8625a990d30466", - "ebdd708c02b5406dd277", - "cd6be9e72c3ae66a3dc4", - "0ce6ac6d5da599bd30e9", - "926fa2c13070086cb999", - "bf60e6bdba77e101902e", - "6d4dcc705ea9db21d91b", - "dcb80fad15d5002bc00d", - "daf7261ae50cb900681b", - "c9cd438d95e60a070e76", - "c27df17dadb4b21679dc", - "b0629e90d266c40d537d", - "d280b52ee16d2a2b727d", - "500cc4cc7e93a1014a89" - ], - "activePageName": "04fa320747962435bf38" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/report.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/report.json deleted file mode 100644 index 2411e3140a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/report.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/report/3.0.0/schema.json", - "themeCollection": { - "baseTheme": { - "name": "CY19SU12", - "reportVersionAtImport": { - "visual": "1.8.44", - "report": "2.0.44", - "page": "1.3.44" - }, - "type": "SharedResources" - }, - "customTheme": { - "name": "Microsoft_Dynamics_365_Busines45845983759727005.json", - "reportVersionAtImport": { - "visual": "2.1.0", - "report": "3.0.0", - "page": "2.3.0" - }, - "type": "RegisteredResources" - } - }, - "objects": { - "outspacePane": [ - { - "properties": { - "expanded": { - "expr": { - "Literal": { - "Value": "true" - } - } - } - } - } - ] - }, - "resourcePackages": [ - { - "name": "SharedResources", - "type": "SharedResources", - "items": [ - { - "name": "CY19SU12", - "path": "BaseThemes/CY19SU12.json", - "type": "BaseTheme" - } - ] - }, - { - "name": "RegisteredResources", - "type": "RegisteredResources", - "items": [ - { - "name": "Microsoft_Dynamics_365_Busines45845983759727005.json", - "path": "Microsoft_Dynamics_365_Busines45845983759727005.json", - "type": "CustomTheme" - } - ] - } - ], - "settings": { - "useStylableVisualContainerHeader": true, - "allowChangeFilterTypes": true, - "useEnhancedTooltips": true - }, - "slowDataSourceSettings": { - "isCrossHighlightingDisabled": false, - "isSlicerSelectionsButtonEnabled": false, - "isFilterSelectionsButtonEnabled": false, - "isFieldWellButtonEnabled": false, - "isApplyAllButtonEnabled": false - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/version.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/version.json deleted file mode 100644 index c8b385e42d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.Report/definition/version.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definition/versionMetadata/1.0.0/schema.json", - "version": "2.0.0" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.pbi/editorSettings.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.pbi/editorSettings.json deleted file mode 100644 index ee5730367d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.pbi/editorSettings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/semanticModel/editorSettings/1.0.0/schema.json", - "parallelQueryLoading": true, - "typeDetectionEnabled": true, - "relationshipImportEnabled": true, - "shouldNotifyUserOfNameConflictResolution": true -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.platform b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.platform deleted file mode 100644 index bbbc8864da..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/.platform +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json", - "metadata": { - "type": "SemanticModel", - "displayName": "Subscription Billing app" - }, - "config": { - "version": "2.0", - "logicalId": "262d5781-cec4-4566-b3c3-8583cd2cc8ad" - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition.pbism b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition.pbism deleted file mode 100644 index 236a4c9153..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition.pbism +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/semanticModel/definitionProperties/1.0.0/schema.json", - "version": "4.2", - "settings": { - "qnaEnabled": false - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/cs-CZ.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/cs-CZ.tmdl deleted file mode 100644 index c5b47311e9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/cs-CZ.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo cs-CZ - translations - model Model - table 'Dimension Sets' - caption: Sady dimenzí - column 'Global Dimension 1' - caption: Globální dimenze 1 - column 'Global Dimension 2' - caption: Globální dimenze 2 - column 'Shortcut Dimension 3' - caption: Zkratka dimenze 3 - column 'Shortcut Dimension 4' - caption: Zkratka dimenze 4 - column 'Shortcut Dimension 5' - caption: Zkratka dimenze 5 - column 'Shortcut Dimension 6' - caption: Zkratka dimenze 6 - column 'Shortcut Dimension 7' - caption: Zkratka dimenze 7 - column 'Shortcut Dimension 8' - caption: Zkratka dimenze 8 - column id - caption: ID - table Vendors - caption: Dodavatelé - column 'Vendor No.' - caption: Číslo dodavatele - column 'Vendor Name' - caption: Jméno dodavatele - column Address - caption: Adresa - column 'Address 2' - caption: Adresa 2 - column City - caption: Město - column 'Post Code' - caption: Poštovní směrovací číslo - column State - caption: Stát - column 'Country/Region Code' - caption: Kód země/oblasti - column 'Vendor Posting Group' - caption: Účto skupina dodavatele - column 'Vendor No. & Name' - caption: Číslo a jméno dodavatele - table Customers - caption: Zákazníci - column 'Customer No.' - caption: Číslo zákazníka - column 'Customer Name' - caption: Jméno zákazníka - column Address - caption: Adresa - column 'Address 2' - caption: Adresa 2 - column City - caption: Město - column 'Post Code' - caption: Poštovní směrovací číslo - column State - caption: Stát - column 'Country/Region Code' - caption: Kód země/oblasti - column 'Customer Posting Group' - caption: Účto skupina zákazníka - column 'Customer Price Group' - caption: Cenová skupina zákazníka - column 'Customer Discount Group' - caption: Skupina slev zákazníka - column 'Customer No. & Name' - caption: Číslo a jméno zákazníka - table Date - caption: Datum - column 'Week Day' - caption: Den v týdnu - column 'Day Type' - caption: Typ dne - column 'Calendar Year' - caption: Kalendářní rok - column 'Calendar Quarter' - caption: Kalendářní kvartál - column 'Calendar Quarter Year' - caption: Rok kalendářního kvartálu - column 'Calendar Month' - caption: Kalendářní měsíc - column 'Calendar Month Year' - caption: Kalendářní měsíc v roce - column 'Calendar Week' - caption: Kalendářní týden - column 'Calendar Week Year' - caption: Kalendářní týden a rok - column 'Calendar RelativeWeekPos' - caption: Relativní pozice kalendářního týdne - column 'Calendar RelativeMonthPos' - caption: Relativní pozice kalendářního měsíce - column 'Calendar RelativeQuarterPos' - caption: Relativní pozice kalendářního kvartálu - column 'Calendar RelativeYearPos' - caption: Relativní pozice kalendářního roku - column 'Calendar StartOfMonth' - caption: Začátek kalendářního měsíce - column 'Calendar EndOfMonth' - caption: Konec kalendářního měsíce - column 'Calendar StartOfQuarter' - caption: Začátek kalendářního kvartálu - column 'Calendar EndOfQuarter' - caption: Konec kalendářního kvartálu - column 'Calendar StartOfYear' - caption: Začátek kalendářního roku - column 'Calendar EndOfYear' - caption: Konec kalendářního roku - column 'Calendar MonthDays' - caption: Kalendářní dny v měsíci - column 'Calendar QuarterDays' - caption: Dny kalendářního kvartálu - column 'Calendar YearDays' - caption: Dny kalendářního roku - column 'Calendar DayOfMonthNumber' - caption: Číslo dne v kalendářním měsíci - column 'Calendar DayOfQuarterNumber' - caption: Číslo dne v kalendářním kvartálu - column 'Calendar DayOfYearNumber' - caption: Číslo dne v kalendářním roce - column 'Calendar DatePreviousWeek' - caption: Datum v předchozím kalendářním týdnu - column 'Calendar DatePreviousMonth' - caption: Datum v předchozím kalendářním měsíci - column 'Calendar DatePreviousQuarter' - caption: Datum v předchozím kalendářním kvartálu - column 'Calendar DatePreviousYear' - caption: Datum v předchozím kalendářním roce - column 'Fiscal Year' - caption: Fiskální rok - column 'Fiscal Quarter' - caption: Fiskální kvartál - column 'Fiscal Quarter Year' - caption: FIskální rok kvartálu - column 'Fiscal Month' - caption: Fiskální měsíc - column 'Fiscal Month Year' - caption: FIskální rok měsíce - column 'Fiscal Week' - caption: Fiskální týden - column 'Fiscal Week Year' - caption: Fiskální týden a rok - column 'Fiscal RelativeWeekPos' - caption: Relativní pozice fiskálního týdne - column 'Fiscal RelativeMonthPos' - caption: Relativní pozice fiskálního měsíce - column 'Fiscal RelativeQuarterPos' - caption: Relativní pozice fiskálního kvartálu - column 'Fiscal RelativeYearPos' - caption: Relativní pozice fiskálního roku - column 'Fiscal StartOfMonth' - caption: Začátek fiskálního měsíce - column 'Fiscal EndOfMonth' - caption: Konec fiskálního měsíce - column 'Fiscal StartOfQuarter' - caption: Začátek fiskálního kvartálu - column 'Fiscal EndOfQuarter' - caption: Konec fiskálního kvartálu - column 'Fiscal StartOfYear' - caption: Začátek fiskálního roku - column 'Fiscal EndOfYear' - caption: Konec fiskálního roku - column 'Fiscal MonthDays' - caption: Dny fiskálního měsíce - column 'Fiscal QuarterDays' - caption: Dny fiskálního kvartálu - column 'Fiscal YearDays' - caption: Dny fiskálního roku - column 'Fiscal DayOfMonthNumber' - caption: Číslo dne ve fiskálním měsíci - column 'Fiscal DayOfQuarterNumber' - caption: Číslo dne ve fiskálním kvartálu - column 'Fiscal DayOfYearNumber' - caption: Číslo dne ve fiskálním roce - column 'Fiscal DatePreviousWeek' - caption: Datum v předchozím fiskálním týdnu - column 'Fiscal DatePreviousMonth' - caption: Datum v předchozím fiskálním měsíci - column 'Fiscal DatePreviousQuarter' - caption: Datum v předchozím fiskálním kvartálu - column 'Fiscal DatePreviousYear' - caption: Datum v předchozím fiskálním roce - column 'FW Year' - caption: Rok FT - column 'FW Quarter' - caption: Kvartál FT - column 'FW Quarter Year' - caption: Rok kvartálu FT - column 'FW Month' - caption: Měsíc FT - column 'FW Month Year' - caption: Rok měsíce FT - column 'FW Week' - caption: Týden FT - column 'FW Period' - caption: Období FT - column 'FW Week Year' - caption: Týden a rok FT - column 'FW StartOfWeek' - caption: Začátek týdne FT - column 'FW EndOfWeek' - caption: Konec týdne FT - column 'FW RelativeWeekPos' - caption: Relativní pozice týdne FT - column 'FW RelativeMonthPos' - caption: Relativní pozice měsíce FT - column 'FW RelativeQuarterPos' - caption: Relativní pozice kvartálu FT - column 'FW RelativeYearPos' - caption: Relativní pozice roku FT - column 'FW StartOfMonth' - caption: Začátek měsíce FT - column 'FW EndOfMonth' - caption: Konec měsíce FT - column 'FW StartOfQuarter' - caption: Začátek kvartálu FT - column 'FW EndOfQuarter' - caption: Konec kvartálu FT - column 'FW StartOfYear' - caption: Začátek roku FT - column 'FW EndOfYear' - caption: Konec roku FT - column 'FW MonthDays' - caption: Dny v měsíci FT - column 'FW QuarterDays' - caption: Dny kvartálu FT - column 'FW YearDays' - caption: Dny roku FT - column 'FW DayOfMonthNumber' - caption: Číslo dne v měsíci FT - column 'FW DayOfQuarterNumber' - caption: Číslo dne v kvartálu FT - column 'FW DayOfYearNumber' - caption: Číslo dne v roce FT - column 'FW DatePreviousWeek' - caption: Datum v předchozím týdnu FT - column 'FW DatePreviousMonth' - caption: Datum v předchozím měsíci FT - column 'FW DatePreviousQuarter' - caption: Datum v předchozím kvartálu FT - column 'FW DatePreviousYear' - caption: Datum v předchozím roce FT - column 'Relative Day' - caption: Relativní den - column Sequential365DayNumber - caption: Pořadové číslo dne 365 - column 'Data Range Deferrals' - caption: Časová rozlišení rozsahu dat - measure 'No. of Days' - caption: Počet dnů - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiskální rok-kvartál-měsíc-týden - level 'Fiscal Year' - caption: Fiskální rok - level 'Fiscal Quarter Year' - caption: FIskální rok kvartálu - level 'Fiscal Month Year' - caption: FIskální rok měsíce - level 'Fiscal Week Year' - caption: Fiskální týden a rok - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalendářní rok-kvartál-měsíc-týden - level 'Calendar Year' - caption: Kalendářní rok - level 'Calendar Quarter Year' - caption: Rok kalendářního kvartálu - level 'Calendar Month Year' - caption: Kalendářní měsíc v roce - level 'Calendar Week Year' - caption: Kalendářní týden a rok - hierarchy 'FW Year-Quarter-Month-Week' - caption: Rok-kvartál-měsíc-týden FT - level 'FW Year' - caption: Rok FT - level 'FW Quarter Year' - caption: Rok kvartálu FT - level 'FW Month Year' - caption: Rok měsíce FT - level 'FW Week Year' - caption: Týden a rok FT - hierarchy 'Fiscal Year-Month' - caption: Fiskální rok-měsíc - level 'Fiscal Year' - caption: Fiskální rok - level 'Fiscal Month Year' - caption: FIskální rok měsíce - hierarchy 'Fiscal Year-Month-Week' - caption: Fiskální rok-měsíc-týden - level 'Fiscal Year' - caption: Fiskální rok - level 'Fiscal Month Year' - caption: FIskální rok měsíce - level 'Fiscal Week Year' - caption: Fiskální týden a rok - hierarchy 'Calendar Year-Month' - caption: Kalendářní rok-měsíc - level 'Calendar Year' - caption: Kalendářní rok - level 'Calendar Month Year' - caption: Kalendářní měsíc v roce - hierarchy 'Calendar Year-Month-Week' - caption: Kalendářní rok-měsíc-týden - level 'Calendar Year' - caption: Kalendářní rok - level 'Calendar Month Year' - caption: Kalendářní měsíc v roce - level 'Calendar Week Year' - caption: Kalendářní týden a rok - hierarchy 'FW Year-Month-Week' - caption: Rok-měsíc-týden FT - level 'FW Year' - caption: Rok FT - level 'FW Month Year' - caption: Rok měsíce FT - level 'FW Week Year' - caption: Týden a rok FT - hierarchy 'FW Year-Quarter-Week' - caption: Rok-kvartál-týden FT - level 'FW Year' - caption: Rok FT - level 'FW Quarter Year' - caption: Rok kvartálu FT - level 'FW Week Year' - caption: Týden a rok FT - hierarchy 'FW Year-Week' - caption: Rok-týden FT - level 'FW Year' - caption: Rok FT - level 'FW Week Year' - caption: Týden a rok FT - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: PŘIPOJENÍ DAT - measure '1. Download the Finance Connector for Power BI' - caption: 1. Stažení řešení Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Konfigurace Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: POUŽÍVÁNÍ, ÚPRAVA A TVORBA VLASTNÍCH SESTAV - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance obsahují řadu předpřipravených sestav, které vám pomohou okamžitě zobrazit vaše data. Tyto sestavy můžete upravovat nebo si vytvořit vlastní sestavu od základu. - measure 'HELP AND SUPPORT' - caption: POMOC A PODPORA - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Nápovědu a podporu k nové sestavě naleznete v dokumentaci k přehledu Analytics. - measure 'for Business Central' - caption: pro Business Central - measure 'Last Refreshed' - caption: Naposledy aktualizováno - measure 'Company Name' - caption: Název společnosti - measure 'Analysis Entries as of' - caption: Položky analýzy ke dni - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Prognóza fakturace podle fakturačního období, zákazníka a č. smlouvy - measure 'Billing Forecast by Year and Month' - caption: Prognóza fakturace podle kalendářního roku a měsíce - measure 'Billing Schedule' - caption: Plán fakturace - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Změna měsíčního periodického výnosu podle roku a měsíce - measure 'Current Date Range:' - caption: Aktuální rozsah dat: - measure 'Customer Contract Deferrals' - caption: Časová rozlišení zákaznické smlouvy - measure 'Customer Contract Lines' - caption: Řádky zákaznické smlouvy - measure 'Customer Deferrals (Caption)' - caption: Časová rozlišení zákazníka - measure 'Mon. Recurring Revenue Analysis' - caption: Analýza měsíčních periodických výnosů - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Měsíční periodické výnosy a měsíční periodické výnosy PR podle kalendářního měsíce - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Měsíční periodické výnosy a meziroční růst podle kalendářního roku a měsíce - measure 'Mon. Recurring Revenue by Customer' - caption: Měsíční periodické výnosy podle zákazníka - measure 'Mon. Recurring Revenue by Salesperson' - caption: Měsíční periodické výnosy podle prodejce - measure 'Mon. Recurring Revenue by Year and Month' - caption: Měsíční periodické výnosy podle kalendářního roku a měsíce - measure 'Mon. Recurring Revenue by Item' - caption: Měsíční periodické výnosy podle zboží - measure 'Mon. Recurring Revenue by Item Category' - caption: Měsíční periodické výnosy podle kategorie zboží - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Odchod zákazníků a downgrade měsíčních periodických výnosů podle zákaznické smlouvy - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Noví zákazníci a upgrade měsíčních periodických výnosů podle zákaznické smlouvy - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Měsíční prognóza výnosů a nákladů podle kalendářního roku a měsíce - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Prognóza měsíčních výnosů a nákladů podle prodejce, zákazníka a č. smlouvy - measure 'Released and Deferred Amount by Year and Month' - caption: Uvolněná a časové rozlišená částka podle kalendářního roku a měsíce - measure 'Revenue Analysis' - caption: Analýza výnosů - measure 'Revenue by Customer' - caption: Výnosy podle zákazníka - measure 'Revenue by Item' - caption: Výnosy podle zboží - measure 'Revenue by Salesperson' - caption: Výnosy podle prodejce - measure 'Revenue Development' - caption: Vývoj výnosů - measure 'Sales and Cost Forecast' - caption: Prognóza výnosů - measure 'Revenue Year-Over-Year Growth' - caption: Meziroční růst výnosů - measure 'Subscription Billing Analysis' - caption: Analýza Subscription Billing - measure 'Subscription Billing Overview' - caption: Přehled Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 předních zákazníků podle měsíčního periodického výnosu - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 nejlepších prodejců podle měsíčních periodických nákladů - measure 'Total Contract Value Analysis' - caption: Analýza celkové hodnoty smlouvy - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Celková hodnota smlouvy a PR celkové hodnoty smlouvy podle kalendářního měsíce - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Celková hodnota smlouvy a meziroční růst podle kalendářního roku a měsíce - measure 'Total Contract Value by Year and Month' - caption: Celková hodnota smlouvy podle kalendářního roku a měsíce - measure 'Total Contract Value Year-Over-Year Growth' - caption: Meziroční růst celkové hodnoty smlouvy - measure 'Vendor Contract Deferrals' - caption: Časová rozlišení dodavatelské smlouvy - measure 'Vendor Deferrals (Caption)' - caption: Časová rozlišení dodavatele - measure 'Back button' - caption: Tlačítko zpět - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Měsíční periodické výnosy, Měsíční periodické náklady, Měsíční čistý zisk, Aktivní zákazníci, Celková hodnota smlouvy, Změna měsíčních periodických výnosů - measure 'Churn Analysis' - caption: Analýza ztráty zákazníků - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Prům. měsíční míra úbytku (%) podle roku a měsíce - table 'Meta Information' - caption: SPOLEČNOST - table Subscription - caption: Objekt servisu - column 'Subscription No.' - caption: Číslo objektu servisu - column 'Package Code' - caption: Kód zásilky - column 'Subscription Desc.' - caption: Popis objektu servisu - column 'Analysis Date' - caption: Datum analýzy - column 'Subscription No. Desc.' - caption: Popisy čísla Subscription - table 'Vendor Contract Deferrals' - caption: Časová rozlišení dodavatelské smlouvy - column 'Document Type' - caption: Typ dokladu - column 'Document No.' - caption: Číslo dokladu - column 'Posting Date' - caption: Zúčtovací datum - column 'Document Posting Date' - caption: Zúčtovací datum dokladu - column 'Release Posting Date' - caption: Vydat zúčtovací datum - column 'G LEntry No.' - caption: Číslo věcné položky - column Discount - caption: Sleva - column 'Document Line No.' - caption: Číslo řádku dokladu - table 'Customer Contract Line' - caption: Řádek zákaznické smlouvy - column 'Subscription Line No.' - caption: Číslo řádku závazku - column Template - caption: Šablona - column 'Customer Contract Line Desc.' - caption: Popis řádku zákaznické smlouvy - column 'Subscription Start Date' - caption: Počáteční datum servisu - column 'Subscription End Date' - caption: Koncové datum služby - column 'Next Billing Date' - caption: Další datum fakturace - column 'Billing Base Period' - caption: Základní fakturační období - column 'Invoicing Item No.' - caption: Číslo fakturovaného zboží - column 'Customer Contract Line No.' - caption: Číslo řádku zákaznické smlouvy - column 'Notice Period' - caption: Výpovědní lhůta - column 'Initial Term' - caption: Počáteční termín - column 'Extension Term' - caption: Termín rozšíření - column 'Billing Rhythm' - caption: Fakturační rytmus - column 'Cancellation Possible Until' - caption: Storno možné do - column 'Term Until' - caption: Termín do - column 'Renewal Term' - caption: Termín obnovení - column 'Line Active' - caption: Aktivní řádek - column 'Remaining Term' - caption: Zbývající termín - column 'Billing Rhythm Months' - caption: Měsíce fakturačního rytmu - column 'Customer Contract No.' - caption: Číslo zákaznické smlouvy - column 'Is Usage Based Billing' - caption: Je fakturace založená na využití - column 'Source Type' - caption: Typ původu - column 'Source No.' - caption: Číslo původu - table 'Vendor Contract Line' - caption: Řádek dodavatelské smlouvy - column 'Subscription Line No.' - caption: Číslo řádku závazku - column Template - caption: Šablona - column 'Vendor Contract Line Desc.' - caption: Popis řádku dodavatelské smlouvy - column 'Subscription Start Date' - caption: Počáteční datum servisu - column 'Subscription End Date' - caption: Koncové datum služby - column 'Next Billing Date' - caption: Další datum fakturace - column 'Vendor Contract Line No.' - caption: Číslo řádku dodavatelské smlouvy - column 'Notice Period' - caption: Výpovědní lhůta - column 'Initial Term' - caption: Počáteční termín - column 'Extension Term' - caption: Termín rozšíření - column 'Billing Rhythm' - caption: Fakturační rytmus - column 'Cancellation Possible Until' - caption: Storno možné do - column 'Term Until' - caption: Termín do - column 'Renewal Term' - caption: Termín obnovení - column 'Line Active' - caption: Aktivní řádek - column 'Remaining Term' - caption: Zbývající termín - column 'Billing Rhythm Months' - caption: Měsíce fakturačního rytmu - column 'Vendor Contract No.' - caption: Číslo dodavatelské smlouvy - column 'Is Latest Version' - caption: Je nejnovější verze - column 'Is Usage Based Billing' - caption: Je fakturace založená na využití - column 'Source Type' - caption: Typ původu - column 'Source No.' - caption: Číslo původu - table 'Customer Contract Deferrals' - caption: Časová rozlišení zákaznické smlouvy - column 'Document Type' - caption: Typ dokladu - column 'Document No.' - caption: Číslo dokladu - column 'Posting Date' - caption: Zúčtovací datum - column 'Document Line No.' - caption: Číslo řádku dokladu - column 'Document Posting Date' - caption: Zúčtovací datum dokladu - column 'Release Posting Date' - caption: Vydat zúčtovací datum - column 'G LEntry No.' - caption: Číslo věcné položky - table 'Customer Contract' - caption: Zákaznická smlouva - column 'Customer Contract No.' - caption: Číslo zákaznické smlouvy - column 'Customer Contract Type' - caption: Typ zákaznické smlouvy - column 'Customer Contract Description' - caption: Popis zákaznické smlouvy - column 'Customer Contract No. Desc.' - caption: Popis čísla zákaznické smlouvy - table 'Vendor Contract' - caption: Dodavatelská smlouva - column 'Vendor Contract No.' - caption: Číslo dodavatelské smlouvy - column 'Vendor Contract Type' - caption: Typ dodavatelské smlouvy - column 'Vendor Contract Description' - caption: Popis dodavatelské smlouvy - column 'Vendor Contract No. Desc.' - caption: Popis čísla dodavatelské smlouvy - table 'UBB handling' - caption: Manipulace FZNV - column 'Treat Usage Based Billing as constant' - caption: Považovat FZNV za konstantní - table 'Is Released' - caption: Je vydáno - table Item - caption: Zboží - column 'Item No.' - caption: Číslo zboží - column 'Item Name' - caption: Název zboží - column 'Item Category Code' - caption: Kód kategorie zboží - column 'Item Category Description' - caption: Popis kategorie zboží - column 'Inventory Posting Group' - caption: Účto skupina zboží - column 'Base Unit of Measure' - caption: Základní měrná jednotka - column 'Item No. & Description' - caption: Číslo a popis zboží - table 'Analysis Date' - caption: Datum analýzy - column 'Is Initial Version' - caption: Je počáteční verze - column 'Is Current Version' - caption: Je aktuální verze - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Skupina výpočtu – časová analýza pro kalendář (fiskální) - column Perspective - caption: Perspektiva - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MPV - measure 'Mon. Recurring Cost' - caption: MPN - measure 'Customer Deferrals' - caption: Časová rozlišení zákazníka - measure 'Vendor Deferrals' - caption: Časová rozlišení dodavatele - measure 'Annual Recurring Revenue' - caption: ZZP - measure 'Total Contract Value' - caption: CHS - measure 'Forecast Sales' - caption: Prognóza prodeje - measure 'Mon. Recurring Cost PY' - caption: MPN PR - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MPN Δ vs. PR - measure 'Mon. Recurring Revenue Churn' - caption: Odchod zákazníků – měsíční periodické výnosy - measure 'Mon. Recurring Revenue PY' - caption: MPV PR - measure 'Mon. Recurring Revenue New' - caption: Nové měsíční periodické výnosy - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Měsíční periodické výnosy Δ vs. PR - measure 'Mon. Net Profit Amount' - caption: NMPV - measure 'Mon. Net Profit %' - caption: NMPV (%) MPV - measure 'Mon. Net Profit PY' - caption: NMPV PR - measure 'Mon. Net Profit Δ vs. PY' - caption: NMPV Δ vs. PR - measure 'Change in Mon. Recurring Revenue' - caption: Celková změna MPV - measure 'Total Contract Value PY' - caption: CHS PR - measure 'Total Contract Value Δ vs. PY' - caption: CHS Δ vs. PR - measure 'Last Update Analysis Entries' - caption: Poslední aktualizace položek analýzy - measure 'Last Update Semantic Model' - caption: Poslední aktualizace sémantického modelu - measure 'Param Environment' - caption: Prostředí parametrů - measure 'Param Company' - caption: Společnost parametrů - measure 'Mon. Recurring Revenue Upgrade' - caption: Upgrade – měsíční periodické výnosy - measure 'Mon. Recurring Revenue Change UBB' - caption: Změna měsíčních periodických výnosů FZNV - measure 'Reporting Currency' - caption: Měna pro hlášení - measure 'Active Customers' - caption: Aktivní zákazníci - measure 'Active Customers PY' - caption: Aktivní zákazníci PR - measure 'Active Customers Δ vs. PY' - caption: Aktivní zákazníci Δ vs. PR - measure 'Customer Billing Forecast' - caption: Prognóza fakturace zákazníka - measure 'Vendor Billing Forecast' - caption: Prognóza fakturace dodavatele - measure 'Forecast Costs' - caption: Prognóza nákladů - measure 'Mon. Recurring Revenue Downgrade' - caption: Downgrade – měsíční periodické výnosy - measure 'Selected Date Range' - caption: Zvolený rozsah dat - measure 'Avg. Mon. Churn Rate %' - caption: Prům. měsíční míra úbytku (%) - measure 'Mon. Avg. Downgrade Rate %' - caption: Měsíční prům. míra downgradu (%) - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Downgrade a odchod zákazníků – měsíční periodické výnosy - table Salesperson - caption: Prodejce - column 'Salesperson Code' - caption: Kód prodejce - column 'Salesperson Name' - caption: Jméno prodejce - table 'Customer Contract Changes' - caption: Změny zákaznické smlouvy - column 'Customer Contract Line Key' - caption: Klíč řádku zákaznické smlouvy - column Date - caption: Datum - column 'Change Type' - caption: Typ změny - column 'MRR Delta' - caption: Delta MPV - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/da-DK.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/da-DK.tmdl deleted file mode 100644 index 21f2aed0d5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/da-DK.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo da-DK - translations - model Model - table 'Dimension Sets' - caption: Dimensionsgrupper - column 'Global Dimension 1' - caption: Global dimension 1 - column 'Global Dimension 2' - caption: Global dimension 2 - column 'Shortcut Dimension 3' - caption: Genvejsdimension 3 - column 'Shortcut Dimension 4' - caption: Genvejsdimension 4 - column 'Shortcut Dimension 5' - caption: Genvejsdimension 5 - column 'Shortcut Dimension 6' - caption: Genvejsdimension 6 - column 'Shortcut Dimension 7' - caption: Genvejsdimension 7 - column 'Shortcut Dimension 8' - caption: Genvejsdimension 8 - column id - caption: id - table Vendors - caption: Leverandører - column 'Vendor No.' - caption: Kreditornr. - column 'Vendor Name' - caption: Kreditornavn - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: By - column 'Post Code' - caption: Postnr. - column State - caption: Stat - column 'Country/Region Code' - caption: Kode for land/område og region - column 'Vendor Posting Group' - caption: Kreditorbogføringsgruppe - column 'Vendor No. & Name' - caption: Kreditornummer og -navn - table Customers - caption: Debitorer - column 'Customer No.' - caption: Debitornr. - column 'Customer Name' - caption: Debitornavn - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: By - column 'Post Code' - caption: Postnr. - column State - caption: Stat - column 'Country/Region Code' - caption: Kode for land/område og region - column 'Customer Posting Group' - caption: Debitorbogføringsgruppe - column 'Customer Price Group' - caption: Debitorprisgruppe - column 'Customer Discount Group' - caption: Debitorrabatgruppe - column 'Customer No. & Name' - caption: Debitornr. og -navn - table Date - caption: Dato - column 'Week Day' - caption: Ugedag - column 'Day Type' - caption: Dagtype - column 'Calendar Year' - caption: Kalender År - column 'Calendar Quarter' - caption: Kalenderkvartal - column 'Calendar Quarter Year' - caption: Kalender Kvartal År - column 'Calendar Month' - caption: Kalendermåned - column 'Calendar Month Year' - caption: Kalender Måned År - column 'Calendar Week' - caption: Kalenderuge - column 'Calendar Week Year' - caption: Kalender Uge år - column 'Calendar RelativeWeekPos' - caption: Kalender RelativUgePosition - column 'Calendar RelativeMonthPos' - caption: Kalender RelativMånedsPosition - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativKvartalsPosition - column 'Calendar RelativeYearPos' - caption: Kalender RelativÅrsPosition - column 'Calendar StartOfMonth' - caption: Kalender StartPåMåned - column 'Calendar EndOfMonth' - caption: Kalender SlutPåMåned - column 'Calendar StartOfQuarter' - caption: Kalender StartPåKvartal - column 'Calendar EndOfQuarter' - caption: Kalender SlutPåKvartal - column 'Calendar StartOfYear' - caption: Kalender StartPåÅr - column 'Calendar EndOfYear' - caption: Kalender SlutPåÅr - column 'Calendar MonthDays' - caption: Kalender MånedDage - column 'Calendar QuarterDays' - caption: Kalender KvartalsDage - column 'Calendar YearDays' - caption: Kalender ÅrDage - column 'Calendar DayOfMonthNumber' - caption: Kalender NummerPåDagIMåned - column 'Calendar DayOfQuarterNumber' - caption: Kalender NummerPåDagIKvartal - column 'Calendar DayOfYearNumber' - caption: Kalender NummerPåDagIÅr - column 'Calendar DatePreviousWeek' - caption: Kalender DatoForrigeUge - column 'Calendar DatePreviousMonth' - caption: Kalender DatoForrigeMåned - column 'Calendar DatePreviousQuarter' - caption: Kalender DatoForrigeKvartal - column 'Calendar DatePreviousYear' - caption: Kalender DatoForrigeÅr - column 'Fiscal Year' - caption: Regnskabsår - column 'Fiscal Quarter' - caption: Regnskabskvartal - column 'Fiscal Quarter Year' - caption: Regnskab Kvartal År - column 'Fiscal Month' - caption: Regnskabsmåned - column 'Fiscal Month Year' - caption: Regnskab Måned År - column 'Fiscal Week' - caption: Regnskabsuge - column 'Fiscal Week Year' - caption: Regnskab Uge År - column 'Fiscal RelativeWeekPos' - caption: Regnskab RelativUgePosition - column 'Fiscal RelativeMonthPos' - caption: Regnskab RelativMånedsPosition - column 'Fiscal RelativeQuarterPos' - caption: Regnskab RelativKvartalsPosition - column 'Fiscal RelativeYearPos' - caption: Regnskab RelativÅrsPosition - column 'Fiscal StartOfMonth' - caption: Regnskab StartPåMåned - column 'Fiscal EndOfMonth' - caption: Regnskab SlutPåMåned - column 'Fiscal StartOfQuarter' - caption: Regnskab StartPåKvartal - column 'Fiscal EndOfQuarter' - caption: Regnskab SlutPåKvartal - column 'Fiscal StartOfYear' - caption: Regnskab StartPåÅr - column 'Fiscal EndOfYear' - caption: Regnskab SlutPåÅr - column 'Fiscal MonthDays' - caption: Regnskab MånedsDage - column 'Fiscal QuarterDays' - caption: Regnskab KvartalsDage - column 'Fiscal YearDays' - caption: Regnskabsår Dage - column 'Fiscal DayOfMonthNumber' - caption: Regnskab NummerPåDagIMåned - column 'Fiscal DayOfQuarterNumber' - caption: Regnskab NummerPåDagIKvartal - column 'Fiscal DayOfYearNumber' - caption: Regnskab NummerPåDagiÅr - column 'Fiscal DatePreviousWeek' - caption: Regnskab DatoForrigeUge - column 'Fiscal DatePreviousMonth' - caption: Regnskab DatoForrigeMåned - column 'Fiscal DatePreviousQuarter' - caption: Regnskab DatoForrigeKvartal - column 'Fiscal DatePreviousYear' - caption: Regnskab DatoForrigeÅr - column 'FW Year' - caption: RU År - column 'FW Quarter' - caption: RU Kvartal - column 'FW Quarter Year' - caption: RU Kvartal År - column 'FW Month' - caption: RU Måned - column 'FW Month Year' - caption: RU Måned år - column 'FW Week' - caption: RU Uge - column 'FW Period' - caption: RU Periode - column 'FW Week Year' - caption: RU Uge År - column 'FW StartOfWeek' - caption: RU StartPåUge - column 'FW EndOfWeek' - caption: RU SlutPåUge - column 'FW RelativeWeekPos' - caption: RU RelativUgesPosition - column 'FW RelativeMonthPos' - caption: RU RelativMånedsPosition - column 'FW RelativeQuarterPos' - caption: RU RelativKvartalsPosition - column 'FW RelativeYearPos' - caption: RU RelativÅrsPosition - column 'FW StartOfMonth' - caption: RU StartPåMåned - column 'FW EndOfMonth' - caption: RU SlutPåMåned - column 'FW StartOfQuarter' - caption: RU StartPåKvartal - column 'FW EndOfQuarter' - caption: RU SlutPåKvartal - column 'FW StartOfYear' - caption: RU StartPåÅr - column 'FW EndOfYear' - caption: RU SlutPåÅr - column 'FW MonthDays' - caption: RU MånedDage - column 'FW QuarterDays' - caption: RU KvartalDage - column 'FW YearDays' - caption: RU ÅrDage - column 'FW DayOfMonthNumber' - caption: RU NummerPåDagIMåned - column 'FW DayOfQuarterNumber' - caption: RU NummerPåDagIKvartal - column 'FW DayOfYearNumber' - caption: RU NummerPåDagiÅr - column 'FW DatePreviousWeek' - caption: RU DatoForrigeUge - column 'FW DatePreviousMonth' - caption: RU DatoForrigeMåned - column 'FW DatePreviousQuarter' - caption: RU DatoForrigeKvartal - column 'FW DatePreviousYear' - caption: RU DatoForrigeÅr - column 'Relative Day' - caption: Relativ dag - column Sequential365DayNumber - caption: Fortløbende 365-dagsnummer - column 'Data Range Deferrals' - caption: Udsættelser af dataområde - measure 'No. of Days' - caption: Antal dage - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Regnskab År-Kvartal-Måned-Uge - level 'Fiscal Year' - caption: Regnskabsår - level 'Fiscal Quarter Year' - caption: Regnskab Kvartal År - level 'Fiscal Month Year' - caption: Regnskab Måned År - level 'Fiscal Week Year' - caption: Regnskab Uge År - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender År-Kvartal-Måned-Uge - level 'Calendar Year' - caption: Kalender År - level 'Calendar Quarter Year' - caption: Kalender Kvartal År - level 'Calendar Month Year' - caption: Kalender Måned År - level 'Calendar Week Year' - caption: Kalender Uge år - hierarchy 'FW Year-Quarter-Month-Week' - caption: RU År-Kvartal-Måned-Uge - level 'FW Year' - caption: RU År - level 'FW Quarter Year' - caption: RU Kvartal År - level 'FW Month Year' - caption: RU Måned år - level 'FW Week Year' - caption: RU Uge År - hierarchy 'Fiscal Year-Month' - caption: Regnskab År-Måned - level 'Fiscal Year' - caption: Regnskabsår - level 'Fiscal Month Year' - caption: Regnskab Måned År - hierarchy 'Fiscal Year-Month-Week' - caption: Regnskabsår-Måned-Uge - level 'Fiscal Year' - caption: Regnskabsår - level 'Fiscal Month Year' - caption: Regnskab Måned År - level 'Fiscal Week Year' - caption: Regnskab Uge År - hierarchy 'Calendar Year-Month' - caption: Kalender År-måned - level 'Calendar Year' - caption: Kalender År - level 'Calendar Month Year' - caption: Kalender Måned År - hierarchy 'Calendar Year-Month-Week' - caption: Kalender År-måned-uge - level 'Calendar Year' - caption: Kalender År - level 'Calendar Month Year' - caption: Kalender Måned År - level 'Calendar Week Year' - caption: Kalender Uge år - hierarchy 'FW Year-Month-Week' - caption: RU År-Måned-Uge - level 'FW Year' - caption: RU År - level 'FW Month Year' - caption: RU Måned år - level 'FW Week Year' - caption: RU Uge År - hierarchy 'FW Year-Quarter-Week' - caption: RU År-Kvartal-Uge - level 'FW Year' - caption: RU År - level 'FW Quarter Year' - caption: RU Kvartal År - level 'FW Week Year' - caption: RU Uge År - hierarchy 'FW Year-Week' - caption: RU År-Uge - level 'FW Year' - caption: RU År - level 'FW Week Year' - caption: RU Uge År - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: FORBIND DINE DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Konfigurer Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: BRUG, REDIGER OG OPRET DINE EGNE RAPPORTER - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finans indeholder en række færdigbyggede rapporter, der hjælper dig med at få vist dine data med det samme. Du kan redigere disse rapporter eller oprette din egen rapport fra bunden. - measure 'HELP AND SUPPORT' - caption: HJÆLP OG SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Du kan få hjælp og support til din nye rapport i dokumentationen til analyseoversigten. - measure 'for Business Central' - caption: til Business Central - measure 'Last Refreshed' - caption: Sidst opdateret - measure 'Company Name' - caption: Virksomhedsnavn - measure 'Analysis Entries as of' - caption: Analyseposter fra og med - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Faktureringsprognose efter faktureringsperiode, debitor og kontraktnr. - measure 'Billing Forecast by Year and Month' - caption: Faktureringsprognose efter kalenderår og måned - measure 'Billing Schedule' - caption: Faktureringsskema - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Ændring af månedlig tilbagevendende omsætning efter kalenderår og måned - measure 'Current Date Range:' - caption: Aktuelt datointerval: - measure 'Customer Contract Deferrals' - caption: Periodiseringer af debitorkontrakt - measure 'Customer Contract Lines' - caption: Debitorkontraktlinjer - measure 'Customer Deferrals (Caption)' - caption: Debitorperiodiseringer - measure 'Mon. Recurring Revenue Analysis' - caption: Månedlig tilbagevendende indtægtsanalyse - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Månedlige tilbagevendende indtægter og månedlige tilbagevendende indtægter FÅ efter kalendermåned - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Månedlig tilbagevendende omsætning og vækst fra år til år efter kalenderår og måned - measure 'Mon. Recurring Revenue by Customer' - caption: Månedlig tilbagevendende indtægt efter debitor - measure 'Mon. Recurring Revenue by Salesperson' - caption: Månedlig tilbagevendende indtægt efter sælger - measure 'Mon. Recurring Revenue by Year and Month' - caption: Månedlig tilbagevendende omsætning efter kalenderår og måned - measure 'Mon. Recurring Revenue by Item' - caption: Månedlig tilbagevendende indtægt efter vare - measure 'Mon. Recurring Revenue by Item Category' - caption: Månedlig tilbagevendende indtægt efter kategori - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Månedlig tilbagevendende indtægtsafgang og nedgradering efter debitorkontrakt - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Månedlig tilbagevendende indtægter Nye og opgradering efter debitorkontrakt - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Månedlig omsætning og omkostningsprognose efter kalenderår og måned - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Månedlig omsætning og omkostningsprognose efter sælger, debitor og kontraktnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Frigivne og udskudte beløb efter kalenderår og måned - measure 'Revenue Analysis' - caption: Omsætningsanalyse - measure 'Revenue by Customer' - caption: Omsætning pr. debitor - measure 'Revenue by Item' - caption: Omsætning pr. vare - measure 'Revenue by Salesperson' - caption: Omsætning pr. sælger - measure 'Revenue Development' - caption: Omsætningsudvikling - measure 'Sales and Cost Forecast' - caption: Indtægtsprognose - measure 'Revenue Year-Over-Year Growth' - caption: Omsætning fra år til år vækst - measure 'Subscription Billing Analysis' - caption: Analyse af Subscription Billing - measure 'Subscription Billing Overview' - caption: Oversigt over Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 debitorer efter månedlig tilbagevendende indtægt - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 kreditorer efter månedlige tilbagevendende omkostninger - measure 'Total Contract Value Analysis' - caption: Analyse af samlet kontraktværdi - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Samlet kontraktværdi og samlet kontraktværdi FÅ efter kalendermåned - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Samlet kontraktværdi og vækst fra år til år efter kalenderår og måned - measure 'Total Contract Value by Year and Month' - caption: Samlet kontraktværdi efter kalenderår og måned - measure 'Total Contract Value Year-Over-Year Growth' - caption: Samlet kontraktværdi Vækst fra år til år - measure 'Vendor Contract Deferrals' - caption: Periodiseringer af kreditorkontrakt - measure 'Vendor Deferrals (Caption)' - caption: Kreditorperiodiseringer - measure 'Back button' - caption: Knappen Tilbage - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Månedlig tilbagevendende omsætning, Månedlig tilbagevendende omkostning, Månedlig nettofortjeneste, Aktive debitorer, Samlet kontraktværdi, Ændring i månedlig tilbagevendende omsætning - measure 'Churn Analysis' - caption: Analyse af debitorafgang - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Gennemsnitlig månedlig afgangsrateprocent efter år og måned - table 'Meta Information' - caption: VIRKSOMHED - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektnr. - column 'Package Code' - caption: Pakkekode - column 'Subscription Desc.' - caption: Beskrivelse af serviceobjekt - column 'Analysis Date' - caption: Analysedato - column 'Subscription No. Desc.' - caption: Beskrivelse af Subscription-nr. - table 'Vendor Contract Deferrals' - caption: Periodiseringer af kreditorkontrakt - column 'Document Type' - caption: Dokumenttype - column 'Document No.' - caption: Dokumentnr. - column 'Posting Date' - caption: Bogføringsdato - column 'Document Posting Date' - caption: Dokumentbogføringsdato - column 'Release Posting Date' - caption: Frigiv bogføringsdato - column 'G LEntry No.' - caption: Finansløbenr. - column Discount - caption: Rabat - column 'Document Line No.' - caption: Dokumentlinjenr. - table 'Customer Contract Line' - caption: Debitorkontraktlinje - column 'Subscription Line No.' - caption: Tilsagnslinjenr. - column Template - caption: Skabelon - column 'Customer Contract Line Desc.' - caption: Beskrivelse af debitorkontraktlinje - column 'Subscription Start Date' - caption: Startdato for service - column 'Subscription End Date' - caption: Slutdato for service - column 'Next Billing Date' - caption: Næste faktureringsdato - column 'Billing Base Period' - caption: Basisperiode for fakturering - column 'Invoicing Item No.' - caption: Fakturerer varenr. - column 'Customer Contract Line No.' - caption: Debitorkontraktlinjenr. - column 'Notice Period' - caption: Meddelelsesperiode - column 'Initial Term' - caption: Indledende periode - column 'Extension Term' - caption: Udvidelsesvilkår - column 'Billing Rhythm' - caption: Faktureringsrytme - column 'Cancellation Possible Until' - caption: Annullering mulig indtil - column 'Term Until' - caption: Periode indtil - column 'Renewal Term' - caption: Fornyelsesperiode - column 'Line Active' - caption: Aktiv linje - column 'Remaining Term' - caption: Resterende periode - column 'Billing Rhythm Months' - caption: Faktureringsrytmemåneder - column 'Customer Contract No.' - caption: Debitorkontraktnr. - column 'Is Usage Based Billing' - caption: Er Brugsbaseret fakturering - column 'Source Type' - caption: Kildetype - column 'Source No.' - caption: Kildenr. - table 'Vendor Contract Line' - caption: Kreditorkontraktlinje - column 'Subscription Line No.' - caption: Tilsagnslinjenr. - column Template - caption: Skabelon - column 'Vendor Contract Line Desc.' - caption: Beskrivelse af kreditorkontraktlinje - column 'Subscription Start Date' - caption: Startdato for service - column 'Subscription End Date' - caption: Slutdato for service - column 'Next Billing Date' - caption: Næste faktureringsdato - column 'Vendor Contract Line No.' - caption: Kreditorkontraktlinjenr. - column 'Notice Period' - caption: Meddelelsesperiode - column 'Initial Term' - caption: Indledende periode - column 'Extension Term' - caption: Udvidelsesvilkår - column 'Billing Rhythm' - caption: Faktureringsrytme - column 'Cancellation Possible Until' - caption: Annullering mulig indtil - column 'Term Until' - caption: Periode indtil - column 'Renewal Term' - caption: Fornyelsesperiode - column 'Line Active' - caption: Aktiv linje - column 'Remaining Term' - caption: Resterende periode - column 'Billing Rhythm Months' - caption: Faktureringsrytmemåneder - column 'Vendor Contract No.' - caption: Kreditorkontraktnr. - column 'Is Latest Version' - caption: Er Seneste Version - column 'Is Usage Based Billing' - caption: Er Brugsbaseret fakturering - column 'Source Type' - caption: Kildetype - column 'Source No.' - caption: Kildenr. - table 'Customer Contract Deferrals' - caption: Periodiseringer af debitorkontrakt - column 'Document Type' - caption: Dokumenttype - column 'Document No.' - caption: Dokumentnr. - column 'Posting Date' - caption: Bogføringsdato - column 'Document Line No.' - caption: Dokumentlinjenr. - column 'Document Posting Date' - caption: Dokumentbogføringsdato - column 'Release Posting Date' - caption: Frigiv bogføringsdato - column 'G LEntry No.' - caption: Finansløbenr. - table 'Customer Contract' - caption: Debitorkontrakt - column 'Customer Contract No.' - caption: Debitorkontraktnr. - column 'Customer Contract Type' - caption: Debitorkontraktlinjetype - column 'Customer Contract Description' - caption: Beskrivelse af debitorkontrakt - column 'Customer Contract No. Desc.' - caption: Beskrivelse af debitorkontraktnr. - table 'Vendor Contract' - caption: Kreditorkontrakt - column 'Vendor Contract No.' - caption: Kreditorkontraktnr. - column 'Vendor Contract Type' - caption: Kreditorkontrakttype - column 'Vendor Contract Description' - caption: Beskrivelse af kreditorkontrakt - column 'Vendor Contract No. Desc.' - caption: Beskrivelse af kreditorkontraktnr. - table 'UBB handling' - caption: FBF-håndtering - column 'Treat Usage Based Billing as constant' - caption: Behandl FBF som konstant - table 'Is Released' - caption: Er Frigivet - table Item - caption: Vare - column 'Item No.' - caption: Varenr. - column 'Item Name' - caption: Varenavn - column 'Item Category Code' - caption: Varekategorikode - column 'Item Category Description' - caption: Beskrivelse af varekategori - column 'Inventory Posting Group' - caption: Lagerbogføringsgruppe - column 'Base Unit of Measure' - caption: Basisenhed - column 'Item No. & Description' - caption: Varenummer og -beskrivelse - table 'Analysis Date' - caption: Analysedato - column 'Is Initial Version' - caption: Er Første version - column 'Is Current Version' - caption: Er Aktuel version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Beregningsgruppe – Tidsintelligens til kalender (regnskab) - column Perspective - caption: Perspektiv - table 'Subscription Billing KPIs' - caption: KPI'er til Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MTI - measure 'Mon. Recurring Cost' - caption: MTO - measure 'Customer Deferrals' - caption: Debitorperiodiseringer - measure 'Vendor Deferrals' - caption: Kreditorperiodiseringer - measure 'Annual Recurring Revenue' - caption: KA - measure 'Total Contract Value' - caption: SKV - measure 'Forecast Sales' - caption: Prognosesalg - measure 'Mon. Recurring Cost PY' - caption: MTO FÅ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MTO Δ vs. FÅ - measure 'Mon. Recurring Revenue Churn' - caption: Månedlig tilbagevendende indtægtsafgang - measure 'Mon. Recurring Revenue PY' - caption: MTI FÅ - measure 'Mon. Recurring Revenue New' - caption: Månedlig tilbagevendende ny indtægt - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Månedlig tilbagevendende indtægt Δ vs. FÅ - measure 'Mon. Net Profit Amount' - caption: NMTI - measure 'Mon. Net Profit %' - caption: NMTI-% af MTI - measure 'Mon. Net Profit PY' - caption: NMTI FÅ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMTI Δ vs. FÅ - measure 'Change in Mon. Recurring Revenue' - caption: MTI samlet ændring - measure 'Total Contract Value PY' - caption: SKV FÅ - measure 'Total Contract Value Δ vs. PY' - caption: SKV Δ vs. FÅ - measure 'Last Update Analysis Entries' - caption: Sidste opdatering af analyseposter - measure 'Last Update Semantic Model' - caption: Sidste opdatering af semantisk model - measure 'Param Environment' - caption: Param-miljø - measure 'Param Company' - caption: Param-virksomhed - measure 'Mon. Recurring Revenue Upgrade' - caption: Månedlig tilbagevendende indtægtsopgradering - measure 'Mon. Recurring Revenue Change UBB' - caption: Månedlig tilbagevendende indtægtsændring FBF - measure 'Reporting Currency' - caption: Rapporteringsvaluta - measure 'Active Customers' - caption: Aktive debitorer - measure 'Active Customers PY' - caption: Aktive debitorer FÅ - measure 'Active Customers Δ vs. PY' - caption: Aktive debitorer Δ vs. FÅ - measure 'Customer Billing Forecast' - caption: Debitorfaktureringsprognose - measure 'Vendor Billing Forecast' - caption: Kreditorfaktureringsprognose - measure 'Forecast Costs' - caption: Budgetomkostninger - measure 'Mon. Recurring Revenue Downgrade' - caption: Månedlig tilbagevendende indtægtsnedgradering - measure 'Selected Date Range' - caption: Valgt datointerval - measure 'Avg. Mon. Churn Rate %' - caption: Gennemsnitlig månedlig afgangsrateprocent - measure 'Mon. Avg. Downgrade Rate %' - caption: Gennemsnitlig månedlig nedgraderingsrateprocent - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Månedlig tilbagevendende indtægtsnedgradering og afgang - table Salesperson - caption: Sælger - column 'Salesperson Code' - caption: Sælgerkode - column 'Salesperson Name' - caption: Sælgernavn - table 'Customer Contract Changes' - caption: Ændringer i debitorkontrakt - column 'Customer Contract Line Key' - caption: Debitorkontraktlinjenøgle - column Date - caption: Dato - column 'Change Type' - caption: Ændringstype - column 'MRR Delta' - caption: MTI Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-AT.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-AT.tmdl deleted file mode 100644 index a60564a4f2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-AT.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo de-AT - translations - model Model - table 'Dimension Sets' - caption: Dimensionssätze - column 'Global Dimension 1' - caption: Globale Dimension 1 - column 'Global Dimension 2' - caption: Globale Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcutdimension 3 - column 'Shortcut Dimension 4' - caption: Shortcutdimension 4 - column 'Shortcut Dimension 5' - caption: Shortcutdimension 5 - column 'Shortcut Dimension 6' - caption: Shortcutdimension 6 - column 'Shortcut Dimension 7' - caption: Shortcutdimension 7 - column 'Shortcut Dimension 8' - caption: Shortcutdimension 8 - column id - caption: id - table Vendors - caption: Kreditoren - column 'Vendor No.' - caption: Kreditornr. - column 'Vendor Name' - caption: Kreditorenname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ-Code - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Vendor Posting Group' - caption: Kreditorenbuchungsgruppe - column 'Vendor No. & Name' - caption: Kreditornr. und -name - table Customers - caption: Debitoren - column 'Customer No.' - caption: Debitorennummer - column 'Customer Name' - caption: Debitorname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ-Code - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Customer Posting Group' - caption: Debitorenbuchungsgruppe - column 'Customer Price Group' - caption: Debitorenpreisgruppe - column 'Customer Discount Group' - caption: Debitorenrabattgruppe - column 'Customer No. & Name' - caption: Debitorennr. und -name - table Date - caption: Datum - column 'Week Day' - caption: Woche Tag - column 'Day Type' - caption: Tagestyp - column 'Calendar Year' - caption: Kalender Jahr - column 'Calendar Quarter' - caption: Kalenderquartal - column 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - column 'Calendar Month' - caption: Kalendermonat - column 'Calendar Month Year' - caption: Kalender Monat Jahr - column 'Calendar Week' - caption: Kalender Woche - column 'Calendar Week Year' - caption: Kalender Woche Jahr - column 'Calendar RelativeWeekPos' - caption: Kalender RelativeWochenPos - column 'Calendar RelativeMonthPos' - caption: Kalender RelativeMonatsPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativeQuartalsPos - column 'Calendar RelativeYearPos' - caption: Kalender RelativeJahresPos - column 'Calendar StartOfMonth' - caption: Kalender BeginnDesMonats - column 'Calendar EndOfMonth' - caption: Kalender EndeDesMonats - column 'Calendar StartOfQuarter' - caption: Kalender BeginnDesQuartals - column 'Calendar EndOfQuarter' - caption: Kalender EndeDesQuartals - column 'Calendar StartOfYear' - caption: Kalender BeginnDesJahres - column 'Calendar EndOfYear' - caption: Kalender EndeDesJahres - column 'Calendar MonthDays' - caption: Kalender MonatTage - column 'Calendar QuarterDays' - caption: Kalender QuartalTage - column 'Calendar YearDays' - caption: Kalender JahrTage - column 'Calendar DayOfMonthNumber' - caption: Kalender TagDesMonatsZahl - column 'Calendar DayOfQuarterNumber' - caption: Kalender TagDesQuartalsZahl - column 'Calendar DayOfYearNumber' - caption: Kalender TagDesJahresZahl - column 'Calendar DatePreviousWeek' - caption: Kalender DatumVorigeWoche - column 'Calendar DatePreviousMonth' - caption: Kalender DatumVorigerMonat - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumVorigesQuartal - column 'Calendar DatePreviousYear' - caption: Kalender DatumVorigesJahr - column 'Fiscal Year' - caption: Geschäftlich Jahr - column 'Fiscal Quarter' - caption: Geschäftsquartal - column 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - column 'Fiscal Month' - caption: Geschäftlich Monat - column 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - column 'Fiscal Week' - caption: Geschäftswoche - column 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - column 'Fiscal RelativeWeekPos' - caption: Geschäftlich RelativeWochenPos - column 'Fiscal RelativeMonthPos' - caption: Geschäftlich RelativeMonatsPos - column 'Fiscal RelativeQuarterPos' - caption: Geschäftlich RelativeQuartalsPos - column 'Fiscal RelativeYearPos' - caption: Geschäftlich RelativeJahresPos - column 'Fiscal StartOfMonth' - caption: Geschäftlich BeginnDesMonats - column 'Fiscal EndOfMonth' - caption: Geschäftlich EndeDesMonats - column 'Fiscal StartOfQuarter' - caption: Geschäftlich BeginnDesQuartals - column 'Fiscal EndOfQuarter' - caption: Geschäftlich EndeDesQuartals - column 'Fiscal StartOfYear' - caption: Geschäftlich BeginnDesJahres - column 'Fiscal EndOfYear' - caption: Geschäftlich EndeDesJahres - column 'Fiscal MonthDays' - caption: Geschäftlich MonatTage - column 'Fiscal QuarterDays' - caption: Geschäftlich QuartalTage - column 'Fiscal YearDays' - caption: Geschäftlich JahrTage - column 'Fiscal DayOfMonthNumber' - caption: Geschäftlich TagDesMonatsZahl - column 'Fiscal DayOfQuarterNumber' - caption: Geschäftlich TagDesQuartalsZahl - column 'Fiscal DayOfYearNumber' - caption: Geschäftlich TagDesJahresZahl - column 'Fiscal DatePreviousWeek' - caption: Geschäftlich DatumVorigeWoche - column 'Fiscal DatePreviousMonth' - caption: Geschäftlich DatumVorigerMonat - column 'Fiscal DatePreviousQuarter' - caption: Geschäftlich DatumVorigesQuartal - column 'Fiscal DatePreviousYear' - caption: Geschäftlich DatumVorigesJahr - column 'FW Year' - caption: GW Jahr - column 'FW Quarter' - caption: GW Quartal - column 'FW Quarter Year' - caption: GW Quartal Jahr - column 'FW Month' - caption: GW Monat - column 'FW Month Year' - caption: GW Monat Jahr - column 'FW Week' - caption: GW Woche - column 'FW Period' - caption: GW Periode - column 'FW Week Year' - caption: GW Woche Jahr - column 'FW StartOfWeek' - caption: GW BeginnDerWoche - column 'FW EndOfWeek' - caption: GW EndeDerWoche - column 'FW RelativeWeekPos' - caption: GW RelativeWochenPos - column 'FW RelativeMonthPos' - caption: GW RelativeMonatsPos - column 'FW RelativeQuarterPos' - caption: GW RelativeQuartalsPos - column 'FW RelativeYearPos' - caption: GW RelativeJahresPos - column 'FW StartOfMonth' - caption: GW BeginnDesMonats - column 'FW EndOfMonth' - caption: GW EndeDesMonats - column 'FW StartOfQuarter' - caption: GW BeginnDesQuartals - column 'FW EndOfQuarter' - caption: GW EndeDesQuartals - column 'FW StartOfYear' - caption: GW BeginnDesJahres - column 'FW EndOfYear' - caption: GW EndeDesJahres - column 'FW MonthDays' - caption: GW MonatTage - column 'FW QuarterDays' - caption: GW QuartalTage - column 'FW YearDays' - caption: GW JahrTage - column 'FW DayOfMonthNumber' - caption: GW TagDesMonatsZahl - column 'FW DayOfQuarterNumber' - caption: GW TagDesQuartalsZahl - column 'FW DayOfYearNumber' - caption: GW TagDesJahresZahl - column 'FW DatePreviousWeek' - caption: GW DatumVorigeWoche - column 'FW DatePreviousMonth' - caption: GW DatumVorigerMonat - column 'FW DatePreviousQuarter' - caption: GW DatumVorigesQuartal - column 'FW DatePreviousYear' - caption: GW DatumVorigesJahr - column 'Relative Day' - caption: Relativ Tag - column Sequential365DayNumber - caption: Fortlaufend 365 TagNummer - column 'Data Range Deferrals' - caption: Datenbereichsabgrenzungen - measure 'No. of Days' - caption: Anzahl der Tage - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Geschäftlich Jahr-Quartal-Monat-Woche - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender Jahr-Quartal-Monat-Woche - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Quarter-Month-Week' - caption: GW Jahr-Quartal-Monat-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'Fiscal Year-Month' - caption: Geschäftlich Jahr-Monat - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - hierarchy 'Fiscal Year-Month-Week' - caption: Geschäftlich Jahr-Monat-Woche - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Month' - caption: Kalender Jahr-Monat - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - hierarchy 'Calendar Year-Month-Week' - caption: Kalender Jahr-Monat-Woche - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Month-Week' - caption: GW Jahr-Monat-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Quarter-Week' - caption: GW Jahr-Quartal-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Week' - caption: GW Jahr-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Week Year' - caption: GW Woche Jahr - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: MIT EIGENEN DATEN VERBINDEN - measure '1. Download the Finance Connector for Power BI' - caption: 1. Finance Connector for Power BI herunterladen - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Dynamics 365 Business Central konfigurieren - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - measure 'HELP AND SUPPORT' - caption: HILFE UND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - measure 'for Business Central' - caption: für Business Central - measure 'Last Refreshed' - caption: Zuletzt aktualisiert - measure 'Company Name' - caption: Mandantenname - measure 'Analysis Entries as of' - caption: Analyseposten zum - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - measure 'Billing Forecast by Year and Month' - caption: Abrechnungsplanung nach Kalenderjahr und Monat - measure 'Billing Schedule' - caption: Abrechnungszeitplan - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - measure 'Current Date Range:' - caption: Aktueller Datumsbereich: - measure 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - measure 'Customer Contract Lines' - caption: Debitorenvertragszeilen - measure 'Customer Deferrals (Caption)' - caption: Debitorenabgrenzungen - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. wiederkehrende Umsatzanalyse - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. wiederkehrende Umsätze nach Debitor - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. wiederkehrende Umsätze nach Verkäufer - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Item' - caption: Mon. wiederkehrende Umsätze nach Artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. wiederkehrende Umsätze nach Kategorie - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - measure 'Revenue Analysis' - caption: Umsatzanalyse - measure 'Revenue by Customer' - caption: Umsatz nach Debitor - measure 'Revenue by Item' - caption: Umsatz nach Artikel - measure 'Revenue by Salesperson' - caption: Umsatz nach Verkäufer - measure 'Revenue Development' - caption: Umsatzentwicklung - measure 'Sales and Cost Forecast' - caption: Umsatzplanung - measure 'Revenue Year-Over-Year Growth' - caption: Umsatzwachstum im Vergleich zum Vorjahr - measure 'Subscription Billing Analysis' - caption: Subscription Billing-Analyse - measure 'Subscription Billing Overview' - caption: Übersicht über Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top-5-Kreditoren nach mon. wiederkehrenden Kosten - measure 'Total Contract Value Analysis' - caption: Gesamtvertragswertanalyse - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Total Contract Value by Year and Month' - caption: Gesamtvertragswert nach Kalenderjahr und Monat - measure 'Total Contract Value Year-Over-Year Growth' - caption: Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - measure 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - measure 'Vendor Deferrals (Caption)' - caption: Kreditorenabgrenzungen - measure 'Back button' - caption: Schaltfläche „Zurück“ - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - measure 'Churn Analysis' - caption: Abwanderungsanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table 'Meta Information' - caption: MANDANT - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektnr. - column 'Package Code' - caption: Paketcode - column 'Subscription Desc.' - caption: Serviceobjektbeschreibung - column 'Analysis Date' - caption: Analysedatum - column 'Subscription No. Desc.' - caption: Beschreibung Subscription-Nr. - table 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - column Discount - caption: Rabatt - column 'Document Line No.' - caption: Belegzeilennr. - table 'Customer Contract Line' - caption: Debitorenvertragszeilen - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Customer Contract Line Desc.' - caption: Debitorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Billing Base Period' - caption: Abrechnungsbasiszeitraum - column 'Invoicing Item No.' - caption: Rechnungsartikelnr. - column 'Customer Contract Line No.' - caption: Debitorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Vendor Contract Line' - caption: Kreditorenvertragszeile - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Vendor Contract Line Desc.' - caption: Kreditorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Vendor Contract Line No.' - caption: Kreditorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Is Latest Version' - caption: Ist neueste Version - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column 'Document Line No.' - caption: Belegzeilennr. - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - table 'Customer Contract' - caption: Debitorenvertrag - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Customer Contract Type' - caption: Debitorenvertragstyp - column 'Customer Contract Description' - caption: Debitorenvertragsbeschreibung - column 'Customer Contract No. Desc.' - caption: Beschreibung der Debitorenvertragsnr. - table 'Vendor Contract' - caption: Kreditorenvertrag - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Vendor Contract Type' - caption: Kreditorenvertragstyp - column 'Vendor Contract Description' - caption: Kreditorenvertragsbeschreibung - column 'Vendor Contract No. Desc.' - caption: Beschreibung der Kreditorenvertragsnr. - table 'UBB handling' - caption: NBA-Verarbeitung - column 'Treat Usage Based Billing as constant' - caption: NBA als Konstante behandeln - table 'Is Released' - caption: Ist freigegeben - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnr. - column 'Item Name' - caption: Artikelname - column 'Item Category Code' - caption: Artikelkategoriencode - column 'Item Category Description' - caption: Beschreibung der Artikelkategorie - column 'Inventory Posting Group' - caption: Lagerbuchungsgruppe - column 'Base Unit of Measure' - caption: Basiseinheit - column 'Item No. & Description' - caption: Artikelnr. und -Beschreibung - table 'Analysis Date' - caption: Analysedatum - column 'Is Initial Version' - caption: Ist ursprüngliche Version - column 'Is Current Version' - caption: Ist aktuelle Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - column Perspective - caption: Perspektive - table 'Subscription Billing KPIs' - caption: Subscription Billing-KPIs - measure 'Mon. Recurring Revenue' - caption: MWU - measure 'Mon. Recurring Cost' - caption: MWK - measure 'Customer Deferrals' - caption: Debitorenabgrenzungen - measure 'Vendor Deferrals' - caption: Kreditorenabgrenzungen - measure 'Annual Recurring Revenue' - caption: DBUCH - measure 'Total Contract Value' - caption: GVW - measure 'Forecast Sales' - caption: Planungsverkäufe - measure 'Mon. Recurring Cost PY' - caption: MWK VJ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MWK Δ gegenüber VJ - measure 'Mon. Recurring Revenue Churn' - caption: Mon. wiederkehrende Umsätze Abwanderung - measure 'Mon. Recurring Revenue PY' - caption: MWU VJ - measure 'Mon. Recurring Revenue New' - caption: Mon. wiederkehrende Umsätze Neu - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. wiederkehrende Umsätze Δ gegenüber VJ - measure 'Mon. Net Profit Amount' - caption: NMWU - measure 'Mon. Net Profit %' - caption: NMWU % der MWU - measure 'Mon. Net Profit PY' - caption: NMWU VJ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMWU Δ gegenüber VJ - measure 'Change in Mon. Recurring Revenue' - caption: MWU-Gesamtveränderung - measure 'Total Contract Value PY' - caption: GVW VJ - measure 'Total Contract Value Δ vs. PY' - caption: GVW Δ gegenüber VJ - measure 'Last Update Analysis Entries' - caption: Letzte Aktualisierung Analyseposten - measure 'Last Update Semantic Model' - caption: Letzte Aktualisierung des semantischen Modells - measure 'Param Environment' - caption: Parameterumgebung - measure 'Param Company' - caption: Paramater Mandant - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. wiederkehrende Umsätze Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. wiederkehrende Umsätze NBA-Änderung - measure 'Reporting Currency' - caption: Berichtswährung - measure 'Active Customers' - caption: Aktive Debitoren - measure 'Active Customers PY' - caption: Aktive Debitoren VJ - measure 'Active Customers Δ vs. PY' - caption: Aktive Debitoren Δ gegenüber VJ - measure 'Customer Billing Forecast' - caption: Debitorenabrechnungsplanung - measure 'Vendor Billing Forecast' - caption: Kreditorenabrechnungsplanung - measure 'Forecast Costs' - caption: Geplante Kosten - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. wiederkehrende Umsätze Downgrade - measure 'Selected Date Range' - caption: Ausgewählter Datumsbereich - measure 'Avg. Mon. Churn Rate %' - caption: Durchschn. mon. Abwanderungsrate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Durchschn. mon. Downgraderate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table Salesperson - caption: Verkäufer - column 'Salesperson Code' - caption: Verkäufercode - column 'Salesperson Name' - caption: Verkäufername - table 'Customer Contract Changes' - caption: Änderungen des Debitorenvertrags - column 'Customer Contract Line Key' - caption: Debitorenvertragszeilen-Schlüssel - column Date - caption: Datum - column 'Change Type' - caption: Typ ändern - column 'MRR Delta' - caption: MWU-Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-CH.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-CH.tmdl deleted file mode 100644 index 9596fd4a0b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-CH.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo de-CH - translations - model Model - table 'Dimension Sets' - caption: Dimensionssätze - column 'Global Dimension 1' - caption: Globale Dimension 1 - column 'Global Dimension 2' - caption: Globale Dimension 2 - column 'Shortcut Dimension 3' - caption: Dimensionscode 3 - column 'Shortcut Dimension 4' - caption: Dimensionscode 4 - column 'Shortcut Dimension 5' - caption: Dimensionscode 5 - column 'Shortcut Dimension 6' - caption: Dimensionscode 6 - column 'Shortcut Dimension 7' - caption: Dimensionscode 7 - column 'Shortcut Dimension 8' - caption: Dimensionscode 8 - column id - caption: id - table Vendors - caption: Kreditoren - column 'Vendor No.' - caption: Kreditornr. - column 'Vendor Name' - caption: Kreditorenname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Vendor Posting Group' - caption: Kreditorenbuchungsgruppe - column 'Vendor No. & Name' - caption: Kreditornr. und -name - table Customers - caption: Debitoren - column 'Customer No.' - caption: Debitorennummer - column 'Customer Name' - caption: Debitorname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Customer Posting Group' - caption: Debitorenbuchungsgruppe - column 'Customer Price Group' - caption: Debitorenpreisgruppe - column 'Customer Discount Group' - caption: Debitorenrabattgruppe - column 'Customer No. & Name' - caption: Debitorennr. und -name - table Date - caption: Datum - column 'Week Day' - caption: Woche Tag - column 'Day Type' - caption: Tagestyp - column 'Calendar Year' - caption: Kalender Jahr - column 'Calendar Quarter' - caption: Kalenderquartal - column 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - column 'Calendar Month' - caption: Kalendermonat - column 'Calendar Month Year' - caption: Kalender Monat Jahr - column 'Calendar Week' - caption: Kalender Woche - column 'Calendar Week Year' - caption: Kalender Woche Jahr - column 'Calendar RelativeWeekPos' - caption: Kalender RelativeWochenPos - column 'Calendar RelativeMonthPos' - caption: Kalender RelativeMonatsPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativeQuartalsPos - column 'Calendar RelativeYearPos' - caption: Kalender RelativeJahresPos - column 'Calendar StartOfMonth' - caption: Kalender BeginnDesMonats - column 'Calendar EndOfMonth' - caption: Kalender EndeDesMonats - column 'Calendar StartOfQuarter' - caption: Kalender BeginnDesQuartals - column 'Calendar EndOfQuarter' - caption: Kalender EndeDesQuartals - column 'Calendar StartOfYear' - caption: Kalender BeginnDesJahres - column 'Calendar EndOfYear' - caption: Kalender EndeDesJahres - column 'Calendar MonthDays' - caption: Kalender MonatTage - column 'Calendar QuarterDays' - caption: Kalender QuartalTage - column 'Calendar YearDays' - caption: Kalender JahrTage - column 'Calendar DayOfMonthNumber' - caption: Kalender TagDesMonatsZahl - column 'Calendar DayOfQuarterNumber' - caption: Kalender TagDesQuartalsZahl - column 'Calendar DayOfYearNumber' - caption: Kalender TagDesJahresZahl - column 'Calendar DatePreviousWeek' - caption: Kalender DatumVorigeWoche - column 'Calendar DatePreviousMonth' - caption: Kalender DatumVorigerMonat - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumVorigesQuartal - column 'Calendar DatePreviousYear' - caption: Kalender DatumVorigesJahr - column 'Fiscal Year' - caption: Geschäftlich Jahr - column 'Fiscal Quarter' - caption: Geschäftsquartal - column 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - column 'Fiscal Month' - caption: Geschäftlich Monat - column 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - column 'Fiscal Week' - caption: Geschäftswoche - column 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - column 'Fiscal RelativeWeekPos' - caption: Geschäftlich RelativeWochenPos - column 'Fiscal RelativeMonthPos' - caption: Geschäftlich RelativeMonatsPos - column 'Fiscal RelativeQuarterPos' - caption: Geschäftlich RelativeQuartalsPos - column 'Fiscal RelativeYearPos' - caption: Geschäftlich RelativeJahresPos - column 'Fiscal StartOfMonth' - caption: Geschäftlich BeginnDesMonats - column 'Fiscal EndOfMonth' - caption: Geschäftlich EndeDesMonats - column 'Fiscal StartOfQuarter' - caption: Geschäftlich BeginnDesQuartals - column 'Fiscal EndOfQuarter' - caption: Geschäftlich EndeDesQuartals - column 'Fiscal StartOfYear' - caption: Geschäftlich BeginnDesJahres - column 'Fiscal EndOfYear' - caption: Geschäftlich EndeDesJahres - column 'Fiscal MonthDays' - caption: Geschäftlich MonatTage - column 'Fiscal QuarterDays' - caption: Geschäftlich QuartalTage - column 'Fiscal YearDays' - caption: Geschäftlich JahrTage - column 'Fiscal DayOfMonthNumber' - caption: Geschäftlich TagDesMonatsZahl - column 'Fiscal DayOfQuarterNumber' - caption: Geschäftlich TagDesQuartalsZahl - column 'Fiscal DayOfYearNumber' - caption: Geschäftlich TagDesJahresZahl - column 'Fiscal DatePreviousWeek' - caption: Geschäftlich DatumVorigeWoche - column 'Fiscal DatePreviousMonth' - caption: Geschäftlich DatumVorigerMonat - column 'Fiscal DatePreviousQuarter' - caption: Geschäftlich DatumVorigesQuartal - column 'Fiscal DatePreviousYear' - caption: Geschäftlich DatumVorigesJahr - column 'FW Year' - caption: GW Jahr - column 'FW Quarter' - caption: GW Quartal - column 'FW Quarter Year' - caption: GW Quartal Jahr - column 'FW Month' - caption: GW Monat - column 'FW Month Year' - caption: GW Monat Jahr - column 'FW Week' - caption: GW Woche - column 'FW Period' - caption: GW Periode - column 'FW Week Year' - caption: GW Woche Jahr - column 'FW StartOfWeek' - caption: GW BeginnDerWoche - column 'FW EndOfWeek' - caption: GW EndeDerWoche - column 'FW RelativeWeekPos' - caption: GW RelativeWochenPos - column 'FW RelativeMonthPos' - caption: GW RelativeMonatsPos - column 'FW RelativeQuarterPos' - caption: GW RelativeQuartalsPos - column 'FW RelativeYearPos' - caption: GW RelativeJahresPos - column 'FW StartOfMonth' - caption: GW BeginnDesMonats - column 'FW EndOfMonth' - caption: GW EndeDesMonats - column 'FW StartOfQuarter' - caption: GW BeginnDesQuartals - column 'FW EndOfQuarter' - caption: GW EndeDesQuartals - column 'FW StartOfYear' - caption: GW BeginnDesJahres - column 'FW EndOfYear' - caption: GW EndeDesJahres - column 'FW MonthDays' - caption: GW MonatTage - column 'FW QuarterDays' - caption: GW QuartalTage - column 'FW YearDays' - caption: GW JahrTage - column 'FW DayOfMonthNumber' - caption: GW TagDesMonatsZahl - column 'FW DayOfQuarterNumber' - caption: GW TagDesQuartalsZahl - column 'FW DayOfYearNumber' - caption: GW TagDesJahresZahl - column 'FW DatePreviousWeek' - caption: GW DatumVorigeWoche - column 'FW DatePreviousMonth' - caption: GW DatumVorigerMonat - column 'FW DatePreviousQuarter' - caption: GW DatumVorigesQuartal - column 'FW DatePreviousYear' - caption: GW DatumVorigesJahr - column 'Relative Day' - caption: Relativ Tag - column Sequential365DayNumber - caption: Fortlaufend 365 TagNummer - column 'Data Range Deferrals' - caption: Datenbereichsabgrenzungen - measure 'No. of Days' - caption: Anzahl der Tage - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Geschäftlich Jahr-Quartal-Monat-Woche - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender Jahr-Quartal-Monat-Woche - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Quarter-Month-Week' - caption: GW Jahr-Quartal-Monat-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'Fiscal Year-Month' - caption: Geschäftlich Jahr-Monat - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - hierarchy 'Fiscal Year-Month-Week' - caption: Geschäftlich Jahr-Monat-Woche - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Month' - caption: Kalender Jahr-Monat - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - hierarchy 'Calendar Year-Month-Week' - caption: Kalender Jahr-Monat-Woche - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Month-Week' - caption: GW Jahr-Monat-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Quarter-Week' - caption: GW Jahr-Quartal-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Week' - caption: GW Jahr-Woche - level 'FW Year' - caption: GW Jahr - level 'FW Week Year' - caption: GW Woche Jahr - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: MIT EIGENEN DATEN VERBINDEN - measure '1. Download the Finance Connector for Power BI' - caption: 1. Finance Connector for Power BI herunterladen - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Dynamics 365 Business Central konfigurieren - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - measure 'HELP AND SUPPORT' - caption: HILFE UND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - measure 'for Business Central' - caption: für Business Central - measure 'Last Refreshed' - caption: Zuletzt aktualisiert - measure 'Company Name' - caption: Mandantenname - measure 'Analysis Entries as of' - caption: Analyseposten zum - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - measure 'Billing Forecast by Year and Month' - caption: Abrechnungsplanung nach Kalenderjahr und Monat - measure 'Billing Schedule' - caption: Abrechnungszeitplan - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - measure 'Current Date Range:' - caption: Aktueller Datumsbereich: - measure 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - measure 'Customer Contract Lines' - caption: Debitorenvertragszeilen - measure 'Customer Deferrals (Caption)' - caption: Debitorenabgrenzungen - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. wiederkehrende Umsatzanalyse - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. wiederkehrende Umsätze nach Debitor - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. wiederkehrende Umsätze nach Verkäufer - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Item' - caption: Mon. wiederkehrende Umsätze nach Artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. wiederkehrende Umsätze nach Kategorie - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - measure 'Revenue Analysis' - caption: Umsatzanalyse - measure 'Revenue by Customer' - caption: Umsatz nach Debitor - measure 'Revenue by Item' - caption: Umsatz nach Artikel - measure 'Revenue by Salesperson' - caption: Umsatz nach Verkäufer - measure 'Revenue Development' - caption: Umsatzentwicklung - measure 'Sales and Cost Forecast' - caption: Umsatzplanung - measure 'Revenue Year-Over-Year Growth' - caption: Umsatzwachstum im Vergleich zum Vorjahr - measure 'Subscription Billing Analysis' - caption: Subscription Billing-Analyse - measure 'Subscription Billing Overview' - caption: Übersicht über Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top-5-Kreditoren nach mon. wiederkehrenden Kosten - measure 'Total Contract Value Analysis' - caption: Gesamtvertragswertanalyse - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Total Contract Value by Year and Month' - caption: Gesamtvertragswert nach Kalenderjahr und Monat - measure 'Total Contract Value Year-Over-Year Growth' - caption: Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - measure 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - measure 'Vendor Deferrals (Caption)' - caption: Kreditorenabgrenzungen - measure 'Back button' - caption: Schaltfläche „Zurück“ - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - measure 'Churn Analysis' - caption: Abwanderungsanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table 'Meta Information' - caption: MANDANT - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektnr. - column 'Package Code' - caption: Paketcode - column 'Subscription Desc.' - caption: Serviceobjektbeschreibung - column 'Analysis Date' - caption: Analysedatum - column 'Subscription No. Desc.' - caption: Beschreibung Subscription-Nr. - table 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - column Discount - caption: Rabatt - column 'Document Line No.' - caption: Belegzeilennr. - table 'Customer Contract Line' - caption: Debitorenvertragszeilen - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Customer Contract Line Desc.' - caption: Debitorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Billing Base Period' - caption: Abrechnungsbasiszeitraum - column 'Invoicing Item No.' - caption: Rechnungsartikelnr. - column 'Customer Contract Line No.' - caption: Debitorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Vendor Contract Line' - caption: Kreditorenvertragszeile - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Vendor Contract Line Desc.' - caption: Kreditorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Vendor Contract Line No.' - caption: Kreditorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Is Latest Version' - caption: Ist neueste Version - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column 'Document Line No.' - caption: Belegzeilennr. - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - table 'Customer Contract' - caption: Debitorenvertrag - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Customer Contract Type' - caption: Debitorenvertragstyp - column 'Customer Contract Description' - caption: Debitorenvertragsbeschreibung - column 'Customer Contract No. Desc.' - caption: Beschreibung der Debitorenvertragsnr. - table 'Vendor Contract' - caption: Kreditorenvertrag - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Vendor Contract Type' - caption: Kreditorenvertragstyp - column 'Vendor Contract Description' - caption: Kreditorenvertragsbeschreibung - column 'Vendor Contract No. Desc.' - caption: Beschreibung der Kreditorenvertragsnr. - table 'UBB handling' - caption: NBA-Verarbeitung - column 'Treat Usage Based Billing as constant' - caption: NBA als Konstante behandeln - table 'Is Released' - caption: Ist freigegeben - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnr. - column 'Item Name' - caption: Artikelname - column 'Item Category Code' - caption: Artikelkategoriencode - column 'Item Category Description' - caption: Beschreibung der Artikelkategorie - column 'Inventory Posting Group' - caption: Lagerbuchungsgruppe - column 'Base Unit of Measure' - caption: Basiseinheit - column 'Item No. & Description' - caption: Artikelnr. und -Beschreibung - table 'Analysis Date' - caption: Analysedatum - column 'Is Initial Version' - caption: Ist ursprüngliche Version - column 'Is Current Version' - caption: Ist aktuelle Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - column Perspective - caption: Perspektive - table 'Subscription Billing KPIs' - caption: Subscription Billing-KPIs - measure 'Mon. Recurring Revenue' - caption: MWU - measure 'Mon. Recurring Cost' - caption: MWK - measure 'Customer Deferrals' - caption: Debitorenabgrenzungen - measure 'Vendor Deferrals' - caption: Kreditorenabgrenzungen - measure 'Annual Recurring Revenue' - caption: DBUCH - measure 'Total Contract Value' - caption: GVW - measure 'Forecast Sales' - caption: Planungsverkäufe - measure 'Mon. Recurring Cost PY' - caption: MWK VJ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MWK Δ gegenüber VJ - measure 'Mon. Recurring Revenue Churn' - caption: Mon. wiederkehrende Umsätze Abwanderung - measure 'Mon. Recurring Revenue PY' - caption: MWU VJ - measure 'Mon. Recurring Revenue New' - caption: Mon. wiederkehrende Umsätze Neu - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. wiederkehrende Umsätze Δ gegenüber VJ - measure 'Mon. Net Profit Amount' - caption: NMWU - measure 'Mon. Net Profit %' - caption: NMWU % der MWU - measure 'Mon. Net Profit PY' - caption: NMWU VJ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMWU Δ gegenüber VJ - measure 'Change in Mon. Recurring Revenue' - caption: MWU-Gesamtveränderung - measure 'Total Contract Value PY' - caption: GVW VJ - measure 'Total Contract Value Δ vs. PY' - caption: GVW Δ gegenüber VJ - measure 'Last Update Analysis Entries' - caption: Letzte Aktualisierung Analyseposten - measure 'Last Update Semantic Model' - caption: Letzte Aktualisierung des semantischen Modells - measure 'Param Environment' - caption: Parameterumgebung - measure 'Param Company' - caption: Paramater Mandant - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. wiederkehrende Umsätze Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. wiederkehrende Umsätze NBA-Änderung - measure 'Reporting Currency' - caption: Berichtswährung - measure 'Active Customers' - caption: Aktive Debitoren - measure 'Active Customers PY' - caption: Aktive Debitoren VJ - measure 'Active Customers Δ vs. PY' - caption: Aktive Debitoren Δ gegenüber VJ - measure 'Customer Billing Forecast' - caption: Debitorenabrechnungsplanung - measure 'Vendor Billing Forecast' - caption: Kreditorenabrechnungsplanung - measure 'Forecast Costs' - caption: Geplante Kosten - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. wiederkehrende Umsätze Downgrade - measure 'Selected Date Range' - caption: Ausgewählter Datumsbereich - measure 'Avg. Mon. Churn Rate %' - caption: Durchschn. mon. Abwanderungsrate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Durchschn. mon. Downgraderate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table Salesperson - caption: Verkäufer - column 'Salesperson Code' - caption: Verkäufercode - column 'Salesperson Name' - caption: Verkäufername - table 'Customer Contract Changes' - caption: Änderungen des Debitorenvertrags - column 'Customer Contract Line Key' - caption: Debitorenvertragszeilen-Schlüssel - column Date - caption: Datum - column 'Change Type' - caption: Typ ändern - column 'MRR Delta' - caption: MWU-Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-DE.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-DE.tmdl deleted file mode 100644 index ba6cf788e5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/de-DE.tmdl +++ /dev/null @@ -1,876 +0,0 @@ -cultureInfo de-DE - translations - model Model - table 'Dimension Sets' - caption: Dimensionssätze - column 'Global Dimension 1' - caption: Globale Dimension 1 - column 'Global Dimension 2' - caption: Globale Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcutdimension 3 - column 'Shortcut Dimension 4' - caption: Shortcutdimension 4 - column 'Shortcut Dimension 5' - caption: Shortcutdimension 5 - column 'Shortcut Dimension 6' - caption: Shortcutdimension 6 - column 'Shortcut Dimension 7' - caption: Shortcutdimension 7 - column 'Shortcut Dimension 8' - caption: Shortcutdimension 8 - column id - caption: id - table Vendors - caption: Kreditoren - column 'Vendor No.' - caption: Kreditornr. - column 'Vendor Name' - caption: Kreditorenname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ-Code - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Vendor Posting Group' - caption: Kreditorenbuchungsgruppe - column 'Vendor No. & Name' - caption: Kreditornr. und -name - table Customers - caption: Debitoren - column 'Customer No.' - caption: Debitorennummer - column 'Customer Name' - caption: Debitorname - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ort - column 'Post Code' - caption: PLZ-Code - column State - caption: Bundesland - column 'Country/Region Code' - caption: Länder-/Regionscode - column 'Customer Posting Group' - caption: Debitorenbuchungsgruppe - column 'Customer Price Group' - caption: Debitorenpreisgruppe - column 'Customer Discount Group' - caption: Debitorenrabattgruppe - column 'Customer No. & Name' - caption: Debitorennr. und -name - table Date - caption: Datum - column Date - caption: Datum - column 'Week Day' - caption: Woche Tag - column 'Day Type' - caption: Tagestyp - column 'Calendar Year' - caption: Kalender Jahr - displayFolder: _Standard Kalender - column 'Calendar Quarter' - caption: Kalenderquartal - displayFolder: _Standard Kalender - column 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - displayFolder: _Standard Kalender - column 'Calendar Month' - caption: Kalendermonat - displayFolder: _Standard Kalender - column 'Calendar Month Year' - caption: Kalender Monat Jahr - displayFolder: _Standard Kalender - column 'Calendar Week' - caption: Kalender Woche - displayFolder: _Standard Kalender - column 'Calendar Week Year' - caption: Kalender Woche Jahr - displayFolder: _Standard Kalender - column 'Calendar WeekYearOrder' - displayFolder: _Standard Kalender - column 'Calendar RelativeWeekPos' - caption: Kalender RelativeWochenPos - displayFolder: _Standard Kalender - column 'Calendar RelativeMonthPos' - caption: Kalender RelativeMonatsPos - displayFolder: _Standard Kalender - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativeQuartalsPos - displayFolder: _Standard Kalender - column 'Calendar RelativeYearPos' - caption: Kalender RelativeJahresPos - displayFolder: _Standard Kalender - column 'Calendar StartOfMonth' - caption: Kalender BeginnDesMonats - displayFolder: _Standard Kalender - column 'Calendar EndOfMonth' - caption: Kalender EndeDesMonats - displayFolder: _Standard Kalender - column 'Calendar StartOfQuarter' - caption: Kalender BeginnDesQuartals - displayFolder: _Standard Kalender - column 'Calendar EndOfQuarter' - caption: Kalender EndeDesQuartals - displayFolder: _Standard Kalender - column 'Calendar StartOfYear' - caption: Kalender BeginnDesJahres - displayFolder: _Standard Kalender - column 'Calendar EndOfYear' - caption: Kalender EndeDesJahres - displayFolder: _Standard Kalender - column 'Calendar MonthDays' - caption: Kalender MonatTage - displayFolder: _Standard Kalender - column 'Calendar QuarterDays' - caption: Kalender QuartalTage - displayFolder: _Standard Kalender - column 'Calendar YearDays' - caption: Kalender JahrTage - displayFolder: _Standard Kalender - column 'Calendar DayOfMonthNumber' - caption: Kalender TagDesMonatsZahl - displayFolder: _Standard Kalender - column 'Calendar DayOfQuarterNumber' - caption: Kalender TagDesQuartalsZahl - displayFolder: _Standard Kalender - column 'Calendar DayOfYearNumber' - caption: Kalender TagDesJahresZahl - displayFolder: _Standard Kalender - column 'Calendar DatePreviousWeek' - caption: Kalender DatumVorigeWoche - displayFolder: _Standard Kalender - column 'Calendar DatePreviousMonth' - caption: Kalender DatumVorigerMonat - displayFolder: _Standard Kalender - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumVorigesQuartal - displayFolder: _Standard Kalender - column 'Calendar DatePreviousYear' - caption: Kalender DatumVorigesJahr - displayFolder: _Standard Kalender - column 'Fiscal Year' - caption: Geschäftlich Jahr - displayFolder: _Fiscal Kalender - column 'Fiscal Quarter' - caption: Geschäftsquartal - displayFolder: _Fiscal Kalender - column 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - displayFolder: _Fiscal Kalender - column 'Fiscal MonthInQuarterNumber' - displayFolder: _Fiscal Kalender - column 'Fiscal Month' - caption: Geschäftlich Monat - displayFolder: _Fiscal Kalender - column 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - displayFolder: _Fiscal Kalender - column 'Fiscal Week' - caption: Geschäftswoche - displayFolder: _Fiscal Kalender - column 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - displayFolder: _Fiscal Kalender - column 'Fiscal WeekYearOrder' - displayFolder: _Fiscal Kalender - column 'Fiscal RelativeWeekPos' - caption: Geschäftlich RelativeWochenPos - displayFolder: _Fiscal Kalender - column 'Fiscal RelativeMonthPos' - caption: Geschäftlich RelativeMonatsPos - displayFolder: _Fiscal Kalender - column 'Fiscal RelativeQuarterPos' - caption: Geschäftlich RelativeQuartalsPos - displayFolder: _Fiscal Kalender - column 'Fiscal RelativeYearPos' - caption: Geschäftlich RelativeJahresPos - displayFolder: _Fiscal Kalender - column 'Fiscal StartOfMonth' - caption: Geschäftlich BeginnDesMonats - displayFolder: _Fiscal Kalender - column 'Fiscal EndOfMonth' - caption: Geschäftlich EndeDesMonats - displayFolder: _Fiscal Kalender - column 'Fiscal StartOfQuarter' - caption: Geschäftlich BeginnDesQuartals - displayFolder: _Fiscal Kalender - column 'Fiscal EndOfQuarter' - caption: Geschäftlich EndeDesQuartals - displayFolder: _Fiscal Kalender - column 'Fiscal StartOfYear' - caption: Geschäftlich BeginnDesJahres - displayFolder: _Fiscal Kalender - column 'Fiscal EndOfYear' - caption: Geschäftlich EndeDesJahres - displayFolder: _Fiscal Kalender - column 'Fiscal MonthDays' - caption: Geschäftlich MonatTage - displayFolder: _Fiscal Kalender - column 'Fiscal QuarterDays' - caption: Geschäftlich QuartalTage - displayFolder: _Fiscal Kalender - column 'Fiscal YearDays' - caption: Geschäftlich JahrTage - displayFolder: _Fiscal Kalender - column 'Fiscal DayOfMonthNumber' - caption: Geschäftlich TagDesMonatsZahl - displayFolder: _Fiscal Kalender - column 'Fiscal DayOfQuarterNumber' - caption: Geschäftlich TagDesQuartalsZahl - displayFolder: _Fiscal Kalender - column 'Fiscal DayOfYearNumber' - caption: Geschäftlich TagDesJahresZahl - displayFolder: _Fiscal Kalender - column 'Fiscal DatePreviousWeek' - caption: Geschäftlich DatumVorigeWoche - displayFolder: _Fiscal Kalender - column 'Fiscal DatePreviousMonth' - caption: Geschäftlich DatumVorigerMonat - displayFolder: _Fiscal Kalender - column 'Fiscal DatePreviousQuarter' - caption: Geschäftlich DatumVorigesQuartal - displayFolder: _Fiscal Kalender - column 'Fiscal DatePreviousYear' - caption: Geschäftlich DatumVorigesJahr - displayFolder: _Fiscal Kalender - column 'FW Year' - caption: GW Jahr - displayFolder: _Weekly Kalender - column 'FW Quarter' - caption: GW Quartal - displayFolder: _Weekly Kalender - column 'FW Quarter Year' - caption: GW Quartal Jahr - displayFolder: _Weekly Kalender - column 'FW Month' - caption: GW Monat - displayFolder: _Weekly Kalender - column 'FW Month Year' - caption: GW Monat Jahr - displayFolder: _Weekly Kalender - column 'FW Week' - caption: GW Woche - displayFolder: _Weekly Kalender - column 'FW Period' - caption: GW Periode - displayFolder: _Weekly Kalender - column 'FW Week Year' - caption: GW Woche Jahr - displayFolder: _Weekly Kalender - column 'FW StartOfWeek' - caption: GW BeginnDerWoche - displayFolder: _Weekly Kalender - column 'FW EndOfWeek' - caption: GW EndeDerWoche - displayFolder: _Weekly Kalender - column 'FW RelativeWeekPos' - caption: GW RelativeWochenPos - displayFolder: _Weekly Kalender - column 'FW RelativeMonthPos' - caption: GW RelativeMonatsPos - displayFolder: _Weekly Kalender - column 'FW RelativeQuarterPos' - caption: GW RelativeQuartalsPos - displayFolder: _Weekly Kalender - column 'FW RelativeYearPos' - caption: GW RelativeJahresPos - displayFolder: _Weekly Kalender - column 'FW StartOfMonth' - caption: GW BeginnDesMonats - displayFolder: _Weekly Kalender - column 'FW EndOfMonth' - caption: GW EndeDesMonats - displayFolder: _Weekly Kalender - column 'FW StartOfQuarter' - caption: GW BeginnDesQuartals - displayFolder: _Weekly Kalender - column 'FW EndOfQuarter' - caption: GW EndeDesQuartals - displayFolder: _Weekly Kalender - column 'FW StartOfYear' - caption: GW BeginnDesJahres - displayFolder: _Weekly Kalender - column 'FW EndOfYear' - caption: GW EndeDesJahres - displayFolder: _Weekly Kalender - column 'FW MonthDays' - caption: GW MonatTage - displayFolder: _Weekly Kalender - column 'FW QuarterDays' - caption: GW QuartalTage - displayFolder: _Weekly Kalender - column 'FW YearDays' - caption: GW JahrTage - displayFolder: _Weekly Kalender - column 'FW DayOfMonthNumber' - caption: GW TagDesMonatsZahl - displayFolder: _Weekly Kalender - column 'FW DayOfQuarterNumber' - caption: GW TagDesQuartalsZahl - displayFolder: _Weekly Kalender - column 'FW DayOfYearNumber' - caption: GW TagDesJahresZahl - displayFolder: _Weekly Kalender - column 'FW DatePreviousWeek' - caption: GW DatumVorigeWoche - displayFolder: _Weekly Kalender - column 'FW DatePreviousMonth' - caption: GW DatumVorigerMonat - displayFolder: _Weekly Kalender - column 'FW DatePreviousQuarter' - caption: GW DatumVorigesQuartal - displayFolder: _Weekly Kalender - column 'FW DatePreviousYear' - caption: GW DatumVorigesJahr - displayFolder: _Weekly Kalender - column 'Relative Day' - caption: Relativ Tag - column Sequential365DayNumber - caption: Fortlaufend 365 TagNummer - column 'Data Range Deferrals' - caption: Datenbereichsabgrenzungen - measure 'No. of Days' - caption: Anzahl der Tage - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Geschäftlich Jahr-Quartal-Monat-Woche - displayFolder: _Fiscal Kalender - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Quarter Year' - caption: Geschäftlich Quartal Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender Jahr-Quartal-Monat-Woche - displayFolder: _Standard Kalender - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Quarter Year' - caption: Kalender Quartal Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Quarter-Month-Week' - caption: GW Jahr-Quartal-Monat-Woche - displayFolder: _Weekly Kalender - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'Fiscal Year-Month' - caption: Geschäftlich Jahr-Monat - displayFolder: _Fiscal Kalender - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - hierarchy 'Fiscal Year-Month-Week' - caption: Geschäftlich Jahr-Monat-Woche - displayFolder: _Fiscal Kalender - level 'Fiscal Year' - caption: Geschäftlich Jahr - level 'Fiscal Month Year' - caption: Geschäftlich Monat Jahr - level 'Fiscal Week Year' - caption: Geschäftlich Woche Jahr - hierarchy 'Calendar Year-Month' - caption: Kalender Jahr-Monat - displayFolder: _Standard Kalender - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - hierarchy 'Calendar Year-Month-Week' - caption: Kalender Jahr-Monat-Woche - displayFolder: _Standard Kalender - level 'Calendar Year' - caption: Kalender Jahr - level 'Calendar Month Year' - caption: Kalender Monat Jahr - level 'Calendar Week Year' - caption: Kalender Woche Jahr - hierarchy 'FW Year-Month-Week' - caption: GW Jahr-Monat-Woche - displayFolder: _Weekly Kalender - level 'FW Year' - caption: GW Jahr - level 'FW Month Year' - caption: GW Monat Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Quarter-Week' - caption: GW Jahr-Quartal-Woche - displayFolder: _Weekly Kalender - level 'FW Year' - caption: GW Jahr - level 'FW Quarter Year' - caption: GW Quartal Jahr - level 'FW Week Year' - caption: GW Woche Jahr - hierarchy 'FW Year-Week' - caption: GW Jahr-Woche - displayFolder: _Weekly Kalender - level 'FW Year' - caption: GW Jahr - level 'FW Week Year' - caption: GW Woche Jahr - table 'Localized Labels' - caption: Lokalisierte Etiketten - measure 'CONNECT YOUR DATA' - caption: MIT EIGENEN DATEN VERBINDEN - measure '1. Download the Finance Connector for Power BI' - caption: 1. Finance Connector for Power BI herunterladen - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Dynamics 365 Business Central konfigurieren - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - measure 'HELP AND SUPPORT' - caption: HILFE UND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - measure 'for Business Central' - caption: für Business Central - measure 'Last Refreshed' - caption: Zuletzt aktualisiert - measure 'Company Name' - caption: Mandantenname - measure 'Analysis Entries as of' - caption: Analyseposten zum - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - measure 'Billing Forecast by Year and Month' - caption: Abrechnungsplanung nach Kalenderjahr und Monat - measure 'Billing Schedule' - caption: Abrechnungszeitplan - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - measure 'Current Date Range:' - caption: Aktueller Datumsbereich: - measure 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - measure 'Customer Contract Lines' - caption: Debitorenvertragszeilen - measure 'Customer Deferrals (Caption)' - caption: Debitorenabgrenzungen - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. wiederkehrende Umsatzanalyse - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. wiederkehrende Umsätze nach Debitor - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. wiederkehrende Umsätze nach Verkäufer - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - measure 'Mon. Recurring Revenue by Item' - caption: Mon. wiederkehrende Umsätze nach Artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. wiederkehrende Umsätze nach Kategorie - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - measure 'Revenue Analysis' - caption: Umsatzanalyse - measure 'Revenue by Customer' - caption: Umsatz nach Debitor - measure 'Revenue by Item' - caption: Umsatz nach Artikel - measure 'Revenue by Salesperson' - caption: Umsatz nach Verkäufer - measure 'Revenue Development' - caption: Umsatzentwicklung - measure 'Sales and Cost Forecast' - caption: Umsatzplanung - measure 'Revenue Year-Over-Year Growth' - caption: Umsatzwachstum im Vergleich zum Vorjahr - measure 'Subscription Billing Analysis' - caption: Subscription Billing-Analyse - measure 'Subscription Billing Overview' - caption: Übersicht über Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top-5-Kreditoren nach mon. wiederkehrenden Kosten - measure 'Total Contract Value Analysis' - caption: Gesamtvertragswertanalyse - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - measure 'Total Contract Value by Year and Month' - caption: Gesamtvertragswert nach Kalenderjahr und Monat - measure 'Total Contract Value Year-Over-Year Growth' - caption: Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - measure 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - measure 'Vendor Deferrals (Caption)' - caption: Kreditorenabgrenzungen - measure 'Back button' - caption: Schaltfläche „Zurück“ - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - measure 'Churn Analysis' - caption: Abwanderungsanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table 'Meta Information' - caption: MANDANT - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektnr. - column 'Package Code' - caption: Paketcode - column 'Subscription Desc.' - caption: Serviceobjektbeschreibung - column 'Analysis Date' - caption: Analysedatum - column 'Subscription No. Desc.' - caption: Beschreibung Subscription-Nr. - table 'Vendor Contract Deferrals' - caption: Kreditorenvertragsabgrenzungen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column Amount - caption: Betrag - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - column Discount - caption: Rabatt - column 'Document Line No.' - caption: Belegzeilennr. - table 'Customer Contract Line' - caption: Debitorenvertragszeilen - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Customer Contract Line Desc.' - caption: Debitorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Analysis Date' - caption: Analysedatum - column 'Billing Base Period' - caption: Abrechnungsbasiszeitraum - column 'Invoicing Item No.' - caption: Rechnungsartikelnr. - column 'Customer Contract Line No.' - caption: Debitorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Total Contract Value LCY' - caption: Gesamtvertragswert (lokale Währung) - column 'Total Contract Value UBB LCY' - caption: Gesamtvertragswert UBB (lokale Währung) - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Vendor Contract Line' - caption: Kreditorenvertragszeile - column 'Subscription Line No.' - caption: Zusagezeilennr. - column Template - caption: Vorlage - column 'Vendor Contract Line Desc.' - caption: Kreditorenvertragszeilen-Beschreibung - column 'Subscription Start Date' - caption: Servicestartdatum - column 'Subscription End Date' - caption: Serviceenddatum - column 'Next Billing Date' - caption: Nächstes Abrechnungsdatum - column 'Monthly Recurring Cost LCY' - caption: Monatlich wiederkehrende Kosten (lokale Währung) - column 'Vendor Contract Line No.' - caption: Kreditorenvertragszeilennr. - column 'Notice Period' - caption: Kündigungsfrist - column 'Initial Term' - caption: Anfangslaufzeit - column 'Extension Term' - caption: Erweiterungsbedingung - column 'Billing Rhythm' - caption: Abrechnungsrhythmus - column 'Cancellation Possible Until' - caption: Stornierung möglich bis - column 'Term Until' - caption: Laufzeit bis - column 'Renewal Term' - caption: Verlängerungszeitraum - column 'Line Active' - caption: Zeile aktiv - column 'Remaining Term' - caption: Verbleibende Bedingung - column 'Billing Rhythm Months' - caption: Abrechnungsrhythmus (Monate) - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Is Latest Version' - caption: Ist neueste Version - column 'Is Usage Based Billing' - caption: Ist nutzungsbasierte Abrechnung - column 'Source Type' - caption: Herkunftsart - column 'Source No.' - caption: Herkunftsnr. - table 'Customer Contract Deferrals' - caption: Abgrenzungen von Debitorenverträgen - column 'Document Type' - caption: Belegtyp - column 'Document No.' - caption: Belegnummer - column 'Posting Date' - caption: Buchungsdatum - column 'Document Line No.' - caption: Belegzeilennr. - column 'Document Posting Date' - caption: Belegbuchungsdatum - column 'Release Posting Date' - caption: Buchungsdatum freigeben - column 'G LEntry No.' - caption: Sachposten-Nr. - table 'Customer Contract' - caption: Debitorenvertrag - column 'Customer Contract No.' - caption: Debitorenvertragsnr. - column 'Customer Contract Type' - caption: Debitorenvertragstyp - column 'Customer Contract Description' - caption: Debitorenvertragsbeschreibung - column 'Customer Contract No. Desc.' - caption: Beschreibung der Debitorenvertragsnr. - table 'Vendor Contract' - caption: Kreditorenvertrag - column 'Vendor Contract No.' - caption: Kreditorenvertragsnr. - column 'Vendor Contract Type' - caption: Kreditorenvertragstyp - column 'Vendor Contract Description' - caption: Kreditorenvertragsbeschreibung - column 'Vendor Contract No. Desc.' - caption: Beschreibung der Kreditorenvertragsnr. - table 'UBB handling' - caption: NBA-Verarbeitung - column 'Treat Usage Based Billing as constant' - caption: NBA als Konstante behandeln - table 'Is Released' - caption: Ist freigegeben - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnr. - column 'Item Name' - caption: Artikelname - column 'Item Category Code' - caption: Artikelkategoriencode - column 'Item Category Description' - caption: Beschreibung der Artikelkategorie - column 'Inventory Posting Group' - caption: Lagerbuchungsgruppe - column 'Base Unit of Measure' - caption: Basiseinheit - column 'Item No. & Description' - caption: Artikelnr. und -Beschreibung - table 'Analysis Date' - caption: Analysedatum - column 'Is Initial Version' - caption: Ist ursprüngliche Version - column 'Is Current Version' - caption: Ist aktuelle Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - column Perspective - caption: Perspektive - table 'Subscription Billing KPIs' - caption: Subscription Billing-KPIs - measure 'Mon. Recurring Revenue' - caption: MWU - measure 'Mon. Recurring Cost' - caption: MWK - measure 'Customer Deferrals' - caption: Debitorenabgrenzungen - measure 'Vendor Deferrals' - caption: Kreditorenabgrenzungen - measure 'Annual Recurring Revenue' - caption: DBUCH - measure 'Total Contract Value' - caption: GVW - measure 'Count Cust. Deferrals' - caption: Anzahl Kundenrückstellungen - measure 'Count Vend. Deferrals' - caption: Anzahl Lieferantenrückstellungen - measure 'Forecast Sales' - caption: Planungsverkäufe - measure 'Mon. Recurring Cost PY' - caption: MWK VJ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MWK Δ gegenüber VJ - measure 'Mon. Recurring Revenue Churn' - caption: Mon. wiederkehrende Umsätze Abwanderung - measure 'Mon. Recurring Revenue PY' - caption: MWU VJ - measure 'Mon. Recurring Revenue New' - caption: Mon. wiederkehrende Umsätze Neu - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. wiederkehrende Umsätze Δ gegenüber VJ - measure 'Mon. Net Profit Amount' - caption: NMWU - measure 'Mon. Net Profit %' - caption: NMWU % der MWU - measure 'Mon. Net Profit PY' - caption: NMWU VJ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMWU Δ gegenüber VJ - measure 'Change in Mon. Recurring Revenue' - caption: MWU-Gesamtveränderung - measure 'Total Contract Value PY' - caption: GVW VJ - measure 'Total Contract Value Δ vs. PY' - caption: GVW Δ gegenüber VJ - measure 'Last Update Analysis Entries' - caption: Letzte Aktualisierung Analyseposten - measure 'Last Update Semantic Model' - caption: Letzte Aktualisierung des semantischen Modells - measure 'Param Environment' - caption: Parameterumgebung - measure 'Param Company' - caption: Paramater Mandant - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. wiederkehrende Umsätze Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. wiederkehrende Umsätze NBA-Änderung - measure 'Reporting Currency' - caption: Berichtswährung - measure 'Active Customers' - caption: Aktive Debitoren - measure 'Active Customers PY' - caption: Aktive Debitoren VJ - measure 'Active Customers Δ vs. PY' - caption: Aktive Debitoren Δ gegenüber VJ - measure 'Base KPI Customer Billing Forecast' - caption: Grund-KPI Kundenabrechnungsprognose - measure 'Base KPI Customer Billing Forecast UBB' - caption: Grund-KPI Kundenabrechnungsprognose UBB - measure 'Customer Billing Forecast' - caption: Debitorenabrechnungsplanung - measure 'Base KPI ARR UBB handling' - caption: Grund-KPI ARR UBB-Verarbeitung - measure 'Base KPI TCV UBB handling' - caption: Grund-KPI Gesamtvertragswert UBB-Verarbeitung - measure 'Base KPI Customer Billing Forecast UBB handling' - caption: Grund-KPI Kundenabrechnungsprognose UBB-Verarbeitung - measure 'Base KPI Vendor Billing Forecast' - caption: Grund-KPI Lieferantenabrechnungsprognose - measure 'Base KPI Vendor Billing Forecast UBB' - caption: Grund-KPI Lieferantenabrechnungsprognose UBB - measure 'Base KPI Vendor Billing Forecast UBB handling' - caption: Grund-KPI Lieferantenabrechnungsprognose UBB-Verarbeitung - measure 'Vendor Billing Forecast' - caption: Kreditorenabrechnungsplanung - measure 'Forecast Costs' - caption: Geplante Kosten - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. wiederkehrende Umsätze Downgrade - measure 'Churn (-)' - caption: Abwanderung - measure 'Downgrade (-)' - caption: Downgrade - measure 'Usage Based Billing Change' - caption: Änderung der nutzungsbasierten Abrechnung - measure Upgrade - caption: Upgrade - measure New - caption: Neu - measure 'Total Change' - caption: Gesamtänderung - measure 'Selected Date Range' - caption: Ausgewählter Datumsbereich - measure 'Avg. Mon. Churn Rate %' - caption: Durchschn. mon. Abwanderungsrate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Durchschn. mon. Downgraderate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table Salesperson - caption: Verkäufer - column 'Salesperson Code' - caption: Verkäufercode - column 'Salesperson Name' - caption: Verkäufername - table 'Customer Contract Changes' - caption: Änderungen des Debitorenvertrags - column 'Customer Contract Line Key' - caption: Debitorenvertragszeilen-Schlüssel - column Date - caption: Datum - column 'Change Type' - caption: Typ ändern - column 'MRR Delta' - caption: MWU-Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-AU.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-AU.tmdl deleted file mode 100644 index c4179d9223..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-AU.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo en-AU - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - column id - caption: id - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - table 'Meta Information' - caption: COMPANY - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-CA.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-CA.tmdl deleted file mode 100644 index 97735a5b26..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-CA.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo en-CA - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - column id - caption: id - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postal/ZIP Code - column State - caption: Province/State - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postal/ZIP Code - column State - caption: Province/State - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - table 'Meta Information' - caption: COMPANY - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-GB.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-GB.tmdl deleted file mode 100644 index 5abbbbda10..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-GB.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo en-GB - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - column id - caption: id - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: County - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: County - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - table 'Meta Information' - caption: COMPANY - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-NZ.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-NZ.tmdl deleted file mode 100644 index 5997ba1af5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-NZ.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo en-NZ - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - column id - caption: id - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Postcode - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - table 'Meta Information' - caption: COMPANY - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-US.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-US.tmdl deleted file mode 100644 index 4b73ee8375..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/en-US.tmdl +++ /dev/null @@ -1,8755 +0,0 @@ -cultureInfo en-US - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - table 'Date Ref' - caption: Sequential 365 Day Number - column Sequential365DayNumber - caption: Sequential 365 DayNumber - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Post Code - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Post Code - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - measure 'Total Contract Value by Package' - caption: Total Contract Value by Package - measure 'Mon. Recurring Revenue by Package' - caption: Mon. Recurring Revenue by Package - measure 'Churn by Customer' - caption: Churn by Customer - measure 'Profitability by Item' - caption: Profitability by Item - measure 'Mon. Recurring Revenue by Customer Location' - caption: Mon. Recurring Revenue by Customer Location - measure 'Profitability by Salesperson' - caption: Profitability by Salesperson - measure 'Total Contract Value by Salesperson' - caption: Total Contract Value by Salesperson - measure 'Customer Deferrals by Released Status' - caption: Customer Deferrals by Released Status - measure 'Vendor Deferrals by Released Status' - caption: Vendor Deferrals by Released Status - measure 'Billing Forecast by Billing Period, Vendor and Contract No.' - caption: Billing Forecast by Billing Period, Vendor and Contract No. - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column Amount - caption: Amount - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Analysis Date' - caption: Analysis Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Total Contract Value LCY' - caption: Total Contract Value LCY - column 'Total Contract Value UBB LCY' - caption: Total Contract Value UBB LCY - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Monthly Recurring Cost LCY' - caption: Monthly Recurring Cost LCY - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Count Cust. Deferrals' - caption: Count Cust. Deferrals - measure 'Count Vend. Deferrals' - caption: Count Vend. Deferrals - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Base KPI Customer Billing Forecast' - caption: Base KPI Customer Billing Forecast - measure 'Base KPI Customer Billing Forecast UBB' - caption: Base KPI Customer Billing Forecast UBB - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Base KPI ARR UBB handling' - caption: Base KPI ARR UBB handling - measure 'Base KPI TCV UBB handling' - caption: Base KPI TCV UBB handling - measure 'Base KPI Customer Billing Forecast UBB handling' - caption: Base KPI Customer Billing Forecast UBB handling - measure 'Base KPI Vendor Billing Forecast' - caption: Base KPI Vendor Billing Forecast - measure 'Base KPI Vendor Billing Forecast UBB' - caption: Base KPI Vendor Billing Forecast UBB - measure 'Base KPI Vendor Billing Forecast UBB handling' - caption: Base KPI Vendor Billing Forecast UBB handling - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Churn (-)' - caption: Churn - measure 'Downgrade (-)' - caption: Downgrade - measure 'Usage Based Billing Change' - caption: Usage Based Billing Change - measure Upgrade - caption: Upgrade - measure New - caption: New - measure 'Total Change' - caption: Total Change - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - - linguisticMetadata = - { - "Version": "2.0.0", - "Language": "en-US", - "Entities": { - "customer": { - "Definition": { - "Binding": { - "ConceptualEntity": "Customers" - } - }, - "State": "Generated", - "Terms": [ - { - "customer": { - "State": "Generated" - } - }, - { - "client": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "consumer": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "user": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "buyer": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "patron": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "purchaser": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - }, - { - "shopper": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - } - ] - }, - "date": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref" - } - }, - "State": "Generated", - "Terms": [ - { - "date": { - "State": "Generated", - "Weight": 0.87 - } - }, - { - "moment": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - } - ] - }, - "date.current_date_range": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Current Date Range" - } - }, - "State": "Generated", - "Terms": [ - { - "current date range": { - "State": "Generated" - } - }, - { - "date range": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "current moment range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.609 - } - }, - { - "moment range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.6 - } - }, - { - "latest date range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.591 - } - }, - { - "contemporary date range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.591 - } - }, - { - "present date range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.591 - } - }, - { - "current period range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.591 - } - }, - { - "period range": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.582 - } - }, - { - "current date variety": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.508 - } - }, - { - "current date series": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.508 - } - }, - { - "current date assortment": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.508 - } - } - ] - }, - "date.date": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Date" - } - }, - "State": "Generated", - "Terms": [ - { - "date": { - "State": "Generated" - } - }, - { - "moment": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.736 - } - } - ], - "SemanticType": "Time" - }, - "date.date_key": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "DateKey" - } - }, - "State": "Generated", - "Terms": [ - { - "date key": { - "State": "Generated" - } - }, - { - "DateKey": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - }, - { - "key": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "moment key": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.6 - } - }, - { - "period key": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.582 - } - }, - { - "main": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "basic": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "fundamental": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "central": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "major": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "keynote": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "essential": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "date solution": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.475 - } - } - ] - }, - "date.date_with_transactions": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Data Range Analysis" - } - }, - "State": "Generated", - "Hidden": true, - "Terms": [ - { - "date with transactions": { - "State": "Generated" - } - }, - { - "date with transaction": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.78 - } - }, - { - "DatesWithTransactions": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - }, - { - "moment with transaction": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.762 - } - }, - { - "period with transaction": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.739 - } - } - ] - }, - "date.day_of_month": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Day of Month" - } - }, - "State": "Generated", - "Terms": [ - { - "day of month": { - "State": "Generated" - } - }, - { - "day of mth": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.609 - } - } - ] - }, - "date.day_type": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Day Type" - } - }, - "State": "Generated", - "Terms": [ - { - "day type": { - "State": "Generated" - } - }, - { - "day category": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.75 - } - }, - { - "day genre": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.75 - } - }, - { - "day manner": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.75 - } - }, - { - "day variety": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.75 - } - }, - { - "day brand": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "day class": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "day kind": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "day style": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "day form": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "day grouping": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - } - ] - }, - "date.holiday_name": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Holiday Name" - } - }, - "State": "Generated", - "Terms": [ - { - "holiday name": { - "State": "Generated" - } - }, - { - "holiday": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "holiday nickname": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "holiday title": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "holiday label": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "holiday tag": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - }, - { - "break": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "leave": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "trip": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "outing": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "vacation": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.452 - } - }, - { - "sabbatical": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.452 - } - } - ] - }, - "date.is_working_day": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "IsWorkingDay" - } - }, - "State": "Generated", - "Terms": [ - { - "is working day": { - "State": "Generated" - } - }, - { - "IsWorkingDay": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - } - ] - }, - "date.no__of_days": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "No. of Days" - } - }, - "State": "Generated", - "Terms": [ - { - "no. of days": { - "State": "Generated" - } - }, - { - "number . of day": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.599 - } - } - ] - }, - "date.sequential_365_day_number": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Sequential365DayNumber" - } - }, - "State": "Generated", - "Terms": [ - { - "sequential 365 day number": { - "State": "Generated" - } - }, - { - "Sequential365DayNumber": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - }, - { - "day number": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "365 day number": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "sequential 365 day no": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.748 - } - }, - { - "365 day no": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.739 - } - }, - { - "day no": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - } - ] - }, - "date.show_value_for_dates": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "ShowValueForDates" - } - }, - "State": "Generated", - "Hidden": true, - "Terms": [ - { - "show value for dates": { - "State": "Generated" - } - }, - { - "ShowValueForDates": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - }, - { - "value": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "show value": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "show assessment for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.514 - } - }, - { - "show assessment": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "show worth for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.499 - } - }, - { - "show price for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.499 - } - }, - { - "show cost for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.499 - } - }, - { - "show charge for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.499 - } - }, - { - "show rate for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.499 - } - }, - { - "assessment": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "show importance for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.489 - } - }, - { - "show significance for date": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.489 - } - } - ] - }, - "date.week_day": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "Week Day" - } - }, - "State": "Generated", - "Terms": [ - { - "week day": { - "State": "Generated" - } - } - ] - }, - "date.week_day_number": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Ref", - "ConceptualProperty": "WeekDayNumber" - } - }, - "State": "Generated", - "Terms": [ - { - "week day number": { - "State": "Generated" - } - }, - { - "WeekDayNumber": { - "Type": "Noun", - "State": "Generated", - "Weight": 0.99 - } - }, - { - "day number": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "week day no": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.739 - } - }, - { - "day no": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.727 - } - } - ] - }, - "date_setup": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - } - }, - "State": "Generated", - "Terms": [ - { - "date setup": { - "State": "Generated" - } - }, - { - "setup": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "moment setup": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.6 - } - }, - { - "period setup": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.582 - } - }, - { - "date arrangement": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "date system": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "date situation": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "date operation": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "date framework": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "date organization": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.5 - } - }, - { - "arrangement": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "system": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - } - ] - }, - "date_setup.first_day_of_week": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date Table Setup", - "ConceptualProperty": "First Day of Week" - } - }, - "State": "Generated", - "Terms": [ - { - "first day of week": { - "State": "Generated" - } - }, - { - "first day": { - "State": "Generated", - "Weight": 0.97 - } - } - ] - }, - "dimension_set": { - "Definition": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - } - }, - "State": "Generated", - "Terms": [ - { - "dimension set": { - "State": "Generated" - } - }, - { - "set": { - "State": "Generated", - "Weight": 0.97 - } - }, - { - "usual": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "regular": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.476 - } - }, - { - "firm": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.452 - } - }, - { - "solid": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.452 - } - } - ] - }, - "vendor": { - "Definition": { - "Binding": { - "ConceptualEntity": "Vendors" - } - }, - "State": "Generated", - "Terms": [ - { - "vendor": { - "State": "Generated" - } - }, - { - "seller": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "salesperson": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "retailer": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "wholesaler": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "dealer": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "hawker": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "purveyor": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "trader": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "peddler": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - }, - { - "supplier": { - "Type": "Noun", - "State": "Suggested", - "Source": { - "Agent": "OfficeThesaurus" - }, - "Weight": 0.491 - } - } - ] - }, - "working_day": { - "Definition": { - "Binding": { - "ConceptualEntity": "Working Days" - } - }, - "State": "Generated", - "Terms": [ - { - "working day": { - "State": "Generated" - } - } - ] - }, - "customer_ledger_entries.dcle_initial_entry_due_date": { - "Definition": { - "Binding": { - "ConceptualEntity": "Customer Ledger Entries", - "ConceptualProperty": "DCLE Initial Entry Due Date" - } - }, - "State": "Generated" - }, - "customer_ledger_entries.dcle_entry_no_": { - "Definition": { - "Binding": { - "ConceptualEntity": "Customer Ledger Entries", - "ConceptualProperty": "DCLE Entry No." - } - }, - "State": "Generated" - }, - "tec_dummy_values.filter_dummy": { - "Definition": { - "Binding": { - "ConceptualEntity": "Tec Dummy Values", - "ConceptualProperty": "Filter dummy" - } - }, - "State": "Generated" - }, - "kpis.last_update_analysis_entries": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Last Update Analysis Entries" - } - }, - "State": "Generated" - }, - "kpis.last_update_semantic_model": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Last Update Semantic Model" - } - }, - "State": "Generated" - }, - "kpis.reporting_currency": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Reporting Currency" - } - }, - "State": "Generated" - }, - "kpis.mrr_churn_neg": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "MRR Churn (as negative Value)" - } - }, - "State": "Generated" - }, - "kpis.mrr_change_new": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "MRR Change New" - } - }, - "State": "Generated" - }, - "kpis.mrr_change_upgrade": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "MRR Change Upgrade" - } - }, - "State": "Generated" - }, - "kpis.mrr_change_downgrade": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "MRR Change Downgrade (as negative Value)" - } - }, - "State": "Generated" - }, - "kpis.mrr_py": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Mon. Recurring Revenue PY" - } - }, - "State": "Generated" - }, - "meta_information.param_environment": { - "Definition": { - "Binding": { - "ConceptualEntity": "Meta Information", - "ConceptualProperty": "Param Environment" - } - }, - "State": "Generated" - }, - "meta_information.param_company_name": { - "Definition": { - "Binding": { - "ConceptualEntity": "Meta Information", - "ConceptualProperty": "Param Company Name" - } - }, - "State": "Generated" - }, - "date.first_of_month": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date", - "ConceptualProperty": "First of month" - } - }, - "State": "Generated" - }, - "kpis.tcv_δ_vs__py": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Total Contract Value Δ vs. PY" - } - }, - "State": "Generated" - }, - "kpis.tcv": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Total Contract Value" - } - }, - "State": "Generated" - }, - "customer_contract_line.initial_term": { - "Definition": { - "Binding": { - "ConceptualEntity": "Customer Contract Line", - "ConceptualProperty": "Initial Term" - } - }, - "State": "Generated" - }, - "date.calendar_startofmonth": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date", - "ConceptualProperty": "Calendar StartOfMonth" - } - }, - "State": "Generated" - }, - "kpis.forecast_sales": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Forecast Sales" - } - }, - "State": "Generated" - }, - "item.item_name": { - "Definition": { - "Binding": { - "ConceptualEntity": "Item", - "ConceptualProperty": "Item Name" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.mrr": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Mon. Recurring Revenue" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.mrc": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Mon. Recurring Cost" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.nmrp": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Mon. Net Profit Amount" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.mrr_overall_change": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Change in Mon. Recurring Revenue" - } - }, - "State": "Generated" - }, - "fiscal_calendar_time_intelligence.sales_amount_pp_fiscal": { - "Definition": { - "Binding": { - "ConceptualEntity": "Fiscal Calendar Time Intelligence", - "ConceptualProperty": "Sales Amount PP (Fiscal)" - } - }, - "State": "Generated" - }, - "fiscal_calendar_time_intelligence.sales_amount_pop_fiscal": { - "Definition": { - "Binding": { - "ConceptualEntity": "Fiscal Calendar Time Intelligence", - "ConceptualProperty": "Sales Amount POP (Fiscal)" - } - }, - "State": "Generated" - }, - "fiscal_calendar_time_intelligence.sales_amount_pop__fiscal": { - "Definition": { - "Binding": { - "ConceptualEntity": "Fiscal Calendar Time Intelligence", - "ConceptualProperty": "Sales Amount POP % (Fiscal)" - } - }, - "State": "Generated" - }, - "fiscal_calendar_time_intelligence.sales_amount_avg_30d_fiscal": { - "Definition": { - "Binding": { - "ConceptualEntity": "Fiscal Calendar Time Intelligence", - "ConceptualProperty": "Sales Amount AVG 30D (Fiscal)" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.nmrp__of_mrr": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Mon. Net Profit %" - } - }, - "State": "Generated", - "Terms": [ - { - "Mon. Net Profit %": { - "State": "Suggested", - "Source": { - "Type": "External", - "Agent": "PowerBI.VisualColumnRename" - }, - "Weight": 0.9 - } - } - ] - }, - "subscription_billing_kpis.tcv_py": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Total Contract Value PY" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.mrr_change_ubb": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "MRR Change UBB" - } - }, - "State": "Generated" - }, - "subscription_billing_kpis.active_customers_δ_vs__py": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Active Customers Δ vs. PY" - } - }, - "State": "Generated" - }, - "vendor_contract_deferrals.document_line_no_": { - "Definition": { - "Binding": { - "ConceptualEntity": "Vendor Contract Deferrals", - "ConceptualProperty": "Document Line No." - } - }, - "State": "Generated", - "Terms": [ - { - "Line No.": { - "State": "Suggested", - "Source": { - "Type": "External", - "Agent": "PowerBI.VisualColumnRename" - }, - "Weight": 0.9 - } - } - ] - }, - "subscription_billing_kpis.active_customers": { - "Definition": { - "Binding": { - "ConceptualEntity": "Subscription Billing KPIs", - "ConceptualProperty": "Active Customers" - } - }, - "State": "Generated" - }, - "date.fiscal_month_year": { - "Definition": { - "Binding": { - "ConceptualEntity": "Date", - "ConceptualProperty": "Fiscal Month Year" - } - }, - "State": "Generated" - } - }, - "Relationships": { - "customer_has_address": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.address": { - "Target": { - "Entity": "customer.address" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.address" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_address_2": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.address_2": { - "Target": { - "Entity": "customer.address_2" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.address_2" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_city": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.city": { - "Target": { - "Entity": "customer.city" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.city" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_country_region_code": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.country_region_code": { - "Target": { - "Entity": "customer.country_region_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.country_region_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_county": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.county": { - "Target": { - "Entity": "customer.county" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.county" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_customer_disc_group": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.customer_disc_group": { - "Target": { - "Entity": "customer.customer_disc_group" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.customer_disc_group" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_customer_name": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.customer_name": { - "Target": { - "Entity": "customer.customer_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.customer_name" - } - }, - "State": "Generated", - "Weight": 0.99 - }, - { - "Name": { - "Subject": { - "Role": "customer" - }, - "Name": { - "Role": "customer.customer_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_customer_no": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.customer_no": { - "Target": { - "Entity": "customer.customer_no" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.customer_no" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_customer_posting_group": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.customer_posting_group": { - "Target": { - "Entity": "customer.customer_posting_group" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.customer_posting_group" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_customer_price_group": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.customer_price_group": { - "Target": { - "Entity": "customer.customer_price_group" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.customer_price_group" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_has_post_code": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.post_code": { - "Target": { - "Entity": "customer.post_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "customer" - }, - "Object": { - "Role": "customer.post_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_address": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.address": { - "Target": { - "Entity": "customer.address" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.address" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.address" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_address_2": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.address_2": { - "Target": { - "Entity": "customer.address_2" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.address_2" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.address_2" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_city": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.city": { - "Target": { - "Entity": "customer.city" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.city" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.city" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_country_region_code": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.country_region_code": { - "Target": { - "Entity": "customer.country_region_code" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.country_region_code" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.country_region_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_county": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.county": { - "Target": { - "Entity": "customer.county" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.county" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.county" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "customer_in_post_code": { - "Binding": { - "ConceptualEntity": "Customers" - }, - "State": "Generated", - "Roles": { - "customer": { - "Target": { - "Entity": "customer" - } - }, - "customer.post_code": { - "Target": { - "Entity": "customer.post_code" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "customer.post_code" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "customer" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "customer.post_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DatePreviousMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DatePreviousMonth": { - "Target": { - "Entity": "date.FW_DatePreviousMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DatePreviousMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DatePreviousQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DatePreviousQuarter": { - "Target": { - "Entity": "date.FW_DatePreviousQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DatePreviousQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DatePreviousWeek": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DatePreviousWeek": { - "Target": { - "Entity": "date.FW_DatePreviousWeek" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DatePreviousWeek" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DatePreviousYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DatePreviousYear": { - "Target": { - "Entity": "date.FW_DatePreviousYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DatePreviousYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DayOfMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DayOfMonthNumber": { - "Target": { - "Entity": "date.FW_DayOfMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DayOfMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DayOfQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DayOfQuarterNumber": { - "Target": { - "Entity": "date.FW_DayOfQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DayOfQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_DayOfYearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_DayOfYearNumber": { - "Target": { - "Entity": "date.FW_DayOfYearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_DayOfYearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_EndOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_EndOfMonth": { - "Target": { - "Entity": "date.FW_EndOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_EndOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_EndOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_EndOfQuarter": { - "Target": { - "Entity": "date.FW_EndOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_EndOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_EndOfWeek": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_EndOfWeek": { - "Target": { - "Entity": "date.FW_EndOfWeek" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_EndOfWeek" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_EndOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_EndOfYear": { - "Target": { - "Entity": "date.FW_EndOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_EndOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_MonthDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_MonthDay": { - "Target": { - "Entity": "date.FW_MonthDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_MonthDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_MonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_MonthNumber": { - "Target": { - "Entity": "date.FW_MonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_MonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_PeriodNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_PeriodNumber": { - "Target": { - "Entity": "date.FW_PeriodNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_PeriodNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_QuarterDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_QuarterDay": { - "Target": { - "Entity": "date.FW_QuarterDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_QuarterDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_QuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_QuarterNumber": { - "Target": { - "Entity": "date.FW_QuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_QuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_RelativeMonthPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_RelativeMonthPo": { - "Target": { - "Entity": "date.FW_RelativeMonthPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_RelativeMonthPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_RelativeQuarterPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_RelativeQuarterPo": { - "Target": { - "Entity": "date.FW_RelativeQuarterPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_RelativeQuarterPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_RelativeWeekPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_RelativeWeekPo": { - "Target": { - "Entity": "date.FW_RelativeWeekPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_RelativeWeekPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_RelativeYearPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_RelativeYearPo": { - "Target": { - "Entity": "date.FW_RelativeYearPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_RelativeYearPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_StartOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_StartOfMonth": { - "Target": { - "Entity": "date.FW_StartOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_StartOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_StartOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_StartOfQuarter": { - "Target": { - "Entity": "date.FW_StartOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_StartOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_StartOfWeek": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_StartOfWeek": { - "Target": { - "Entity": "date.FW_StartOfWeek" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_StartOfWeek" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_StartOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_StartOfYear": { - "Target": { - "Entity": "date.FW_StartOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_StartOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_WeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_WeekNumber": { - "Target": { - "Entity": "date.FW_WeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_WeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_YearDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_YearDay": { - "Target": { - "Entity": "date.FW_YearDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_YearDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_YearMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_YearMonthNumber": { - "Target": { - "Entity": "date.FW_YearMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_YearMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_YearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_YearNumber": { - "Target": { - "Entity": "date.FW_YearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_YearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_YearQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_YearQuarterNumber": { - "Target": { - "Entity": "date.FW_YearQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_YearQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_YearWeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_YearWeekNumber": { - "Target": { - "Entity": "date.FW_YearWeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_YearWeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_month": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_month": { - "Target": { - "Entity": "date.FW_month" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_month" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_month_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_month_year": { - "Target": { - "Entity": "date.FW_month_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_month_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_period": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_period": { - "Target": { - "Entity": "date.FW_period" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_period" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_quarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_quarter": { - "Target": { - "Entity": "date.FW_quarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_quarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_quarter_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_quarter_year": { - "Target": { - "Entity": "date.FW_quarter_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_quarter_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_week": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_week": { - "Target": { - "Entity": "date.FW_week" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_week" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_week_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_week_year": { - "Target": { - "Entity": "date.FW_week_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_week_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_FW_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.FW_year": { - "Target": { - "Entity": "date.FW_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.FW_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_activity_KPIs_average_collection_period": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "activity_KPIs.average_collection_period": { - "Target": { - "Entity": "activity_KPIs.average_collection_period" - } - }, - "date": { - "Target": { - "Entity": "date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "activity_KPIs.average_collection_period" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_activity_KPIs_cash_conversion_cycle__CCC": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "activity_KPIs.cash_conversion_cycle__CCC": { - "Target": { - "Entity": "activity_KPIs.cash_conversion_cycle__CCC" - } - }, - "date": { - "Target": { - "Entity": "date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "activity_KPIs.cash_conversion_cycle__CCC" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_activity_KPIs_days_payable_outstanding__DPO": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "activity_KPIs.days_payable_outstanding__DPO": { - "Target": { - "Entity": "activity_KPIs.days_payable_outstanding__DPO" - } - }, - "date": { - "Target": { - "Entity": "date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "activity_KPIs.days_payable_outstanding__DPO" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_activity_KPIs_days_sales_of_inventory__DSI": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "activity_KPIs.days_sales_of_inventory__DSI": { - "Target": { - "Entity": "activity_KPIs.days_sales_of_inventory__DSI" - } - }, - "date": { - "Target": { - "Entity": "date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "activity_KPIs.days_sales_of_inventory__DSI" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_activity_KPIs_days_sales_outstanding__DSO": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "activity_KPIs.days_sales_outstanding__DSO": { - "Target": { - "Entity": "activity_KPIs.days_sales_outstanding__DSO" - } - }, - "date": { - "Target": { - "Entity": "date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "activity_KPIs.days_sales_outstanding__DSO" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DatePreviousMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DatePreviousMonth": { - "Target": { - "Entity": "date.calendar_DatePreviousMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DatePreviousMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DatePreviousQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DatePreviousQuarter": { - "Target": { - "Entity": "date.calendar_DatePreviousQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DatePreviousQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DatePreviousWeek": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DatePreviousWeek": { - "Target": { - "Entity": "date.calendar_DatePreviousWeek" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DatePreviousWeek" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DatePreviousYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DatePreviousYear": { - "Target": { - "Entity": "date.calendar_DatePreviousYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DatePreviousYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DayOfMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DayOfMonthNumber": { - "Target": { - "Entity": "date.calendar_DayOfMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DayOfMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DayOfQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DayOfQuarterNumber": { - "Target": { - "Entity": "date.calendar_DayOfQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DayOfQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_DayOfYearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_DayOfYearNumber": { - "Target": { - "Entity": "date.calendar_DayOfYearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_DayOfYearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_EndOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_EndOfMonth": { - "Target": { - "Entity": "date.calendar_EndOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_EndOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_EndOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_EndOfQuarter": { - "Target": { - "Entity": "date.calendar_EndOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_EndOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_EndOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_EndOfYear": { - "Target": { - "Entity": "date.calendar_EndOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_EndOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_MonthDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_MonthDay": { - "Target": { - "Entity": "date.calendar_MonthDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_MonthDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_MonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_MonthNumber": { - "Target": { - "Entity": "date.calendar_MonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_MonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_QuarterDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_QuarterDay": { - "Target": { - "Entity": "date.calendar_QuarterDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_QuarterDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_QuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_QuarterNumber": { - "Target": { - "Entity": "date.calendar_QuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_QuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_RelativeMonthPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_RelativeMonthPo": { - "Target": { - "Entity": "date.calendar_RelativeMonthPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_RelativeMonthPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_RelativeQuarterPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_RelativeQuarterPo": { - "Target": { - "Entity": "date.calendar_RelativeQuarterPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_RelativeQuarterPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_RelativeWeekPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_RelativeWeekPo": { - "Target": { - "Entity": "date.calendar_RelativeWeekPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_RelativeWeekPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_RelativeYearPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_RelativeYearPo": { - "Target": { - "Entity": "date.calendar_RelativeYearPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_RelativeYearPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_StartOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_StartOfMonth": { - "Target": { - "Entity": "date.calendar_StartOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_StartOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_StartOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_StartOfQuarter": { - "Target": { - "Entity": "date.calendar_StartOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_StartOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_StartOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_StartOfYear": { - "Target": { - "Entity": "date.calendar_StartOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_StartOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_WeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_WeekNumber": { - "Target": { - "Entity": "date.calendar_WeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_WeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_WeekYearOrder": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_WeekYearOrder": { - "Target": { - "Entity": "date.calendar_WeekYearOrder" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_WeekYearOrder" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_YearDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_YearDay": { - "Target": { - "Entity": "date.calendar_YearDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_YearDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_YearMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_YearMonthNumber": { - "Target": { - "Entity": "date.calendar_YearMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_YearMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_YearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_YearNumber": { - "Target": { - "Entity": "date.calendar_YearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_YearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_YearQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_YearQuarterNumber": { - "Target": { - "Entity": "date.calendar_YearQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_YearQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_YearWeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_YearWeekNumber": { - "Target": { - "Entity": "date.calendar_YearWeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_YearWeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_month": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_month": { - "Target": { - "Entity": "date.calendar_month" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_month" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_month_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_month_year": { - "Target": { - "Entity": "date.calendar_month_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_month_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_quarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_quarter": { - "Target": { - "Entity": "date.calendar_quarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_quarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_quarter_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_quarter_year": { - "Target": { - "Entity": "date.calendar_quarter_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_quarter_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_week": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_week": { - "Target": { - "Entity": "date.calendar_week" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_week" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_week_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_week_year": { - "Target": { - "Entity": "date.calendar_week_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_week_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_calendar_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.calendar_year": { - "Target": { - "Entity": "date.calendar_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.calendar_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_current_date_range": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.current_date_range": { - "Target": { - "Entity": "date.current_date_range" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.current_date_range" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_date": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.date": { - "Target": { - "Entity": "date.date" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.date" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_date_key": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.date_key": { - "Target": { - "Entity": "date.date_key" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.date_key" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_day_of_month": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.day_of_month": { - "Target": { - "Entity": "date.day_of_month" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.day_of_month" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_day_type": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.day_type": { - "Target": { - "Entity": "date.day_type" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.day_type" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DatePreviousMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DatePreviousMonth": { - "Target": { - "Entity": "date.fiscal_DatePreviousMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DatePreviousMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DatePreviousQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DatePreviousQuarter": { - "Target": { - "Entity": "date.fiscal_DatePreviousQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DatePreviousQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DatePreviousWeek": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DatePreviousWeek": { - "Target": { - "Entity": "date.fiscal_DatePreviousWeek" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DatePreviousWeek" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DatePreviousYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DatePreviousYear": { - "Target": { - "Entity": "date.fiscal_DatePreviousYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DatePreviousYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DayOfMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DayOfMonthNumber": { - "Target": { - "Entity": "date.fiscal_DayOfMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DayOfMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DayOfQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DayOfQuarterNumber": { - "Target": { - "Entity": "date.fiscal_DayOfQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DayOfQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_DayOfYearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_DayOfYearNumber": { - "Target": { - "Entity": "date.fiscal_DayOfYearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_DayOfYearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_EndOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_EndOfMonth": { - "Target": { - "Entity": "date.fiscal_EndOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_EndOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_EndOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_EndOfQuarter": { - "Target": { - "Entity": "date.fiscal_EndOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_EndOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_EndOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_EndOfYear": { - "Target": { - "Entity": "date.fiscal_EndOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_EndOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_MonthDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_MonthDay": { - "Target": { - "Entity": "date.fiscal_MonthDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_MonthDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_MonthInQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_MonthInQuarterNumber": { - "Target": { - "Entity": "date.fiscal_MonthInQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_MonthInQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_MonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_MonthNumber": { - "Target": { - "Entity": "date.fiscal_MonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_MonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_QuarterDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_QuarterDay": { - "Target": { - "Entity": "date.fiscal_QuarterDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_QuarterDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_QuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_QuarterNumber": { - "Target": { - "Entity": "date.fiscal_QuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_QuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_RelativeMonthPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_RelativeMonthPo": { - "Target": { - "Entity": "date.fiscal_RelativeMonthPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_RelativeMonthPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_RelativeQuarterPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_RelativeQuarterPo": { - "Target": { - "Entity": "date.fiscal_RelativeQuarterPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_RelativeQuarterPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_RelativeWeekPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_RelativeWeekPo": { - "Target": { - "Entity": "date.fiscal_RelativeWeekPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_RelativeWeekPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_RelativeYearPo": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_RelativeYearPo": { - "Target": { - "Entity": "date.fiscal_RelativeYearPo" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_RelativeYearPo" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_StartOfMonth": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_StartOfMonth": { - "Target": { - "Entity": "date.fiscal_StartOfMonth" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_StartOfMonth" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_StartOfQuarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_StartOfQuarter": { - "Target": { - "Entity": "date.fiscal_StartOfQuarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_StartOfQuarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_StartOfYear": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_StartOfYear": { - "Target": { - "Entity": "date.fiscal_StartOfYear" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_StartOfYear" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_WeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_WeekNumber": { - "Target": { - "Entity": "date.fiscal_WeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_WeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_WeekYearOrder": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_WeekYearOrder": { - "Target": { - "Entity": "date.fiscal_WeekYearOrder" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_WeekYearOrder" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_YearDay": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_YearDay": { - "Target": { - "Entity": "date.fiscal_YearDay" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_YearDay" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_YearMonthNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_YearMonthNumber": { - "Target": { - "Entity": "date.fiscal_YearMonthNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_YearMonthNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_YearNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_YearNumber": { - "Target": { - "Entity": "date.fiscal_YearNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_YearNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_YearQuarterNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_YearQuarterNumber": { - "Target": { - "Entity": "date.fiscal_YearQuarterNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_YearQuarterNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_YearWeekNumber": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_YearWeekNumber": { - "Target": { - "Entity": "date.fiscal_YearWeekNumber" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_YearWeekNumber" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_month": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_month": { - "Target": { - "Entity": "date.fiscal_month" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_month" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_month_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_month_year": { - "Target": { - "Entity": "date.fiscal_month_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_month_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_quarter": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_quarter": { - "Target": { - "Entity": "date.fiscal_quarter" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_quarter" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_quarter_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_quarter_year": { - "Target": { - "Entity": "date.fiscal_quarter_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_quarter_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_week": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_week": { - "Target": { - "Entity": "date.fiscal_week" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_week" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_week_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_week_year": { - "Target": { - "Entity": "date.fiscal_week_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_week_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_fiscal_year": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.fiscal_year": { - "Target": { - "Entity": "date.fiscal_year" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.fiscal_year" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_holiday_name": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.holiday_name": { - "Target": { - "Entity": "date.holiday_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.holiday_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_is_working_day": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.is_working_day": { - "Target": { - "Entity": "date.is_working_day" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.is_working_day" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_no__of_days": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.no__of_days": { - "Target": { - "Entity": "date.no__of_days" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.no__of_days" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_sequential_365_day_number": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.sequential_365_day_number": { - "Target": { - "Entity": "date.sequential_365_day_number" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.sequential_365_day_number" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_week_day": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.week_day": { - "Target": { - "Entity": "date.week_day" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.week_day" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_has_week_day_number": { - "Binding": { - "ConceptualEntity": "Date Ref" - }, - "State": "Generated", - "Roles": { - "date": { - "Target": { - "Entity": "date" - } - }, - "date.week_day_number": { - "Target": { - "Entity": "date.week_day_number" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date" - }, - "Object": { - "Role": "date.week_day_number" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBIF_finance_date_tbl_end": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBIF_finance_date_tbl_end": { - "Target": { - "Entity": "date_setup.FSG_PBIF_finance_date_tbl_end" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBIF_finance_date_tbl_end" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBIF_finance_date_tbl_start": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBIF_finance_date_tbl_start": { - "Target": { - "Entity": "date_setup.FSG_PBIF_finance_date_tbl_start" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBIF_finance_date_tbl_start" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_F_calendar_first_month": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_F_calendar_first_month": { - "Target": { - "Entity": "date_setup.FSG_PBI_F_calendar_first_month" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_F_calendar_first_month" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_calendar_prefix": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_calendar_prefix": { - "Target": { - "Entity": "date_setup.FSG_PBI_calendar_prefix" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_calendar_prefix" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_calendar_range": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_calendar_range": { - "Target": { - "Entity": "date_setup.FSG_PBI_calendar_range" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_calendar_range" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_entry_no": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_entry_no": { - "Target": { - "Entity": "date_setup.FSG_PBI_entry_no" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_entry_no" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_first_day_of_week": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_first_day_of_week": { - "Target": { - "Entity": "date_setup.FSG_PBI_first_day_of_week" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_first_day_of_week" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_fiscal_gregorian_prefix": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_fiscal_gregorian_prefix": { - "Target": { - "Entity": "date_setup.FSG_PBI_fiscal_gregorian_prefix" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_fiscal_gregorian_prefix" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_fiscal_weekly_prefix": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_fiscal_weekly_prefix": { - "Target": { - "Entity": "date_setup.FSG_PBI_fiscal_weekly_prefix" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_fiscal_weekly_prefix" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_ignore_weekly_periods": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_ignore_weekly_periods": { - "Target": { - "Entity": "date_setup.FSG_PBI_ignore_weekly_periods" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_ignore_weekly_periods" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_iso_country_holiday": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_iso_country_holiday": { - "Target": { - "Entity": "date_setup.FSG_PBI_iso_country_holiday" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_iso_country_holiday" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_quarter_week_type": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_quarter_week_type": { - "Target": { - "Entity": "date_setup.FSG_PBI_quarter_week_type" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_quarter_week_type" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_use_custom_fiscl_period": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_use_custom_fiscl_period": { - "Target": { - "Entity": "date_setup.FSG_PBI_use_custom_fiscl_period" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_use_custom_fiscl_period" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_FSG_PBI_weekly_type": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_weekly_type": { - "Target": { - "Entity": "date_setup.FSG_PBI_weekly_type" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.FSG_PBI_weekly_type" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_has_first_day_of_week": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.first_day_of_week": { - "Target": { - "Entity": "date_setup.first_day_of_week" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "date_setup" - }, - "Object": { - "Role": "date_setup.first_day_of_week" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "date_setup_in_FSG_PBI_iso_country_holiday": { - "Binding": { - "ConceptualEntity": "Date Table Setup" - }, - "State": "Generated", - "Roles": { - "date_setup": { - "Target": { - "Entity": "date_setup" - } - }, - "date_setup.FSG_PBI_iso_country_holiday": { - "Target": { - "Entity": "date_setup.FSG_PBI_iso_country_holiday" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "date_setup.FSG_PBI_iso_country_holiday" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "date_setup" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "date_setup.FSG_PBI_iso_country_holiday" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_customergroup": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.customergroup": { - "Target": { - "Entity": "dimension_set.customergroup" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.customergroup" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_department": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.department": { - "Target": { - "Entity": "dimension_set.department" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.department" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_1_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_1_value_name": { - "Target": { - "Entity": "dimension_set.dimension_1_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_1_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_2_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_2_value_name": { - "Target": { - "Entity": "dimension_set.dimension_2_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_2_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_3_value_code": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_3_value_code": { - "Target": { - "Entity": "dimension_set.dimension_3_value_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_3_value_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_3_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_3_value_name": { - "Target": { - "Entity": "dimension_set.dimension_3_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_3_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_4_value_code": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_4_value_code": { - "Target": { - "Entity": "dimension_set.dimension_4_value_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_4_value_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_4_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_4_value_name": { - "Target": { - "Entity": "dimension_set.dimension_4_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_4_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_5_value_code": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_5_value_code": { - "Target": { - "Entity": "dimension_set.dimension_5_value_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_5_value_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_5_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_5_value_name": { - "Target": { - "Entity": "dimension_set.dimension_5_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_5_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_6_value_code": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_6_value_code": { - "Target": { - "Entity": "dimension_set.dimension_6_value_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_6_value_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_6_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_6_value_name": { - "Target": { - "Entity": "dimension_set.dimension_6_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_6_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_7_value_code": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_7_value_code": { - "Target": { - "Entity": "dimension_set.dimension_7_value_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_7_value_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_7_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_7_value_name": { - "Target": { - "Entity": "dimension_set.dimension_7_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_7_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "dimension_set_has_dimension_8_value_name": { - "Binding": { - "ConceptualEntity": "Dimension Sets" - }, - "State": "Generated", - "Roles": { - "dimension_set": { - "Target": { - "Entity": "dimension_set" - } - }, - "dimension_set.dimension_8_value_name": { - "Target": { - "Entity": "dimension_set.dimension_8_value_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "dimension_set" - }, - "Object": { - "Role": "dimension_set.dimension_8_value_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_address": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.address": { - "Target": { - "Entity": "vendor.address" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.address" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_address_2": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.address_2": { - "Target": { - "Entity": "vendor.address_2" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.address_2" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_city": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.city": { - "Target": { - "Entity": "vendor.city" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.city" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_country_region_code": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.country_region_code": { - "Target": { - "Entity": "vendor.country_region_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.country_region_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_county": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.county": { - "Target": { - "Entity": "vendor.county" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.county" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_post_code": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.post_code": { - "Target": { - "Entity": "vendor.post_code" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.post_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_vendor_name": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.vendor_name": { - "Target": { - "Entity": "vendor.vendor_name" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.vendor_name" - } - }, - "State": "Generated", - "Weight": 0.99 - }, - { - "Name": { - "Subject": { - "Role": "vendor" - }, - "Name": { - "Role": "vendor.vendor_name" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_vendor_no": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.vendor_no": { - "Target": { - "Entity": "vendor.vendor_no" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.vendor_no" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_has_vendor_posting_group": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.vendor_posting_group": { - "Target": { - "Entity": "vendor.vendor_posting_group" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "vendor" - }, - "Object": { - "Role": "vendor.vendor_posting_group" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_address": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.address": { - "Target": { - "Entity": "vendor.address" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.address" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.address" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_address_2": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.address_2": { - "Target": { - "Entity": "vendor.address_2" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.address_2" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.address_2" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_city": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.city": { - "Target": { - "Entity": "vendor.city" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.city" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.city" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_country_region_code": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.country_region_code": { - "Target": { - "Entity": "vendor.country_region_code" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.country_region_code" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.country_region_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_county": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.county": { - "Target": { - "Entity": "vendor.county" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.county" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.county" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_in_post_code": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - }, - "vendor.post_code": { - "Target": { - "Entity": "vendor.post_code" - } - } - }, - "SemanticSlots": { - "Where": { - "Role": "vendor.post_code" - } - }, - "Phrasings": [ - { - "Preposition": { - "Subject": { - "Role": "vendor" - }, - "Prepositions": [ - { - "in": { - "State": "Generated" - } - } - ], - "Object": { - "Role": "vendor.post_code" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - }, - "vendor_vend": { - "Binding": { - "ConceptualEntity": "Vendors" - }, - "State": "Generated", - "Roles": { - "vendor": { - "Target": { - "Entity": "vendor" - } - } - }, - "Phrasings": [ - { - "Verb": { - "Subject": { - "Role": "vendor" - }, - "Verbs": [ - { - "vend": { - "State": "Generated" - } - } - ] - }, - "State": "Generated", - "Weight": 0.75 - } - ] - }, - "working_day_has_FSG_PBI_day_number": { - "Binding": { - "ConceptualEntity": "Working Days" - }, - "State": "Generated", - "Roles": { - "working_day": { - "Target": { - "Entity": "working_day" - } - }, - "working_day.FSG_PBI_day_number": { - "Target": { - "Entity": "working_day.FSG_PBI_day_number" - } - } - }, - "Phrasings": [ - { - "Attribute": { - "Subject": { - "Role": "working_day" - }, - "Object": { - "Role": "working_day.FSG_PBI_day_number" - } - }, - "State": "Generated", - "Weight": 0.99 - } - ] - } - } - } - contentType: json - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-ES.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-ES.tmdl deleted file mode 100644 index ed7b7509fd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-ES.tmdl +++ /dev/null @@ -1,834 +0,0 @@ -cultureInfo es-ES - translations - model Model - table 'Dimension Sets' - caption: Grupos de dimensiones - column 'Global Dimension 1' - caption: Dimensión global 1 - column 'Global Dimension 2' - caption: Dimensión global 2 - column 'Shortcut Dimension 3' - caption: Dim. acceso dir. 3 - column 'Shortcut Dimension 4' - caption: Dim. acceso dir. 4 - column 'Shortcut Dimension 5' - caption: Dim. acceso dir. 5 - column 'Shortcut Dimension 6' - caption: Dim. acceso dir. 6 - column 'Shortcut Dimension 7' - caption: Dim. acceso dir. 7 - column 'Shortcut Dimension 8' - caption: Dim. acceso dir. 8 - column id - caption: id. - table Vendors - caption: Proveedores - column 'Vendor No.' - caption: N.º proveedor - column 'Vendor Name' - caption: Nombre de proveedor - column Address - caption: Dirección - column 'Address 2' - caption: Dirección 2 - column City - caption: Ciudad - column 'Post Code' - caption: Código postal - column State - caption: Provincia - column 'Country/Region Code' - caption: Código de país o región - column 'Vendor Posting Group' - caption: Grupo contable proveedor - column 'Vendor No. & Name' - caption: N.º y nombre de proveedor - table Customers - caption: Clientes - column 'Customer No.' - caption: N.º de cliente - column 'Customer Name' - caption: Nombre de cliente - column Address - caption: Dirección - column 'Address 2' - caption: Dirección 2 - column City - caption: Ciudad - column 'Post Code' - caption: Código postal - column State - caption: Provincia - column 'Country/Region Code' - caption: Código de país o región - column 'Customer Posting Group' - caption: Grupo contable cliente - column 'Customer Price Group' - caption: Grupo de precio de cliente - column 'Customer Discount Group' - caption: Grupo de descuento de cliente - column 'Customer No. & Name' - caption: Nombre y n.º de cliente - table Date - caption: Fecha - column Date - caption: Fecha - column 'Week Day' - caption: Día de la semana - column 'Day Type' - caption: Tipo de pago - column 'Calendar Year' - caption: Año natural - displayFolder: _Standard Calendario - column 'Calendar Quarter' - caption: Trimestre natural - displayFolder: _Standard Calendario - column 'Calendar Quarter Year' - caption: Trimestre año natural - displayFolder: _Standard Calendario - column 'Calendar Month' - caption: Mes natural - displayFolder: _Standard Calendario - column 'Calendar Month Year' - caption: Mes año natural - displayFolder: _Standard Calendario - column 'Calendar Week' - caption: Semana natural - displayFolder: _Standard Calendario - column 'Calendar Week Year' - caption: Semana año natural - displayFolder: _Standard Calendario - column 'Calendar WeekYearOrder' - displayFolder: _Standard Calendario - column 'Calendar RelativeWeekPos' - caption: PosSemanaRelativa natural - displayFolder: _Standard Calendario - column 'Calendar RelativeMonthPos' - caption: PosMesRelativa natural - displayFolder: _Standard Calendario - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelativa natural - displayFolder: _Standard Calendario - column 'Calendar RelativeYearPos' - caption: PosAñoRelativa natural - displayFolder: _Standard Calendario - column 'Calendar StartOfMonth' - caption: InicioDeMes natural - displayFolder: _Standard Calendario - column 'Calendar EndOfMonth' - caption: FinDeMes natural - displayFolder: _Standard Calendario - column 'Calendar StartOfQuarter' - caption: InicioDeTrimestre natural - displayFolder: _Standard Calendario - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre natural - displayFolder: _Standard Calendario - column 'Calendar StartOfYear' - caption: InicioDeAño natural - displayFolder: _Standard Calendario - column 'Calendar EndOfYear' - caption: FinDeAño natural - displayFolder: _Standard Calendario - column 'Calendar MonthDays' - caption: DíasMes natural - displayFolder: _Standard Calendario - column 'Calendar QuarterDays' - caption: TrimestreDías natural - displayFolder: _Standard Calendario - column 'Calendar YearDays' - caption: AñoDías natural - displayFolder: _Standard Calendario - column 'Calendar DayOfMonthNumber' - caption: NúmeroDeDíaDeMes natural - displayFolder: _Standard Calendario - column 'Calendar DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre natural - displayFolder: _Standard Calendario - column 'Calendar DayOfYearNumber' - caption: NúmeroDeDíaDeAño natural - displayFolder: _Standard Calendario - column 'Calendar DatePreviousWeek' - caption: FechaSemanaAnterior natural - displayFolder: _Standard Calendario - column 'Calendar DatePreviousMonth' - caption: FechaMesAnterior natural - displayFolder: _Standard Calendario - column 'Calendar DatePreviousQuarter' - caption: FechaTrimestreAnterior natural - displayFolder: _Standard Calendario - column 'Calendar DatePreviousYear' - caption: FechaAñoAnterior natural - displayFolder: _Standard Calendario - column 'Fiscal Year' - caption: Ejercicio - displayFolder: _Fiscal Calendario - column 'Fiscal Quarter' - caption: Trimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal Quarter Year' - caption: Año trimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal MonthInQuarterNumber' - displayFolder: _Fiscal Calendario - column 'Fiscal Month' - caption: Mes fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal Month Year' - caption: Mes año fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal Week' - caption: Semana fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal Week Year' - caption: Semana año fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal WeekYearOrder' - displayFolder: _Fiscal Calendario - column 'Fiscal RelativeWeekPos' - caption: PosSemanaRelativa fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal RelativeMonthPos' - caption: PosMesRelativa fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelativa fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal RelativeYearPos' - caption: PosAñoRelativa fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal StartOfMonth' - caption: InicioDeMes fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal EndOfMonth' - caption: FinDeMes fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal StartOfQuarter' - caption: InicioDeTrimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal EndOfQuarter' - caption: FinDeTrimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal StartOfYear' - caption: InicioDeAño fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal EndOfYear' - caption: FinDeAño fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal MonthDays' - caption: MesDías fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal QuarterDays' - caption: DíasTrimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal YearDays' - caption: AñoDías fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DayOfMonthNumber' - caption: NúmeroDeDíaDeMes fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DayOfYearNumber' - caption: NúmeroDíaAño fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DatePreviousWeek' - caption: FechaSemanaAnterior fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DatePreviousMonth' - caption: FechaMesAnterior fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DatePreviousQuarter' - caption: FechaTrimestreAnterior fiscal - displayFolder: _Fiscal Calendario - column 'Fiscal DatePreviousYear' - caption: FechaAñoAnterior fiscal - displayFolder: _Fiscal Calendario - column 'FW Year' - caption: Año SF - displayFolder: _Weekly Calendario - column 'FW Quarter' - caption: Trimestre SF - displayFolder: _Weekly Calendario - column 'FW Quarter Year' - caption: Trimestre año SF - displayFolder: _Weekly Calendario - column 'FW Month' - caption: Mes SF - displayFolder: _Weekly Calendario - column 'FW Month Year' - caption: Mes año SF - displayFolder: _Weekly Calendario - column 'FW Week' - caption: Semana SF - displayFolder: _Weekly Calendario - column 'FW Period' - caption: Periodo SF - displayFolder: _Weekly Calendario - column 'FW Week Year' - caption: Semana año SF - displayFolder: _Weekly Calendario - column 'FW StartOfWeek' - caption: InicioDeSemana SF - displayFolder: _Weekly Calendario - column 'FW EndOfWeek' - caption: FinDeSemana SF - displayFolder: _Weekly Calendario - column 'FW RelativeWeekPos' - caption: PosSemanaRelativa SF - displayFolder: _Weekly Calendario - column 'FW RelativeMonthPos' - caption: PosMesRelativa SF - displayFolder: _Weekly Calendario - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelativa SF - displayFolder: _Weekly Calendario - column 'FW RelativeYearPos' - caption: PosAñoRelativa SF - displayFolder: _Weekly Calendario - column 'FW StartOfMonth' - caption: InicioDeMes SF - displayFolder: _Weekly Calendario - column 'FW EndOfMonth' - caption: FinDeMes SF - displayFolder: _Weekly Calendario - column 'FW StartOfQuarter' - caption: InicioDeTrimestre SF - displayFolder: _Weekly Calendario - column 'FW EndOfQuarter' - caption: FinDeTrimestre SF - displayFolder: _Weekly Calendario - column 'FW StartOfYear' - caption: InicioDeAño SF - displayFolder: _Weekly Calendario - column 'FW EndOfYear' - caption: FinDeAño SF - displayFolder: _Weekly Calendario - column 'FW MonthDays' - caption: MesDías FS - displayFolder: _Weekly Calendario - column 'FW QuarterDays' - caption: DíasTrimestre SF - displayFolder: _Weekly Calendario - column 'FW YearDays' - caption: DíasAño SF - displayFolder: _Weekly Calendario - column 'FW DayOfMonthNumber' - caption: NúmeroDeDíaDeMes SF - displayFolder: _Weekly Calendario - column 'FW DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre SF - displayFolder: _Weekly Calendario - column 'FW DayOfYearNumber' - caption: NúmerDeDíaDeAño SF - displayFolder: _Weekly Calendario - column 'FW DatePreviousWeek' - caption: FechaSemanaAnterior SF - displayFolder: _Weekly Calendario - column 'FW DatePreviousMonth' - caption: FechaMesAnterior SF - displayFolder: _Weekly Calendario - column 'FW DatePreviousQuarter' - caption: FechaTrimestreAnterior SF - displayFolder: _Weekly Calendario - column 'FW DatePreviousYear' - caption: Fecha AñoAnterior SF - displayFolder: _Weekly Calendario - column 'Relative Day' - caption: Día relativo - column Sequential365DayNumber - caption: NúmeroDía 365 secuencial - column 'Data Range Deferrals' - caption: Fraccionamientos intervalo datos - measure 'No. of Days' - caption: N.º días - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana fiscal - displayFolder: _Fiscal Calendario - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Quarter Year' - caption: Año trimestre fiscal - level 'Fiscal Month Year' - caption: Mes año fiscal - level 'Fiscal Week Year' - caption: Semana año fiscal - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana natural - displayFolder: _Standard Calendario - level 'Calendar Year' - caption: Año natural - level 'Calendar Quarter Year' - caption: Trimestre año natural - level 'Calendar Month Year' - caption: Mes año natural - level 'Calendar Week Year' - caption: Semana año natural - hierarchy 'FW Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana SF - displayFolder: _Weekly Calendario - level 'FW Year' - caption: Año SF - level 'FW Quarter Year' - caption: Trimestre año SF - level 'FW Month Year' - caption: Mes año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'Fiscal Year-Month' - caption: Año-mes fiscal - displayFolder: _Fiscal Calendario - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Month Year' - caption: Mes año fiscal - hierarchy 'Fiscal Year-Month-Week' - caption: Año-Mes-Semana fiscal - displayFolder: _Fiscal Calendario - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Month Year' - caption: Mes año fiscal - level 'Fiscal Week Year' - caption: Semana año fiscal - hierarchy 'Calendar Year-Month' - caption: Año-mes natural - displayFolder: _Standard Calendario - level 'Calendar Year' - caption: Año natural - level 'Calendar Month Year' - caption: Mes año natural - hierarchy 'Calendar Year-Month-Week' - caption: Año-Mes-Semana natural - displayFolder: _Standard Calendario - level 'Calendar Year' - caption: Año natural - level 'Calendar Month Year' - caption: Mes año natural - level 'Calendar Week Year' - caption: Semana año natural - hierarchy 'FW Year-Month-Week' - caption: Año-Mes-Semana SF - displayFolder: _Weekly Calendario - level 'FW Year' - caption: Año SF - level 'FW Month Year' - caption: Mes año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'FW Year-Quarter-Week' - caption: Año-Trimestre-Semana SF - displayFolder: _Weekly Calendario - level 'FW Year' - caption: Año SF - level 'FW Quarter Year' - caption: Trimestre año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'FW Year-Week' - caption: Semana-Año SF - displayFolder: _Weekly Calendario - level 'FW Year' - caption: Año SF - level 'FW Week Year' - caption: Semana año SF - table 'Localized Labels' - caption: Etiquetas Localizadas - measure 'CONNECT YOUR DATA' - caption: CONECTAR LOS DATOS - measure '1. Download the Finance Connector for Power BI' - caption: 1. Descargar Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurar Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USAR, EDITAR Y CREAR SUS PROPIOS INFORMES - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero. - measure 'HELP AND SUPPORT' - caption: AYUDA Y SOPORTE - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics. - measure 'for Business Central' - caption: para Business Central - measure 'Last Refreshed' - caption: Última actualización - measure 'Company Name' - caption: Nombre empresa - measure 'Analysis Entries as of' - caption: Movimientos de análisis a partir de - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Previsión de facturación por periodo de facturación, cliente y n.º contrato - measure 'Billing Forecast by Year and Month' - caption: Previsión de facturación por mes y año naturales - measure 'Billing Schedule' - caption: Programación de facturación - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Cambio de ingresos periódicos mensuales por mes y año - measure 'Current Date Range:' - caption: Intervalo de fechas actual: - measure 'Customer Contract Deferrals' - caption: Fraccionamientos de contratos de clientes - measure 'Customer Contract Lines' - caption: Líneas de contrato de cliente - measure 'Customer Deferrals (Caption)' - caption: Fraccionamientos de clientes - measure 'Mon. Recurring Revenue Analysis' - caption: Análisis de ingresos periódicos mensuales - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales - measure 'Mon. Recurring Revenue by Customer' - caption: Ingresos periódicos mensuales por cliente - measure 'Mon. Recurring Revenue by Salesperson' - caption: Ingresos periódicos mensuales por vendedor - measure 'Mon. Recurring Revenue by Year and Month' - caption: Ingresos periódicos mensuales por mes y año naturales - measure 'Mon. Recurring Revenue by Item' - caption: Ingresos periódicos mensuales por producto - measure 'Mon. Recurring Revenue by Item Category' - caption: Ingresos periódicos mensuales por categoría de producto - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Previsión mensual de ingresos y costes por mes y año natural - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Previsión mensual de ingresos y costes por vendedor, cliente y n.º contrato - measure 'Released and Deferred Amount by Year and Month' - caption: Importe liberado y fraccionado por mes y año naturales - measure 'Revenue Analysis' - caption: Análisis de ingresos - measure 'Revenue by Customer' - caption: Ingresos por cliente - measure 'Revenue by Item' - caption: Ingresos por producto - measure 'Revenue by Salesperson' - caption: Ingresos por vendedor - measure 'Revenue Development' - caption: Desarrollo de ingresos - measure 'Sales and Cost Forecast' - caption: Previsión de ingresos - measure 'Revenue Year-Over-Year Growth' - caption: Crecimiento interanual de los ingresos - measure 'Subscription Billing Analysis' - caption: Análisis Subscription Billing - measure 'Subscription Billing Overview' - caption: Información general Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Los 5 clientes principales por Ingresos periódicos mensuales - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Los 5 principales proveedores por coste periódico mensual - measure 'Total Contract Value Analysis' - caption: Análisis del valor total del contrato - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valor total del contrato y valor total del contrato AA por mes natural - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valor total del contrato y crecimiento interanual por mes y año naturales - measure 'Total Contract Value by Year and Month' - caption: Valor total de contrato por mes y año naturales - measure 'Total Contract Value Year-Over-Year Growth' - caption: Crecimiento interanual del valor total del contrato - measure 'Vendor Contract Deferrals' - caption: Fraccionamientos de contrato de proveedor - measure 'Vendor Deferrals (Caption)' - caption: Fraccionamientos de proveedores - measure 'Back button' - caption: Botón Atrás - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Ingresos periódicos mensuales, Coste periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales - measure 'Churn Analysis' - caption: Análisis de abandono - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % tasa de abandono men. medio por año y mes - table 'Meta Information' - caption: EMPRESA - table Subscription - caption: Objeto de servicio - column 'Subscription No.' - caption: N.º de objeto de servicio - column 'Package Code' - caption: Código de paquete - column 'Subscription Desc.' - caption: Des. objeto de servicio - column 'Analysis Date' - caption: Fecha de análisis - column 'Subscription No. Desc.' - caption: Desc. n.º Subscription - table 'Vendor Contract Deferrals' - caption: Fraccionamientos de contrato de proveedor - column 'Document Type' - caption: Tipo de documento - column 'Document No.' - caption: N.º de documento - column 'Posting Date' - caption: Fecha reg. - column 'Document Posting Date' - caption: Fecha de registro de documento - column 'Release Posting Date' - caption: Fecha de registro de versión - column 'G LEntry No.' - caption: N.º mov. contabilidad - column Discount - caption: Descuento - column 'Document Line No.' - caption: N.º lín. documento - table 'Customer Contract Line' - caption: Línea de contrato de cliente - column 'Subscription Line No.' - caption: N.º de línea de compromiso - column Template - caption: Plantilla - column 'Customer Contract Line Desc.' - caption: Desc. de línea de contrato de cliente - column 'Subscription Start Date' - caption: Fecha de inicio del servicio - column 'Subscription End Date' - caption: Fecha de finalización del servicio - column 'Next Billing Date' - caption: Próxima fecha de facturación - column 'Billing Base Period' - caption: Periodo base de facturación - column 'Invoicing Item No.' - caption: N.º de producto de facturación - column 'Customer Contract Line No.' - caption: N.º de línea de contrato de cliente - column 'Notice Period' - caption: Periodo de preaviso - column 'Initial Term' - caption: Plazo inicial - column 'Extension Term' - caption: Plazo de extensión - column 'Billing Rhythm' - caption: Ritmo de facturación - column 'Cancellation Possible Until' - caption: Cancelación posible hasta - column 'Term Until' - caption: Plazo hasta - column 'Renewal Term' - caption: Plazo de renovación - column 'Line Active' - caption: Línea activa - column 'Remaining Term' - caption: Plazo restante - column 'Billing Rhythm Months' - caption: Meses ritmo facturación - column 'Customer Contract No.' - caption: N.º de contrato del cliente - column 'Is Usage Based Billing' - caption: Es facturación basada en el uso - column 'Source Type' - caption: Tipo procedencia mov. - column 'Source No.' - caption: Cód. procedencia mov. - table 'Vendor Contract Line' - caption: Línea de contrato de proveedor - column 'Subscription Line No.' - caption: N.º de línea de compromiso - column Template - caption: Plantilla - column 'Vendor Contract Line Desc.' - caption: Desc. de línea de contrato de proveedor - column 'Subscription Start Date' - caption: Fecha de inicio del servicio - column 'Subscription End Date' - caption: Fecha de finalización del servicio - column 'Next Billing Date' - caption: Próxima fecha de facturación - column 'Vendor Contract Line No.' - caption: N.º de línea de contrato de proveedor - column 'Notice Period' - caption: Periodo de preaviso - column 'Initial Term' - caption: Plazo inicial - column 'Extension Term' - caption: Plazo de extensión - column 'Billing Rhythm' - caption: Ritmo de facturación - column 'Cancellation Possible Until' - caption: Cancelación posible hasta - column 'Term Until' - caption: Plazo hasta - column 'Renewal Term' - caption: Plazo de renovación - column 'Line Active' - caption: Línea activa - column 'Remaining Term' - caption: Plazo restante - column 'Billing Rhythm Months' - caption: Meses ritmo facturación - column 'Vendor Contract No.' - caption: N.º de contrato de proveedor - column 'Is Latest Version' - caption: Es la versión más reciente - column 'Is Usage Based Billing' - caption: Es facturación basada en el uso - column 'Source Type' - caption: Tipo procedencia mov. - column 'Source No.' - caption: Cód. procedencia mov. - table 'Customer Contract Deferrals' - caption: Fraccionamientos de contratos de clientes - column 'Document Type' - caption: Tipo de documento - column 'Document No.' - caption: N.º de documento - column 'Posting Date' - caption: Fecha reg. - column 'Document Line No.' - caption: N.º lín. documento - column 'Document Posting Date' - caption: Fecha de registro de documento - column 'Release Posting Date' - caption: Fecha de registro de versión - column 'G LEntry No.' - caption: N.º mov. contabilidad - table 'Customer Contract' - caption: Contrato del cliente - column 'Customer Contract No.' - caption: N.º de contrato del cliente - column 'Customer Contract Type' - caption: Tipo de contrato de cliente - column 'Customer Contract Description' - caption: Descripción de contrato de cliente - column 'Customer Contract No. Desc.' - caption: Desc. de n.º de contrato de cliente - table 'Vendor Contract' - caption: Contrato de proveedor - column 'Vendor Contract No.' - caption: N.º de contrato de proveedor - column 'Vendor Contract Type' - caption: Tipo de contrato de proveedor - column 'Vendor Contract Description' - caption: Descripción de contrato de proveedor - column 'Vendor Contract No. Desc.' - caption: Desc. de n.º de contrato de proveedor - table 'UBB handling' - caption: Manipulación de UBB - column 'Treat Usage Based Billing as constant' - caption: Tratar UBB como constante - table 'Is Released' - caption: Es lanzado - table Item - caption: Producto - column 'Item No.' - caption: N.º producto - column 'Item Name' - caption: Nombre del producto - column 'Item Category Code' - caption: Código de categoría de producto - column 'Item Category Description' - caption: Descripción de la categoría de producto - column 'Inventory Posting Group' - caption: Grupo contable inventario - column 'Base Unit of Measure' - caption: Unidad medida base - column 'Item No. & Description' - caption: N.º y descripción del artículo - table 'Analysis Date' - caption: Fecha de análisis - column 'Is Initial Version' - caption: Es versión inicial - column 'Is Current Version' - caption: Es la versión actual - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Grupo de calc.: inteligencia de tiempo para calendario (fiscal) - column Perspective - caption: Perspectiva - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: IPM - measure 'Mon. Recurring Cost' - caption: CPM - measure 'Customer Deferrals' - caption: Fraccionamientos de clientes - measure 'Vendor Deferrals' - caption: Fraccionamientos de proveedores - measure 'Annual Recurring Revenue' - caption: RCO - measure 'Total Contract Value' - caption: VCT - measure 'Forecast Sales' - caption: Ventas previstas - measure 'Mon. Recurring Cost PY' - caption: AA CPM - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CPM Δ frente a AA - measure 'Mon. Recurring Revenue Churn' - caption: Abandono de ingresos periódicos mensuales - measure 'Mon. Recurring Revenue PY' - caption: AA IPM - measure 'Mon. Recurring Revenue New' - caption: Nuevos ingresos periódicos mensuales - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Ingresos periódicos mensuales Δ frente a AA - measure 'Mon. Net Profit Amount' - caption: NIPM - measure 'Mon. Net Profit %' - caption: % NIPM de IPM - measure 'Mon. Net Profit PY' - caption: AA NIPM - measure 'Mon. Net Profit Δ vs. PY' - caption: NIPM Δ frente a AA - measure 'Change in Mon. Recurring Revenue' - caption: Cambio general de IPM - measure 'Total Contract Value PY' - caption: AA VCT - measure 'Total Contract Value Δ vs. PY' - caption: VCT Δ frente a AA - measure 'Last Update Analysis Entries' - caption: Movimientos de análisis de última actualización - measure 'Last Update Semantic Model' - caption: Modelo semántico de última actualización - measure 'Param Environment' - caption: Entorno parám - measure 'Param Company' - caption: Empresa parám - measure 'Mon. Recurring Revenue Upgrade' - caption: Actualización de ingresos periódicos men. - measure 'Mon. Recurring Revenue Change UBB' - caption: Cambio de ingresos periódicos mensuales FBU - measure 'Reporting Currency' - caption: Divisa de notificación - measure 'Active Customers' - caption: Clientes activos - measure 'Active Customers PY' - caption: Clientes activos AA - measure 'Active Customers Δ vs. PY' - caption: Clientes activos Δ frente a AA - measure 'Customer Billing Forecast' - caption: Previsión de facturación de cliente - measure 'Vendor Billing Forecast' - caption: Previsión de facturación de proveedor - measure 'Forecast Costs' - caption: Costes previstos - measure 'Mon. Recurring Revenue Downgrade' - caption: Rebaja de ingresos periódicos men. - measure 'Selected Date Range' - caption: Intervalo de fechas seleccionado - measure 'Avg. Mon. Churn Rate %' - caption: % tasa de abandono men. medio - measure 'Mon. Avg. Downgrade Rate %' - caption: % tasa rebaja medio men. - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Abandono y rebaja de ingresos periódicos men. - table Salesperson - caption: Vendedor - column 'Salesperson Code' - caption: Cód. vendedor - column 'Salesperson Name' - caption: Nombre vendedor - table 'Customer Contract Changes' - caption: Cambios de contrato de cliente - column 'Customer Contract Line Key' - caption: Clave de línea de contrato de cliente - column Date - caption: Fecha - column 'Change Type' - caption: Tipo de cambio - column 'MRR Delta' - caption: MRR delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-MX.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-MX.tmdl deleted file mode 100644 index f824b62e6b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/es-MX.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo es-MX - translations - model Model - table 'Dimension Sets' - caption: Grupos de dimensiones - column 'Global Dimension 1' - caption: Dimensión global 1 - column 'Global Dimension 2' - caption: Dimensión global 2 - column 'Shortcut Dimension 3' - caption: Dim. acceso dir. 3 - column 'Shortcut Dimension 4' - caption: Dim. acceso dir. 4 - column 'Shortcut Dimension 5' - caption: Dim. acceso dir. 5 - column 'Shortcut Dimension 6' - caption: Dim. acceso dir. 6 - column 'Shortcut Dimension 7' - caption: Dim. acceso dir. 7 - column 'Shortcut Dimension 8' - caption: Dim. acceso dir. 8 - column id - caption: id. - table Vendors - caption: Proveedores - column 'Vendor No.' - caption: N.º proveedor - column 'Vendor Name' - caption: Nombre de proveedor - column Address - caption: Dirección - column 'Address 2' - caption: Dirección 2 - column City - caption: Municipio/Ciudad - column 'Post Code' - caption: Código postal - column State - caption: Provincia - column 'Country/Region Code' - caption: Código de país o región - column 'Vendor Posting Group' - caption: Grupo contable proveedor - column 'Vendor No. & Name' - caption: N.º y nombre de proveedor - table Customers - caption: Clientes - column 'Customer No.' - caption: N.º de cliente - column 'Customer Name' - caption: Nombre de cliente - column Address - caption: Dirección - column 'Address 2' - caption: Dirección 2 - column City - caption: Municipio/Ciudad - column 'Post Code' - caption: Código postal - column State - caption: Provincia - column 'Country/Region Code' - caption: Código de país o región - column 'Customer Posting Group' - caption: Grupo contable cliente - column 'Customer Price Group' - caption: Grupo de precio de cliente - column 'Customer Discount Group' - caption: Grupo de descuento de cliente - column 'Customer No. & Name' - caption: Nombre y n.º de cliente - table Date - caption: Fecha - column 'Week Day' - caption: Día de la semana - column 'Day Type' - caption: Tipo de pago - column 'Calendar Year' - caption: Año natural - column 'Calendar Quarter' - caption: Trimestre natural - column 'Calendar Quarter Year' - caption: Trimestre año natural - column 'Calendar Month' - caption: Mes natural - column 'Calendar Month Year' - caption: Mes año natural - column 'Calendar Week' - caption: Semana natural - column 'Calendar Week Year' - caption: Semana año natural - column 'Calendar RelativeWeekPos' - caption: PosSemanaRelativa natural - column 'Calendar RelativeMonthPos' - caption: PosMesRelativa natural - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelativa natural - column 'Calendar RelativeYearPos' - caption: PosAñoRelativa natural - column 'Calendar StartOfMonth' - caption: InicioDeMes natural - column 'Calendar EndOfMonth' - caption: FinDeMes natural - column 'Calendar StartOfQuarter' - caption: InicioDeTrimestre natural - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre natural - column 'Calendar StartOfYear' - caption: InicioDeAño natural - column 'Calendar EndOfYear' - caption: FinDeAño natural - column 'Calendar MonthDays' - caption: DíasMes natural - column 'Calendar QuarterDays' - caption: TrimestreDías natural - column 'Calendar YearDays' - caption: AñoDías natural - column 'Calendar DayOfMonthNumber' - caption: NúmeroDeDíaDeMes natural - column 'Calendar DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre natural - column 'Calendar DayOfYearNumber' - caption: NúmeroDeDíaDeAño natural - column 'Calendar DatePreviousWeek' - caption: FechaSemanaAnterior natural - column 'Calendar DatePreviousMonth' - caption: FechaMesAnterior natural - column 'Calendar DatePreviousQuarter' - caption: FechaTrimestreAnterior natural - column 'Calendar DatePreviousYear' - caption: FechaAñoAnterior natural - column 'Fiscal Year' - caption: Ejercicio - column 'Fiscal Quarter' - caption: Trimestre fiscal - column 'Fiscal Quarter Year' - caption: Año trimestre fiscal - column 'Fiscal Month' - caption: Mes fiscal - column 'Fiscal Month Year' - caption: Mes año fiscal - column 'Fiscal Week' - caption: Semana fiscal - column 'Fiscal Week Year' - caption: Semana año fiscal - column 'Fiscal RelativeWeekPos' - caption: PosSemanaRelativa fiscal - column 'Fiscal RelativeMonthPos' - caption: PosMesRelativa fiscal - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelativa fiscal - column 'Fiscal RelativeYearPos' - caption: PosAñoRelativa fiscal - column 'Fiscal StartOfMonth' - caption: InicioDeMes fiscal - column 'Fiscal EndOfMonth' - caption: FinDeMes fiscal - column 'Fiscal StartOfQuarter' - caption: InicioDeTrimestre fiscal - column 'Fiscal EndOfQuarter' - caption: FinDeTrimestre fiscal - column 'Fiscal StartOfYear' - caption: InicioDeAño fiscal - column 'Fiscal EndOfYear' - caption: FinDeAño fiscal - column 'Fiscal MonthDays' - caption: MesDías fiscal - column 'Fiscal QuarterDays' - caption: DíasTrimestre fiscal - column 'Fiscal YearDays' - caption: AñoDías fiscal - column 'Fiscal DayOfMonthNumber' - caption: NúmeroDeDíaDeMes fiscal - column 'Fiscal DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre fiscal - column 'Fiscal DayOfYearNumber' - caption: NúmeroDíaAño fiscal - column 'Fiscal DatePreviousWeek' - caption: FechaSemanaAnterior fiscal - column 'Fiscal DatePreviousMonth' - caption: FechaMesAnterior fiscal - column 'Fiscal DatePreviousQuarter' - caption: FechaTrimestreAnterior fiscal - column 'Fiscal DatePreviousYear' - caption: FechaAñoAnterior fiscal - column 'FW Year' - caption: Año SF - column 'FW Quarter' - caption: Trimestre SF - column 'FW Quarter Year' - caption: Trimestre año SF - column 'FW Month' - caption: Mes SF - column 'FW Month Year' - caption: Mes año SF - column 'FW Week' - caption: Semana SF - column 'FW Period' - caption: Periodo SF - column 'FW Week Year' - caption: Semana año SF - column 'FW StartOfWeek' - caption: InicioDeSemana SF - column 'FW EndOfWeek' - caption: FinDeSemana SF - column 'FW RelativeWeekPos' - caption: PosSemanaRelativa SF - column 'FW RelativeMonthPos' - caption: PosMesRelativa SF - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelativa SF - column 'FW RelativeYearPos' - caption: PosAñoRelativa SF - column 'FW StartOfMonth' - caption: InicioDeMes SF - column 'FW EndOfMonth' - caption: FinDeMes SF - column 'FW StartOfQuarter' - caption: InicioDeTrimestre SF - column 'FW EndOfQuarter' - caption: FinDeTrimestre SF - column 'FW StartOfYear' - caption: InicioDeAño SF - column 'FW EndOfYear' - caption: FinDeAño SF - column 'FW MonthDays' - caption: MesDías FS - column 'FW QuarterDays' - caption: DíasTrimestre SF - column 'FW YearDays' - caption: DíasAño SF - column 'FW DayOfMonthNumber' - caption: NúmeroDeDíaDeMes SF - column 'FW DayOfQuarterNumber' - caption: NúmeroDeDíaDeTrimestre SF - column 'FW DayOfYearNumber' - caption: NúmerDeDíaDeAño SF - column 'FW DatePreviousWeek' - caption: FechaSemanaAnterior SF - column 'FW DatePreviousMonth' - caption: FechaMesAnterior SF - column 'FW DatePreviousQuarter' - caption: FechaTrimestreAnterior SF - column 'FW DatePreviousYear' - caption: Fecha AñoAnterior SF - column 'Relative Day' - caption: Día relativo - column Sequential365DayNumber - caption: NúmeroDía 365 secuencial - column 'Data Range Deferrals' - caption: Fraccionamientos intervalo datos - measure 'No. of Days' - caption: N.º días - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana fiscal - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Quarter Year' - caption: Año trimestre fiscal - level 'Fiscal Month Year' - caption: Mes año fiscal - level 'Fiscal Week Year' - caption: Semana año fiscal - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana natural - level 'Calendar Year' - caption: Año natural - level 'Calendar Quarter Year' - caption: Trimestre año natural - level 'Calendar Month Year' - caption: Mes año natural - level 'Calendar Week Year' - caption: Semana año natural - hierarchy 'FW Year-Quarter-Month-Week' - caption: Año-Trimestre-Mes-Semana SF - level 'FW Year' - caption: Año SF - level 'FW Quarter Year' - caption: Trimestre año SF - level 'FW Month Year' - caption: Mes año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'Fiscal Year-Month' - caption: Año-mes fiscal - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Month Year' - caption: Mes año fiscal - hierarchy 'Fiscal Year-Month-Week' - caption: Año-Mes-Semana fiscal - level 'Fiscal Year' - caption: Ejercicio - level 'Fiscal Month Year' - caption: Mes año fiscal - level 'Fiscal Week Year' - caption: Semana año fiscal - hierarchy 'Calendar Year-Month' - caption: Año-mes natural - level 'Calendar Year' - caption: Año natural - level 'Calendar Month Year' - caption: Mes año natural - hierarchy 'Calendar Year-Month-Week' - caption: Año-Mes-Semana natural - level 'Calendar Year' - caption: Año natural - level 'Calendar Month Year' - caption: Mes año natural - level 'Calendar Week Year' - caption: Semana año natural - hierarchy 'FW Year-Month-Week' - caption: Año-Mes-Semana SF - level 'FW Year' - caption: Año SF - level 'FW Month Year' - caption: Mes año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'FW Year-Quarter-Week' - caption: Año-Trimestre-Semana SF - level 'FW Year' - caption: Año SF - level 'FW Quarter Year' - caption: Trimestre año SF - level 'FW Week Year' - caption: Semana año SF - hierarchy 'FW Year-Week' - caption: Semana-Año SF - level 'FW Year' - caption: Año SF - level 'FW Week Year' - caption: Semana año SF - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONECTAR LOS DATOS - measure '1. Download the Finance Connector for Power BI' - caption: 1. Descargar Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurar Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USAR, EDITAR Y CREAR SUS PROPIOS INFORMES - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero. - measure 'HELP AND SUPPORT' - caption: AYUDA Y SOPORTE - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics. - measure 'for Business Central' - caption: para Business Central - measure 'Last Refreshed' - caption: Última actualización - measure 'Company Name' - caption: Nombre empresa - measure 'Analysis Entries as of' - caption: Movimientos de análisis a partir de - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Previsión de facturación por periodo de facturación, cliente y n.º contrato - measure 'Billing Forecast by Year and Month' - caption: Previsión de facturación por mes y año naturales - measure 'Billing Schedule' - caption: Programación de facturación - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Cambio de ingresos periódicos mensuales por mes y año - measure 'Current Date Range:' - caption: Intervalo de fechas actual: - measure 'Customer Contract Deferrals' - caption: Fraccionamientos de contratos de clientes - measure 'Customer Contract Lines' - caption: Líneas de contrato de cliente - measure 'Customer Deferrals (Caption)' - caption: Fraccionamientos de clientes - measure 'Mon. Recurring Revenue Analysis' - caption: Análisis de ingresos periódicos mensuales - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales - measure 'Mon. Recurring Revenue by Customer' - caption: Ingresos periódicos mensuales por cliente - measure 'Mon. Recurring Revenue by Salesperson' - caption: Ingresos periódicos mensuales por vendedor - measure 'Mon. Recurring Revenue by Year and Month' - caption: Ingresos periódicos mensuales por mes y año naturales - measure 'Mon. Recurring Revenue by Item' - caption: Ingresos periódicos mensuales por producto - measure 'Mon. Recurring Revenue by Item Category' - caption: Ingresos periódicos mensuales por categoría de producto - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Previsión mensual de ingresos y costos por mes y año natural - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Previsión mensual de ingresos y costos por vendedor, cliente y n.º contrato - measure 'Released and Deferred Amount by Year and Month' - caption: Importe liberado y fraccionado por mes y año naturales - measure 'Revenue Analysis' - caption: Análisis de ingresos - measure 'Revenue by Customer' - caption: Ingresos por cliente - measure 'Revenue by Item' - caption: Ingresos por producto - measure 'Revenue by Salesperson' - caption: Ingresos por vendedor - measure 'Revenue Development' - caption: Desarrollo de ingresos - measure 'Sales and Cost Forecast' - caption: Previsión de ingresos - measure 'Revenue Year-Over-Year Growth' - caption: Crecimiento interanual de los ingresos - measure 'Subscription Billing Analysis' - caption: Análisis Subscription Billing - measure 'Subscription Billing Overview' - caption: Información general Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Los 5 clientes principales por Ingresos periódicos mensuales - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Los 5 principales proveedores por costo periódico mensual - measure 'Total Contract Value Analysis' - caption: Análisis del valor total del contrato - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valor total del contrato y valor total del contrato AA por mes natural - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valor total del contrato y crecimiento interanual por mes y año naturales - measure 'Total Contract Value by Year and Month' - caption: Valor total de contrato por mes y año naturales - measure 'Total Contract Value Year-Over-Year Growth' - caption: Crecimiento interanual del valor total del contrato - measure 'Vendor Contract Deferrals' - caption: Fraccionamientos de contrato de proveedor - measure 'Vendor Deferrals (Caption)' - caption: Fraccionamientos de proveedores - measure 'Back button' - caption: Botón Atrás - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Ingresos periódicos mensuales, Costo periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales - measure 'Churn Analysis' - caption: Análisis de abandono - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % tasa de abandono men. medio por año y mes - table 'Meta Information' - caption: EMPRESA - table Subscription - caption: Objeto de servicio - column 'Subscription No.' - caption: N.º de objeto de servicio - column 'Package Code' - caption: Código de paquete - column 'Subscription Desc.' - caption: Des. objeto de servicio - column 'Analysis Date' - caption: Fecha de análisis - column 'Subscription No. Desc.' - caption: Desc. n.º Subscription - table 'Vendor Contract Deferrals' - caption: Fraccionamientos de contrato de proveedor - column 'Document Type' - caption: Tipo de documento - column 'Document No.' - caption: N.º de documento - column 'Posting Date' - caption: Fecha reg. - column 'Document Posting Date' - caption: Fecha de registro de documento - column 'Release Posting Date' - caption: Fecha de registro de versión - column 'G LEntry No.' - caption: N.º mov. contabilidad - column Discount - caption: Descuento - column 'Document Line No.' - caption: N.º lín. documento - table 'Customer Contract Line' - caption: Línea de contrato de cliente - column 'Subscription Line No.' - caption: N.º de línea de compromiso - column Template - caption: Plantilla - column 'Customer Contract Line Desc.' - caption: Desc. de línea de contrato de cliente - column 'Subscription Start Date' - caption: Fecha de inicio del servicio - column 'Subscription End Date' - caption: Fecha de finalización del servicio - column 'Next Billing Date' - caption: Próxima fecha de facturación - column 'Billing Base Period' - caption: Periodo base de facturación - column 'Invoicing Item No.' - caption: N.º de producto de facturación - column 'Customer Contract Line No.' - caption: N.º de línea de contrato de cliente - column 'Notice Period' - caption: Periodo de preaviso - column 'Initial Term' - caption: Plazo inicial - column 'Extension Term' - caption: Plazo de extensión - column 'Billing Rhythm' - caption: Ritmo de facturación - column 'Cancellation Possible Until' - caption: Cancelación posible hasta - column 'Term Until' - caption: Plazo hasta - column 'Renewal Term' - caption: Plazo de renovación - column 'Line Active' - caption: Línea activa - column 'Remaining Term' - caption: Plazo restante - column 'Billing Rhythm Months' - caption: Meses ritmo facturación - column 'Customer Contract No.' - caption: N.º de contrato del cliente - column 'Is Usage Based Billing' - caption: Es facturación basada en el uso - column 'Source Type' - caption: Tipo procedencia mov. - column 'Source No.' - caption: Cód. procedencia mov. - table 'Vendor Contract Line' - caption: Línea de contrato de proveedor - column 'Subscription Line No.' - caption: N.º de línea de compromiso - column Template - caption: Plantilla - column 'Vendor Contract Line Desc.' - caption: Desc. de línea de contrato de proveedor - column 'Subscription Start Date' - caption: Fecha de inicio del servicio - column 'Subscription End Date' - caption: Fecha de finalización del servicio - column 'Next Billing Date' - caption: Próxima fecha de facturación - column 'Vendor Contract Line No.' - caption: N.º de línea de contrato de proveedor - column 'Notice Period' - caption: Periodo de preaviso - column 'Initial Term' - caption: Plazo inicial - column 'Extension Term' - caption: Plazo de extensión - column 'Billing Rhythm' - caption: Ritmo de facturación - column 'Cancellation Possible Until' - caption: Cancelación posible hasta - column 'Term Until' - caption: Plazo hasta - column 'Renewal Term' - caption: Plazo de renovación - column 'Line Active' - caption: Línea activa - column 'Remaining Term' - caption: Plazo restante - column 'Billing Rhythm Months' - caption: Meses ritmo facturación - column 'Vendor Contract No.' - caption: N.º de contrato de proveedor - column 'Is Latest Version' - caption: Es la versión más reciente - column 'Is Usage Based Billing' - caption: Es facturación basada en el uso - column 'Source Type' - caption: Tipo procedencia mov. - column 'Source No.' - caption: Cód. procedencia mov. - table 'Customer Contract Deferrals' - caption: Fraccionamientos de contratos de clientes - column 'Document Type' - caption: Tipo de documento - column 'Document No.' - caption: N.º de documento - column 'Posting Date' - caption: Fecha reg. - column 'Document Line No.' - caption: N.º lín. documento - column 'Document Posting Date' - caption: Fecha de registro de documento - column 'Release Posting Date' - caption: Fecha de registro de versión - column 'G LEntry No.' - caption: N.º mov. contabilidad - table 'Customer Contract' - caption: Contrato del cliente - column 'Customer Contract No.' - caption: N.º de contrato del cliente - column 'Customer Contract Type' - caption: Tipo de contrato de cliente - column 'Customer Contract Description' - caption: Descripción de contrato de cliente - column 'Customer Contract No. Desc.' - caption: Desc. de n.º de contrato de cliente - table 'Vendor Contract' - caption: Contrato de proveedor - column 'Vendor Contract No.' - caption: N.º de contrato de proveedor - column 'Vendor Contract Type' - caption: Tipo de contrato de proveedor - column 'Vendor Contract Description' - caption: Descripción de contrato de proveedor - column 'Vendor Contract No. Desc.' - caption: Desc. de n.º de contrato de proveedor - table 'UBB handling' - caption: Manipulación de UBB - column 'Treat Usage Based Billing as constant' - caption: Tratar UBB como constante - table 'Is Released' - caption: Es lanzado - table Item - caption: Producto - column 'Item No.' - caption: N.º producto - column 'Item Name' - caption: Nombre del producto - column 'Item Category Code' - caption: Código de categoría de producto - column 'Item Category Description' - caption: Descripción de la categoría de producto - column 'Inventory Posting Group' - caption: Grupo contable inventario - column 'Base Unit of Measure' - caption: Unidad medida base - column 'Item No. & Description' - caption: N.º y descripción del artículo - table 'Analysis Date' - caption: Fecha de análisis - column 'Is Initial Version' - caption: Es versión inicial - column 'Is Current Version' - caption: Es la versión actual - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Grupo de calc.: inteligencia de tiempo para calendario (fiscal) - column Perspective - caption: Perspectiva - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: IPM - measure 'Mon. Recurring Cost' - caption: CPM - measure 'Customer Deferrals' - caption: Fraccionamientos de clientes - measure 'Vendor Deferrals' - caption: Fraccionamientos de proveedores - measure 'Annual Recurring Revenue' - caption: RCO - measure 'Total Contract Value' - caption: VCT - measure 'Forecast Sales' - caption: Ventas previstas - measure 'Mon. Recurring Cost PY' - caption: AA CPM - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CPM Δ frente a AA - measure 'Mon. Recurring Revenue Churn' - caption: Abandono de ingresos periódicos mensuales - measure 'Mon. Recurring Revenue PY' - caption: AA IPM - measure 'Mon. Recurring Revenue New' - caption: Nuevos ingresos periódicos mensuales - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Ingresos periódicos mensuales Δ frente a AA - measure 'Mon. Net Profit Amount' - caption: NIPM - measure 'Mon. Net Profit %' - caption: % NIPM de IPM - measure 'Mon. Net Profit PY' - caption: AA NIPM - measure 'Mon. Net Profit Δ vs. PY' - caption: NIPM Δ frente a AA - measure 'Change in Mon. Recurring Revenue' - caption: Cambio general de IPM - measure 'Total Contract Value PY' - caption: AA VCT - measure 'Total Contract Value Δ vs. PY' - caption: VCT Δ frente a AA - measure 'Last Update Analysis Entries' - caption: Movimientos de análisis de última actualización - measure 'Last Update Semantic Model' - caption: Modelo semántico de última actualización - measure 'Param Environment' - caption: Entorno parám - measure 'Param Company' - caption: Empresa parám - measure 'Mon. Recurring Revenue Upgrade' - caption: Actualización de ingresos periódicos men. - measure 'Mon. Recurring Revenue Change UBB' - caption: Cambio de ingresos periódicos mensuales FBU - measure 'Reporting Currency' - caption: Divisa de notificación - measure 'Active Customers' - caption: Clientes activos - measure 'Active Customers PY' - caption: Clientes activos AA - measure 'Active Customers Δ vs. PY' - caption: Clientes activos Δ frente a AA - measure 'Customer Billing Forecast' - caption: Previsión de facturación de cliente - measure 'Vendor Billing Forecast' - caption: Previsión de facturación de proveedor - measure 'Forecast Costs' - caption: Costos esperados - measure 'Mon. Recurring Revenue Downgrade' - caption: Rebaja de ingresos periódicos men. - measure 'Selected Date Range' - caption: Intervalo de fechas seleccionado - measure 'Avg. Mon. Churn Rate %' - caption: % tasa de abandono men. medio - measure 'Mon. Avg. Downgrade Rate %' - caption: % tasa rebaja medio men. - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Abandono y rebaja de ingresos periódicos men. - table Salesperson - caption: Vendedor - column 'Salesperson Code' - caption: Cód. vendedor - column 'Salesperson Name' - caption: Nombre vendedor - table 'Customer Contract Changes' - caption: Cambios de contrato de cliente - column 'Customer Contract Line Key' - caption: Clave de línea de contrato de cliente - column Date - caption: Fecha - column 'Change Type' - caption: Tipo de cambio - column 'MRR Delta' - caption: MRR delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fi-FI.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fi-FI.tmdl deleted file mode 100644 index bb317ddecd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fi-FI.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo fi-FI - translations - model Model - table 'Dimension Sets' - caption: Dimensioyhdistelmät - column 'Global Dimension 1' - caption: Yleinen dimensio 1 - column 'Global Dimension 2' - caption: Yleinen dimensio 2 - column 'Shortcut Dimension 3' - caption: Pikadimensio 3 - column 'Shortcut Dimension 4' - caption: Pikadimensio 4 - column 'Shortcut Dimension 5' - caption: Pikadimensio 5 - column 'Shortcut Dimension 6' - caption: Pikadimensio 6 - column 'Shortcut Dimension 7' - caption: Pikadimensio 7 - column 'Shortcut Dimension 8' - caption: Pikadimensio 8 - column id - caption: tunnus - table Vendors - caption: Toimittajat - column 'Vendor No.' - caption: Toimittajanro - column 'Vendor Name' - caption: Toimittajan nimi - column Address - caption: Osoite - column 'Address 2' - caption: Osoite 2 - column City - caption: Kaupunki - column 'Post Code' - caption: Postinro - column State - caption: Osavaltio - column 'Country/Region Code' - caption: Maa- tai aluekoodi - column 'Vendor Posting Group' - caption: Toimittajan kirjausryhmä - column 'Vendor No. & Name' - caption: Toimittajan nro ja nimi - table Customers - caption: Asiakkaat - column 'Customer No.' - caption: Asiakasnumero - column 'Customer Name' - caption: Asiakkaan nimi - column Address - caption: Osoite - column 'Address 2' - caption: Osoite 2 - column City - caption: Kaupunki - column 'Post Code' - caption: Postinro - column State - caption: Osavaltio - column 'Country/Region Code' - caption: Maa- tai aluekoodi - column 'Customer Posting Group' - caption: Asiakkaan kirjausryhmä - column 'Customer Price Group' - caption: Asiakkaan hintaryhmä - column 'Customer Discount Group' - caption: Asiakkaan alennusryhmä - column 'Customer No. & Name' - caption: Asiakkaan nro ja nimi - table Date - caption: Pvm - column 'Week Day' - caption: Viikonpäivä - column 'Day Type' - caption: Päivän tyyppi - column 'Calendar Year' - caption: Kalenterivuosi - column 'Calendar Quarter' - caption: Kalenterin vuosineljännes - column 'Calendar Quarter Year' - caption: Kalenteri – Neljännesvuosi - column 'Calendar Month' - caption: Kalenterikuukausi - column 'Calendar Month Year' - caption: Kalenterikuukausi – Vuosi - column 'Calendar Week' - caption: Kalenteriviikko - column 'Calendar Week Year' - caption: Kalenteriviikko – Vuosi - column 'Calendar RelativeWeekPos' - caption: Kalenteri – SuhteellisenViikonSijainti - column 'Calendar RelativeMonthPos' - caption: Kalenteri – SuhteellisenKuukaudenSijainti - column 'Calendar RelativeQuarterPos' - caption: Kalenteri – SuhteellisenVuosineljänneksenSijainti - column 'Calendar RelativeYearPos' - caption: Kalenteri – SuhteellisenVuodenSijainti - column 'Calendar StartOfMonth' - caption: Kalenteri – KuukausiAlkaa - column 'Calendar EndOfMonth' - caption: Kalenteri – KuukausiPäättyy - column 'Calendar StartOfQuarter' - caption: Kalenteri – VuosineljännesAlkaa - column 'Calendar EndOfQuarter' - caption: Kalenteri – VuosineljännesPäättyy - column 'Calendar StartOfYear' - caption: Kalenteri – VuosiAlkaa - column 'Calendar EndOfYear' - caption: Kalenteri – VuosiPäättyy - column 'Calendar MonthDays' - caption: Kalenteri – KuukaudenPäivät - column 'Calendar QuarterDays' - caption: Kalenteri – VuosineljänneksenPäivät - column 'Calendar YearDays' - caption: Kalenteri – VuodenPäivät - column 'Calendar DayOfMonthNumber' - caption: Kalenteri – KuukaudenPäivänNumero - column 'Calendar DayOfQuarterNumber' - caption: Kalenteri – VuosineljänneksenPäivänNumero - column 'Calendar DayOfYearNumber' - caption: Kalenteri – VuodenPäivänNumero - column 'Calendar DatePreviousWeek' - caption: Kalenteri – PäivämääräEdellinenViikko - column 'Calendar DatePreviousMonth' - caption: Kalenteri – PäivämääräEdellinenKuukausi - column 'Calendar DatePreviousQuarter' - caption: Kalenteri – PäivämääräEdellinenVuosineljännes - column 'Calendar DatePreviousYear' - caption: Kalenteri – PäivämääräEdellinenVuosi - column 'Fiscal Year' - caption: Tilikausi - column 'Fiscal Quarter' - caption: Kirjanpidon vuosineljännes - column 'Fiscal Quarter Year' - caption: Kirjanpito – Neljännesvuosi - column 'Fiscal Month' - caption: Kirjanpitokuukausi - column 'Fiscal Month Year' - caption: Kirjanpidon kuukausi, vuosi - column 'Fiscal Week' - caption: Kirjanpitoviikko - column 'Fiscal Week Year' - caption: Kirjanpitoviikko, vuosi - column 'Fiscal RelativeWeekPos' - caption: Kirjanpito – SuhteellisenViikonSijainti - column 'Fiscal RelativeMonthPos' - caption: Kirjanpito – SuhteellisenKuukaudenSijainti - column 'Fiscal RelativeQuarterPos' - caption: Kirjanpito – SuhteellisenVuosineljänneksenSijainti - column 'Fiscal RelativeYearPos' - caption: Kirjanpito – SuhteellisenVuodenSijainti - column 'Fiscal StartOfMonth' - caption: Kirjanpito – KuukausiAlkaa - column 'Fiscal EndOfMonth' - caption: Kirjanpito – KuukausiPäättyy - column 'Fiscal StartOfQuarter' - caption: Kirjanpito – VuosineljännesAlkaa - column 'Fiscal EndOfQuarter' - caption: Kirjanpito – VuosineljännesPäättyy - column 'Fiscal StartOfYear' - caption: Kirjanpito – VuosiAlkaa - column 'Fiscal EndOfYear' - caption: Kirjanpito – VuosiPäättyy - column 'Fiscal MonthDays' - caption: Kirjanpito – KuukaudenPäivät - column 'Fiscal QuarterDays' - caption: Kirjanpito – VuosineljänneksenPäivät - column 'Fiscal YearDays' - caption: Kirjanpito – VuodenPäivät - column 'Fiscal DayOfMonthNumber' - caption: Kirjanpito – KuukaudenPäivänNumero - column 'Fiscal DayOfQuarterNumber' - caption: Kirjanpito – VuosineljänneksenPäivänNumero - column 'Fiscal DayOfYearNumber' - caption: Kirjanpito – VuodenPäivänNumero - column 'Fiscal DatePreviousWeek' - caption: Kirjanpito – PäivämääräEdellinenViikko - column 'Fiscal DatePreviousMonth' - caption: Kirjanpito – PäivämääräEdellinenKuukausi - column 'Fiscal DatePreviousQuarter' - caption: Kirjanpito – PäivämääräEdellinenVuosineljännes - column 'Fiscal DatePreviousYear' - caption: Kirjanpito – PäivämääräEdellinenVuosi - column 'FW Year' - caption: KV – Vuosi - column 'FW Quarter' - caption: KV – Vuosineljännes - column 'FW Quarter Year' - caption: KV – Neljännesvuosi - column 'FW Month' - caption: KV – Kuukausi - column 'FW Month Year' - caption: KV – Kuukausi, vuosi - column 'FW Week' - caption: KV – Viikko - column 'FW Period' - caption: KV – Kausi - column 'FW Week Year' - caption: KV – Viikko, vuosi - column 'FW StartOfWeek' - caption: KV – ViikkoAlkaa - column 'FW EndOfWeek' - caption: KV – ViikkoPäättyy - column 'FW RelativeWeekPos' - caption: KV – SuhteellisenViikonSijainti - column 'FW RelativeMonthPos' - caption: KV – SuhteellisenKuukaudenSijainti - column 'FW RelativeQuarterPos' - caption: KV – SuhteellisenVuosineljänneksenSijainti - column 'FW RelativeYearPos' - caption: KV – SuhteellisenVuodenSijainti - column 'FW StartOfMonth' - caption: KV – KuukausiAlkaa - column 'FW EndOfMonth' - caption: KV – KuukausiPäättyy - column 'FW StartOfQuarter' - caption: KV – VuosineljännesAlkaa - column 'FW EndOfQuarter' - caption: KV – VuosineljännesPäättyy - column 'FW StartOfYear' - caption: KV – VuosiAlkaa - column 'FW EndOfYear' - caption: KV – VuosiPäättyy - column 'FW MonthDays' - caption: KV – KuukaudenPäivät - column 'FW QuarterDays' - caption: KV – VuosineljänneksenPäivät - column 'FW YearDays' - caption: KV – VuodenPäivät - column 'FW DayOfMonthNumber' - caption: KV – KuukaudenPäivänNumero - column 'FW DayOfQuarterNumber' - caption: KV – VuosineljänneksenPäivänNumero - column 'FW DayOfYearNumber' - caption: KV – VuodenPäivänNumero - column 'FW DatePreviousWeek' - caption: KV – PäivämääräEdellinenViikko - column 'FW DatePreviousMonth' - caption: KV – PäivämääräEdellinenKuukausi - column 'FW DatePreviousQuarter' - caption: KV – PäivämääräEdellinenVuosineljännes - column 'FW DatePreviousYear' - caption: KV – PäivämääräEdellinenVuosi - column 'Relative Day' - caption: Suhteellinen päivämäärä - column Sequential365DayNumber - caption: Järjestys 365 PäiväNumero - column 'Data Range Deferrals' - caption: Tietovälisiirrot - measure 'No. of Days' - caption: Päivien määrä - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Kirjanpito – Vuosi-Vuosineljännes-Kuukausi-Viikko - level 'Fiscal Year' - caption: Tilikausi - level 'Fiscal Quarter Year' - caption: Kirjanpito – Neljännesvuosi - level 'Fiscal Month Year' - caption: Kirjanpidon kuukausi, vuosi - level 'Fiscal Week Year' - caption: Kirjanpitoviikko, vuosi - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalenteri – Vuosi-Vuosineljännes-Kuukausi-Viikko - level 'Calendar Year' - caption: Kalenterivuosi - level 'Calendar Quarter Year' - caption: Kalenteri – Neljännesvuosi - level 'Calendar Month Year' - caption: Kalenterikuukausi – Vuosi - level 'Calendar Week Year' - caption: Kalenteriviikko – Vuosi - hierarchy 'FW Year-Quarter-Month-Week' - caption: KV – Vuosi-Vuosineljännes-Kuukausi-Viikko - level 'FW Year' - caption: KV – Vuosi - level 'FW Quarter Year' - caption: KV – Neljännesvuosi - level 'FW Month Year' - caption: KV – Kuukausi, vuosi - level 'FW Week Year' - caption: KV – Viikko, vuosi - hierarchy 'Fiscal Year-Month' - caption: Kirjanpito – Vuosi-Kuukausi - level 'Fiscal Year' - caption: Tilikausi - level 'Fiscal Month Year' - caption: Kirjanpidon kuukausi, vuosi - hierarchy 'Fiscal Year-Month-Week' - caption: Kirjanpito – Vuosi-Kuukausi-Viikko - level 'Fiscal Year' - caption: Tilikausi - level 'Fiscal Month Year' - caption: Kirjanpidon kuukausi, vuosi - level 'Fiscal Week Year' - caption: Kirjanpitoviikko, vuosi - hierarchy 'Calendar Year-Month' - caption: Kalenteri – Vuosi-Kuukausi - level 'Calendar Year' - caption: Kalenterivuosi - level 'Calendar Month Year' - caption: Kalenterikuukausi – Vuosi - hierarchy 'Calendar Year-Month-Week' - caption: Kalenteri – Vuosi-Kuukausi-Viikko - level 'Calendar Year' - caption: Kalenterivuosi - level 'Calendar Month Year' - caption: Kalenterikuukausi – Vuosi - level 'Calendar Week Year' - caption: Kalenteriviikko – Vuosi - hierarchy 'FW Year-Month-Week' - caption: KV – Vuosi-Kuukausi-Viikko - level 'FW Year' - caption: KV – Vuosi - level 'FW Month Year' - caption: KV – Kuukausi, vuosi - level 'FW Week Year' - caption: KV – Viikko, vuosi - hierarchy 'FW Year-Quarter-Week' - caption: KV – Vuosi-Vuosineljännes-Viikko - level 'FW Year' - caption: KV – Vuosi - level 'FW Quarter Year' - caption: KV – Neljännesvuosi - level 'FW Week Year' - caption: KV – Viikko, vuosi - hierarchy 'FW Year-Week' - caption: KV – Vuosi-Viikko - level 'FW Year' - caption: KV – Vuosi - level 'FW Week Year' - caption: KV – Viikko, vuosi - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: YHDISTÄ TIETOSI - measure '1. Download the Finance Connector for Power BI' - caption: 1. Lataa Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Määritä Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: KÄYTÄ, MUOKKAA JA LUO OMIA RAPORTTEJA - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Taloushallinto sisältää erilaisia esimääritettyjä raportteja, joiden avulla voit tarkastella tietoja välittömästi. Voit muokata näitä raportteja tai luoda oman raportin alusta alkaen. - measure 'HELP AND SUPPORT' - caption: OHJE JA TUKI - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Lisätietoja ja tukea uudelle raportillesi löydät analytiikan yleiskatsauksen dokumentaatiosta. - measure 'for Business Central' - caption: Business Centralille - measure 'Last Refreshed' - caption: Päivitetty viimeksi - measure 'Company Name' - caption: Yrityksen nimi - measure 'Analysis Entries as of' - caption: Analyysitapahtumat alkaen - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Laskutusennuste laskutuskauden, asiakkaan ja sopimuksen numeron mukaan - measure 'Billing Forecast by Year and Month' - caption: Laskutusennuste kalenterivuosittain ja -kuukausittain - measure 'Billing Schedule' - caption: Laskutusaikataulu - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Kk:ttain toistuvan tuoton muutos vuosittain ja kuukausittain - measure 'Current Date Range:' - caption: Nykyinen päivämääräalue: - measure 'Customer Contract Deferrals' - caption: Asiakassopimuksen siirrot - measure 'Customer Contract Lines' - caption: Asiakassopimusrivit - measure 'Customer Deferrals (Caption)' - caption: Asiakassiirrot - measure 'Mon. Recurring Revenue Analysis' - caption: Kk:ttain toistuvan tuoton analyysi - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Kk:ttain toistuva tuotto ja Kk:ttain toistuva tuotto EDV kalenterikuukausittain - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Kk:ttain toistuva tuotto ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain - measure 'Mon. Recurring Revenue by Customer' - caption: Kk:ttain toistuva tuotto asiakkaittain - measure 'Mon. Recurring Revenue by Salesperson' - caption: Kk:ttain toistuva tuotto myyjittäin - measure 'Mon. Recurring Revenue by Year and Month' - caption: Kk:ttain toistuva tuotto kalenterivuosittain ja -kuukausittain - measure 'Mon. Recurring Revenue by Item' - caption: Kk:ttain toistuva tuotto nimikkeittäin - measure 'Mon. Recurring Revenue by Item Category' - caption: Kk:ttain toistuva tuotto nimikeluokittain - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Kk:ttain toistuvan tuoton Vaihtuvuus ja Palautus asiakassopimuksittain - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Kk:ttain toistuvan tuoton Uusi ja Päivitä asiakassopimuksittain - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Kuukausittainen tuotto- ja kustannusennuste kalenterivuovuosittain ja -kuukausittain - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Kuukausittainen tuotto- ja kustannusennuste myyjän, asiakkaan ja sopimuksen numeron mukaan - measure 'Released and Deferred Amount by Year and Month' - caption: Vapautettu ja siirretty summa kalenterivuosittain ja -kuukausittain - measure 'Revenue Analysis' - caption: Tuottoanalyysi - measure 'Revenue by Customer' - caption: Asiakaskohtainen tuotto - measure 'Revenue by Item' - caption: Nimikekohtainen tuotto - measure 'Revenue by Salesperson' - caption: Myyjäkohtainen tuotto - measure 'Revenue Development' - caption: Tuottokehitys - measure 'Sales and Cost Forecast' - caption: Tuottoennuste - measure 'Revenue Year-Over-Year Growth' - caption: Tuoton vuosittainen kasvu - measure 'Subscription Billing Analysis' - caption: Subscription Billing – Analyysi - measure 'Subscription Billing Overview' - caption: Subscription Billing – Yleiskatsaus - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Viisi suurinta asiakasta kk:ttain toistuvan tuoton mukaan - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 suurinta toimittajaa kk:ttain toistuvien kustannusten mukaan - measure 'Total Contract Value Analysis' - caption: Sopimuksen kokonaisarvon analyysi - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Sopimuksen kokonaisarvo ja Sopimuksen kokonaisarvo EDV kalenterikuukausittain - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Sopimuksen kokonaisarvo ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain - measure 'Total Contract Value by Year and Month' - caption: Sopimuksen kokonaisarvo kalenterivuosittain ja -kuukausittain - measure 'Total Contract Value Year-Over-Year Growth' - caption: Sopimuksen kokonaisarvo – Vuosittainen kasvu - measure 'Vendor Contract Deferrals' - caption: Toimittajasopimuksen siirrot - measure 'Vendor Deferrals (Caption)' - caption: Toimittajasiirrot - measure 'Back button' - caption: Takaisin-painike - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Kuukausittain toistuva tuotto, Kuukausittainen toistuva kustannus, Kuukausittainen nettotulos, Aktiiviset asiakkaat, Sopimuksen kokonaisarvo, Kuukausittain toistuvan tuoton muutos - measure 'Churn Analysis' - caption: Vaihtuvuusanalyysi - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Keskim. kk:ttainen vaihtuvuusprosentti % vuosittain ja kuukausittain - table 'Meta Information' - caption: YRITYS - table Subscription - caption: Huoltokohde - column 'Subscription No.' - caption: Huoltokohteen nro - column 'Package Code' - caption: Pakettikoodi - column 'Subscription Desc.' - caption: Huoltokohteen kuvaus - column 'Analysis Date' - caption: Analyysin päivämäärä - column 'Subscription No. Desc.' - caption: Subscription-nron kuvaus - table 'Vendor Contract Deferrals' - caption: Toimittajasopimuksen siirrot - column 'Document Type' - caption: Asiakirjatyyppi - column 'Document No.' - caption: Asiakirjanumero - column 'Posting Date' - caption: Kirjauspäivämäärä - column 'Document Posting Date' - caption: Asiakirjan kirjauspäivämäärä - column 'Release Posting Date' - caption: Vapautuksen kirjauspäivämäärä - column 'G LEntry No.' - caption: KP-tapahtuman nro - column Discount - caption: Alennus - column 'Document Line No.' - caption: Asiakirjan rivinro - table 'Customer Contract Line' - caption: Asiakassopimusrivi - column 'Subscription Line No.' - caption: Sitoumusrivin nro - column Template - caption: Malli - column 'Customer Contract Line Desc.' - caption: Asiakassopimusrivin kuvaus - column 'Subscription Start Date' - caption: Huollon alkamispäivä - column 'Subscription End Date' - caption: Huollon päättymispäivä - column 'Next Billing Date' - caption: Seuraava laskutuspäivämäärä - column 'Billing Base Period' - caption: Laskutuksen peruskausi - column 'Invoicing Item No.' - caption: Laskutusnimikkeen nro - column 'Customer Contract Line No.' - caption: Asiakassopimusrivin nro - column 'Notice Period' - caption: Irtisanomisaika - column 'Initial Term' - caption: Alkuperäinen kausi - column 'Extension Term' - caption: Jatkokausi - column 'Billing Rhythm' - caption: Laskutusrytmi - column 'Cancellation Possible Until' - caption: Peruutus mahdollista tähän asti - column 'Term Until' - caption: Kauden kesto - column 'Renewal Term' - caption: Uusimiskausi - column 'Line Active' - caption: Rivi aktiivinen - column 'Remaining Term' - caption: Jäljellä oleva kausi - column 'Billing Rhythm Months' - caption: Laskutusrytmin kuukaudet - column 'Customer Contract No.' - caption: Asiakassopimuksen nro - column 'Is Usage Based Billing' - caption: On käyttöperusteinen laskutus - column 'Source Type' - caption: Lähdetyyppi - column 'Source No.' - caption: Lähdenro - table 'Vendor Contract Line' - caption: Toimittajasopimusrivi - column 'Subscription Line No.' - caption: Sitoumusrivin nro - column Template - caption: Malli - column 'Vendor Contract Line Desc.' - caption: Toimittajasopimusrivin kuvaus - column 'Subscription Start Date' - caption: Huollon alkamispäivä - column 'Subscription End Date' - caption: Huollon päättymispäivä - column 'Next Billing Date' - caption: Seuraava laskutuspäivämäärä - column 'Vendor Contract Line No.' - caption: Toimittajasopimusrivin nro - column 'Notice Period' - caption: Irtisanomisaika - column 'Initial Term' - caption: Alkuperäinen kausi - column 'Extension Term' - caption: Jatkokausi - column 'Billing Rhythm' - caption: Laskutusrytmi - column 'Cancellation Possible Until' - caption: Peruutus mahdollista tähän asti - column 'Term Until' - caption: Kauden kesto - column 'Renewal Term' - caption: Uusimiskausi - column 'Line Active' - caption: Rivi aktiivinen - column 'Remaining Term' - caption: Jäljellä oleva kausi - column 'Billing Rhythm Months' - caption: Laskutusrytmin kuukaudet - column 'Vendor Contract No.' - caption: Toimittajasopimuksen nro - column 'Is Latest Version' - caption: On viimeisin versio - column 'Is Usage Based Billing' - caption: On käyttöperusteinen laskutus - column 'Source Type' - caption: Lähdetyyppi - column 'Source No.' - caption: Lähdenro - table 'Customer Contract Deferrals' - caption: Asiakassopimuksen siirrot - column 'Document Type' - caption: Asiakirjatyyppi - column 'Document No.' - caption: Asiakirjanumero - column 'Posting Date' - caption: Kirjauspäivämäärä - column 'Document Line No.' - caption: Asiakirjan rivinro - column 'Document Posting Date' - caption: Asiakirjan kirjauspäivämäärä - column 'Release Posting Date' - caption: Vapautuksen kirjauspäivämäärä - column 'G LEntry No.' - caption: KP-tapahtuman nro - table 'Customer Contract' - caption: Asiakassopimus - column 'Customer Contract No.' - caption: Asiakassopimuksen nro - column 'Customer Contract Type' - caption: Asiakassopimuksen tyyppi - column 'Customer Contract Description' - caption: Asiakassopimuksen kuvaus - column 'Customer Contract No. Desc.' - caption: Asiakassopimuksen nron kuvaus - table 'Vendor Contract' - caption: Toimittajasopimus - column 'Vendor Contract No.' - caption: Toimittajasopimuksen nro - column 'Vendor Contract Type' - caption: Toimittajasopimuksen tyyppi - column 'Vendor Contract Description' - caption: Toimittajasopimuksen kuvaus - column 'Vendor Contract No. Desc.' - caption: Toimittajasopimuksen nron kuvaus - table 'UBB handling' - caption: KPL:n käsittely - column 'Treat Usage Based Billing as constant' - caption: Käsittele KPL:ää vakiona - table 'Is Released' - caption: On vapautettu - table Item - caption: Nimike - column 'Item No.' - caption: Nimikenumero - column 'Item Name' - caption: Nimikkeen nimi - column 'Item Category Code' - caption: Nimikeluokan koodi - column 'Item Category Description' - caption: Nimikeluokan kuvaus - column 'Inventory Posting Group' - caption: Varaston kirjausryhmä - column 'Base Unit of Measure' - caption: Perusmittayksikkö - column 'Item No. & Description' - caption: Nimikkeen nro ja kuvaus - table 'Analysis Date' - caption: Analyysin päivämäärä - column 'Is Initial Version' - caption: On alkuperäinen versio - column 'Is Current Version' - caption: On nykyinen versio - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Laskettu ryhmä – Kalenterin aikatiedot (kirjanpito) - column Perspective - caption: Perspektiivi - table 'Subscription Billing KPIs' - caption: Subscription Billing – Tunnusluvut - measure 'Mon. Recurring Revenue' - caption: KKTT - measure 'Mon. Recurring Cost' - caption: KKTK - measure 'Customer Deferrals' - caption: Asiakassiirrot - measure 'Vendor Deferrals' - caption: Toimittajasiirrot - measure 'Annual Recurring Revenue' - caption: VTT - measure 'Total Contract Value' - caption: SKA - measure 'Forecast Sales' - caption: Ennustemyynti - measure 'Mon. Recurring Cost PY' - caption: KKTK EDV - measure 'Mon. Recurring Cost Δ vs. PY' - caption: KKTK Δ vrt. EDV - measure 'Mon. Recurring Revenue Churn' - caption: Kk:ttain toistuva tuotto – Vaihtuvuus - measure 'Mon. Recurring Revenue PY' - caption: KKTT EDV - measure 'Mon. Recurring Revenue New' - caption: Kk:ttain toistuva tuotto – Uusi - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Kk:ttain toistuvan tuoton Δ vrt. EDV - measure 'Mon. Net Profit Amount' - caption: KKNVS - measure 'Mon. Net Profit %' - caption: KKTT:N KKNVS-% - measure 'Mon. Net Profit PY' - caption: KKNVS EDV - measure 'Mon. Net Profit Δ vs. PY' - caption: KKNV Δ vrt. EDV - measure 'Change in Mon. Recurring Revenue' - caption: KKTT:n yleinen muutos - measure 'Total Contract Value PY' - caption: SKA EDV - measure 'Total Contract Value Δ vs. PY' - caption: SKA Δ vrt. EDV - measure 'Last Update Analysis Entries' - caption: Viimeisen päivityksen analyysitapahtumat - measure 'Last Update Semantic Model' - caption: Viimeisen päivityksen semanttinen malli - measure 'Param Environment' - caption: Param – Ympäristö - measure 'Param Company' - caption: Param – Yritys - measure 'Mon. Recurring Revenue Upgrade' - caption: Kk:ttain toistuva tuotto – Päivitys - measure 'Mon. Recurring Revenue Change UBB' - caption: Kk:ttain toistuvan tuoton muutos – KPL - measure 'Reporting Currency' - caption: Raportointivaluutta - measure 'Active Customers' - caption: Aktiiviset asiakkaat - measure 'Active Customers PY' - caption: Aktiiviset asiakkaat – EDV - measure 'Active Customers Δ vs. PY' - caption: Aktiivisten asiakkaiden Δ vrt. EDV - measure 'Customer Billing Forecast' - caption: Asiakkaan laskutusennuste - measure 'Vendor Billing Forecast' - caption: Toimittajan laskutusennuste - measure 'Forecast Costs' - caption: Ennustekustannukset - measure 'Mon. Recurring Revenue Downgrade' - caption: Kk:ttain toistuva tuotto – Palautus - measure 'Selected Date Range' - caption: Valittu päivämääräalue - measure 'Avg. Mon. Churn Rate %' - caption: Keskim. kk:ttainen vaihtuvuusprosentti % - measure 'Mon. Avg. Downgrade Rate %' - caption: Kk:ttainen palautusprosentti % keskimäärin - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Kk:ttain toistuva tuotto – Palautus ja Vaihtuvuus - table Salesperson - caption: Myyjä - column 'Salesperson Code' - caption: Myyjän koodi - column 'Salesperson Name' - caption: Myyjän nimi - table 'Customer Contract Changes' - caption: Asiakassopimuksen muutokset - column 'Customer Contract Line Key' - caption: Asiakassopimusrivin avain - column Date - caption: Pvm - column 'Change Type' - caption: Muuta tyyppiä - column 'MRR Delta' - caption: KKTT Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-BE.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-BE.tmdl deleted file mode 100644 index 598895fdf6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-BE.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo fr-BE - translations - model Model - table 'Dimension Sets' - caption: Ensembles de dimensions - column 'Global Dimension 1' - caption: Axe analytique principal 1 - column 'Global Dimension 2' - caption: Axe analytique principal 2 - column 'Shortcut Dimension 3' - caption: Raccourci axe 3 - column 'Shortcut Dimension 4' - caption: Raccourci axe 4 - column 'Shortcut Dimension 5' - caption: Raccourci axe 5 - column 'Shortcut Dimension 6' - caption: Raccourci axe 6 - column 'Shortcut Dimension 7' - caption: Raccourci axe 7 - column 'Shortcut Dimension 8' - caption: Raccourci axe 8 - column id - caption: ID - table Vendors - caption: Fournisseurs - column 'Vendor No.' - caption: N° fournisseur - column 'Vendor Name' - caption: Nom du fournisseur - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Vendor Posting Group' - caption: Groupe comptabilisation fournisseur - column 'Vendor No. & Name' - caption: N° et nom du fournisseur - table Customers - caption: Clients - column 'Customer No.' - caption: N° client - column 'Customer Name' - caption: Nom du client - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Customer Posting Group' - caption: Groupe comptabilisation client - column 'Customer Price Group' - caption: Groupe prix client - column 'Customer Discount Group' - caption: Groupe remises client - column 'Customer No. & Name' - caption: N° et nom du client - table Date - caption: Date - column 'Week Day' - caption: Jour semaine - column 'Day Type' - caption: Type de jour - column 'Calendar Year' - caption: Année civile - column 'Calendar Quarter' - caption: Trimestre civil - column 'Calendar Quarter Year' - caption: Trimestre civil - column 'Calendar Month' - caption: Mois civil - column 'Calendar Month Year' - caption: Mois année civile - column 'Calendar Week' - caption: Semaine civile - column 'Calendar Week Year' - caption: Semaine année civile - column 'Calendar RelativeWeekPos' - caption: PosSemaineRelative civile - column 'Calendar RelativeMonthPos' - caption: PosMoisRelatif civil - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelatif civil - column 'Calendar RelativeYearPos' - caption: PosAnnéeRelative civile - column 'Calendar StartOfMonth' - caption: DébutDuMois civil - column 'Calendar EndOfMonth' - caption: FinDuMois civil - column 'Calendar StartOfQuarter' - caption: DébutDuTrimestre civil - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre civil - column 'Calendar StartOfYear' - caption: DébutAnnée civile - column 'Calendar EndOfYear' - caption: FinAnnée civile - column 'Calendar MonthDays' - caption: JoursMois civils - column 'Calendar QuarterDays' - caption: JoursTrimestre civils - column 'Calendar YearDays' - caption: JoursAnnée civils - column 'Calendar DayOfMonthNumber' - caption: NuméroJourDuMois civil - column 'Calendar DayOfQuarterNumber' - caption: NuméroJourDuTrimestre civil - column 'Calendar DayOfYearNumber' - caption: NuméroJourAnnée civile - column 'Calendar DatePreviousWeek' - caption: DateSemainePrécédente civile - column 'Calendar DatePreviousMonth' - caption: DateMoisPrécédent civil - column 'Calendar DatePreviousQuarter' - caption: DateTrimestrePrécédent civil - column 'Calendar DatePreviousYear' - caption: DateAnnéePrécédente civile - column 'Fiscal Year' - caption: Exercice - column 'Fiscal Quarter' - caption: Trimestre d’exercice - column 'Fiscal Quarter Year' - caption: Trimestre d’exercice - column 'Fiscal Month' - caption: Mois d’exercice - column 'Fiscal Month Year' - caption: Mois et année d’exercice - column 'Fiscal Week' - caption: Semaine d’exercice - column 'Fiscal Week Year' - caption: Semaine année d’exercice - column 'Fiscal RelativeWeekPos' - caption: PosSemaineRelative d’exercice - column 'Fiscal RelativeMonthPos' - caption: PosMoisRelatif d’exercice - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelatif d’exercice - column 'Fiscal RelativeYearPos' - caption: PosAnnéeRelative d’exercice - column 'Fiscal StartOfMonth' - caption: DébutDuMois d’exercice - column 'Fiscal EndOfMonth' - caption: FinDuMois d’exercice - column 'Fiscal StartOfQuarter' - caption: DébutDuTrimestre d’exercice - column 'Fiscal EndOfQuarter' - caption: FinDuTrimestre d’exercice - column 'Fiscal StartOfYear' - caption: DébutExercice fiscal - column 'Fiscal EndOfYear' - caption: FinExercice fiscal - column 'Fiscal MonthDays' - caption: JoursMois d’exercice - column 'Fiscal QuarterDays' - caption: JoursTrimestre d’exercice - column 'Fiscal YearDays' - caption: JoursExercice - column 'Fiscal DayOfMonthNumber' - caption: NuméroJourDuMois d’exercice - column 'Fiscal DayOfQuarterNumber' - caption: NuméroJourDuTrimestre d’exercice - column 'Fiscal DayOfYearNumber' - caption: NuméroJourAnnée d’exercice - column 'Fiscal DatePreviousWeek' - caption: DateSemainePrécédente d’exercice - column 'Fiscal DatePreviousMonth' - caption: DateMoisPrécédent d’exercice - column 'Fiscal DatePreviousQuarter' - caption: DateTrimestrePrécédent d’exercice - column 'Fiscal DatePreviousYear' - caption: DateAnnéePrécédente d’exercice - column 'FW Year' - caption: Année SE - column 'FW Quarter' - caption: Trimestre SE - column 'FW Quarter Year' - caption: Trimestre année SE - column 'FW Month' - caption: Mois SE - column 'FW Month Year' - caption: Mois année SE - column 'FW Week' - caption: Semaine SE - column 'FW Period' - caption: Période SE - column 'FW Week Year' - caption: Semaine année SE - column 'FW StartOfWeek' - caption: DébutDeSemaine SE - column 'FW EndOfWeek' - caption: FinDeSemaine SE - column 'FW RelativeWeekPos' - caption: PosSemaineRelative SE - column 'FW RelativeMonthPos' - caption: PosMoisRelatif SE - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelatif SE - column 'FW RelativeYearPos' - caption: PosAnnéeRelative SE - column 'FW StartOfMonth' - caption: DébutDuMois SE - column 'FW EndOfMonth' - caption: FinDuMois SE - column 'FW StartOfQuarter' - caption: DébutDuTrimestre SE - column 'FW EndOfQuarter' - caption: FinDuTrimestre SE - column 'FW StartOfYear' - caption: DébutExercice SE - column 'FW EndOfYear' - caption: FinAnnée SE - column 'FW MonthDays' - caption: JoursMois SE - column 'FW QuarterDays' - caption: JoursTrimestre SE - column 'FW YearDays' - caption: JoursAnnée SE - column 'FW DayOfMonthNumber' - caption: NuméroJourDuMois SE - column 'FW DayOfQuarterNumber' - caption: NuméroJourDuTrimestre SE - column 'FW DayOfYearNumber' - caption: NuméroJourAnnée SE - column 'FW DatePreviousWeek' - caption: DateSemainePrécédente SE - column 'FW DatePreviousMonth' - caption: DateMoisPrécédent SE - column 'FW DatePreviousQuarter' - caption: DateTrimestrePrécédent SE - column 'FW DatePreviousYear' - caption: DateAnnéePrécédente SE - column 'Relative Day' - caption: Jour relatif - column Sequential365DayNumber - caption: NuméroJour séquentiel 365 - column 'Data Range Deferrals' - caption: Reports de plage de données - measure 'No. of Days' - caption: Nombre de jours - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Exercice-Trimestre-Mois-Semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Quarter Year' - caption: Trimestre d’exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Semaine-Mois-Trimestre-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Quarter Year' - caption: Trimestre civil - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Quarter-Month-Week' - caption: Année-Trimestre-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'Fiscal Year-Month' - caption: Exercice-Mois - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - hierarchy 'Fiscal Year-Month-Week' - caption: Exercice-Mois-Semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Month' - caption: Année-Mois civil - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - hierarchy 'Calendar Year-Month-Week' - caption: Mois-Semaine-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Month-Week' - caption: Année-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Quarter-Week' - caption: Année-Trimestre-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Week' - caption: Année-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Week Year' - caption: Semaine année SE - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECTER VOS DONNÉES - measure '1. Download the Finance Connector for Power BI' - caption: 1. Téléchargez Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurez Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - measure 'HELP AND SUPPORT' - caption: AIDE ET SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - measure 'for Business Central' - caption: pour Business Central - measure 'Last Refreshed' - caption: Dernière actualisation - measure 'Company Name' - caption: Nom de la société - measure 'Analysis Entries as of' - caption: Écritures analyse au - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Prévision de facturation par période de facturation, client et n° contrat - measure 'Billing Forecast by Year and Month' - caption: Prévision de facturation par année civile et par mois - measure 'Billing Schedule' - caption: Échéancier de facturation - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modification revenu récurrent mensuel par année et par mois - measure 'Current Date Range:' - caption: Plage de dates actuelle : - measure 'Customer Contract Deferrals' - caption: Reports contrat client - measure 'Customer Contract Lines' - caption: Lignes contrat client - measure 'Customer Deferrals (Caption)' - caption: Reports client - measure 'Mon. Recurring Revenue Analysis' - caption: Analyse du revenu récurrent mensuel - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - measure 'Mon. Recurring Revenue by Customer' - caption: Revenu récurrent mensuel par client - measure 'Mon. Recurring Revenue by Salesperson' - caption: Revenu récurrent mensuel par vendeur - measure 'Mon. Recurring Revenue by Year and Month' - caption: Revenu récurrent mensuel par année civile et par mois - measure 'Mon. Recurring Revenue by Item' - caption: Revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue by Item Category' - caption: Catégorie revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Attrition et rétrogradation revenu récurrent mensuel par contrat client - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Revenu récurrent mensuel nouveau et mis à niveau par contrat client - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Revenus mensuels et coûts prévus par année civile et par mois - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Revenus mensuels et coûts prévus par vendeur, client et n° contrat - measure 'Released and Deferred Amount by Year and Month' - caption: Montant lancé et échelonné par année civile et par mois - measure 'Revenue Analysis' - caption: Analyse du revenu - measure 'Revenue by Customer' - caption: Revenu par client - measure 'Revenue by Item' - caption: Revenu par article - measure 'Revenue by Salesperson' - caption: Revenu par vendeur - measure 'Revenue Development' - caption: Développement du revenu - measure 'Sales and Cost Forecast' - caption: Prévision de revenu - measure 'Revenue Year-Over-Year Growth' - caption: Croissance du revenu d’une année sur l’autre - measure 'Subscription Billing Analysis' - caption: Analyse Subscription Billing - measure 'Subscription Billing Overview' - caption: Vue d’ensemble de Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 premiers clients par revenu récurrent mensuel - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 premiers fournisseurs par coût mensuel récurrent - measure 'Total Contract Value Analysis' - caption: Analyse de la valeur totale du contrat - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valeur totale du contrat et valeur totale du contrat AP par mois civil - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - measure 'Total Contract Value by Year and Month' - caption: Valeur totale du contrat par année civile et par mois - measure 'Total Contract Value Year-Over-Year Growth' - caption: Croissance de la valeur totale des contrats d’une année à l’autre - measure 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - measure 'Vendor Deferrals (Caption)' - caption: Reports fournisseur - measure 'Back button' - caption: Bouton Retour - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - measure 'Churn Analysis' - caption: Analyse de l’attrition - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % taux d’attrition mensuel moyen par année et par mois - table 'Meta Information' - caption: SOCIÉTÉ - table Subscription - caption: Objet de service - column 'Subscription No.' - caption: N° objet de service - column 'Package Code' - caption: Code package - column 'Subscription Desc.' - caption: Desc. objet de service - column 'Analysis Date' - caption: Date d’analyse - column 'Subscription No. Desc.' - caption: Desc. n° Subscription - table 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - column Discount - caption: Remise - column 'Document Line No.' - caption: N° ligne document - table 'Customer Contract Line' - caption: Ligne contrat client - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Customer Contract Line Desc.' - caption: Desc. ligne contrat client - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Billing Base Period' - caption: Période de base de facturation - column 'Invoicing Item No.' - caption: N° article de facturation - column 'Customer Contract Line No.' - caption: N° ligne contrat client - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Customer Contract No.' - caption: N° contrat client - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Vendor Contract Line' - caption: Ligne contrat fournisseur - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Vendor Contract Line Desc.' - caption: Desc. ligne contrat fournisseur - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Vendor Contract Line No.' - caption: N° ligne contrat fournisseur - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Is Latest Version' - caption: Version la plus récente - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Customer Contract Deferrals' - caption: Reports contrat client - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Line No.' - caption: N° ligne document - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - table 'Customer Contract' - caption: Contrat client - column 'Customer Contract No.' - caption: N° contrat client - column 'Customer Contract Type' - caption: Type contrat client - column 'Customer Contract Description' - caption: Désignation contrat client - column 'Customer Contract No. Desc.' - caption: Desc. n° contrat client - table 'Vendor Contract' - caption: Contrat fournisseur - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Vendor Contract Type' - caption: Type contrat fournisseur - column 'Vendor Contract Description' - caption: Désignation contrat fournisseur - column 'Vendor Contract No. Desc.' - caption: Desc. n° contrat fournisseur - table 'UBB handling' - caption: Traitement FBA - column 'Treat Usage Based Billing as constant' - caption: Traiter FBA comme une constante - table 'Is Released' - caption: Est Lancé - table Item - caption: Article - column 'Item No.' - caption: N° d’article - column 'Item Name' - caption: Nom article - column 'Item Category Code' - caption: Code catégorie article - column 'Item Category Description' - caption: Désignation catégorie article - column 'Inventory Posting Group' - caption: Groupe de report des stocks - column 'Base Unit of Measure' - caption: Unité de base - column 'Item No. & Description' - caption: N° et désignation d’article - table 'Analysis Date' - caption: Date d’analyse - column 'Is Initial Version' - caption: Version initiale - column 'Is Current Version' - caption: Version actuelle - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Groupe calc. : intelligence temporelle du calendrier (fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: RRM - measure 'Mon. Recurring Cost' - caption: CMR - measure 'Customer Deferrals' - caption: Reports client - measure 'Vendor Deferrals' - caption: Reports fournisseur - measure 'Annual Recurring Revenue' - caption: RPA - measure 'Total Contract Value' - caption: VTC - measure 'Forecast Sales' - caption: Prévoir ventes - measure 'Mon. Recurring Cost PY' - caption: CMR AP - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CMR Δ par rapport à AP - measure 'Mon. Recurring Revenue Churn' - caption: Attrition revenu récurrent mensuel - measure 'Mon. Recurring Revenue PY' - caption: RRM AP - measure 'Mon. Recurring Revenue New' - caption: Nouveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Revenu récurrent mensuel Δ par rapport à AP - measure 'Mon. Net Profit Amount' - caption: NRRM - measure 'Mon. Net Profit %' - caption: % NRRM du RRM - measure 'Mon. Net Profit PY' - caption: NRRM AP - measure 'Mon. Net Profit Δ vs. PY' - caption: NRRM Δ par rapport à AP - measure 'Change in Mon. Recurring Revenue' - caption: Changement global RRM - measure 'Total Contract Value PY' - caption: VTC AP - measure 'Total Contract Value Δ vs. PY' - caption: VTC Δ par rapport à AP - measure 'Last Update Analysis Entries' - caption: Dernière mise à jour écritures analyse - measure 'Last Update Semantic Model' - caption: Dernière mise à jour du modèle sémantique - measure 'Param Environment' - caption: Environnement param. - measure 'Param Company' - caption: Société param. - measure 'Mon. Recurring Revenue Upgrade' - caption: Mise à niveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Change UBB' - caption: FBA modification du revenu récurrent mensuel - measure 'Reporting Currency' - caption: Devise de reporting - measure 'Active Customers' - caption: Clients actifs - measure 'Active Customers PY' - caption: Clients actifs AP - measure 'Active Customers Δ vs. PY' - caption: Clients actifs Δ par rapport à AP - measure 'Customer Billing Forecast' - caption: Prévision de facturation client - measure 'Vendor Billing Forecast' - caption: Prévision de facturation fournisseur - measure 'Forecast Costs' - caption: Prévoir les coûts - measure 'Mon. Recurring Revenue Downgrade' - caption: Rétrogradation revenu récurrent mensuel - measure 'Selected Date Range' - caption: Plage de dates sélectionnée - measure 'Avg. Mon. Churn Rate %' - caption: % taux d’attrition mensuel moyen - measure 'Mon. Avg. Downgrade Rate %' - caption: % taux de rétrogradation mensuel moyen - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Rétrogradation et attrition revenu récurrent mensuel - table Salesperson - caption: Vendeur - column 'Salesperson Code' - caption: Code vendeur - column 'Salesperson Name' - caption: Nom vendeur - table 'Customer Contract Changes' - caption: Modifications contrat client - column 'Customer Contract Line Key' - caption: Clé ligne contrat client - column Date - caption: Date - column 'Change Type' - caption: Modifier le type - column 'MRR Delta' - caption: Delta RRM - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CA.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CA.tmdl deleted file mode 100644 index 8817c2255f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CA.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo fr-CA - translations - model Model - table 'Dimension Sets' - caption: Ensembles de dimensions - column 'Global Dimension 1' - caption: Dimension principale 1 - column 'Global Dimension 2' - caption: Dimension principale 2 - column 'Shortcut Dimension 3' - caption: Dimension de raccourci 3 - column 'Shortcut Dimension 4' - caption: Dimension de raccourci 4 - column 'Shortcut Dimension 5' - caption: Dimension de raccourci 5 - column 'Shortcut Dimension 6' - caption: Dimension de raccourci 6 - column 'Shortcut Dimension 7' - caption: Dimension de raccourci 7 - column 'Shortcut Dimension 8' - caption: Dimension de raccourci 8 - column id - caption: code - table Vendors - caption: Fournisseurs - column 'Vendor No.' - caption: N° fournisseur - column 'Vendor Name' - caption: Nom du fournisseur - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: Code postal - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Vendor Posting Group' - caption: Groupe de comptabilisation du fournisseur - column 'Vendor No. & Name' - caption: N° et nom du fournisseur - table Customers - caption: Clients - column 'Customer No.' - caption: N° client - column 'Customer Name' - caption: Nom du client - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: Code postal - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Customer Posting Group' - caption: Groupe de comptabilisation du client - column 'Customer Price Group' - caption: Groupe prix client - column 'Customer Discount Group' - caption: Groupe de remises client - column 'Customer No. & Name' - caption: N° et nom du client - table Date - caption: Date - column 'Week Day' - caption: Jour semaine - column 'Day Type' - caption: Type de jour - column 'Calendar Year' - caption: Année civile - column 'Calendar Quarter' - caption: Trimestre civil - column 'Calendar Quarter Year' - caption: Trimestre civil - column 'Calendar Month' - caption: Mois civil - column 'Calendar Month Year' - caption: Mois année civile - column 'Calendar Week' - caption: Semaine civile - column 'Calendar Week Year' - caption: Semaine année civile - column 'Calendar RelativeWeekPos' - caption: PosSemaineRelative civile - column 'Calendar RelativeMonthPos' - caption: PosMoisRelatif civil - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelatif civil - column 'Calendar RelativeYearPos' - caption: PosAnnéeRelative civile - column 'Calendar StartOfMonth' - caption: DébutDuMois civil - column 'Calendar EndOfMonth' - caption: FinDuMois civil - column 'Calendar StartOfQuarter' - caption: DébutDuTrimestre civil - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre civil - column 'Calendar StartOfYear' - caption: DébutAnnée civile - column 'Calendar EndOfYear' - caption: FinAnnée civile - column 'Calendar MonthDays' - caption: JoursMois civils - column 'Calendar QuarterDays' - caption: JoursTrimestre civils - column 'Calendar YearDays' - caption: JoursAnnée civils - column 'Calendar DayOfMonthNumber' - caption: NuméroJourDuMois civil - column 'Calendar DayOfQuarterNumber' - caption: NuméroJourDuTrimestre civil - column 'Calendar DayOfYearNumber' - caption: NuméroJourAnnée civile - column 'Calendar DatePreviousWeek' - caption: DateSemainePrécédente civile - column 'Calendar DatePreviousMonth' - caption: DateMoisPrécédent civil - column 'Calendar DatePreviousQuarter' - caption: DateTrimestrePrécédent civil - column 'Calendar DatePreviousYear' - caption: DateAnnéePrécédente civile - column 'Fiscal Year' - caption: Exercice - column 'Fiscal Quarter' - caption: Trimestre d’exercice - column 'Fiscal Quarter Year' - caption: Trimestre d’exercice - column 'Fiscal Month' - caption: Mois d’exercice - column 'Fiscal Month Year' - caption: Mois et année d’exercice - column 'Fiscal Week' - caption: Semaine d’exercice - column 'Fiscal Week Year' - caption: Semaine année d’exercice - column 'Fiscal RelativeWeekPos' - caption: PosSemaineRelative d’exercice - column 'Fiscal RelativeMonthPos' - caption: PosMoisRelatif d’exercice - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelatif d’exercice - column 'Fiscal RelativeYearPos' - caption: PosAnnéeRelative d’exercice - column 'Fiscal StartOfMonth' - caption: DébutDuMois d’exercice - column 'Fiscal EndOfMonth' - caption: FinDuMois d’exercice - column 'Fiscal StartOfQuarter' - caption: DébutDuTrimestre d’exercice - column 'Fiscal EndOfQuarter' - caption: FinDuTrimestre d’exercice - column 'Fiscal StartOfYear' - caption: DébutExercice fiscal - column 'Fiscal EndOfYear' - caption: FinExercice fiscal - column 'Fiscal MonthDays' - caption: JoursMois d’exercice - column 'Fiscal QuarterDays' - caption: JoursTrimestre d’exercice - column 'Fiscal YearDays' - caption: JoursExercice - column 'Fiscal DayOfMonthNumber' - caption: NuméroJourDuMois d’exercice - column 'Fiscal DayOfQuarterNumber' - caption: NuméroJourDuTrimestre d’exercice - column 'Fiscal DayOfYearNumber' - caption: NuméroJourAnnée d’exercice - column 'Fiscal DatePreviousWeek' - caption: DateSemainePrécédente d’exercice - column 'Fiscal DatePreviousMonth' - caption: DateMoisPrécédent d’exercice - column 'Fiscal DatePreviousQuarter' - caption: DateTrimestrePrécédent d’exercice - column 'Fiscal DatePreviousYear' - caption: DateAnnéePrécédente d’exercice - column 'FW Year' - caption: Année SE - column 'FW Quarter' - caption: Trimestre SE - column 'FW Quarter Year' - caption: Trimestre année SE - column 'FW Month' - caption: Mois SE - column 'FW Month Year' - caption: Mois année SE - column 'FW Week' - caption: Semaine SE - column 'FW Period' - caption: Période SE - column 'FW Week Year' - caption: Semaine année SE - column 'FW StartOfWeek' - caption: DébutDeSemaine SE - column 'FW EndOfWeek' - caption: FinDeSemaine SE - column 'FW RelativeWeekPos' - caption: PosSemaineRelative SE - column 'FW RelativeMonthPos' - caption: PosMoisRelatif SE - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelatif SE - column 'FW RelativeYearPos' - caption: PosAnnéeRelative SE - column 'FW StartOfMonth' - caption: DébutDuMois SE - column 'FW EndOfMonth' - caption: FinDuMois SE - column 'FW StartOfQuarter' - caption: DébutDuTrimestre SE - column 'FW EndOfQuarter' - caption: FinDuTrimestre SE - column 'FW StartOfYear' - caption: DébutExercice SE - column 'FW EndOfYear' - caption: FinAnnée SE - column 'FW MonthDays' - caption: JoursMois SE - column 'FW QuarterDays' - caption: JoursTrimestre SE - column 'FW YearDays' - caption: JoursAnnée SE - column 'FW DayOfMonthNumber' - caption: NuméroJourDuMois SE - column 'FW DayOfQuarterNumber' - caption: NuméroJourDuTrimestre SE - column 'FW DayOfYearNumber' - caption: NuméroJourAnnée SE - column 'FW DatePreviousWeek' - caption: DateSemainePrécédente SE - column 'FW DatePreviousMonth' - caption: DateMoisPrécédent SE - column 'FW DatePreviousQuarter' - caption: DateTrimestrePrécédent SE - column 'FW DatePreviousYear' - caption: DateAnnéePrécédente SE - column 'Relative Day' - caption: Jour relatif - column Sequential365DayNumber - caption: NuméroJour séquentiel 365 - column 'Data Range Deferrals' - caption: Reports de plage de données - measure 'No. of Days' - caption: Nombre de jours - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Exercice-trimestre-mois-semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Quarter Year' - caption: Trimestre d’exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Semaine-Mois-Trimestre-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Quarter Year' - caption: Trimestre civil - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Quarter-Month-Week' - caption: Année-Trimestre-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'Fiscal Year-Month' - caption: Exercice-mois - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - hierarchy 'Fiscal Year-Month-Week' - caption: Exercice-mois-semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Month' - caption: Année-Mois civil - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - hierarchy 'Calendar Year-Month-Week' - caption: Mois-Semaine-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Month-Week' - caption: Année-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Quarter-Week' - caption: Année-Trimestre-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Week' - caption: Année-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Week Year' - caption: Semaine année SE - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECTER VOS DONNÉES - measure '1. Download the Finance Connector for Power BI' - caption: 1. Téléchargez Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurez Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: Utilisez, modifiez et créez vos propres rapports - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: La fonction Finance comprend divers rapports prédéfinis qui vous permettent de visualiser immédiatement vos données. Vous pouvez modifier ces rapports ou créer vos propres rapports à partir de zéro. - measure 'HELP AND SUPPORT' - caption: AIDE ET SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Pour obtenir de l’aide et de l’assistance concernant votre nouveau rapport, veuillez consulter la documentation relative à la présentation générale des analyses. - measure 'for Business Central' - caption: pour Business Central - measure 'Last Refreshed' - caption: Dernière actualisation - measure 'Company Name' - caption: Nom de la compagnie - measure 'Analysis Entries as of' - caption: Écritures analyse au - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Prévision de facturation par période de facturation, client et n° contrat - measure 'Billing Forecast by Year and Month' - caption: Prévision de facturation par année civile et par mois - measure 'Billing Schedule' - caption: Calendrier de facturation - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modification revenu récurrent mensuel par année et par mois - measure 'Current Date Range:' - caption: Plage de dates actuelle : - measure 'Customer Contract Deferrals' - caption: Reports contrat client - measure 'Customer Contract Lines' - caption: Lignes contrat client - measure 'Customer Deferrals (Caption)' - caption: Reports client - measure 'Mon. Recurring Revenue Analysis' - caption: Analyse du revenu récurrent mensuel - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - measure 'Mon. Recurring Revenue by Customer' - caption: Revenu récurrent mensuel par client - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mois Revenus récurrents par représentant - measure 'Mon. Recurring Revenue by Year and Month' - caption: Revenu récurrent mensuel par année civile et par mois - measure 'Mon. Recurring Revenue by Item' - caption: Revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue by Item Category' - caption: Catégorie revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Attrition et rétrogradation revenu récurrent mensuel par contrat client - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Revenu récurrent mensuel nouveau et mis à niveau par contrat client - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Revenus mensuels et coûts prévus par année civile et par mois - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Prévisions mensuelles de revenus et de coûts par représentant, client et numéro de contrat - measure 'Released and Deferred Amount by Year and Month' - caption: Montant libéré et différé par année civile et par mois - measure 'Revenue Analysis' - caption: Analyse du revenu - measure 'Revenue by Customer' - caption: Revenu par client - measure 'Revenue by Item' - caption: Revenu par article - measure 'Revenue by Salesperson' - caption: Revenus par représentant - measure 'Revenue Development' - caption: Développement du revenu - measure 'Sales and Cost Forecast' - caption: Prévision de revenu - measure 'Revenue Year-Over-Year Growth' - caption: Croissance du revenu d’une année sur l’autre - measure 'Subscription Billing Analysis' - caption: Analyse Subscription Billing - measure 'Subscription Billing Overview' - caption: Vue d’ensemble de Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 premiers clients par revenu récurrent mensuel - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 premiers fournisseurs par coût mensuel récurrent - measure 'Total Contract Value Analysis' - caption: Analyse de la valeur totale du contrat - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valeur totale du contrat et valeur totale du contrat AP par mois civil - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - measure 'Total Contract Value by Year and Month' - caption: Valeur totale du contrat par année civile et par mois - measure 'Total Contract Value Year-Over-Year Growth' - caption: Croissance de la valeur totale des contrats d’une année à l’autre - measure 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - measure 'Vendor Deferrals (Caption)' - caption: Reports fournisseur - measure 'Back button' - caption: Bouton Retour - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Revenus mensuels récurrents, coûts mensuels récurrents, bénéfice net mensuel, clients actifs, valeur totale du contrat, variation des revenus mensuels récurrent - measure 'Churn Analysis' - caption: Analyse de l’attrition - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % taux d’attrition mensuel moyen par année et par mois - table 'Meta Information' - caption: COMPAGNIE - table Subscription - caption: Objet de service - column 'Subscription No.' - caption: N° objet de service - column 'Package Code' - caption: Code package - column 'Subscription Desc.' - caption: Desc. objet de service - column 'Analysis Date' - caption: Date d’analyse - column 'Subscription No. Desc.' - caption: Desc. n° Subscription - table 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date de report - column 'Document Posting Date' - caption: Date de report du document - column 'Release Posting Date' - caption: Date de report de libération - column 'G LEntry No.' - caption: N° séquence compta. - column Discount - caption: Remise - column 'Document Line No.' - caption: N° ligne document - table 'Customer Contract Line' - caption: Ligne contrat client - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Customer Contract Line Desc.' - caption: Desc. ligne contrat client - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Billing Base Period' - caption: Période de base de facturation - column 'Invoicing Item No.' - caption: N° article de facturation - column 'Customer Contract Line No.' - caption: N° ligne contrat client - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Customer Contract No.' - caption: N° contrat client - column 'Is Usage Based Billing' - caption: La facturation est-elle basée sur l’utilisation ? - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Vendor Contract Line' - caption: Ligne contrat fournisseur - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Vendor Contract Line Desc.' - caption: Desc. ligne contrat fournisseur - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Vendor Contract Line No.' - caption: N° ligne contrat fournisseur - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Is Latest Version' - caption: Version la plus récente - column 'Is Usage Based Billing' - caption: La facturation est-elle basée sur l’utilisation ? - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Customer Contract Deferrals' - caption: Reports contrat client - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date de report - column 'Document Line No.' - caption: N° ligne document - column 'Document Posting Date' - caption: Date de report du document - column 'Release Posting Date' - caption: Date de report de libération - column 'G LEntry No.' - caption: N° séquence compta. - table 'Customer Contract' - caption: Contrat client - column 'Customer Contract No.' - caption: N° contrat client - column 'Customer Contract Type' - caption: Type contrat client - column 'Customer Contract Description' - caption: Description du contrat client - column 'Customer Contract No. Desc.' - caption: Desc. n° contrat client - table 'Vendor Contract' - caption: Contrat fournisseur - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Vendor Contract Type' - caption: Type contrat fournisseur - column 'Vendor Contract Description' - caption: Description du contrat fournisseur - column 'Vendor Contract No. Desc.' - caption: Desc. n° contrat fournisseur - table 'UBB handling' - caption: Traitement FBA - column 'Treat Usage Based Billing as constant' - caption: Traiter FBA comme une constante - table 'Is Released' - caption: Est libéré - table Item - caption: Article - column 'Item No.' - caption: N° d’article - column 'Item Name' - caption: Nom article - column 'Item Category Code' - caption: Code catégorie article - column 'Item Category Description' - caption: Description de la catégorie d’article - column 'Inventory Posting Group' - caption: Groupe de report d’inventaire - column 'Base Unit of Measure' - caption: Unité de mesure de base - column 'Item No. & Description' - caption: Numéro et description de l’article - table 'Analysis Date' - caption: Date d’analyse - column 'Is Initial Version' - caption: Version initiale - column 'Is Current Version' - caption: Version actuelle - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Groupe calc. : intelligence temporelle du calendrier (fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: RRM - measure 'Mon. Recurring Cost' - caption: CMR - measure 'Customer Deferrals' - caption: Reports client - measure 'Vendor Deferrals' - caption: Reports fournisseur - measure 'Annual Recurring Revenue' - caption: RPA - measure 'Total Contract Value' - caption: VTC - measure 'Forecast Sales' - caption: Prévoir ventes - measure 'Mon. Recurring Cost PY' - caption: CMR AP - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CMR Δ par rapport à AP - measure 'Mon. Recurring Revenue Churn' - caption: Attrition revenu récurrent mensuel - measure 'Mon. Recurring Revenue PY' - caption: RRM AP - measure 'Mon. Recurring Revenue New' - caption: Nouveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Revenu récurrent mensuel Δ par rapport à AP - measure 'Mon. Net Profit Amount' - caption: NRRM - measure 'Mon. Net Profit %' - caption: % NRRM du RRM - measure 'Mon. Net Profit PY' - caption: NRRM AP - measure 'Mon. Net Profit Δ vs. PY' - caption: NRRM Δ par rapport à AP - measure 'Change in Mon. Recurring Revenue' - caption: Changement global RRM - measure 'Total Contract Value PY' - caption: VTC AP - measure 'Total Contract Value Δ vs. PY' - caption: VTC Δ par rapport à AP - measure 'Last Update Analysis Entries' - caption: Dernière mise à jour écritures analyse - measure 'Last Update Semantic Model' - caption: Dernière mise à jour du modèle sémantique - measure 'Param Environment' - caption: Environnement param. - measure 'Param Company' - caption: Paramètres de la compagnie - measure 'Mon. Recurring Revenue Upgrade' - caption: Mise à niveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Change UBB' - caption: FBA modification du revenu récurrent mensuel - measure 'Reporting Currency' - caption: Devise de reporting - measure 'Active Customers' - caption: Clients actifs - measure 'Active Customers PY' - caption: Clients actifs AP - measure 'Active Customers Δ vs. PY' - caption: Clients actifs Δ par rapport à AP - measure 'Customer Billing Forecast' - caption: Prévision de facturation client - measure 'Vendor Billing Forecast' - caption: Prévision de facturation fournisseur - measure 'Forecast Costs' - caption: Prévoir les coûts - measure 'Mon. Recurring Revenue Downgrade' - caption: Rétrogradation revenu récurrent mensuel - measure 'Selected Date Range' - caption: Plage de dates sélectionnée - measure 'Avg. Mon. Churn Rate %' - caption: % taux d’attrition mensuel moyen - measure 'Mon. Avg. Downgrade Rate %' - caption: % taux de rétrogradation mensuel moyen - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Rétrogradation et attrition revenu récurrent mensuel - table Salesperson - caption: Représentant - column 'Salesperson Code' - caption: Code du représentant - column 'Salesperson Name' - caption: Nom du représentant - table 'Customer Contract Changes' - caption: Modifications contrat client - column 'Customer Contract Line Key' - caption: Clé ligne contrat client - column Date - caption: Date - column 'Change Type' - caption: Modifier le type - column 'MRR Delta' - caption: Delta RRM - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CH.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CH.tmdl deleted file mode 100644 index 3dd40870bd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-CH.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo fr-CH - translations - model Model - table 'Dimension Sets' - caption: Ensembles de dimensions - column 'Global Dimension 1' - caption: Axe analytique principal 1 - column 'Global Dimension 2' - caption: Axe analytique principal 2 - column 'Shortcut Dimension 3' - caption: Raccourci axe 3 - column 'Shortcut Dimension 4' - caption: Raccourci axe 4 - column 'Shortcut Dimension 5' - caption: Raccourci axe 5 - column 'Shortcut Dimension 6' - caption: Raccourci axe 6 - column 'Shortcut Dimension 7' - caption: Raccourci axe 7 - column 'Shortcut Dimension 8' - caption: Raccourci axe 8 - column id - caption: ID - table Vendors - caption: Fournisseurs - column 'Vendor No.' - caption: N° fournisseur - column 'Vendor Name' - caption: Nom du fournisseur - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Vendor Posting Group' - caption: Groupe comptabilisation fournisseur - column 'Vendor No. & Name' - caption: N° et nom du fournisseur - table Customers - caption: Clients - column 'Customer No.' - caption: N° client - column 'Customer Name' - caption: Nom du client - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Customer Posting Group' - caption: Groupe comptabilisation client - column 'Customer Price Group' - caption: Groupe prix client - column 'Customer Discount Group' - caption: Groupe remises client - column 'Customer No. & Name' - caption: N° et nom du client - table Date - caption: Date - column 'Week Day' - caption: Jour semaine - column 'Day Type' - caption: Type de jour - column 'Calendar Year' - caption: Année civile - column 'Calendar Quarter' - caption: Trimestre civil - column 'Calendar Quarter Year' - caption: Trimestre civil - column 'Calendar Month' - caption: Mois civil - column 'Calendar Month Year' - caption: Mois année civile - column 'Calendar Week' - caption: Semaine civile - column 'Calendar Week Year' - caption: Semaine année civile - column 'Calendar RelativeWeekPos' - caption: PosSemaineRelative civile - column 'Calendar RelativeMonthPos' - caption: PosMoisRelatif civil - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelatif civil - column 'Calendar RelativeYearPos' - caption: PosAnnéeRelative civile - column 'Calendar StartOfMonth' - caption: DébutDuMois civil - column 'Calendar EndOfMonth' - caption: FinDuMois civil - column 'Calendar StartOfQuarter' - caption: DébutDuTrimestre civil - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre civil - column 'Calendar StartOfYear' - caption: DébutAnnée civile - column 'Calendar EndOfYear' - caption: FinAnnée civile - column 'Calendar MonthDays' - caption: JoursMois civils - column 'Calendar QuarterDays' - caption: JoursTrimestre civils - column 'Calendar YearDays' - caption: JoursAnnée civils - column 'Calendar DayOfMonthNumber' - caption: NuméroJourDuMois civil - column 'Calendar DayOfQuarterNumber' - caption: NuméroJourDuTrimestre civil - column 'Calendar DayOfYearNumber' - caption: NuméroJourAnnée civile - column 'Calendar DatePreviousWeek' - caption: DateSemainePrécédente civile - column 'Calendar DatePreviousMonth' - caption: DateMoisPrécédent civil - column 'Calendar DatePreviousQuarter' - caption: DateTrimestrePrécédent civil - column 'Calendar DatePreviousYear' - caption: DateAnnéePrécédente civile - column 'Fiscal Year' - caption: Exercice - column 'Fiscal Quarter' - caption: Trimestre d’exercice - column 'Fiscal Quarter Year' - caption: Trimestre d’exercice - column 'Fiscal Month' - caption: Mois d’exercice - column 'Fiscal Month Year' - caption: Mois et année d’exercice - column 'Fiscal Week' - caption: Semaine d’exercice - column 'Fiscal Week Year' - caption: Semaine année d’exercice - column 'Fiscal RelativeWeekPos' - caption: PosSemaineRelative d’exercice - column 'Fiscal RelativeMonthPos' - caption: PosMoisRelatif d’exercice - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelatif d’exercice - column 'Fiscal RelativeYearPos' - caption: PosAnnéeRelative d’exercice - column 'Fiscal StartOfMonth' - caption: DébutDuMois d’exercice - column 'Fiscal EndOfMonth' - caption: FinDuMois d’exercice - column 'Fiscal StartOfQuarter' - caption: DébutDuTrimestre d’exercice - column 'Fiscal EndOfQuarter' - caption: FinDuTrimestre d’exercice - column 'Fiscal StartOfYear' - caption: DébutExercice fiscal - column 'Fiscal EndOfYear' - caption: FinExercice fiscal - column 'Fiscal MonthDays' - caption: JoursMois d’exercice - column 'Fiscal QuarterDays' - caption: JoursTrimestre d’exercice - column 'Fiscal YearDays' - caption: JoursExercice - column 'Fiscal DayOfMonthNumber' - caption: NuméroJourDuMois d’exercice - column 'Fiscal DayOfQuarterNumber' - caption: NuméroJourDuTrimestre d’exercice - column 'Fiscal DayOfYearNumber' - caption: NuméroJourAnnée d’exercice - column 'Fiscal DatePreviousWeek' - caption: DateSemainePrécédente d’exercice - column 'Fiscal DatePreviousMonth' - caption: DateMoisPrécédent d’exercice - column 'Fiscal DatePreviousQuarter' - caption: DateTrimestrePrécédent d’exercice - column 'Fiscal DatePreviousYear' - caption: DateAnnéePrécédente d’exercice - column 'FW Year' - caption: Année SE - column 'FW Quarter' - caption: Trimestre SE - column 'FW Quarter Year' - caption: Trimestre année SE - column 'FW Month' - caption: Mois SE - column 'FW Month Year' - caption: Mois année SE - column 'FW Week' - caption: Semaine SE - column 'FW Period' - caption: Période SE - column 'FW Week Year' - caption: Semaine année SE - column 'FW StartOfWeek' - caption: DébutDeSemaine SE - column 'FW EndOfWeek' - caption: FinDeSemaine SE - column 'FW RelativeWeekPos' - caption: PosSemaineRelative SE - column 'FW RelativeMonthPos' - caption: PosMoisRelatif SE - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelatif SE - column 'FW RelativeYearPos' - caption: PosAnnéeRelative SE - column 'FW StartOfMonth' - caption: DébutDuMois SE - column 'FW EndOfMonth' - caption: FinDuMois SE - column 'FW StartOfQuarter' - caption: DébutDuTrimestre SE - column 'FW EndOfQuarter' - caption: FinDuTrimestre SE - column 'FW StartOfYear' - caption: DébutExercice SE - column 'FW EndOfYear' - caption: FinAnnée SE - column 'FW MonthDays' - caption: JoursMois SE - column 'FW QuarterDays' - caption: JoursTrimestre SE - column 'FW YearDays' - caption: JoursAnnée SE - column 'FW DayOfMonthNumber' - caption: NuméroJourDuMois SE - column 'FW DayOfQuarterNumber' - caption: NuméroJourDuTrimestre SE - column 'FW DayOfYearNumber' - caption: NuméroJourAnnée SE - column 'FW DatePreviousWeek' - caption: DateSemainePrécédente SE - column 'FW DatePreviousMonth' - caption: DateMoisPrécédent SE - column 'FW DatePreviousQuarter' - caption: DateTrimestrePrécédent SE - column 'FW DatePreviousYear' - caption: DateAnnéePrécédente SE - column 'Relative Day' - caption: Jour relatif - column Sequential365DayNumber - caption: NuméroJour séquentiel 365 - column 'Data Range Deferrals' - caption: Reports de plage de données - measure 'No. of Days' - caption: Nombre de jours - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Exercice-Trimestre-Mois-Semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Quarter Year' - caption: Trimestre d’exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Semaine-Mois-Trimestre-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Quarter Year' - caption: Trimestre civil - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Quarter-Month-Week' - caption: Année-Trimestre-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'Fiscal Year-Month' - caption: Exercice-Mois - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - hierarchy 'Fiscal Year-Month-Week' - caption: Exercice-Mois-Semaine - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Month' - caption: Année-Mois civil - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - hierarchy 'Calendar Year-Month-Week' - caption: Mois-Semaine-Année civils - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Month-Week' - caption: Année-Mois-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Quarter-Week' - caption: Année-Trimestre-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Week' - caption: Année-Semaine SE - level 'FW Year' - caption: Année SE - level 'FW Week Year' - caption: Semaine année SE - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECTER VOS DONNÉES - measure '1. Download the Finance Connector for Power BI' - caption: 1. Téléchargez Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurez Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - measure 'HELP AND SUPPORT' - caption: AIDE ET SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - measure 'for Business Central' - caption: pour Business Central - measure 'Last Refreshed' - caption: Dernière actualisation - measure 'Company Name' - caption: Nom de la société - measure 'Analysis Entries as of' - caption: Écritures analyse au - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Prévision de facturation par période de facturation, client et n° contrat - measure 'Billing Forecast by Year and Month' - caption: Prévision de facturation par année civile et par mois - measure 'Billing Schedule' - caption: Échéancier de facturation - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modification revenu récurrent mensuel par année et par mois - measure 'Current Date Range:' - caption: Plage de dates actuelle : - measure 'Customer Contract Deferrals' - caption: Reports contrat client - measure 'Customer Contract Lines' - caption: Lignes contrat client - measure 'Customer Deferrals (Caption)' - caption: Reports client - measure 'Mon. Recurring Revenue Analysis' - caption: Analyse du revenu récurrent mensuel - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - measure 'Mon. Recurring Revenue by Customer' - caption: Revenu récurrent mensuel par client - measure 'Mon. Recurring Revenue by Salesperson' - caption: Revenu récurrent mensuel par vendeur - measure 'Mon. Recurring Revenue by Year and Month' - caption: Revenu récurrent mensuel par année civile et par mois - measure 'Mon. Recurring Revenue by Item' - caption: Revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue by Item Category' - caption: Catégorie revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Attrition et rétrogradation revenu récurrent mensuel par contrat client - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Revenu récurrent mensuel nouveau et mis à niveau par contrat client - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Revenus mensuels et coûts prévus par année civile et par mois - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Revenus mensuels et coûts prévus par vendeur, client et n° contrat - measure 'Released and Deferred Amount by Year and Month' - caption: Montant lancé et échelonné par année civile et par mois - measure 'Revenue Analysis' - caption: Analyse du revenu - measure 'Revenue by Customer' - caption: Revenu par client - measure 'Revenue by Item' - caption: Revenu par article - measure 'Revenue by Salesperson' - caption: Revenu par vendeur - measure 'Revenue Development' - caption: Développement du revenu - measure 'Sales and Cost Forecast' - caption: Prévision de revenu - measure 'Revenue Year-Over-Year Growth' - caption: Croissance du revenu d’une année sur l’autre - measure 'Subscription Billing Analysis' - caption: Analyse Subscription Billing - measure 'Subscription Billing Overview' - caption: Vue d’ensemble de Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 premiers clients par revenu récurrent mensuel - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 premiers fournisseurs par coût mensuel récurrent - measure 'Total Contract Value Analysis' - caption: Analyse de la valeur totale du contrat - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valeur totale du contrat et valeur totale du contrat AP par mois civil - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - measure 'Total Contract Value by Year and Month' - caption: Valeur totale du contrat par année civile et par mois - measure 'Total Contract Value Year-Over-Year Growth' - caption: Croissance de la valeur totale des contrats d’une année à l’autre - measure 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - measure 'Vendor Deferrals (Caption)' - caption: Reports fournisseur - measure 'Back button' - caption: Bouton Retour - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - measure 'Churn Analysis' - caption: Analyse de l’attrition - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % taux d’attrition mensuel moyen par année et par mois - table 'Meta Information' - caption: SOCIÉTÉ - table Subscription - caption: Objet de service - column 'Subscription No.' - caption: N° objet de service - column 'Package Code' - caption: Code package - column 'Subscription Desc.' - caption: Desc. objet de service - column 'Analysis Date' - caption: Date d’analyse - column 'Subscription No. Desc.' - caption: Desc. n° Subscription - table 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - column Discount - caption: Remise - column 'Document Line No.' - caption: N° ligne document - table 'Customer Contract Line' - caption: Ligne contrat client - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Customer Contract Line Desc.' - caption: Desc. ligne contrat client - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Billing Base Period' - caption: Période de base de facturation - column 'Invoicing Item No.' - caption: N° article de facturation - column 'Customer Contract Line No.' - caption: N° ligne contrat client - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Customer Contract No.' - caption: N° contrat client - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Vendor Contract Line' - caption: Ligne contrat fournisseur - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Vendor Contract Line Desc.' - caption: Desc. ligne contrat fournisseur - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Vendor Contract Line No.' - caption: N° ligne contrat fournisseur - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Is Latest Version' - caption: Version la plus récente - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Customer Contract Deferrals' - caption: Reports contrat client - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Line No.' - caption: N° ligne document - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - table 'Customer Contract' - caption: Contrat client - column 'Customer Contract No.' - caption: N° contrat client - column 'Customer Contract Type' - caption: Type contrat client - column 'Customer Contract Description' - caption: Désignation contrat client - column 'Customer Contract No. Desc.' - caption: Desc. n° contrat client - table 'Vendor Contract' - caption: Contrat fournisseur - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Vendor Contract Type' - caption: Type contrat fournisseur - column 'Vendor Contract Description' - caption: Désignation contrat fournisseur - column 'Vendor Contract No. Desc.' - caption: Desc. n° contrat fournisseur - table 'UBB handling' - caption: Traitement FBA - column 'Treat Usage Based Billing as constant' - caption: Traiter FBA comme une constante - table 'Is Released' - caption: Est Lancé - table Item - caption: Article - column 'Item No.' - caption: N° d’article - column 'Item Name' - caption: Nom article - column 'Item Category Code' - caption: Code catégorie article - column 'Item Category Description' - caption: Désignation catégorie article - column 'Inventory Posting Group' - caption: Groupe de report des stocks - column 'Base Unit of Measure' - caption: Unité de base - column 'Item No. & Description' - caption: N° et désignation d’article - table 'Analysis Date' - caption: Date d’analyse - column 'Is Initial Version' - caption: Version initiale - column 'Is Current Version' - caption: Version actuelle - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Groupe calc. : intelligence temporelle du calendrier (fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: RRM - measure 'Mon. Recurring Cost' - caption: CMR - measure 'Customer Deferrals' - caption: Reports client - measure 'Vendor Deferrals' - caption: Reports fournisseur - measure 'Annual Recurring Revenue' - caption: RPA - measure 'Total Contract Value' - caption: VTC - measure 'Forecast Sales' - caption: Prévoir ventes - measure 'Mon. Recurring Cost PY' - caption: CMR AP - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CMR Δ par rapport à AP - measure 'Mon. Recurring Revenue Churn' - caption: Attrition revenu récurrent mensuel - measure 'Mon. Recurring Revenue PY' - caption: RRM AP - measure 'Mon. Recurring Revenue New' - caption: Nouveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Revenu récurrent mensuel Δ par rapport à AP - measure 'Mon. Net Profit Amount' - caption: NRRM - measure 'Mon. Net Profit %' - caption: % NRRM du RRM - measure 'Mon. Net Profit PY' - caption: NRRM AP - measure 'Mon. Net Profit Δ vs. PY' - caption: NRRM Δ par rapport à AP - measure 'Change in Mon. Recurring Revenue' - caption: Changement global RRM - measure 'Total Contract Value PY' - caption: VTC AP - measure 'Total Contract Value Δ vs. PY' - caption: VTC Δ par rapport à AP - measure 'Last Update Analysis Entries' - caption: Dernière mise à jour écritures analyse - measure 'Last Update Semantic Model' - caption: Dernière mise à jour du modèle sémantique - measure 'Param Environment' - caption: Environnement param. - measure 'Param Company' - caption: Société param. - measure 'Mon. Recurring Revenue Upgrade' - caption: Mise à niveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Change UBB' - caption: FBA modification du revenu récurrent mensuel - measure 'Reporting Currency' - caption: Devise de reporting - measure 'Active Customers' - caption: Clients actifs - measure 'Active Customers PY' - caption: Clients actifs AP - measure 'Active Customers Δ vs. PY' - caption: Clients actifs Δ par rapport à AP - measure 'Customer Billing Forecast' - caption: Prévision de facturation client - measure 'Vendor Billing Forecast' - caption: Prévision de facturation fournisseur - measure 'Forecast Costs' - caption: Prévoir les coûts - measure 'Mon. Recurring Revenue Downgrade' - caption: Rétrogradation revenu récurrent mensuel - measure 'Selected Date Range' - caption: Plage de dates sélectionnée - measure 'Avg. Mon. Churn Rate %' - caption: % taux d’attrition mensuel moyen - measure 'Mon. Avg. Downgrade Rate %' - caption: % taux de rétrogradation mensuel moyen - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Rétrogradation et attrition revenu récurrent mensuel - table Salesperson - caption: Vendeur - column 'Salesperson Code' - caption: Code vendeur - column 'Salesperson Name' - caption: Nom vendeur - table 'Customer Contract Changes' - caption: Modifications contrat client - column 'Customer Contract Line Key' - caption: Clé ligne contrat client - column Date - caption: Date - column 'Change Type' - caption: Modifier le type - column 'MRR Delta' - caption: Delta RRM - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-FR.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-FR.tmdl deleted file mode 100644 index 6b80302e95..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/fr-FR.tmdl +++ /dev/null @@ -1,834 +0,0 @@ -cultureInfo fr-FR - translations - model Model - table 'Dimension Sets' - caption: Ensembles de dimensions - column 'Global Dimension 1' - caption: Axe analytique principal 1 - column 'Global Dimension 2' - caption: Axe analytique principal 2 - column 'Shortcut Dimension 3' - caption: Raccourci axe 3 - column 'Shortcut Dimension 4' - caption: Raccourci axe 4 - column 'Shortcut Dimension 5' - caption: Raccourci axe 5 - column 'Shortcut Dimension 6' - caption: Raccourci axe 6 - column 'Shortcut Dimension 7' - caption: Raccourci axe 7 - column 'Shortcut Dimension 8' - caption: Raccourci axe 8 - column id - caption: ID - table Vendors - caption: Fournisseurs - column 'Vendor No.' - caption: N° fournisseur - column 'Vendor Name' - caption: Nom du fournisseur - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Vendor Posting Group' - caption: Groupe comptabilisation fournisseur - column 'Vendor No. & Name' - caption: N° et nom du fournisseur - table Customers - caption: Clients - column 'Customer No.' - caption: N° client - column 'Customer Name' - caption: Nom du client - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Ville - column 'Post Code' - caption: CP - column State - caption: État - column 'Country/Region Code' - caption: Code de pays/région - column 'Customer Posting Group' - caption: Groupe comptabilisation client - column 'Customer Price Group' - caption: Groupe prix client - column 'Customer Discount Group' - caption: Groupe remises client - column 'Customer No. & Name' - caption: N° et nom du client - table Date - caption: Date - column Date - caption: Date - column 'Week Day' - caption: Jour semaine - column 'Day Type' - caption: Type de jour - column 'Calendar Year' - caption: Année civile - displayFolder: _Standard Calendrier - column 'Calendar Quarter' - caption: Trimestre civil - displayFolder: _Standard Calendrier - column 'Calendar Quarter Year' - caption: Trimestre civil - displayFolder: _Standard Calendrier - column 'Calendar Month' - caption: Mois civil - displayFolder: _Standard Calendrier - column 'Calendar Month Year' - caption: Mois année civile - displayFolder: _Standard Calendrier - column 'Calendar Week' - caption: Semaine civile - displayFolder: _Standard Calendrier - column 'Calendar Week Year' - caption: Semaine année civile - displayFolder: _Standard Calendrier - column 'Calendar WeekYearOrder' - displayFolder: _Standard Calendrier - column 'Calendar RelativeWeekPos' - caption: PosSemaineRelative civile - displayFolder: _Standard Calendrier - column 'Calendar RelativeMonthPos' - caption: PosMoisRelatif civil - displayFolder: _Standard Calendrier - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelatif civil - displayFolder: _Standard Calendrier - column 'Calendar RelativeYearPos' - caption: PosAnnéeRelative civile - displayFolder: _Standard Calendrier - column 'Calendar StartOfMonth' - caption: DébutDuMois civil - displayFolder: _Standard Calendrier - column 'Calendar EndOfMonth' - caption: FinDuMois civil - displayFolder: _Standard Calendrier - column 'Calendar StartOfQuarter' - caption: DébutDuTrimestre civil - displayFolder: _Standard Calendrier - column 'Calendar EndOfQuarter' - caption: FinDeTrimestre civil - displayFolder: _Standard Calendrier - column 'Calendar StartOfYear' - caption: DébutAnnée civile - displayFolder: _Standard Calendrier - column 'Calendar EndOfYear' - caption: FinAnnée civile - displayFolder: _Standard Calendrier - column 'Calendar MonthDays' - caption: JoursMois civils - displayFolder: _Standard Calendrier - column 'Calendar QuarterDays' - caption: JoursTrimestre civils - displayFolder: _Standard Calendrier - column 'Calendar YearDays' - caption: JoursAnnée civils - displayFolder: _Standard Calendrier - column 'Calendar DayOfMonthNumber' - caption: NuméroJourDuMois civil - displayFolder: _Standard Calendrier - column 'Calendar DayOfQuarterNumber' - caption: NuméroJourDuTrimestre civil - displayFolder: _Standard Calendrier - column 'Calendar DayOfYearNumber' - caption: NuméroJourAnnée civile - displayFolder: _Standard Calendrier - column 'Calendar DatePreviousWeek' - caption: DateSemainePrécédente civile - displayFolder: _Standard Calendrier - column 'Calendar DatePreviousMonth' - caption: DateMoisPrécédent civil - displayFolder: _Standard Calendrier - column 'Calendar DatePreviousQuarter' - caption: DateTrimestrePrécédent civil - displayFolder: _Standard Calendrier - column 'Calendar DatePreviousYear' - caption: DateAnnéePrécédente civile - displayFolder: _Standard Calendrier - column 'Fiscal Year' - caption: Exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal Quarter' - caption: Trimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal Quarter Year' - caption: Trimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal MonthInQuarterNumber' - displayFolder: _Fiscal Calendrier - column 'Fiscal Month' - caption: Mois d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal Month Year' - caption: Mois et année d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal Week' - caption: Semaine d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal Week Year' - caption: Semaine année d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal WeekYearOrder' - displayFolder: _Fiscal Calendrier - column 'Fiscal RelativeWeekPos' - caption: PosSemaineRelative d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal RelativeMonthPos' - caption: PosMoisRelatif d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelatif d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal RelativeYearPos' - caption: PosAnnéeRelative d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal StartOfMonth' - caption: DébutDuMois d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal EndOfMonth' - caption: FinDuMois d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal StartOfQuarter' - caption: DébutDuTrimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal EndOfQuarter' - caption: FinDuTrimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal StartOfYear' - caption: DébutExercice fiscal - displayFolder: _Fiscal Calendrier - column 'Fiscal EndOfYear' - caption: FinExercice fiscal - displayFolder: _Fiscal Calendrier - column 'Fiscal MonthDays' - caption: JoursMois d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal QuarterDays' - caption: JoursTrimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal YearDays' - caption: JoursExercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DayOfMonthNumber' - caption: NuméroJourDuMois d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DayOfQuarterNumber' - caption: NuméroJourDuTrimestre d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DayOfYearNumber' - caption: NuméroJourAnnée d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DatePreviousWeek' - caption: DateSemainePrécédente d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DatePreviousMonth' - caption: DateMoisPrécédent d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DatePreviousQuarter' - caption: DateTrimestrePrécédent d’exercice - displayFolder: _Fiscal Calendrier - column 'Fiscal DatePreviousYear' - caption: DateAnnéePrécédente d’exercice - displayFolder: _Fiscal Calendrier - column 'FW Year' - caption: Année SE - displayFolder: _Weekly Calendrier - column 'FW Quarter' - caption: Trimestre SE - displayFolder: _Weekly Calendrier - column 'FW Quarter Year' - caption: Trimestre année SE - displayFolder: _Weekly Calendrier - column 'FW Month' - caption: Mois SE - displayFolder: _Weekly Calendrier - column 'FW Month Year' - caption: Mois année SE - displayFolder: _Weekly Calendrier - column 'FW Week' - caption: Semaine SE - displayFolder: _Weekly Calendrier - column 'FW Period' - caption: Période SE - displayFolder: _Weekly Calendrier - column 'FW Week Year' - caption: Semaine année SE - displayFolder: _Weekly Calendrier - column 'FW StartOfWeek' - caption: DébutDeSemaine SE - displayFolder: _Weekly Calendrier - column 'FW EndOfWeek' - caption: FinDeSemaine SE - displayFolder: _Weekly Calendrier - column 'FW RelativeWeekPos' - caption: PosSemaineRelative SE - displayFolder: _Weekly Calendrier - column 'FW RelativeMonthPos' - caption: PosMoisRelatif SE - displayFolder: _Weekly Calendrier - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelatif SE - displayFolder: _Weekly Calendrier - column 'FW RelativeYearPos' - caption: PosAnnéeRelative SE - displayFolder: _Weekly Calendrier - column 'FW StartOfMonth' - caption: DébutDuMois SE - displayFolder: _Weekly Calendrier - column 'FW EndOfMonth' - caption: FinDuMois SE - displayFolder: _Weekly Calendrier - column 'FW StartOfQuarter' - caption: DébutDuTrimestre SE - displayFolder: _Weekly Calendrier - column 'FW EndOfQuarter' - caption: FinDuTrimestre SE - displayFolder: _Weekly Calendrier - column 'FW StartOfYear' - caption: DébutExercice SE - displayFolder: _Weekly Calendrier - column 'FW EndOfYear' - caption: FinAnnée SE - displayFolder: _Weekly Calendrier - column 'FW MonthDays' - caption: JoursMois SE - displayFolder: _Weekly Calendrier - column 'FW QuarterDays' - caption: JoursTrimestre SE - displayFolder: _Weekly Calendrier - column 'FW YearDays' - caption: JoursAnnée SE - displayFolder: _Weekly Calendrier - column 'FW DayOfMonthNumber' - caption: NuméroJourDuMois SE - displayFolder: _Weekly Calendrier - column 'FW DayOfQuarterNumber' - caption: NuméroJourDuTrimestre SE - displayFolder: _Weekly Calendrier - column 'FW DayOfYearNumber' - caption: NuméroJourAnnée SE - displayFolder: _Weekly Calendrier - column 'FW DatePreviousWeek' - caption: DateSemainePrécédente SE - displayFolder: _Weekly Calendrier - column 'FW DatePreviousMonth' - caption: DateMoisPrécédent SE - displayFolder: _Weekly Calendrier - column 'FW DatePreviousQuarter' - caption: DateTrimestrePrécédent SE - displayFolder: _Weekly Calendrier - column 'FW DatePreviousYear' - caption: DateAnnéePrécédente SE - displayFolder: _Weekly Calendrier - column 'Relative Day' - caption: Jour relatif - column Sequential365DayNumber - caption: NuméroJour séquentiel 365 - column 'Data Range Deferrals' - caption: Reports de plage de données - measure 'No. of Days' - caption: Nombre de jours - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Exercice-Trimestre-Mois-Semaine - displayFolder: _Fiscal Calendrier - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Quarter Year' - caption: Trimestre d’exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Semaine-Mois-Trimestre-Année civils - displayFolder: _Standard Calendrier - level 'Calendar Year' - caption: Année civile - level 'Calendar Quarter Year' - caption: Trimestre civil - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Quarter-Month-Week' - caption: Année-Trimestre-Mois-Semaine SE - displayFolder: _Weekly Calendrier - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'Fiscal Year-Month' - caption: Exercice-Mois - displayFolder: _Fiscal Calendrier - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - hierarchy 'Fiscal Year-Month-Week' - caption: Exercice-Mois-Semaine - displayFolder: _Fiscal Calendrier - level 'Fiscal Year' - caption: Exercice - level 'Fiscal Month Year' - caption: Mois et année d’exercice - level 'Fiscal Week Year' - caption: Semaine année d’exercice - hierarchy 'Calendar Year-Month' - caption: Année-Mois civil - displayFolder: _Standard Calendrier - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - hierarchy 'Calendar Year-Month-Week' - caption: Mois-Semaine-Année civils - displayFolder: _Standard Calendrier - level 'Calendar Year' - caption: Année civile - level 'Calendar Month Year' - caption: Mois année civile - level 'Calendar Week Year' - caption: Semaine année civile - hierarchy 'FW Year-Month-Week' - caption: Année-Mois-Semaine SE - displayFolder: _Weekly Calendrier - level 'FW Year' - caption: Année SE - level 'FW Month Year' - caption: Mois année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Quarter-Week' - caption: Année-Trimestre-Semaine SE - displayFolder: _Weekly Calendrier - level 'FW Year' - caption: Année SE - level 'FW Quarter Year' - caption: Trimestre année SE - level 'FW Week Year' - caption: Semaine année SE - hierarchy 'FW Year-Week' - caption: Année-Semaine SE - displayFolder: _Weekly Calendrier - level 'FW Year' - caption: Année SE - level 'FW Week Year' - caption: Semaine année SE - table 'Localized Labels' - caption: Étiquettes Localisées - measure 'CONNECT YOUR DATA' - caption: CONNECTER VOS DONNÉES - measure '1. Download the Finance Connector for Power BI' - caption: 1. Téléchargez Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurez Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - measure 'HELP AND SUPPORT' - caption: AIDE ET SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - measure 'for Business Central' - caption: pour Business Central - measure 'Last Refreshed' - caption: Dernière actualisation - measure 'Company Name' - caption: Nom de la société - measure 'Analysis Entries as of' - caption: Écritures analyse au - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Prévision de facturation par période de facturation, client et n° contrat - measure 'Billing Forecast by Year and Month' - caption: Prévision de facturation par année civile et par mois - measure 'Billing Schedule' - caption: Échéancier de facturation - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modification revenu récurrent mensuel par année et par mois - measure 'Current Date Range:' - caption: Plage de dates actuelle : - measure 'Customer Contract Deferrals' - caption: Reports contrat client - measure 'Customer Contract Lines' - caption: Lignes contrat client - measure 'Customer Deferrals (Caption)' - caption: Reports client - measure 'Mon. Recurring Revenue Analysis' - caption: Analyse du revenu récurrent mensuel - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - measure 'Mon. Recurring Revenue by Customer' - caption: Revenu récurrent mensuel par client - measure 'Mon. Recurring Revenue by Salesperson' - caption: Revenu récurrent mensuel par vendeur - measure 'Mon. Recurring Revenue by Year and Month' - caption: Revenu récurrent mensuel par année civile et par mois - measure 'Mon. Recurring Revenue by Item' - caption: Revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue by Item Category' - caption: Catégorie revenu récurrent mensuel par article - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Attrition et rétrogradation revenu récurrent mensuel par contrat client - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Revenu récurrent mensuel nouveau et mis à niveau par contrat client - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Revenus mensuels et coûts prévus par année civile et par mois - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Revenus mensuels et coûts prévus par vendeur, client et n° contrat - measure 'Released and Deferred Amount by Year and Month' - caption: Montant lancé et échelonné par année civile et par mois - measure 'Revenue Analysis' - caption: Analyse du revenu - measure 'Revenue by Customer' - caption: Revenu par client - measure 'Revenue by Item' - caption: Revenu par article - measure 'Revenue by Salesperson' - caption: Revenu par vendeur - measure 'Revenue Development' - caption: Développement du revenu - measure 'Sales and Cost Forecast' - caption: Prévision de revenu - measure 'Revenue Year-Over-Year Growth' - caption: Croissance du revenu d’une année sur l’autre - measure 'Subscription Billing Analysis' - caption: Analyse Subscription Billing - measure 'Subscription Billing Overview' - caption: Vue d’ensemble de Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 premiers clients par revenu récurrent mensuel - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 premiers fournisseurs par coût mensuel récurrent - measure 'Total Contract Value Analysis' - caption: Analyse de la valeur totale du contrat - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valeur totale du contrat et valeur totale du contrat AP par mois civil - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - measure 'Total Contract Value by Year and Month' - caption: Valeur totale du contrat par année civile et par mois - measure 'Total Contract Value Year-Over-Year Growth' - caption: Croissance de la valeur totale des contrats d’une année à l’autre - measure 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - measure 'Vendor Deferrals (Caption)' - caption: Reports fournisseur - measure 'Back button' - caption: Bouton Retour - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - measure 'Churn Analysis' - caption: Analyse de l’attrition - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % taux d’attrition mensuel moyen par année et par mois - table 'Meta Information' - caption: SOCIÉTÉ - table Subscription - caption: Objet de service - column 'Subscription No.' - caption: N° objet de service - column 'Package Code' - caption: Code package - column 'Subscription Desc.' - caption: Desc. objet de service - column 'Analysis Date' - caption: Date d’analyse - column 'Subscription No. Desc.' - caption: Desc. n° Subscription - table 'Vendor Contract Deferrals' - caption: Reports de contrat fournisseur - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - column Discount - caption: Remise - column 'Document Line No.' - caption: N° ligne document - table 'Customer Contract Line' - caption: Ligne contrat client - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Customer Contract Line Desc.' - caption: Desc. ligne contrat client - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Billing Base Period' - caption: Période de base de facturation - column 'Invoicing Item No.' - caption: N° article de facturation - column 'Customer Contract Line No.' - caption: N° ligne contrat client - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Customer Contract No.' - caption: N° contrat client - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Vendor Contract Line' - caption: Ligne contrat fournisseur - column 'Subscription Line No.' - caption: N° ligne d’engagement - column Template - caption: Modèle - column 'Vendor Contract Line Desc.' - caption: Desc. ligne contrat fournisseur - column 'Subscription Start Date' - caption: Date de début du service - column 'Subscription End Date' - caption: Date de fin du service - column 'Next Billing Date' - caption: Date de la prochaine facturation - column 'Vendor Contract Line No.' - caption: N° ligne contrat fournisseur - column 'Notice Period' - caption: Période de préavis - column 'Initial Term' - caption: Durée initiale - column 'Extension Term' - caption: Durée d’extension - column 'Billing Rhythm' - caption: Rythme de facturation - column 'Cancellation Possible Until' - caption: Annulation possible jusqu’au - column 'Term Until' - caption: Durée jusqu’au - column 'Renewal Term' - caption: Période de renouvellement - column 'Line Active' - caption: Ligne active - column 'Remaining Term' - caption: Durée restante - column 'Billing Rhythm Months' - caption: Mois Rythme de facturation - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Is Latest Version' - caption: Version la plus récente - column 'Is Usage Based Billing' - caption: Est Facturation basée sur l’activité - column 'Source Type' - caption: Type origine - column 'Source No.' - caption: N° origine - table 'Customer Contract Deferrals' - caption: Reports contrat client - column 'Document Type' - caption: Type du document - column 'Document No.' - caption: N° de document - column 'Posting Date' - caption: Date comptabilisation - column 'Document Line No.' - caption: N° ligne document - column 'Document Posting Date' - caption: Date comptabilisation document - column 'Release Posting Date' - caption: Date comptabilisation lancement - column 'G LEntry No.' - caption: N° séquence compta. - table 'Customer Contract' - caption: Contrat client - column 'Customer Contract No.' - caption: N° contrat client - column 'Customer Contract Type' - caption: Type contrat client - column 'Customer Contract Description' - caption: Désignation contrat client - column 'Customer Contract No. Desc.' - caption: Desc. n° contrat client - table 'Vendor Contract' - caption: Contrat fournisseur - column 'Vendor Contract No.' - caption: N° contrat fournisseur - column 'Vendor Contract Type' - caption: Type contrat fournisseur - column 'Vendor Contract Description' - caption: Désignation contrat fournisseur - column 'Vendor Contract No. Desc.' - caption: Desc. n° contrat fournisseur - table 'UBB handling' - caption: Traitement FBA - column 'Treat Usage Based Billing as constant' - caption: Traiter FBA comme une constante - table 'Is Released' - caption: Est Lancé - table Item - caption: Article - column 'Item No.' - caption: N° d’article - column 'Item Name' - caption: Nom article - column 'Item Category Code' - caption: Code catégorie article - column 'Item Category Description' - caption: Désignation catégorie article - column 'Inventory Posting Group' - caption: Groupe de report des stocks - column 'Base Unit of Measure' - caption: Unité de base - column 'Item No. & Description' - caption: N° et désignation d’article - table 'Analysis Date' - caption: Date d’analyse - column 'Is Initial Version' - caption: Version initiale - column 'Is Current Version' - caption: Version actuelle - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Groupe calc. : intelligence temporelle du calendrier (fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: RRM - measure 'Mon. Recurring Cost' - caption: CMR - measure 'Customer Deferrals' - caption: Reports client - measure 'Vendor Deferrals' - caption: Reports fournisseur - measure 'Annual Recurring Revenue' - caption: RPA - measure 'Total Contract Value' - caption: VTC - measure 'Forecast Sales' - caption: Prévoir ventes - measure 'Mon. Recurring Cost PY' - caption: CMR AP - measure 'Mon. Recurring Cost Δ vs. PY' - caption: CMR Δ par rapport à AP - measure 'Mon. Recurring Revenue Churn' - caption: Attrition revenu récurrent mensuel - measure 'Mon. Recurring Revenue PY' - caption: RRM AP - measure 'Mon. Recurring Revenue New' - caption: Nouveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Revenu récurrent mensuel Δ par rapport à AP - measure 'Mon. Net Profit Amount' - caption: NRRM - measure 'Mon. Net Profit %' - caption: % NRRM du RRM - measure 'Mon. Net Profit PY' - caption: NRRM AP - measure 'Mon. Net Profit Δ vs. PY' - caption: NRRM Δ par rapport à AP - measure 'Change in Mon. Recurring Revenue' - caption: Changement global RRM - measure 'Total Contract Value PY' - caption: VTC AP - measure 'Total Contract Value Δ vs. PY' - caption: VTC Δ par rapport à AP - measure 'Last Update Analysis Entries' - caption: Dernière mise à jour écritures analyse - measure 'Last Update Semantic Model' - caption: Dernière mise à jour du modèle sémantique - measure 'Param Environment' - caption: Environnement param. - measure 'Param Company' - caption: Société param. - measure 'Mon. Recurring Revenue Upgrade' - caption: Mise à niveau revenu récurrent mensuel - measure 'Mon. Recurring Revenue Change UBB' - caption: FBA modification du revenu récurrent mensuel - measure 'Reporting Currency' - caption: Devise de reporting - measure 'Active Customers' - caption: Clients actifs - measure 'Active Customers PY' - caption: Clients actifs AP - measure 'Active Customers Δ vs. PY' - caption: Clients actifs Δ par rapport à AP - measure 'Customer Billing Forecast' - caption: Prévision de facturation client - measure 'Vendor Billing Forecast' - caption: Prévision de facturation fournisseur - measure 'Forecast Costs' - caption: Prévoir les coûts - measure 'Mon. Recurring Revenue Downgrade' - caption: Rétrogradation revenu récurrent mensuel - measure 'Selected Date Range' - caption: Plage de dates sélectionnée - measure 'Avg. Mon. Churn Rate %' - caption: % taux d’attrition mensuel moyen - measure 'Mon. Avg. Downgrade Rate %' - caption: % taux de rétrogradation mensuel moyen - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Rétrogradation et attrition revenu récurrent mensuel - table Salesperson - caption: Vendeur - column 'Salesperson Code' - caption: Code vendeur - column 'Salesperson Name' - caption: Nom vendeur - table 'Customer Contract Changes' - caption: Modifications contrat client - column 'Customer Contract Line Key' - caption: Clé ligne contrat client - column Date - caption: Date - column 'Change Type' - caption: Modifier le type - column 'MRR Delta' - caption: Delta RRM - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/is-IS.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/is-IS.tmdl deleted file mode 100644 index 9f77b40555..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/is-IS.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo is-IS - translations - model Model - table 'Dimension Sets' - caption: Víddasamstæður - column 'Global Dimension 1' - caption: Altæk vídd 1 - column 'Global Dimension 2' - caption: Altæk vídd 2 - column 'Shortcut Dimension 3' - caption: Flýtivídd 3 - column 'Shortcut Dimension 4' - caption: Flýtivídd 4 - column 'Shortcut Dimension 5' - caption: Flýtivídd 5 - column 'Shortcut Dimension 6' - caption: Flýtivídd 6 - column 'Shortcut Dimension 7' - caption: Flýtivídd 7 - column 'Shortcut Dimension 8' - caption: Flýtivídd 8 - column id - caption: kenni - table Vendors - caption: Lánardrottnar - column 'Vendor No.' - caption: Nr. lánardrottins - column 'Vendor Name' - caption: Nafn lánardrottins - column Address - caption: Netfang - column 'Address 2' - caption: Aðsetur 2 - column City - caption: Borg - column 'Post Code' - caption: Póstnúmer - column State - caption: Fylki - column 'Country/Region Code' - caption: Lands-/svæðiskóði - column 'Vendor Posting Group' - caption: Bókunarflokkur lánardrottins - column 'Vendor No. & Name' - caption: Númer og nafn lánardrottins - table Customers - caption: Viðskiptavinir - column 'Customer No.' - caption: Nr. viðskiptavinar - column 'Customer Name' - caption: Nafn viðskiptavinar - column Address - caption: Netfang - column 'Address 2' - caption: Aðsetur 2 - column City - caption: Borg - column 'Post Code' - caption: Póstnúmer - column State - caption: Fylki - column 'Country/Region Code' - caption: Lands-/svæðiskóði - column 'Customer Posting Group' - caption: Bókunarflokkur viðskiptamanns - column 'Customer Price Group' - caption: Verðflokkur viðskiptavinar - column 'Customer Discount Group' - caption: Afsláttarflokkur viðskiptavinar - column 'Customer No. & Name' - caption: Númer og nafn viðskiptamanns - table Date - caption: Dagsetning - column 'Week Day' - caption: Vika Dagur - column 'Day Type' - caption: Dagsgerð - column 'Calendar Year' - caption: Almanaksár - column 'Calendar Quarter' - caption: Dagatal Ársfjórðungur - column 'Calendar Quarter Year' - caption: Dagatal Ársfjórðungur Ár - column 'Calendar Month' - caption: Almanaksmánuður - column 'Calendar Month Year' - caption: Dagatal Mánuður Ár - column 'Calendar Week' - caption: Almanaksvika - column 'Calendar Week Year' - caption: Dagatal Vika Ár - column 'Calendar RelativeWeekPos' - caption: Dagatal Staða samsvarandi viku - column 'Calendar RelativeMonthPos' - caption: Dagatal Staða samsvarandi mánaðar - column 'Calendar RelativeQuarterPos' - caption: Dagatal Staða samsvarandi ársfjórðungs - column 'Calendar RelativeYearPos' - caption: Dagatal Staða samsvarandi árs - column 'Calendar StartOfMonth' - caption: Dagatal Upphaf mánaðar - column 'Calendar EndOfMonth' - caption: Dagatal Mánaðarlok - column 'Calendar StartOfQuarter' - caption: Dagatal Upphaf ársfjórðungs - column 'Calendar EndOfQuarter' - caption: Dagatal Ársfjórðungslok - column 'Calendar StartOfYear' - caption: Dagatal Upphaf árs - column 'Calendar EndOfYear' - caption: Dagatal Árslok - column 'Calendar MonthDays' - caption: Dagatal Dagar mánaðar - column 'Calendar QuarterDays' - caption: Dagatal Dagar ársfjórðungs - column 'Calendar YearDays' - caption: Dagatal Dagar árs - column 'Calendar DayOfMonthNumber' - caption: Dagatal Númer mánaðardags - column 'Calendar DayOfQuarterNumber' - caption: Dagatal Númer dags innan ársfjórðungs - column 'Calendar DayOfYearNumber' - caption: Dagatal Númer dags innan árs - column 'Calendar DatePreviousWeek' - caption: Dagatal Dagsetning fyrri viku - column 'Calendar DatePreviousMonth' - caption: Dagatal Dagsetning fyrri mánaðar - column 'Calendar DatePreviousQuarter' - caption: Dagatal Dagsetning fyrri ársfjórðungs - column 'Calendar DatePreviousYear' - caption: Dagatal Dagsetning fyrra árs - column 'Fiscal Year' - caption: Fjárhagur Ár - column 'Fiscal Quarter' - caption: Fjórðungur Ársfjórðungur - column 'Fiscal Quarter Year' - caption: Fjárhagur Ársfjórðungur og ár - column 'Fiscal Month' - caption: Fjárhagur Mánuður - column 'Fiscal Month Year' - caption: Fjárhagur Mánuður og ár - column 'Fiscal Week' - caption: Vika fjárhagsárs - column 'Fiscal Week Year' - caption: Fjárhagur Vika ár - column 'Fiscal RelativeWeekPos' - caption: Fjárhagur Staða samsvarandi viku - column 'Fiscal RelativeMonthPos' - caption: Fjárhagur Staða samsvarandi mánaðar - column 'Fiscal RelativeQuarterPos' - caption: Fjárhagur Staða samsvarandi ársfjórðungs - column 'Fiscal RelativeYearPos' - caption: Fjárhagur Staða samsvarandi árs - column 'Fiscal StartOfMonth' - caption: Fjárhagur Upphaf mánaðar - column 'Fiscal EndOfMonth' - caption: Fjárhagur Mánaðarlok - column 'Fiscal StartOfQuarter' - caption: Fjárhagur Upphaf ársfjórðungs - column 'Fiscal EndOfQuarter' - caption: Fjárhagur Ársfjórðungslok - column 'Fiscal StartOfYear' - caption: Fjárhagur Upphaf árs - column 'Fiscal EndOfYear' - caption: Fjárhagur Árslok - column 'Fiscal MonthDays' - caption: Fjárhagur Dagar mánaðar - column 'Fiscal QuarterDays' - caption: Fjárhagur Dagar ársfjórðungs - column 'Fiscal YearDays' - caption: Fjárhagur Dagar árs - column 'Fiscal DayOfMonthNumber' - caption: Fjárhagur Númer mánaðardags - column 'Fiscal DayOfQuarterNumber' - caption: Fjárhagur Númer dags innan ársfjórðungs - column 'Fiscal DayOfYearNumber' - caption: Fjárhagur Númer dags innan árs - column 'Fiscal DatePreviousWeek' - caption: Fjárhagur Dagsetning fyrri viku - column 'Fiscal DatePreviousMonth' - caption: Fjárhagur Dagsetning fyrri mánaðar - column 'Fiscal DatePreviousQuarter' - caption: Fjárhagur Dagsetning fyrri ársfjórðungs - column 'Fiscal DatePreviousYear' - caption: Fjárhagur Dagsetning fyrra árs - column 'FW Year' - caption: Fjárhagsvika Ár - column 'FW Quarter' - caption: Fjárhagsvika Ársfjórðungur - column 'FW Quarter Year' - caption: Fjárhagsvika Ársfjórðungur Ár - column 'FW Month' - caption: Fjárhagsvika Mánuður - column 'FW Month Year' - caption: Fjárhagsvika Mánuður Ár - column 'FW Week' - caption: Fjárhagsvika Vika - column 'FW Period' - caption: Fjárhagsvika Tímabil - column 'FW Week Year' - caption: Fjárhagsvika Vika Ár - column 'FW StartOfWeek' - caption: Fjárhagsvika Upphaf viku - column 'FW EndOfWeek' - caption: Fjárhagsvika Vikulok - column 'FW RelativeWeekPos' - caption: Fjárhagsvika Staða samsvarandi viku - column 'FW RelativeMonthPos' - caption: Fjárhagsvika Staða samsvarandi mánaðar - column 'FW RelativeQuarterPos' - caption: Fjárhagsvika Staða samsvarandi ársfjórðungs - column 'FW RelativeYearPos' - caption: Fjárhagsvika Staða samsvarandi árs - column 'FW StartOfMonth' - caption: Fjárhagsvika Upphaf mánaðar - column 'FW EndOfMonth' - caption: Fjárhagsvika Mánaðarlok - column 'FW StartOfQuarter' - caption: Fjárhagsvika Upphaf ársfjórðungs - column 'FW EndOfQuarter' - caption: Fjárhagsvika Ársfjórðungslok - column 'FW StartOfYear' - caption: Fjárhagsvika Upphaf árs - column 'FW EndOfYear' - caption: Fjárhagsvika Árslok - column 'FW MonthDays' - caption: Fjárhagsvika Dagar mánaðar - column 'FW QuarterDays' - caption: Fjárhagsvika Dagar ársfjórðungs - column 'FW YearDays' - caption: Fjárhagsvika Dagar árs - column 'FW DayOfMonthNumber' - caption: Fjárhagsvika Númer mánaðardags - column 'FW DayOfQuarterNumber' - caption: Fjárhagsvika Númer dags innan ársfjórðungs - column 'FW DayOfYearNumber' - caption: Fjárhagsvika Númer dags innan árs - column 'FW DatePreviousWeek' - caption: Fjárhagsvika Dagsetning fyrri viku - column 'FW DatePreviousMonth' - caption: Fjárhagsvika Dagsetning fyrri mánaðar - column 'FW DatePreviousQuarter' - caption: Fjárhagsvika Dagsetning fyrri ársfjórðungs - column 'FW DatePreviousYear' - caption: Fjárhagsvika Dagsetning fyrra árs - column 'Relative Day' - caption: Samsvarandi dagur - column Sequential365DayNumber - caption: 365 daga raðnúmer - column 'Data Range Deferrals' - caption: Frestun á gagnasviði - measure 'No. of Days' - caption: Fjöldi daga - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fjárhagur Ár-Ársfjórðungur-Mánuður-Vika - level 'Fiscal Year' - caption: Fjárhagur Ár - level 'Fiscal Quarter Year' - caption: Fjárhagur Ársfjórðungur og ár - level 'Fiscal Month Year' - caption: Fjárhagur Mánuður og ár - level 'Fiscal Week Year' - caption: Fjárhagur Vika ár - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Dagatal Ár-Ársfjórðungur-Mánuður-Vika - level 'Calendar Year' - caption: Almanaksár - level 'Calendar Quarter Year' - caption: Dagatal Ársfjórðungur Ár - level 'Calendar Month Year' - caption: Dagatal Mánuður Ár - level 'Calendar Week Year' - caption: Dagatal Vika Ár - hierarchy 'FW Year-Quarter-Month-Week' - caption: Fjárhagsvika Ár-Ársfjórðungur-Mánuður-Vika - level 'FW Year' - caption: Fjárhagsvika Ár - level 'FW Quarter Year' - caption: Fjárhagsvika Ársfjórðungur Ár - level 'FW Month Year' - caption: Fjárhagsvika Mánuður Ár - level 'FW Week Year' - caption: Fjárhagsvika Vika Ár - hierarchy 'Fiscal Year-Month' - caption: Fjárhagur Ár-Mánuður - level 'Fiscal Year' - caption: Fjárhagur Ár - level 'Fiscal Month Year' - caption: Fjárhagur Mánuður og ár - hierarchy 'Fiscal Year-Month-Week' - caption: Fjárhagur Ár-Mánuður-Vika - level 'Fiscal Year' - caption: Fjárhagur Ár - level 'Fiscal Month Year' - caption: Fjárhagur Mánuður og ár - level 'Fiscal Week Year' - caption: Fjárhagur Vika ár - hierarchy 'Calendar Year-Month' - caption: Dagatal Ár-Mánuður - level 'Calendar Year' - caption: Almanaksár - level 'Calendar Month Year' - caption: Dagatal Mánuður Ár - hierarchy 'Calendar Year-Month-Week' - caption: Dagatal Ár-Mánuður-Vika - level 'Calendar Year' - caption: Almanaksár - level 'Calendar Month Year' - caption: Dagatal Mánuður Ár - level 'Calendar Week Year' - caption: Dagatal Vika Ár - hierarchy 'FW Year-Month-Week' - caption: Fjárhagsvika Ár-Mánuður-Vika - level 'FW Year' - caption: Fjárhagsvika Ár - level 'FW Month Year' - caption: Fjárhagsvika Mánuður Ár - level 'FW Week Year' - caption: Fjárhagsvika Vika Ár - hierarchy 'FW Year-Quarter-Week' - caption: Fjárhagsvika Ár-Ársfjórðungur-Vika - level 'FW Year' - caption: Fjárhagsvika Ár - level 'FW Quarter Year' - caption: Fjárhagsvika Ársfjórðungur Ár - level 'FW Week Year' - caption: Fjárhagsvika Vika Ár - hierarchy 'FW Year-Week' - caption: Fjárhagsvika Ár-Vika - level 'FW Year' - caption: Fjárhagsvika Ár - level 'FW Week Year' - caption: Fjárhagsvika Vika Ár - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: TENGIÐ GÖGN - measure '1. Download the Finance Connector for Power BI' - caption: 1. Sækja Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Grunnstillið Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: NOTIÐ, BREYTIÐ OG BÚIÐ TIL EIGIN SKÝRSLUR - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Fjármál bjóða upp á innbyggðar skýrslur til að skoða gögn samstundis. Hægt er að breyta skýrslunum eða búa til eigin skýrslur frá grunni. - measure 'HELP AND SUPPORT' - caption: HJÁLP OG STUÐNINGUR - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Lesið fylgigögn greiningaryfirlitsins til að fá hjálp og aðstoð við nýju skýrsluna. - measure 'for Business Central' - caption: fyrir Business Central - measure 'Last Refreshed' - caption: Síðast uppfært - measure 'Company Name' - caption: Heiti fyrirtækis - measure 'Analysis Entries as of' - caption: Greiningarfærslur frá og með - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Reikningsspá eftir reikningstímabili, viðskiptavini og samningsnúmeri. - measure 'Billing Forecast by Year and Month' - caption: Reikningsspá eftir almanaksári og -mánuði - measure 'Billing Schedule' - caption: Greiðsluáætlun - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Breyting á mán. endurteknum tekjum eftir ári og mánuði - measure 'Current Date Range:' - caption: Núverandi dagsetningabil: - measure 'Customer Contract Deferrals' - caption: Samningsfrestanir viðskiptavinar - measure 'Customer Contract Lines' - caption: Samningslínur viðskiptavinar - measure 'Customer Deferrals (Caption)' - caption: Frestanir viðskiptamanns - measure 'Mon. Recurring Revenue Analysis' - caption: Mán. endurtekin tekjugreining - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mán. endurteknar tekjur og mán. endurteknar tekjur fyrra árs eftir almanaksmánuði - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mán. endurteknar tekjur og vöxtur milli ára eftir almanaksári og -mánuði - measure 'Mon. Recurring Revenue by Customer' - caption: Mán. endurteknar tekjur eftir viðskiptavini - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mán. endurteknar tekjur eftir sölumanni - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mán. endurteknar tekjur eftir almanaksári og -mánuði - measure 'Mon. Recurring Revenue by Item' - caption: Mán. endurteknar tekjur eftir vöru - measure 'Mon. Recurring Revenue by Item Category' - caption: Mán. endurteknar tekjur eftir vöruflokkum - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mán uppsögn endurtekinna tekna og niðurfærsla eftir samningi við viðskiptavin - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mán. Endurteknar tekjur nýjar og uppfærðar eftir samningi við viðskiptavin - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Mánaðarleg tekju- og kostnaðarspá eftir almanaksári og -mánuði - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Mánaðarleg tekju- og kostnaðarspá sölumanns, viðskiptavinar og samnings nr. - measure 'Released and Deferred Amount by Year and Month' - caption: Losuð og frestuð upphæð eftir almanaksári og -mánuði - measure 'Revenue Analysis' - caption: Greining tekja - measure 'Revenue by Customer' - caption: Tekjur eftir viðskiptamanni - measure 'Revenue by Item' - caption: Tekjur eftir vöru - measure 'Revenue by Salesperson' - caption: Tekjur eftir sölumanni - measure 'Revenue Development' - caption: Tekjuþróun - measure 'Sales and Cost Forecast' - caption: Tekjuspá - measure 'Revenue Year-Over-Year Growth' - caption: Tekjuvöxtur milli ára - measure 'Subscription Billing Analysis' - caption: Subscription Billing greining - measure 'Subscription Billing Overview' - caption: Subscription Billing yfirlit - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 hæstu viðskiptavinirnir eftir mán. endurteknum tekjum - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 hæstu lánardrottnar fyrir mán. endurtekinn kostnað - measure 'Total Contract Value Analysis' - caption: Heildargreining samningsvirðis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Heildarsamningsvirði og heildarsamningsvirði fyrra árs eftir almanaksmánuði - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Heildarvirði samnings og vöxtur milli ára eftir almanaksári og -mánuði - measure 'Total Contract Value by Year and Month' - caption: Heildarverðmæti samnings eftir almanaksári og -mánuði - measure 'Total Contract Value Year-Over-Year Growth' - caption: Heildarvöxtur samningsvirðis á milli ára - measure 'Vendor Contract Deferrals' - caption: Frestanir lánardrottnasamnings - measure 'Vendor Deferrals (Caption)' - caption: Frestun lánardrottins - measure 'Back button' - caption: Bakkhnappur - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Mánaðarlegar endurteknar tekjur, mánaðarlegur endurtekinn kostnaður, mánaðarlegur hreinn hagnaður, virkir viðskiptavinir, heildarvirði samnings, breyting á mánaðarlegum endurteknum tekjum - measure 'Churn Analysis' - caption: Greining á uppsögnum - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Meðaltími mán. uppsagna % eftir ári og mánuði - table 'Meta Information' - caption: FYRIRTÆKI - table Subscription - caption: Þjónustuhlutur - column 'Subscription No.' - caption: Nr. þjónustuhlutar - column 'Package Code' - caption: Sendingarkóði - column 'Subscription Desc.' - caption: Afsláttur þjónustuhluta - column 'Analysis Date' - caption: Greiningardagsetning - column 'Subscription No. Desc.' - caption: Afsláttur Subscription-nr. - table 'Vendor Contract Deferrals' - caption: Frestanir lánardrottnasamnings - column 'Document Type' - caption: Gerð skjals - column 'Document No.' - caption: Nr. skjals - column 'Posting Date' - caption: Bókunardagsetning - column 'Document Posting Date' - caption: Bókunardagur skjals - column 'Release Posting Date' - caption: Losa bókunardagsetningu - column 'G LEntry No.' - caption: Fjárhagsbókarfærslunr. - column Discount - caption: Afsláttur - column 'Document Line No.' - caption: Línunr. fylgiskjals - table 'Customer Contract Line' - caption: Samningslína viðskiptavinar - column 'Subscription Line No.' - caption: Ráðstöfunarlínunr. - column Template - caption: Sniðmát - column 'Customer Contract Line Desc.' - caption: Afsláttur samningslýsingar viðskiptavinar - column 'Subscription Start Date' - caption: Upphafsdagur þjónustu - column 'Subscription End Date' - caption: Lokadagsetning þjónustu - column 'Next Billing Date' - caption: Næsta greiðsludagsetning - column 'Billing Base Period' - caption: Grunntímabil innheimtu - column 'Invoicing Item No.' - caption: Vörunr. reikningsfærslu - column 'Customer Contract Line No.' - caption: Samningslínunr. viðskiptavinar - column 'Notice Period' - caption: Uppsagnarfrestur - column 'Initial Term' - caption: Fyrsta tímabil - column 'Extension Term' - caption: Skilmálar viðbótar - column 'Billing Rhythm' - caption: Innheimtutíðni - column 'Cancellation Possible Until' - caption: Afbókun möguleg til - column 'Term Until' - caption: Liður til - column 'Renewal Term' - caption: Endurnýjunartímabil - column 'Line Active' - caption: Lína virk - column 'Remaining Term' - caption: Eftirstandandi skilmálar - column 'Billing Rhythm Months' - caption: Mánuðir innheimtutíðni - column 'Customer Contract No.' - caption: Samningsnr. viðskiptavinar - column 'Is Usage Based Billing' - caption: Er greitt samkvæmt notkun - column 'Source Type' - caption: Upprunagerð - column 'Source No.' - caption: Upprunanúmer - table 'Vendor Contract Line' - caption: Lánardrottnasamningslína - column 'Subscription Line No.' - caption: Ráðstöfunarlínunr. - column Template - caption: Sniðmát - column 'Vendor Contract Line Desc.' - caption: Afsláttur lánardrottnasamningslínu - column 'Subscription Start Date' - caption: Upphafsdagur þjónustu - column 'Subscription End Date' - caption: Lokadagsetning þjónustu - column 'Next Billing Date' - caption: Næsta greiðsludagsetning - column 'Vendor Contract Line No.' - caption: Nr. lánardrottnasamningslínu - column 'Notice Period' - caption: Uppsagnarfrestur - column 'Initial Term' - caption: Fyrsta tímabil - column 'Extension Term' - caption: Skilmálar viðbótar - column 'Billing Rhythm' - caption: Innheimtutíðni - column 'Cancellation Possible Until' - caption: Afbókun möguleg til - column 'Term Until' - caption: Liður til - column 'Renewal Term' - caption: Endurnýjunartímabil - column 'Line Active' - caption: Lína virk - column 'Remaining Term' - caption: Eftirstandandi skilmálar - column 'Billing Rhythm Months' - caption: Mánuðir innheimtutíðni - column 'Vendor Contract No.' - caption: Nr. lánardrottinssamnings - column 'Is Latest Version' - caption: Er nýjasta útgáfa - column 'Is Usage Based Billing' - caption: Er greitt samkvæmt notkun - column 'Source Type' - caption: Upprunagerð - column 'Source No.' - caption: Upprunanúmer - table 'Customer Contract Deferrals' - caption: Samningsfrestanir viðskiptavinar - column 'Document Type' - caption: Gerð skjals - column 'Document No.' - caption: Nr. skjals - column 'Posting Date' - caption: Bókunardagsetning - column 'Document Line No.' - caption: Línunr. fylgiskjals - column 'Document Posting Date' - caption: Bókunardagur skjals - column 'Release Posting Date' - caption: Losa bókunardagsetningu - column 'G LEntry No.' - caption: Fjárhagsbókarfærslunr. - table 'Customer Contract' - caption: Samningur viðskiptamanns - column 'Customer Contract No.' - caption: Samningsnr. viðskiptavinar - column 'Customer Contract Type' - caption: Gerð samnings viðskiptavinar - column 'Customer Contract Description' - caption: Lýsing á samningi viðskiptavinar - column 'Customer Contract No. Desc.' - caption: Afsláttarnr. samnings viðskiptavinar - table 'Vendor Contract' - caption: Lánardrottnasamningur - column 'Vendor Contract No.' - caption: Nr. lánardrottinssamnings - column 'Vendor Contract Type' - caption: Gerð lánardrottnasamnings - column 'Vendor Contract Description' - caption: Lýsing lánardrottnasamnings - column 'Vendor Contract No. Desc.' - caption: Afsláttarnr. lánardrottinssamnings - table 'UBB handling' - caption: Meðhöndlun innheimtu byggðri á notkun - column 'Treat Usage Based Billing as constant' - caption: Meðhöndla innheimtu byggða á notkun sem fasta - table 'Is Released' - caption: Er losað - table Item - caption: Vara - column 'Item No.' - caption: Vörunr. - column 'Item Name' - caption: Vöruheiti - column 'Item Category Code' - caption: Kóði yfirflokks vöru - column 'Item Category Description' - caption: Lýsing vöruflokks - column 'Inventory Posting Group' - caption: Birgðabókunarflokkur - column 'Base Unit of Measure' - caption: Grunnmælieining - column 'Item No. & Description' - caption: Vörunr. og lýsing - table 'Analysis Date' - caption: Greiningardagsetning - column 'Is Initial Version' - caption: Er upprunaleg útgáfa - column 'Is Current Version' - caption: Er núverandi útgáfa - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Útreikningshópur - Tímagreind dagatals (fjárhagur) - column Perspective - caption: Sjónarhorn - table 'Subscription Billing KPIs' - caption: Subscription Billing afkastavísar - measure 'Mon. Recurring Revenue' - caption: Mánaðarlegar endurteknar tekjur - measure 'Mon. Recurring Cost' - caption: Mánaðarlegur endurtekinn kostnaður - measure 'Customer Deferrals' - caption: Frestanir viðskiptamanns - measure 'Vendor Deferrals' - caption: Frestun lánardrottins - measure 'Annual Recurring Revenue' - caption: ÁBMKR - measure 'Total Contract Value' - caption: Heildarvirði samnings - measure 'Forecast Sales' - caption: Spársala - measure 'Mon. Recurring Cost PY' - caption: Mánaðarlegur endurtekinn kostnaður fyrra ár - measure 'Mon. Recurring Cost Δ vs. PY' - caption: Mánaðarlegur endurtekinn kostnaður Δ samanborið við fyrra ár - measure 'Mon. Recurring Revenue Churn' - caption: Mán. uppsagnir endurtekinna tekna - measure 'Mon. Recurring Revenue PY' - caption: Mánaðarlegar endurteknar tekjur fyrra ár - measure 'Mon. Recurring Revenue New' - caption: Mán. endurteknar nýjar tekjur - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mán. endurteknar tekjur Δ sbr. fyrra ár - measure 'Mon. Net Profit Amount' - caption: Nýjar mánaðarlega endurteknar tekjur - measure 'Mon. Net Profit %' - caption: Nýjar mánaðarlega endurteknar tekjur % af mánaðarlegum endurteknum tekjum - measure 'Mon. Net Profit PY' - caption: Nýjar mánaðarlega endurteknar tekjur fyrra ár - measure 'Mon. Net Profit Δ vs. PY' - caption: Nýjar mánaðarlega endurteknar tekjur Δ samanborið við fyrra ár - measure 'Change in Mon. Recurring Revenue' - caption: Mánaðarlegar endurteknar tekjur heildarbreyting - measure 'Total Contract Value PY' - caption: Heildarvirði samnings fyrra ár - measure 'Total Contract Value Δ vs. PY' - caption: Heildarvirði samnings Δ samanborið við fyrra ár - measure 'Last Update Analysis Entries' - caption: Síðast uppfærðu greiningarfærslur - measure 'Last Update Semantic Model' - caption: Síðasta uppfærsla á merkingarlíkani - measure 'Param Environment' - caption: Umhverfisbreytur - measure 'Param Company' - caption: Param fyrirtæki - measure 'Mon. Recurring Revenue Upgrade' - caption: Mán. endurteknar uppfærslur tekna - measure 'Mon. Recurring Revenue Change UBB' - caption: Mán. endurteknar tekjubreytingar innheimtu byggðri á notkun - measure 'Reporting Currency' - caption: Skýrslugjaldmiðill - measure 'Active Customers' - caption: Virkir viðskiptavinir - measure 'Active Customers PY' - caption: Virkir viðskiptavinir fyrra ár - measure 'Active Customers Δ vs. PY' - caption: Virkir viðskiptavinir Δ sbr. fyrra ár - measure 'Customer Billing Forecast' - caption: Innheimtuspá viðskiptavinar - measure 'Vendor Billing Forecast' - caption: Spá um greiðslur lánardrottins - measure 'Forecast Costs' - caption: Kostnaðarspár - measure 'Mon. Recurring Revenue Downgrade' - caption: Mán. endurtekin niðurfærsla tekna - measure 'Selected Date Range' - caption: Valið dagabil - measure 'Avg. Mon. Churn Rate %' - caption: Meðaltími mán. uppsagna % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mán. meðalt. niðurfærsla % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mán. niðurfærslur og uppsagnir endurtekinna tekna - table Salesperson - caption: Sölumaður - column 'Salesperson Code' - caption: Kóði sölumanns - column 'Salesperson Name' - caption: Nafn sölumanns - table 'Customer Contract Changes' - caption: Breytingar á samningi viðskiptavinar - column 'Customer Contract Line Key' - caption: Línulykill samnings viðskiptavinar - column Date - caption: Dagsetning - column 'Change Type' - caption: Breyta tegund - column 'MRR Delta' - caption: Mánaðarlegar endurteknar tekjur Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-CH.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-CH.tmdl deleted file mode 100644 index b5cce528fd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-CH.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo it-CH - translations - model Model - table 'Dimension Sets' - caption: Set di dimensioni - column 'Global Dimension 1' - caption: Dimensione globale 1 - column 'Global Dimension 2' - caption: Dimensione globale 2 - column 'Shortcut Dimension 3' - caption: Collegamento dimensione 3 - column 'Shortcut Dimension 4' - caption: Collegamento dimensione 4 - column 'Shortcut Dimension 5' - caption: Collegamento dimensione 5 - column 'Shortcut Dimension 6' - caption: Collegamento dimensione 6 - column 'Shortcut Dimension 7' - caption: Collegamento dimensione 7 - column 'Shortcut Dimension 8' - caption: Collegamento dimensione 8 - column id - caption: ID - table Vendors - caption: Fornitori - column 'Vendor No.' - caption: Nr. fornitore - column 'Vendor Name' - caption: Nome fornitore - column Address - caption: Indirizzo - column 'Address 2' - caption: Indirizzo 2 - column City - caption: Città - column 'Post Code' - caption: NPA - column State - caption: Stato - column 'Country/Region Code' - caption: Codice paese/area geografica - column 'Vendor Posting Group' - caption: Categoria registrazione fornitore - column 'Vendor No. & Name' - caption: Nome e nr. fornitore - table Customers - caption: Clienti - column 'Customer No.' - caption: Nr. cliente - column 'Customer Name' - caption: Nome cliente - column Address - caption: Indirizzo - column 'Address 2' - caption: Indirizzo 2 - column City - caption: Città - column 'Post Code' - caption: NPA - column State - caption: Stato - column 'Country/Region Code' - caption: Codice paese/area geografica - column 'Customer Posting Group' - caption: Categoria registrazione cliente - column 'Customer Price Group' - caption: Gruppo prezzi cliente - column 'Customer Discount Group' - caption: Categoria sconto cliente - column 'Customer No. & Name' - caption: Nr. e nome cliente - table Date - caption: Data - column 'Week Day' - caption: Giorno della settimana - column 'Day Type' - caption: Tipo di giorno - column 'Calendar Year' - caption: Anno di calendario - column 'Calendar Quarter' - caption: Trimestre di calendario - column 'Calendar Quarter Year' - caption: Trimestre anno di calendario - column 'Calendar Month' - caption: Mese di calendario - column 'Calendar Month Year' - caption: Mese anno di calendario - column 'Calendar Week' - caption: Settimana di calendario - column 'Calendar Week Year' - caption: Settimana anno di calendario - column 'Calendar RelativeWeekPos' - caption: PosSettimanaRelativa di calendario - column 'Calendar RelativeMonthPos' - caption: PosMeseRelativo di calendario - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelativo di calendario - column 'Calendar RelativeYearPos' - caption: PosAnnoRelativo di calendario - column 'Calendar StartOfMonth' - caption: PrimoGiornoMese di calendario - column 'Calendar EndOfMonth' - caption: UltimoGiornoMese di calendario - column 'Calendar StartOfQuarter' - caption: PrimoGiornoTrimestre di calendario - column 'Calendar EndOfQuarter' - caption: UltimoGiornoTrimestre di calendario - column 'Calendar StartOfYear' - caption: PrimoGiornoAnno di calendario - column 'Calendar EndOfYear' - caption: UltimoGiornoAnno di calendario - column 'Calendar MonthDays' - caption: GiorniMese di calendario - column 'Calendar QuarterDays' - caption: GiorniTrimestre di calendario - column 'Calendar YearDays' - caption: GiorniAnno di calendario - column 'Calendar DayOfMonthNumber' - caption: NumeroGiornoMese di calendario - column 'Calendar DayOfQuarterNumber' - caption: NumeroGiornoTrimestre di calendario - column 'Calendar DayOfYearNumber' - caption: NumeroGiornoAnno di calendario - column 'Calendar DatePreviousWeek' - caption: DataSettimanaPrecedente di calendario - column 'Calendar DatePreviousMonth' - caption: DataMesePrecedente di calendario - column 'Calendar DatePreviousQuarter' - caption: DataTrimestrePrecedente di calendario - column 'Calendar DatePreviousYear' - caption: DataAnnoPrecedente di calendario - column 'Fiscal Year' - caption: Anno fiscale - column 'Fiscal Quarter' - caption: Trimestre fiscale - column 'Fiscal Quarter Year' - caption: Trimestre anno fiscale - column 'Fiscal Month' - caption: Mese fiscale - column 'Fiscal Month Year' - caption: Mese anno fiscale - column 'Fiscal Week' - caption: Settimana fiscale - column 'Fiscal Week Year' - caption: Settimana anno fiscale - column 'Fiscal RelativeWeekPos' - caption: PosSettimanaRelativa fiscale - column 'Fiscal RelativeMonthPos' - caption: PosMeseRelativo fiscale - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelativo fiscale - column 'Fiscal RelativeYearPos' - caption: PosAnnoRelativo fiscale - column 'Fiscal StartOfMonth' - caption: PrimoGiornoMese fiscale - column 'Fiscal EndOfMonth' - caption: UltimoGiornoMese fiscale - column 'Fiscal StartOfQuarter' - caption: PrimoGiornoTrimestre fiscale - column 'Fiscal EndOfQuarter' - caption: UltimoGiornoTrimestre fiscale - column 'Fiscal StartOfYear' - caption: PrimoGiornoAnno fiscale - column 'Fiscal EndOfYear' - caption: UltimoGiornoAnno fiscale - column 'Fiscal MonthDays' - caption: GiorniMese fiscale - column 'Fiscal QuarterDays' - caption: GiorniTrimestre fiscale - column 'Fiscal YearDays' - caption: GiorniAnno fiscale - column 'Fiscal DayOfMonthNumber' - caption: NumeroGiornoMese fiscale - column 'Fiscal DayOfQuarterNumber' - caption: NumeroGiornoTrimestre fiscale - column 'Fiscal DayOfYearNumber' - caption: NumeroGiornoAnno fiscale - column 'Fiscal DatePreviousWeek' - caption: DataSettimanaPrecedente fiscale - column 'Fiscal DatePreviousMonth' - caption: DataMesePrecedente fiscale - column 'Fiscal DatePreviousQuarter' - caption: DataTrimestrePrecedente fiscale - column 'Fiscal DatePreviousYear' - caption: DataAnnoPrecedente fiscale - column 'FW Year' - caption: Anno SF - column 'FW Quarter' - caption: Trimestre SF - column 'FW Quarter Year' - caption: Trimestre anno SF - column 'FW Month' - caption: Mese SF - column 'FW Month Year' - caption: Mese anno SF - column 'FW Week' - caption: Settimana SF - column 'FW Period' - caption: Periodo SF - column 'FW Week Year' - caption: Settimana anno SF - column 'FW StartOfWeek' - caption: PrimoGiornoSettimana SF - column 'FW EndOfWeek' - caption: UltimoGiornoSettimana SF - column 'FW RelativeWeekPos' - caption: PosSettimanaRelativa SF - column 'FW RelativeMonthPos' - caption: PosMeseRelativo SF - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelativo SF - column 'FW RelativeYearPos' - caption: PosAnnoRelativo SF - column 'FW StartOfMonth' - caption: PrimoGiornoMese SF - column 'FW EndOfMonth' - caption: UltimoGiornoMese SF - column 'FW StartOfQuarter' - caption: PrimoGiornoTrimestre SF - column 'FW EndOfQuarter' - caption: UltimoGiornoTrimestre SF - column 'FW StartOfYear' - caption: PrimoGiornoAnno SF - column 'FW EndOfYear' - caption: UltimoGiornoAnno SF - column 'FW MonthDays' - caption: GiorniMese SF - column 'FW QuarterDays' - caption: GiorniTrimestre SF - column 'FW YearDays' - caption: GiorniAnno SF - column 'FW DayOfMonthNumber' - caption: NumeroGiornoMese SF - column 'FW DayOfQuarterNumber' - caption: NumeroGiornoTrimestre SF - column 'FW DayOfYearNumber' - caption: NumeroGiornoAnno SF - column 'FW DatePreviousWeek' - caption: DataSettimanaPrecedente SF - column 'FW DatePreviousMonth' - caption: DataMesePrecedente SF - column 'FW DatePreviousQuarter' - caption: DataTrimestrePrecedente SF - column 'FW DatePreviousYear' - caption: DataAnnoPrecedente SF - column 'Relative Day' - caption: Giorno relativo - column Sequential365DayNumber - caption: NumeroGiorno sequenziale da 1 a 365 - column 'Data Range Deferrals' - caption: Differimenti intervallo dati - measure 'No. of Days' - caption: Nr. di giorni - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Quarter Year' - caption: Trimestre anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - level 'Fiscal Week Year' - caption: Settimana anno fiscale - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Quarter Year' - caption: Trimestre anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - level 'Calendar Week Year' - caption: Settimana anno di calendario - hierarchy 'FW Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Quarter Year' - caption: Trimestre anno SF - level 'FW Month Year' - caption: Mese anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'Fiscal Year-Month' - caption: Anno-Mese fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - hierarchy 'Fiscal Year-Month-Week' - caption: Anno-Mese-Settimana fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - level 'Fiscal Week Year' - caption: Settimana anno fiscale - hierarchy 'Calendar Year-Month' - caption: Anno-Mese di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - hierarchy 'Calendar Year-Month-Week' - caption: Anno-Mese-Settimana di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - level 'Calendar Week Year' - caption: Settimana anno di calendario - hierarchy 'FW Year-Month-Week' - caption: Anno-Mese-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Month Year' - caption: Mese anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'FW Year-Quarter-Week' - caption: Anno-Trimestre-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Quarter Year' - caption: Trimestre anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'FW Year-Week' - caption: Anno-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Week Year' - caption: Settimana anno SF - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNETTI I DATI - measure '1. Download the Finance Connector for Power BI' - caption: 1. Scaricare Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurare Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USA, MODIFICA E CREA I TUOI REPORT - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero. - measure 'HELP AND SUPPORT' - caption: GUIDA E SUPPORTO - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi. - measure 'for Business Central' - caption: per Business Central - measure 'Last Refreshed' - caption: Ultimo aggiornamento - measure 'Company Name' - caption: Nome società - measure 'Analysis Entries as of' - caption: Movimenti analisi a partire da - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto - measure 'Billing Forecast by Year and Month' - caption: Previsione fatturazione per anno e mese di calendario - measure 'Billing Schedule' - caption: Programmazione fatturazione - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modifica dei ricavi periodici mensili per anno e mese - measure 'Current Date Range:' - caption: Intervallo di date corrente: - measure 'Customer Contract Deferrals' - caption: Differimenti contratto del cliente - measure 'Customer Contract Lines' - caption: Righe contratto del cliente - measure 'Customer Deferrals (Caption)' - caption: Differimenti cliente - measure 'Mon. Recurring Revenue Analysis' - caption: Analisi ricavi periodici mensili - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario - measure 'Mon. Recurring Revenue by Customer' - caption: Ricavi periodici mensili per cliente - measure 'Mon. Recurring Revenue by Salesperson' - caption: Ricavi periodici mensili per venditore - measure 'Mon. Recurring Revenue by Year and Month' - caption: Ricavi periodici mensili per anno e mese di calendario - measure 'Mon. Recurring Revenue by Item' - caption: Ricavi periodici mensili per articolo - measure 'Mon. Recurring Revenue by Item Category' - caption: Ricavi periodici mensili per categoria articolo - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Abbandono e downgrade ricavi periodici mensili per contratto cliente - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Novità e aggiornamento ricavi periodici mensili per contratto cliente - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Previsioni mensili di ricavi e costi per anno e mese di calendario - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto - measure 'Released and Deferred Amount by Year and Month' - caption: Importo rilasciato e differito per anno e mese di calendario - measure 'Revenue Analysis' - caption: Analisi ricavi - measure 'Revenue by Customer' - caption: Ricavi per cliente - measure 'Revenue by Item' - caption: Ricavi per articolo - measure 'Revenue by Salesperson' - caption: Ricavi per venditore - measure 'Revenue Development' - caption: Sviluppo ricavi - measure 'Sales and Cost Forecast' - caption: Previsione ricavi - measure 'Revenue Year-Over-Year Growth' - caption: Crescita ricavi anno su anno - measure 'Subscription Billing Analysis' - caption: Analisi Subscription Billing - measure 'Subscription Billing Overview' - caption: Panoramica di Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Primi 5 clienti per ricavi periodici mensili - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Primi 5 fornitori per costo periodico mensile - measure 'Total Contract Value Analysis' - caption: Analisi valore totale del contratto - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valore totale dei contratti e valore totale dei contratti PY per mese di calendario - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valore totale del contratto e crescita anno su anno per anno e mese di calendario - measure 'Total Contract Value by Year and Month' - caption: Valore totale del contratto per anno e mese di calendario - measure 'Total Contract Value Year-Over-Year Growth' - caption: Crescita anno su anno del valore totale dei contratti - measure 'Vendor Contract Deferrals' - caption: Differimenti contratto del fornitore - measure 'Vendor Deferrals (Caption)' - caption: Differimenti fornitore - measure 'Back button' - caption: Pulsante Indietro - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili - measure 'Churn Analysis' - caption: Analisi abbandono - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % tasso medio di abbandono mensile per anno e mese - table 'Meta Information' - caption: SOCIETÀ - table Subscription - caption: Oggetto di assistenza - column 'Subscription No.' - caption: Nr. oggetto di assistenza - column 'Package Code' - caption: Codice pacchetto - column 'Subscription Desc.' - caption: Descrizione oggetto di assistenza - column 'Analysis Date' - caption: Data di analisi - column 'Subscription No. Desc.' - caption: Descrizione nr. Subscription - table 'Vendor Contract Deferrals' - caption: Differimenti contratto del fornitore - column 'Document Type' - caption: Tipo di documento - column 'Document No.' - caption: Nr. documento - column 'Posting Date' - caption: Data di registrazione - column 'Document Posting Date' - caption: Data di registrazione documento - column 'Release Posting Date' - caption: Data di registrazione rilascio - column 'G LEntry No.' - caption: Nr. movimento C/G - column Discount - caption: Sconto - column 'Document Line No.' - caption: Nr. riga documento - table 'Customer Contract Line' - caption: Riga contratto del cliente - column 'Subscription Line No.' - caption: Nr. riga impegno - column Template - caption: Modello - column 'Customer Contract Line Desc.' - caption: Descrizione riga contratto del cliente - column 'Subscription Start Date' - caption: Data di inizio assistenza - column 'Subscription End Date' - caption: Data di fine assistenza - column 'Next Billing Date' - caption: Data fatturazione successiva - column 'Billing Base Period' - caption: Periodo di base di fatturazione - column 'Invoicing Item No.' - caption: Nr. articolo fatturazione - column 'Customer Contract Line No.' - caption: Nr. riga contratto del cliente - column 'Notice Period' - caption: Periodo di avviso - column 'Initial Term' - caption: Periodo iniziale - column 'Extension Term' - caption: Periodo di estensione - column 'Billing Rhythm' - caption: Ritmo di fatturazione - column 'Cancellation Possible Until' - caption: Annullamento possibile fino alla data - column 'Term Until' - caption: Periodo fino alla data - column 'Renewal Term' - caption: Termine di rinnovo - column 'Line Active' - caption: Attività riga - column 'Remaining Term' - caption: Periodo rimanente - column 'Billing Rhythm Months' - caption: Mesi frequenza fatturazione - column 'Customer Contract No.' - caption: Nr. contratto del cliente - column 'Is Usage Based Billing' - caption: Fatturazione basata sull'utilizzo - column 'Source Type' - caption: Tipo di origine - column 'Source No.' - caption: Nr. origine - table 'Vendor Contract Line' - caption: Riga contratto del fornitore - column 'Subscription Line No.' - caption: Nr. riga impegno - column Template - caption: Modello - column 'Vendor Contract Line Desc.' - caption: Descrizione riga contratto del fornitore - column 'Subscription Start Date' - caption: Data di inizio assistenza - column 'Subscription End Date' - caption: Data di fine assistenza - column 'Next Billing Date' - caption: Data fatturazione successiva - column 'Vendor Contract Line No.' - caption: Nr. riga contratto del fornitore - column 'Notice Period' - caption: Periodo di avviso - column 'Initial Term' - caption: Periodo iniziale - column 'Extension Term' - caption: Periodo di estensione - column 'Billing Rhythm' - caption: Ritmo di fatturazione - column 'Cancellation Possible Until' - caption: Annullamento possibile fino alla data - column 'Term Until' - caption: Periodo fino alla data - column 'Renewal Term' - caption: Termine di rinnovo - column 'Line Active' - caption: Attività riga - column 'Remaining Term' - caption: Periodo rimanente - column 'Billing Rhythm Months' - caption: Mesi frequenza fatturazione - column 'Vendor Contract No.' - caption: Nr. contratto del fornitore - column 'Is Latest Version' - caption: Ultima versione - column 'Is Usage Based Billing' - caption: Fatturazione basata sull'utilizzo - column 'Source Type' - caption: Tipo di origine - column 'Source No.' - caption: Nr. origine - table 'Customer Contract Deferrals' - caption: Differimenti contratto del cliente - column 'Document Type' - caption: Tipo di documento - column 'Document No.' - caption: Nr. documento - column 'Posting Date' - caption: Data di registrazione - column 'Document Line No.' - caption: Nr. riga documento - column 'Document Posting Date' - caption: Data di registrazione documento - column 'Release Posting Date' - caption: Data di registrazione rilascio - column 'G LEntry No.' - caption: Nr. movimento C/G - table 'Customer Contract' - caption: Contratto del cliente - column 'Customer Contract No.' - caption: Nr. contratto del cliente - column 'Customer Contract Type' - caption: Tipo di contratto del cliente - column 'Customer Contract Description' - caption: Descrizione contratto del cliente - column 'Customer Contract No. Desc.' - caption: Descrizione nr. contratto del cliente - table 'Vendor Contract' - caption: Contratto del fornitore - column 'Vendor Contract No.' - caption: Nr. contratto del fornitore - column 'Vendor Contract Type' - caption: Tipo di contratto del fornitore - column 'Vendor Contract Description' - caption: Descrizione contratto del fornitore - column 'Vendor Contract No. Desc.' - caption: Descrizione nr. contratto del fornitore - table 'UBB handling' - caption: Movimentazione UBB - column 'Treat Usage Based Billing as constant' - caption: Considera UBB come costante - table 'Is Released' - caption: Rilasciato - table Item - caption: Articolo - column 'Item No.' - caption: Nr. articolo - column 'Item Name' - caption: Nome articolo - column 'Item Category Code' - caption: Codice categoria articolo - column 'Item Category Description' - caption: Descrizione categoria articolo - column 'Inventory Posting Group' - caption: Categoria registrazione inventario - column 'Base Unit of Measure' - caption: Unità di misura di base - column 'Item No. & Description' - caption: Nr. e descrizione articolo - table 'Analysis Date' - caption: Data di analisi - column 'Is Initial Version' - caption: Versione iniziale - column 'Is Current Version' - caption: Versione corrente - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Gruppo calcolato - Funzionalità di Business Intelligence per le gerarchie temporali per calendario (fiscale) - column Perspective - caption: Prospettiva - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Differimenti cliente - measure 'Vendor Deferrals' - caption: Differimenti fornitore - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Vendite previste - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: Δ MRC rispetto a PY - measure 'Mon. Recurring Revenue Churn' - caption: Abbandono ricavi periodici mensili - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Nuovi ricavi periodici mensili - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Δ analisi ricavi periodici mensili rispetto PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: % NMRP di MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: Δ NMRP rispetto a PY - measure 'Change in Mon. Recurring Revenue' - caption: Variazione complessiva MRR - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: Δ TCV rispetto a PY - measure 'Last Update Analysis Entries' - caption: Ultimo aggiornamento movimenti analisi - measure 'Last Update Semantic Model' - caption: Ultimo aggiornamento modello semantico - measure 'Param Environment' - caption: Parametri ambiente - measure 'Param Company' - caption: Parametri società - measure 'Mon. Recurring Revenue Upgrade' - caption: Aggiornamento ricavi periodici mensili - measure 'Mon. Recurring Revenue Change UBB' - caption: UBB variazione ricavi periodici mensili - measure 'Reporting Currency' - caption: Valuta di dichiarazione - measure 'Active Customers' - caption: Clienti attivi - measure 'Active Customers PY' - caption: Clienti attivi PY - measure 'Active Customers Δ vs. PY' - caption: Δ clienti attivi rispetto a PY - measure 'Customer Billing Forecast' - caption: Previsione fatturazione cliente - measure 'Vendor Billing Forecast' - caption: Previsione fatturazione fornitore - measure 'Forecast Costs' - caption: Costi previsione - measure 'Mon. Recurring Revenue Downgrade' - caption: Downgrade ricavi periodici mensili - measure 'Selected Date Range' - caption: Intervallo di date selezionato - measure 'Avg. Mon. Churn Rate %' - caption: % tasso medio di abbandono mensile - measure 'Mon. Avg. Downgrade Rate %' - caption: % tasso medio di downgrade mensile - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Downgrade e abbandono ricavi periodici mensili - table Salesperson - caption: Venditore - column 'Salesperson Code' - caption: Codice venditore - column 'Salesperson Name' - caption: Nome venditore - table 'Customer Contract Changes' - caption: Modifiche contratto del cliente - column 'Customer Contract Line Key' - caption: Chiave riga contratto del cliente - column Date - caption: Data - column 'Change Type' - caption: Tipo di modifica - column 'MRR Delta' - caption: Delta MRR - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-IT.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-IT.tmdl deleted file mode 100644 index 859ccbd996..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/it-IT.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo it-IT - translations - model Model - table 'Dimension Sets' - caption: Set di dimensioni - column 'Global Dimension 1' - caption: Dimensione globale 1 - column 'Global Dimension 2' - caption: Dimensione globale 2 - column 'Shortcut Dimension 3' - caption: Collegamento dimensione 3 - column 'Shortcut Dimension 4' - caption: Collegamento dimensione 4 - column 'Shortcut Dimension 5' - caption: Collegamento dimensione 5 - column 'Shortcut Dimension 6' - caption: Collegamento dimensione 6 - column 'Shortcut Dimension 7' - caption: Collegamento dimensione 7 - column 'Shortcut Dimension 8' - caption: Collegamento dimensione 8 - column id - caption: ID - table Vendors - caption: Fornitori - column 'Vendor No.' - caption: Nr. fornitore - column 'Vendor Name' - caption: Nome fornitore - column Address - caption: Indirizzo - column 'Address 2' - caption: Indirizzo 2 - column City - caption: Città - column 'Post Code' - caption: Codice postale - column State - caption: Stato - column 'Country/Region Code' - caption: Codice paese/area geografica - column 'Vendor Posting Group' - caption: Categoria registrazione fornitore - column 'Vendor No. & Name' - caption: Nome e nr. fornitore - table Customers - caption: Clienti - column 'Customer No.' - caption: Nr. cliente - column 'Customer Name' - caption: Nome cliente - column Address - caption: Indirizzo - column 'Address 2' - caption: Indirizzo 2 - column City - caption: Città - column 'Post Code' - caption: Codice postale - column State - caption: Stato - column 'Country/Region Code' - caption: Codice paese/area geografica - column 'Customer Posting Group' - caption: Categoria registrazione cliente - column 'Customer Price Group' - caption: Gruppo prezzi cliente - column 'Customer Discount Group' - caption: Categoria sconto cliente - column 'Customer No. & Name' - caption: Nr. e nome cliente - table Date - caption: Data - column 'Week Day' - caption: Giorno della settimana - column 'Day Type' - caption: Tipo di giorno - column 'Calendar Year' - caption: Anno di calendario - column 'Calendar Quarter' - caption: Trimestre di calendario - column 'Calendar Quarter Year' - caption: Trimestre anno di calendario - column 'Calendar Month' - caption: Mese di calendario - column 'Calendar Month Year' - caption: Mese anno di calendario - column 'Calendar Week' - caption: Settimana di calendario - column 'Calendar Week Year' - caption: Settimana anno di calendario - column 'Calendar RelativeWeekPos' - caption: PosSettimanaRelativa di calendario - column 'Calendar RelativeMonthPos' - caption: PosMeseRelativo di calendario - column 'Calendar RelativeQuarterPos' - caption: PosTrimestreRelativo di calendario - column 'Calendar RelativeYearPos' - caption: PosAnnoRelativo di calendario - column 'Calendar StartOfMonth' - caption: PrimoGiornoMese di calendario - column 'Calendar EndOfMonth' - caption: UltimoGiornoMese di calendario - column 'Calendar StartOfQuarter' - caption: PrimoGiornoTrimestre di calendario - column 'Calendar EndOfQuarter' - caption: UltimoGiornoTrimestre di calendario - column 'Calendar StartOfYear' - caption: PrimoGiornoAnno di calendario - column 'Calendar EndOfYear' - caption: UltimoGiornoAnno di calendario - column 'Calendar MonthDays' - caption: GiorniMese di calendario - column 'Calendar QuarterDays' - caption: GiorniTrimestre di calendario - column 'Calendar YearDays' - caption: GiorniAnno di calendario - column 'Calendar DayOfMonthNumber' - caption: NumeroGiornoMese di calendario - column 'Calendar DayOfQuarterNumber' - caption: NumeroGiornoTrimestre di calendario - column 'Calendar DayOfYearNumber' - caption: NumeroGiornoAnno di calendario - column 'Calendar DatePreviousWeek' - caption: DataSettimanaPrecedente di calendario - column 'Calendar DatePreviousMonth' - caption: DataMesePrecedente di calendario - column 'Calendar DatePreviousQuarter' - caption: DataTrimestrePrecedente di calendario - column 'Calendar DatePreviousYear' - caption: DataAnnoPrecedente di calendario - column 'Fiscal Year' - caption: Anno fiscale - column 'Fiscal Quarter' - caption: Trimestre fiscale - column 'Fiscal Quarter Year' - caption: Trimestre anno fiscale - column 'Fiscal Month' - caption: Mese fiscale - column 'Fiscal Month Year' - caption: Mese anno fiscale - column 'Fiscal Week' - caption: Settimana fiscale - column 'Fiscal Week Year' - caption: Settimana anno fiscale - column 'Fiscal RelativeWeekPos' - caption: PosSettimanaRelativa fiscale - column 'Fiscal RelativeMonthPos' - caption: PosMeseRelativo fiscale - column 'Fiscal RelativeQuarterPos' - caption: PosTrimestreRelativo fiscale - column 'Fiscal RelativeYearPos' - caption: PosAnnoRelativo fiscale - column 'Fiscal StartOfMonth' - caption: PrimoGiornoMese fiscale - column 'Fiscal EndOfMonth' - caption: UltimoGiornoMese fiscale - column 'Fiscal StartOfQuarter' - caption: PrimoGiornoTrimestre fiscale - column 'Fiscal EndOfQuarter' - caption: UltimoGiornoTrimestre fiscale - column 'Fiscal StartOfYear' - caption: PrimoGiornoAnno fiscale - column 'Fiscal EndOfYear' - caption: UltimoGiornoAnno fiscale - column 'Fiscal MonthDays' - caption: GiorniMese fiscale - column 'Fiscal QuarterDays' - caption: GiorniTrimestre fiscale - column 'Fiscal YearDays' - caption: GiorniAnno fiscale - column 'Fiscal DayOfMonthNumber' - caption: NumeroGiornoMese fiscale - column 'Fiscal DayOfQuarterNumber' - caption: NumeroGiornoTrimestre fiscale - column 'Fiscal DayOfYearNumber' - caption: NumeroGiornoAnno fiscale - column 'Fiscal DatePreviousWeek' - caption: DataSettimanaPrecedente fiscale - column 'Fiscal DatePreviousMonth' - caption: DataMesePrecedente fiscale - column 'Fiscal DatePreviousQuarter' - caption: DataTrimestrePrecedente fiscale - column 'Fiscal DatePreviousYear' - caption: DataAnnoPrecedente fiscale - column 'FW Year' - caption: Anno SF - column 'FW Quarter' - caption: Trimestre SF - column 'FW Quarter Year' - caption: Trimestre anno SF - column 'FW Month' - caption: Mese SF - column 'FW Month Year' - caption: Mese anno SF - column 'FW Week' - caption: Settimana SF - column 'FW Period' - caption: Periodo SF - column 'FW Week Year' - caption: Settimana anno SF - column 'FW StartOfWeek' - caption: PrimoGiornoSettimana SF - column 'FW EndOfWeek' - caption: UltimoGiornoSettimana SF - column 'FW RelativeWeekPos' - caption: PosSettimanaRelativa SF - column 'FW RelativeMonthPos' - caption: PosMeseRelativo SF - column 'FW RelativeQuarterPos' - caption: PosTrimestreRelativo SF - column 'FW RelativeYearPos' - caption: PosAnnoRelativo SF - column 'FW StartOfMonth' - caption: PrimoGiornoMese SF - column 'FW EndOfMonth' - caption: UltimoGiornoMese SF - column 'FW StartOfQuarter' - caption: PrimoGiornoTrimestre SF - column 'FW EndOfQuarter' - caption: UltimoGiornoTrimestre SF - column 'FW StartOfYear' - caption: PrimoGiornoAnno SF - column 'FW EndOfYear' - caption: UltimoGiornoAnno SF - column 'FW MonthDays' - caption: GiorniMese SF - column 'FW QuarterDays' - caption: GiorniTrimestre SF - column 'FW YearDays' - caption: GiorniAnno SF - column 'FW DayOfMonthNumber' - caption: NumeroGiornoMese SF - column 'FW DayOfQuarterNumber' - caption: NumeroGiornoTrimestre SF - column 'FW DayOfYearNumber' - caption: NumeroGiornoAnno SF - column 'FW DatePreviousWeek' - caption: DataSettimanaPrecedente SF - column 'FW DatePreviousMonth' - caption: DataMesePrecedente SF - column 'FW DatePreviousQuarter' - caption: DataTrimestrePrecedente SF - column 'FW DatePreviousYear' - caption: DataAnnoPrecedente SF - column 'Relative Day' - caption: Giorno relativo - column Sequential365DayNumber - caption: NumeroGiorno sequenziale da 1 a 365 - column 'Data Range Deferrals' - caption: Differimenti intervallo dati - measure 'No. of Days' - caption: Nr. di giorni - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Quarter Year' - caption: Trimestre anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - level 'Fiscal Week Year' - caption: Settimana anno fiscale - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Quarter Year' - caption: Trimestre anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - level 'Calendar Week Year' - caption: Settimana anno di calendario - hierarchy 'FW Year-Quarter-Month-Week' - caption: Anno-Trimestre-Mese-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Quarter Year' - caption: Trimestre anno SF - level 'FW Month Year' - caption: Mese anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'Fiscal Year-Month' - caption: Anno-Mese fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - hierarchy 'Fiscal Year-Month-Week' - caption: Anno-Mese-Settimana fiscale - level 'Fiscal Year' - caption: Anno fiscale - level 'Fiscal Month Year' - caption: Mese anno fiscale - level 'Fiscal Week Year' - caption: Settimana anno fiscale - hierarchy 'Calendar Year-Month' - caption: Anno-Mese di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - hierarchy 'Calendar Year-Month-Week' - caption: Anno-Mese-Settimana di calendario - level 'Calendar Year' - caption: Anno di calendario - level 'Calendar Month Year' - caption: Mese anno di calendario - level 'Calendar Week Year' - caption: Settimana anno di calendario - hierarchy 'FW Year-Month-Week' - caption: Anno-Mese-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Month Year' - caption: Mese anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'FW Year-Quarter-Week' - caption: Anno-Trimestre-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Quarter Year' - caption: Trimestre anno SF - level 'FW Week Year' - caption: Settimana anno SF - hierarchy 'FW Year-Week' - caption: Anno-Settimana SF - level 'FW Year' - caption: Anno SF - level 'FW Week Year' - caption: Settimana anno SF - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNETTI I DATI - measure '1. Download the Finance Connector for Power BI' - caption: 1. Scaricare Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configurare Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USA, MODIFICA E CREA I TUOI REPORT - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero. - measure 'HELP AND SUPPORT' - caption: GUIDA E SUPPORTO - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi. - measure 'for Business Central' - caption: per Business Central - measure 'Last Refreshed' - caption: Ultimo aggiornamento - measure 'Company Name' - caption: Nome società - measure 'Analysis Entries as of' - caption: Movimenti analisi a partire da - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto - measure 'Billing Forecast by Year and Month' - caption: Previsione fatturazione per anno e mese di calendario - measure 'Billing Schedule' - caption: Programmazione fatturazione - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Modifica dei ricavi periodici mensili per anno e mese - measure 'Current Date Range:' - caption: Intervallo di date corrente: - measure 'Customer Contract Deferrals' - caption: Differimenti contratto del cliente - measure 'Customer Contract Lines' - caption: Righe contratto del cliente - measure 'Customer Deferrals (Caption)' - caption: Differimenti cliente - measure 'Mon. Recurring Revenue Analysis' - caption: Analisi ricavi periodici mensili - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario - measure 'Mon. Recurring Revenue by Customer' - caption: Ricavi periodici mensili per cliente - measure 'Mon. Recurring Revenue by Salesperson' - caption: Ricavi periodici mensili per venditore - measure 'Mon. Recurring Revenue by Year and Month' - caption: Ricavi periodici mensili per anno e mese di calendario - measure 'Mon. Recurring Revenue by Item' - caption: Ricavi periodici mensili per articolo - measure 'Mon. Recurring Revenue by Item Category' - caption: Ricavi periodici mensili per categoria articolo - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Abbandono e downgrade ricavi periodici mensili per contratto cliente - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Novità e aggiornamento ricavi periodici mensili per contratto cliente - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Previsioni mensili di ricavi e costi per anno e mese di calendario - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto - measure 'Released and Deferred Amount by Year and Month' - caption: Importo rilasciato e differito per anno e mese di calendario - measure 'Revenue Analysis' - caption: Analisi ricavi - measure 'Revenue by Customer' - caption: Ricavi per cliente - measure 'Revenue by Item' - caption: Ricavi per articolo - measure 'Revenue by Salesperson' - caption: Ricavi per venditore - measure 'Revenue Development' - caption: Sviluppo ricavi - measure 'Sales and Cost Forecast' - caption: Previsione ricavi - measure 'Revenue Year-Over-Year Growth' - caption: Crescita ricavi anno su anno - measure 'Subscription Billing Analysis' - caption: Analisi Subscription Billing - measure 'Subscription Billing Overview' - caption: Panoramica di Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Primi 5 clienti per ricavi periodici mensili - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Primi 5 fornitori per costo periodico mensile - measure 'Total Contract Value Analysis' - caption: Analisi valore totale del contratto - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Valore totale dei contratti e valore totale dei contratti PY per mese di calendario - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Valore totale del contratto e crescita anno su anno per anno e mese di calendario - measure 'Total Contract Value by Year and Month' - caption: Valore totale del contratto per anno e mese di calendario - measure 'Total Contract Value Year-Over-Year Growth' - caption: Crescita anno su anno del valore totale dei contratti - measure 'Vendor Contract Deferrals' - caption: Differimenti contratto del fornitore - measure 'Vendor Deferrals (Caption)' - caption: Differimenti fornitore - measure 'Back button' - caption: Pulsante Indietro - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili - measure 'Churn Analysis' - caption: Analisi abbandono - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: % tasso medio di abbandono mensile per anno e mese - table 'Meta Information' - caption: SOCIETÀ - table Subscription - caption: Oggetto di assistenza - column 'Subscription No.' - caption: Nr. oggetto di assistenza - column 'Package Code' - caption: Codice pacchetto - column 'Subscription Desc.' - caption: Descrizione oggetto di assistenza - column 'Analysis Date' - caption: Data di analisi - column 'Subscription No. Desc.' - caption: Descrizione nr. Subscription - table 'Vendor Contract Deferrals' - caption: Differimenti contratto del fornitore - column 'Document Type' - caption: Tipo di documento - column 'Document No.' - caption: Nr. documento - column 'Posting Date' - caption: Data di registrazione - column 'Document Posting Date' - caption: Data di registrazione documento - column 'Release Posting Date' - caption: Data di registrazione rilascio - column 'G LEntry No.' - caption: Nr. movimento C/G - column Discount - caption: Sconto - column 'Document Line No.' - caption: Nr. riga documento - table 'Customer Contract Line' - caption: Riga contratto del cliente - column 'Subscription Line No.' - caption: Nr. riga impegno - column Template - caption: Modello - column 'Customer Contract Line Desc.' - caption: Descrizione riga contratto del cliente - column 'Subscription Start Date' - caption: Data di inizio assistenza - column 'Subscription End Date' - caption: Data di fine assistenza - column 'Next Billing Date' - caption: Data fatturazione successiva - column 'Billing Base Period' - caption: Periodo di base di fatturazione - column 'Invoicing Item No.' - caption: Nr. articolo fatturazione - column 'Customer Contract Line No.' - caption: Nr. riga contratto del cliente - column 'Notice Period' - caption: Periodo di avviso - column 'Initial Term' - caption: Periodo iniziale - column 'Extension Term' - caption: Periodo di estensione - column 'Billing Rhythm' - caption: Ritmo di fatturazione - column 'Cancellation Possible Until' - caption: Annullamento possibile fino alla data - column 'Term Until' - caption: Periodo fino alla data - column 'Renewal Term' - caption: Termine di rinnovo - column 'Line Active' - caption: Attività riga - column 'Remaining Term' - caption: Periodo rimanente - column 'Billing Rhythm Months' - caption: Mesi frequenza fatturazione - column 'Customer Contract No.' - caption: Nr. contratto del cliente - column 'Is Usage Based Billing' - caption: Fatturazione basata sull'utilizzo - column 'Source Type' - caption: Tipo di origine - column 'Source No.' - caption: Nr. origine - table 'Vendor Contract Line' - caption: Riga contratto del fornitore - column 'Subscription Line No.' - caption: Nr. riga impegno - column Template - caption: Modello - column 'Vendor Contract Line Desc.' - caption: Descrizione riga contratto del fornitore - column 'Subscription Start Date' - caption: Data di inizio assistenza - column 'Subscription End Date' - caption: Data di fine assistenza - column 'Next Billing Date' - caption: Data fatturazione successiva - column 'Vendor Contract Line No.' - caption: Nr. riga contratto del fornitore - column 'Notice Period' - caption: Periodo di avviso - column 'Initial Term' - caption: Periodo iniziale - column 'Extension Term' - caption: Periodo di estensione - column 'Billing Rhythm' - caption: Ritmo di fatturazione - column 'Cancellation Possible Until' - caption: Annullamento possibile fino alla data - column 'Term Until' - caption: Periodo fino alla data - column 'Renewal Term' - caption: Termine di rinnovo - column 'Line Active' - caption: Attività riga - column 'Remaining Term' - caption: Periodo rimanente - column 'Billing Rhythm Months' - caption: Mesi frequenza fatturazione - column 'Vendor Contract No.' - caption: Nr. contratto del fornitore - column 'Is Latest Version' - caption: Ultima versione - column 'Is Usage Based Billing' - caption: Fatturazione basata sull'utilizzo - column 'Source Type' - caption: Tipo di origine - column 'Source No.' - caption: Nr. origine - table 'Customer Contract Deferrals' - caption: Differimenti contratto del cliente - column 'Document Type' - caption: Tipo di documento - column 'Document No.' - caption: Nr. documento - column 'Posting Date' - caption: Data di registrazione - column 'Document Line No.' - caption: Nr. riga documento - column 'Document Posting Date' - caption: Data di registrazione documento - column 'Release Posting Date' - caption: Data di registrazione rilascio - column 'G LEntry No.' - caption: Nr. movimento C/G - table 'Customer Contract' - caption: Contratto del cliente - column 'Customer Contract No.' - caption: Nr. contratto del cliente - column 'Customer Contract Type' - caption: Tipo di contratto del cliente - column 'Customer Contract Description' - caption: Descrizione contratto del cliente - column 'Customer Contract No. Desc.' - caption: Descrizione nr. contratto del cliente - table 'Vendor Contract' - caption: Contratto del fornitore - column 'Vendor Contract No.' - caption: Nr. contratto del fornitore - column 'Vendor Contract Type' - caption: Tipo di contratto del fornitore - column 'Vendor Contract Description' - caption: Descrizione contratto del fornitore - column 'Vendor Contract No. Desc.' - caption: Descrizione nr. contratto del fornitore - table 'UBB handling' - caption: Movimentazione UBB - column 'Treat Usage Based Billing as constant' - caption: Considera UBB come costante - table 'Is Released' - caption: Rilasciato - table Item - caption: Articolo - column 'Item No.' - caption: Nr. articolo - column 'Item Name' - caption: Nome articolo - column 'Item Category Code' - caption: Codice categoria articolo - column 'Item Category Description' - caption: Descrizione categoria articolo - column 'Inventory Posting Group' - caption: Categoria registrazione inventario - column 'Base Unit of Measure' - caption: Unità di misura di base - column 'Item No. & Description' - caption: Nr. e descrizione articolo - table 'Analysis Date' - caption: Data di analisi - column 'Is Initial Version' - caption: Versione iniziale - column 'Is Current Version' - caption: Versione corrente - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Gruppo calcolato - Funzionalità di Business Intelligence per le gerarchie temporali per calendario (fiscale) - column Perspective - caption: Prospettiva - table 'Subscription Billing KPIs' - caption: KPI Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Differimenti cliente - measure 'Vendor Deferrals' - caption: Differimenti fornitore - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Vendite previste - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: Δ MRC rispetto a PY - measure 'Mon. Recurring Revenue Churn' - caption: Abbandono ricavi periodici mensili - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Nuovi ricavi periodici mensili - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Δ analisi ricavi periodici mensili rispetto PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: % NMRP di MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: Δ NMRP rispetto a PY - measure 'Change in Mon. Recurring Revenue' - caption: Variazione complessiva MRR - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: Δ TCV rispetto a PY - measure 'Last Update Analysis Entries' - caption: Ultimo aggiornamento movimenti analisi - measure 'Last Update Semantic Model' - caption: Ultimo aggiornamento modello semantico - measure 'Param Environment' - caption: Parametri ambiente - measure 'Param Company' - caption: Parametri società - measure 'Mon. Recurring Revenue Upgrade' - caption: Aggiornamento ricavi periodici mensili - measure 'Mon. Recurring Revenue Change UBB' - caption: UBB variazione ricavi periodici mensili - measure 'Reporting Currency' - caption: Valuta di dichiarazione - measure 'Active Customers' - caption: Clienti attivi - measure 'Active Customers PY' - caption: Clienti attivi PY - measure 'Active Customers Δ vs. PY' - caption: Δ clienti attivi rispetto a PY - measure 'Customer Billing Forecast' - caption: Previsione fatturazione cliente - measure 'Vendor Billing Forecast' - caption: Previsione fatturazione fornitore - measure 'Forecast Costs' - caption: Costi previsione - measure 'Mon. Recurring Revenue Downgrade' - caption: Downgrade ricavi periodici mensili - measure 'Selected Date Range' - caption: Intervallo di date selezionato - measure 'Avg. Mon. Churn Rate %' - caption: % tasso medio di abbandono mensile - measure 'Mon. Avg. Downgrade Rate %' - caption: % tasso medio di downgrade mensile - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Downgrade e abbandono ricavi periodici mensili - table Salesperson - caption: Venditore - column 'Salesperson Code' - caption: Codice venditore - column 'Salesperson Name' - caption: Nome venditore - table 'Customer Contract Changes' - caption: Modifiche contratto del cliente - column 'Customer Contract Line Key' - caption: Chiave riga contratto del cliente - column Date - caption: Data - column 'Change Type' - caption: Tipo di modifica - column 'MRR Delta' - caption: Delta MRR - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nb-NO.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nb-NO.tmdl deleted file mode 100644 index 64d7b6c071..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nb-NO.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo nb-NO - translations - model Model - table 'Dimension Sets' - caption: Dimensjonssett - column 'Global Dimension 1' - caption: Global dimensjon 1 - column 'Global Dimension 2' - caption: Global dimensjon 2 - column 'Shortcut Dimension 3' - caption: Snarveisdimensjon 3 - column 'Shortcut Dimension 4' - caption: Snarveisdimensjon 4 - column 'Shortcut Dimension 5' - caption: Snarveisdimensjon 5 - column 'Shortcut Dimension 6' - caption: Snarveisdimensjon 6 - column 'Shortcut Dimension 7' - caption: Snarveisdimensjon 7 - column 'Shortcut Dimension 8' - caption: Snarveisdimensjon 8 - column id - caption: ID - table Vendors - caption: Leverandører - column 'Vendor No.' - caption: Leverandørnr. - column 'Vendor Name' - caption: Leverandørnavn - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Poststed - column 'Post Code' - caption: Postnr. - column State - caption: Delstat - column 'Country/Region Code' - caption: Kode for land/område - column 'Vendor Posting Group' - caption: Leverandørbokføringsgruppe - column 'Vendor No. & Name' - caption: Leverandørnr. og -navn - table Customers - caption: Kunder - column 'Customer No.' - caption: Kundenr. - column 'Customer Name' - caption: Kundenavn - column Address - caption: Adresse - column 'Address 2' - caption: Adresse 2 - column City - caption: Poststed - column 'Post Code' - caption: Postnr. - column State - caption: Delstat - column 'Country/Region Code' - caption: Kode for land/område - column 'Customer Posting Group' - caption: Kundebokføringsgruppe - column 'Customer Price Group' - caption: Kundeprisgruppe - column 'Customer Discount Group' - caption: Kunderabattgruppe - column 'Customer No. & Name' - caption: Kundenr. og -navn - table Date - caption: Dato - column 'Week Day' - caption: Ukedag - column 'Day Type' - caption: Type dag - column 'Calendar Year' - caption: Kalenderår - column 'Calendar Quarter' - caption: Kalenderkvartal - column 'Calendar Quarter Year' - caption: Kalender Kvartal År - column 'Calendar Month' - caption: Kalendermåned - column 'Calendar Month Year' - caption: Kalender Måned År - column 'Calendar Week' - caption: Kalenderuke - column 'Calendar Week Year' - caption: Kalender Uke År - column 'Calendar RelativeWeekPos' - caption: Kalender RelativUkePos - column 'Calendar RelativeMonthPos' - caption: Kalender RelativMånedPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativtKvartalPos - column 'Calendar RelativeYearPos' - caption: Kalender RelativtÅrPos - column 'Calendar StartOfMonth' - caption: Kalender StartPåMåned - column 'Calendar EndOfMonth' - caption: Kalender SluttPåMåned - column 'Calendar StartOfQuarter' - caption: Kalender StartPåKvartal - column 'Calendar EndOfQuarter' - caption: KalenderSluttPåKvartal - column 'Calendar StartOfYear' - caption: Kalender StartPåÅr - column 'Calendar EndOfYear' - caption: Kalender SluttPåÅr - column 'Calendar MonthDays' - caption: Kalender MånedDager - column 'Calendar QuarterDays' - caption: Kalender KvartalDager - column 'Calendar YearDays' - caption: Kalender ÅrDager - column 'Calendar DayOfMonthNumber' - caption: Kalender DagIMånedNummer - column 'Calendar DayOfQuarterNumber' - caption: Kalender DagIKvartalNummer - column 'Calendar DayOfYearNumber' - caption: Kalender DagIÅretNummer - column 'Calendar DatePreviousWeek' - caption: Kalender DatoForrigeUke - column 'Calendar DatePreviousMonth' - caption: Kalender DatoForrigeMåned - column 'Calendar DatePreviousQuarter' - caption: Kalender DatoForrigeKvartal - column 'Calendar DatePreviousYear' - caption: Kalender DatoForrigeÅr - column 'Fiscal Year' - caption: Regnskapsår - column 'Fiscal Quarter' - caption: Regnskapskvartal - column 'Fiscal Quarter Year' - caption: Regnskap Kvartal År - column 'Fiscal Month' - caption: Regnskapsmåned - column 'Fiscal Month Year' - caption: Regnskap Måned År - column 'Fiscal Week' - caption: Regnskapsuke - column 'Fiscal Week Year' - caption: Regnskap Uke År - column 'Fiscal RelativeWeekPos' - caption: Regnskap RelativUkePos - column 'Fiscal RelativeMonthPos' - caption: Regnskap RelativMånedPos - column 'Fiscal RelativeQuarterPos' - caption: Regnskap RelativtKvartalPos - column 'Fiscal RelativeYearPos' - caption: Regnskap RelativtÅrPos - column 'Fiscal StartOfMonth' - caption: Regnskap StartPåMåned - column 'Fiscal EndOfMonth' - caption: Regnskap SluttPåMåned - column 'Fiscal StartOfQuarter' - caption: Regnskap StartPåKvartal - column 'Fiscal EndOfQuarter' - caption: Regnskap SluttPåKvartal - column 'Fiscal StartOfYear' - caption: Regnskap StartPåÅr - column 'Fiscal EndOfYear' - caption: Regnskap SluttPåÅr - column 'Fiscal MonthDays' - caption: Regnskap MånedDager - column 'Fiscal QuarterDays' - caption: Regnskap KvartalDager - column 'Fiscal YearDays' - caption: Regnskap ÅrDager - column 'Fiscal DayOfMonthNumber' - caption: Regnskap DagIMånedNummer - column 'Fiscal DayOfQuarterNumber' - caption: Regnskap DagIKvartalNummer - column 'Fiscal DayOfYearNumber' - caption: Regnskap DagIÅretNummer - column 'Fiscal DatePreviousWeek' - caption: Regnskap DatoForrigeUke - column 'Fiscal DatePreviousMonth' - caption: Regnskap DatoForrigeMåned - column 'Fiscal DatePreviousQuarter' - caption: Regnskap DatoForrigeKvartal - column 'Fiscal DatePreviousYear' - caption: Regnskap DatoForrigeÅr - column 'FW Year' - caption: Regnskapsuke år - column 'FW Quarter' - caption: Regnskapsuke kvartal - column 'FW Quarter Year' - caption: Regnskapsuke Kvartal År - column 'FW Month' - caption: Regnskapsuke måned - column 'FW Month Year' - caption: Regnskapsuke Måned År - column 'FW Week' - caption: Regnskapsuke Uke - column 'FW Period' - caption: Regnskapsukeperiode - column 'FW Week Year' - caption: Regnskapsuke Uke År - column 'FW StartOfWeek' - caption: Regnskapsuke StartPåUke - column 'FW EndOfWeek' - caption: Regnskapsuke SluttPåUke - column 'FW RelativeWeekPos' - caption: Regnskapsuke RelativUkePos - column 'FW RelativeMonthPos' - caption: Regnskapsuke RelativMånedPos - column 'FW RelativeQuarterPos' - caption: Regnskapsuke RelativtKvartalPos - column 'FW RelativeYearPos' - caption: Regnskapsuke RelativtÅrPos - column 'FW StartOfMonth' - caption: Regnskapsuke StartPåMåned - column 'FW EndOfMonth' - caption: Regnskapsuke SluttPåMåned - column 'FW StartOfQuarter' - caption: Regnskapsuke StartPåKvartal - column 'FW EndOfQuarter' - caption: Regnskapsuke SluttPåKvartal - column 'FW StartOfYear' - caption: Regnskapsuke StartPåÅr - column 'FW EndOfYear' - caption: Regnskapsuke SluttPåÅr - column 'FW MonthDays' - caption: Regnskapsuke MånedDager - column 'FW QuarterDays' - caption: Regnskapsuke KvartalDager - column 'FW YearDays' - caption: Regnskapsuke ÅrDager - column 'FW DayOfMonthNumber' - caption: Regnskapsuke DagIMånedNummer - column 'FW DayOfQuarterNumber' - caption: Regnskapsuke DagIKvartalNummer - column 'FW DayOfYearNumber' - caption: Regnskapsuke DagIÅretNummer - column 'FW DatePreviousWeek' - caption: Regnskapsuke DatoForrigeUke - column 'FW DatePreviousMonth' - caption: Regnskapsuke DatoForrigeMåned - column 'FW DatePreviousQuarter' - caption: Regnskapsuke DatoForrigeKvartal - column 'FW DatePreviousYear' - caption: Regnskapsuke DatoForrigeÅr - column 'Relative Day' - caption: Relativ dag - column Sequential365DayNumber - caption: Sekvensiell 365 DagNummer - column 'Data Range Deferrals' - caption: Periodiseringer av dataområde - measure 'No. of Days' - caption: Antall dager - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Regnskap år-kvartal-måned-uke - level 'Fiscal Year' - caption: Regnskapsår - level 'Fiscal Quarter Year' - caption: Regnskap Kvartal År - level 'Fiscal Month Year' - caption: Regnskap Måned År - level 'Fiscal Week Year' - caption: Regnskap Uke År - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender år-kvartal-måned-uke - level 'Calendar Year' - caption: Kalenderår - level 'Calendar Quarter Year' - caption: Kalender Kvartal År - level 'Calendar Month Year' - caption: Kalender Måned År - level 'Calendar Week Year' - caption: Kalender Uke År - hierarchy 'FW Year-Quarter-Month-Week' - caption: Regnskapsuke år-kvartal-måned-uke - level 'FW Year' - caption: Regnskapsuke år - level 'FW Quarter Year' - caption: Regnskapsuke Kvartal År - level 'FW Month Year' - caption: Regnskapsuke Måned År - level 'FW Week Year' - caption: Regnskapsuke Uke År - hierarchy 'Fiscal Year-Month' - caption: Regnskap år-måned - level 'Fiscal Year' - caption: Regnskapsår - level 'Fiscal Month Year' - caption: Regnskap Måned År - hierarchy 'Fiscal Year-Month-Week' - caption: Regnskap år-måned-uke - level 'Fiscal Year' - caption: Regnskapsår - level 'Fiscal Month Year' - caption: Regnskap Måned År - level 'Fiscal Week Year' - caption: Regnskap Uke År - hierarchy 'Calendar Year-Month' - caption: Kalender år-måned - level 'Calendar Year' - caption: Kalenderår - level 'Calendar Month Year' - caption: Kalender Måned År - hierarchy 'Calendar Year-Month-Week' - caption: Kalender år-måned-uke - level 'Calendar Year' - caption: Kalenderår - level 'Calendar Month Year' - caption: Kalender Måned År - level 'Calendar Week Year' - caption: Kalender Uke År - hierarchy 'FW Year-Month-Week' - caption: Regnskapsuke år-måned-uke - level 'FW Year' - caption: Regnskapsuke år - level 'FW Month Year' - caption: Regnskapsuke Måned År - level 'FW Week Year' - caption: Regnskapsuke Uke År - hierarchy 'FW Year-Quarter-Week' - caption: Regnskapsuke år-kvartal-uke - level 'FW Year' - caption: Regnskapsuke år - level 'FW Quarter Year' - caption: Regnskapsuke Kvartal År - level 'FW Week Year' - caption: Regnskapsuke Uke År - hierarchy 'FW Year-Week' - caption: Regnskapsuke år-uke - level 'FW Year' - caption: Regnskapsuke år - level 'FW Week Year' - caption: Regnskapsuke Uke År - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: KOBLE TIL DATAENE - measure '1. Download the Finance Connector for Power BI' - caption: 1. Last ned Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Konfigurer Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: BRUK, REDIGER OG BYGG DINE EGNE RAPPORTER - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finans inneholder en rekke forhåndsbygde rapporter som hjelper deg med å se dataene umiddelbart. Du kan redigere disse rapportene eller lage din egen rapport fra bunnen av. - measure 'HELP AND SUPPORT' - caption: HJELP OG KUNDESTØTTE - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Hvis du vil ha hjelp og støtte med den nye rapporten, kan du gå til dokumentasjonen for analyseoversikten. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Sist oppdatert - measure 'Company Name' - caption: Selskapsnavn - measure 'Analysis Entries as of' - caption: Analyseposter per - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Faktureringsprognose etter faktureringsperiode, kunde- og kontraktnr. - measure 'Billing Forecast by Year and Month' - caption: Faktureringsprognose etter kalenderår og måned - measure 'Billing Schedule' - caption: Faktureringsplan - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Endring i månedlig gjentakende inntekt etter år og måned - measure 'Current Date Range:' - caption: Nåværende datoområde: - measure 'Customer Contract Deferrals' - caption: Kundekontraktperiodiseringer - measure 'Customer Contract Lines' - caption: Kundekontraktlinjer - measure 'Customer Deferrals (Caption)' - caption: Kundeperiodiseringer - measure 'Mon. Recurring Revenue Analysis' - caption: Månedlig gjentakende inntektsanalyse - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Månedlig gjentakende inntekt og månedlig gjentakende inntekt PÅ etter kalendermåned - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Månedlig gjentakende inntekst og vekst år for år etter kalenderår og måned - measure 'Mon. Recurring Revenue by Customer' - caption: Månedlig gjentakende inntekt etter kunde - measure 'Mon. Recurring Revenue by Salesperson' - caption: Månedlig gjentakende inntekt etter selger - measure 'Mon. Recurring Revenue by Year and Month' - caption: Månedlig gjentakende inntekt etter kalenderår og måned - measure 'Mon. Recurring Revenue by Item' - caption: Månedlig gjentakende inntekt etter vare - measure 'Mon. Recurring Revenue by Item Category' - caption: Månedlig gjentakende inntekt etter varekategori - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Månedlig gjentakende inntektsfrafall og -nedgradering etter kundekontrakt - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Månedlig gjentakende inntekt ny og oppgradering etter kundekontrakt - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Månedlig inntekts- og kostnadsprognose etter kalenderår og måned - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Månedlig inntekts- og kostnadsprognose etter selger, kunde- og kontraktnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Frigitt og periodisert beløp etter kalenderår og måned - measure 'Revenue Analysis' - caption: Inntektsanalyse - measure 'Revenue by Customer' - caption: Inntekt etter kunde - measure 'Revenue by Item' - caption: Inntekt etter vare - measure 'Revenue by Salesperson' - caption: Inntekt per selger - measure 'Revenue Development' - caption: Inntektsutvikling - measure 'Sales and Cost Forecast' - caption: Inntektsprognose - measure 'Revenue Year-Over-Year Growth' - caption: Inntekstvekst år for år - measure 'Subscription Billing Analysis' - caption: Subscription Billing-analyse - measure 'Subscription Billing Overview' - caption: Oversikt over Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Beste fem kunder etter månedlig gjentakende inntekt - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Beste fem leverandører etter månedlig gjentakende kostnad - measure 'Total Contract Value Analysis' - caption: Analyse av total kontraktverdi - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total kontraktverdi og total kontraktverdi PÅ etter kalendermåned - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total kontraktverdi og vekst år for år etter kalenderår og måned - measure 'Total Contract Value by Year and Month' - caption: Total kontraktverdi etter kalenderår og måned - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total kontraktverdivekst år for år - measure 'Vendor Contract Deferrals' - caption: Leverandørkontraktperiodiseringer - measure 'Vendor Deferrals (Caption)' - caption: Leverandørperiodiseringer - measure 'Back button' - caption: Tilbakeknapp - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Månedlig gjentakende inntekt, månedlig gjentakende kostnad, månedlig nettofortjeneste, aktive kunder, total kontraktverdi, endring i månedlig gjentakende inntekt - measure 'Churn Analysis' - caption: Frafallsanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Gj.sn. månedlig frafallsrate i prosent etter år og måned - table 'Meta Information' - caption: SELSKAP - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektnr. - column 'Package Code' - caption: Pakkekode - column 'Subscription Desc.' - caption: Beskrivelse av serviceobjekt - column 'Analysis Date' - caption: Analysedato - column 'Subscription No. Desc.' - caption: Beskrivelse av Subscription-nr. - table 'Vendor Contract Deferrals' - caption: Leverandørkontraktperiodiseringer - column 'Document Type' - caption: Dokumenttype - column 'Document No.' - caption: Dokumentnr. - column 'Posting Date' - caption: Bokføringsdato - column 'Document Posting Date' - caption: Dokumentbokføringsdato - column 'Release Posting Date' - caption: Frigi bokføringsdato - column 'G LEntry No.' - caption: Finanspostnr. - column Discount - caption: Rabatt - column 'Document Line No.' - caption: Dokumentlinjenr. - table 'Customer Contract Line' - caption: Kundekontraktlinje - column 'Subscription Line No.' - caption: Forpliktelseslinjenr. - column Template - caption: Mal - column 'Customer Contract Line Desc.' - caption: Beskrivelse av kundekontraktlinje - column 'Subscription Start Date' - caption: Tjenestestartdato - column 'Subscription End Date' - caption: Tjenestesluttdato - column 'Next Billing Date' - caption: Neste faktureringsdato - column 'Billing Base Period' - caption: Faktureringsbasisperiode - column 'Invoicing Item No.' - caption: Faktureringsvarenr. - column 'Customer Contract Line No.' - caption: Kundekontraktlinjenr. - column 'Notice Period' - caption: Merknadsperiode - column 'Initial Term' - caption: Innledende periode - column 'Extension Term' - caption: Utvidelsesperiode - column 'Billing Rhythm' - caption: Faktureringsfrekvens - column 'Cancellation Possible Until' - caption: Oppsigelse mulig frem til - column 'Term Until' - caption: Periode til - column 'Renewal Term' - caption: Fornyelsesperiode - column 'Line Active' - caption: Linje aktiv - column 'Remaining Term' - caption: Resterende periode - column 'Billing Rhythm Months' - caption: Faktureringsfrekvensmåneder - column 'Customer Contract No.' - caption: Kundekontraktnr. - column 'Is Usage Based Billing' - caption: Er bruksbasert fakturering - column 'Source Type' - caption: Kildetype - column 'Source No.' - caption: Kildenr. - table 'Vendor Contract Line' - caption: Leverandørkontraktlinje - column 'Subscription Line No.' - caption: Forpliktelseslinjenr. - column Template - caption: Mal - column 'Vendor Contract Line Desc.' - caption: Beskrivelse av leverandørkontraktlinje - column 'Subscription Start Date' - caption: Tjenestestartdato - column 'Subscription End Date' - caption: Tjenestesluttdato - column 'Next Billing Date' - caption: Neste faktureringsdato - column 'Vendor Contract Line No.' - caption: Leverandørkontraktlinjenr. - column 'Notice Period' - caption: Merknadsperiode - column 'Initial Term' - caption: Innledende periode - column 'Extension Term' - caption: Utvidelsesperiode - column 'Billing Rhythm' - caption: Faktureringsfrekvens - column 'Cancellation Possible Until' - caption: Oppsigelse mulig frem til - column 'Term Until' - caption: Periode til - column 'Renewal Term' - caption: Fornyelsesperiode - column 'Line Active' - caption: Linje aktiv - column 'Remaining Term' - caption: Resterende periode - column 'Billing Rhythm Months' - caption: Faktureringsfrekvensmåneder - column 'Vendor Contract No.' - caption: Leverandørkontraktnr. - column 'Is Latest Version' - caption: Er den nyeste versjonen - column 'Is Usage Based Billing' - caption: Er bruksbasert fakturering - column 'Source Type' - caption: Kildetype - column 'Source No.' - caption: Kildenr. - table 'Customer Contract Deferrals' - caption: Kundekontraktperiodiseringer - column 'Document Type' - caption: Dokumenttype - column 'Document No.' - caption: Dokumentnr. - column 'Posting Date' - caption: Bokføringsdato - column 'Document Line No.' - caption: Dokumentlinjenr. - column 'Document Posting Date' - caption: Dokumentbokføringsdato - column 'Release Posting Date' - caption: Frigi bokføringsdato - column 'G LEntry No.' - caption: Finanspostnr. - table 'Customer Contract' - caption: Kundekontrakt - column 'Customer Contract No.' - caption: Kundekontraktnr. - column 'Customer Contract Type' - caption: Kundekontrakttype - column 'Customer Contract Description' - caption: Beskrivelse av kundekontrakt - column 'Customer Contract No. Desc.' - caption: Beskrivelse av kundekontraktnr. - table 'Vendor Contract' - caption: Leverandørkontrakt - column 'Vendor Contract No.' - caption: Leverandørkontraktnr. - column 'Vendor Contract Type' - caption: Leverandørkontrakttype - column 'Vendor Contract Description' - caption: Beskrivelse av leverandørkontrakt - column 'Vendor Contract No. Desc.' - caption: Beskrivelse av leverandørkontraktnr. - table 'UBB handling' - caption: BBF-behandling - column 'Treat Usage Based Billing as constant' - caption: Behandle BBF som konstant - table 'Is Released' - caption: Er frigitt - table Item - caption: Vare - column 'Item No.' - caption: Varenr. - column 'Item Name' - caption: Varenavn - column 'Item Category Code' - caption: Varekategorikode - column 'Item Category Description' - caption: Beskrivelse av varekategori - column 'Inventory Posting Group' - caption: Beholdningsbokføringsgruppe - column 'Base Unit of Measure' - caption: Lagerenhet - column 'Item No. & Description' - caption: Varenr. og -beskrivelse - table 'Analysis Date' - caption: Analysedato - column 'Is Initial Version' - caption: Er opprinnelig versjon - column 'Is Current Version' - caption: Er nåværende versjon - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Beregningsgruppe – tidsintelligens for kalender (regnskap) - column Perspective - caption: Perspektiv - table 'Subscription Billing KPIs' - caption: Nøkkelindikatorer for Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MGI - measure 'Mon. Recurring Cost' - caption: MGK - measure 'Customer Deferrals' - caption: Kundeperiodiseringer - measure 'Vendor Deferrals' - caption: Leverandørperiodiseringer - measure 'Annual Recurring Revenue' - caption: ÅGI - measure 'Total Contract Value' - caption: TKV - measure 'Forecast Sales' - caption: Prognosesalg - measure 'Mon. Recurring Cost PY' - caption: MGK PÅ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MGK Δ kontra PÅ - measure 'Mon. Recurring Revenue Churn' - caption: Månedlig gjentakende inntektsfrafall - measure 'Mon. Recurring Revenue PY' - caption: MGI PÅ - measure 'Mon. Recurring Revenue New' - caption: Månedlig gjentakende inntekt ny - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Månedlig gjentakende inntekt Δ kontra PÅ - measure 'Mon. Net Profit Amount' - caption: NMGI - measure 'Mon. Net Profit %' - caption: NMGI i % av MGI - measure 'Mon. Net Profit PY' - caption: NMGI PÅ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMGI Δ kontra PÅ - measure 'Change in Mon. Recurring Revenue' - caption: Generell endring i MGI - measure 'Total Contract Value PY' - caption: TKV PÅ - measure 'Total Contract Value Δ vs. PY' - caption: TKV Δ kontra PÅ - measure 'Last Update Analysis Entries' - caption: Analyseposter sist oppdatert - measure 'Last Update Semantic Model' - caption: Semantisk modell sist oppdatert - measure 'Param Environment' - caption: Parametermiljø - measure 'Param Company' - caption: Parameterselskap - measure 'Mon. Recurring Revenue Upgrade' - caption: Månedlig gjentakende inntektsoppgradering - measure 'Mon. Recurring Revenue Change UBB' - caption: Månedlig gjentakende inntektsendring BBF - measure 'Reporting Currency' - caption: Rapporteringsvaluta - measure 'Active Customers' - caption: Aktive kunder - measure 'Active Customers PY' - caption: Aktive kunder PÅ - measure 'Active Customers Δ vs. PY' - caption: Aktive kunder Δ kontra PÅ - measure 'Customer Billing Forecast' - caption: Kundefaktureringsprognose - measure 'Vendor Billing Forecast' - caption: Leverandørfaktureringsprognose - measure 'Forecast Costs' - caption: Prognosekostnader - measure 'Mon. Recurring Revenue Downgrade' - caption: Månedlig gjentakende inntektsnedgradering - measure 'Selected Date Range' - caption: Valgt datoområde - measure 'Avg. Mon. Churn Rate %' - caption: Gj.sn. månedlig frafallsrate i prosent - measure 'Mon. Avg. Downgrade Rate %' - caption: Gj.sn. månedlig nedgraderingsrate i prosent - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Månedlig gjentakende inntektsnedgradering og -frafall - table Salesperson - caption: Selger - column 'Salesperson Code' - caption: Selgerkode - column 'Salesperson Name' - caption: Selgernavn - table 'Customer Contract Changes' - caption: Endringer i kundekontrakt - column 'Customer Contract Line Key' - caption: Kundekontraktlinjenøkkel - column Date - caption: Dato - column 'Change Type' - caption: Endringstype - column 'MRR Delta' - caption: MGI delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-BE.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-BE.tmdl deleted file mode 100644 index 81fc930a4e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-BE.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo nl-BE - translations - model Model - table 'Dimension Sets' - caption: Dimensiecombinaties - column 'Global Dimension 1' - caption: Globale dimensie 1 - column 'Global Dimension 2' - caption: Globale dimensie 2 - column 'Shortcut Dimension 3' - caption: Shortcutdimensie 3 - column 'Shortcut Dimension 4' - caption: Shortcutdimensie 4 - column 'Shortcut Dimension 5' - caption: Shortcutdimensie 5 - column 'Shortcut Dimension 6' - caption: Shortcutdimensie 6 - column 'Shortcut Dimension 7' - caption: Shortcutdimensie 7 - column 'Shortcut Dimension 8' - caption: Shortcutdimensie 8 - column id - caption: id - table Vendors - caption: Leveranciers - column 'Vendor No.' - caption: Leveranciersnr. - column 'Vendor Name' - caption: Leveranciersnaam - column Address - caption: Adres - column 'Address 2' - caption: Adres 2 - column City - caption: Plaats - column 'Post Code' - caption: Postcode - column State - caption: Staat - column 'Country/Region Code' - caption: Land/regio-code - column 'Vendor Posting Group' - caption: Leveranciersboekingsgroep - column 'Vendor No. & Name' - caption: Nr. en naam van leverancier - table Customers - caption: Klanten - column 'Customer No.' - caption: Klantnr. - column 'Customer Name' - caption: Klantnaam - column Address - caption: Adres - column 'Address 2' - caption: Adres 2 - column City - caption: Plaats - column 'Post Code' - caption: Postcode - column State - caption: Staat - column 'Country/Region Code' - caption: Land/regio-code - column 'Customer Posting Group' - caption: Klantboekingsgroep - column 'Customer Price Group' - caption: Klantenprijsgroep - column 'Customer Discount Group' - caption: Klantenkortingsgroep - column 'Customer No. & Name' - caption: Klantnr. en -naam - table Date - caption: Datum - column 'Week Day' - caption: Week Dag - column 'Day Type' - caption: Dagsoort - column 'Calendar Year' - caption: Kalender Jaar - column 'Calendar Quarter' - caption: Kalender Kwartaal - column 'Calendar Quarter Year' - caption: Kalender Kwartaal Jaar - column 'Calendar Month' - caption: Kalender Maand - column 'Calendar Month Year' - caption: Kalender Maand Jaar - column 'Calendar Week' - caption: Kalender Week - column 'Calendar Week Year' - caption: Kalender Week Jaar - column 'Calendar RelativeWeekPos' - caption: Kalender RelatieveWeekPos - column 'Calendar RelativeMonthPos' - caption: Kalender RelatieveMaandPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelatieveKwartaalPos - column 'Calendar RelativeYearPos' - caption: Kalender RelatieveJaarPos - column 'Calendar StartOfMonth' - caption: Kalender BeginVanMaand - column 'Calendar EndOfMonth' - caption: Kalender EindVanMaand - column 'Calendar StartOfQuarter' - caption: Kalender BeginVanKwartaal - column 'Calendar EndOfQuarter' - caption: Kalender EindVanKwartaal - column 'Calendar StartOfYear' - caption: Kalender BeginVanJaar - column 'Calendar EndOfYear' - caption: Kalender EindVanJaar - column 'Calendar MonthDays' - caption: Kalender MaandDagen - column 'Calendar QuarterDays' - caption: Kalender KwartaalDagen - column 'Calendar YearDays' - caption: Kalender JaarDagen - column 'Calendar DayOfMonthNumber' - caption: Kalender DagVanMaandNummer - column 'Calendar DayOfQuarterNumber' - caption: Kalender DagVanKwartaalNummer - column 'Calendar DayOfYearNumber' - caption: Kalender DagVanJaarNummer - column 'Calendar DatePreviousWeek' - caption: Kalender DatumVorigeWeek - column 'Calendar DatePreviousMonth' - caption: Kalender DatumVorigeMaand - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumVorigKwartaal - column 'Calendar DatePreviousYear' - caption: Kalender DatumVorigJaar - column 'Fiscal Year' - caption: Fiscaal Jaar - column 'Fiscal Quarter' - caption: Fiscaal Kwartaal - column 'Fiscal Quarter Year' - caption: Fiscaal Kwartaal Jaar - column 'Fiscal Month' - caption: Fiscaal Maand - column 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - column 'Fiscal Week' - caption: Fiscaal Week - column 'Fiscal Week Year' - caption: Fiscaal Week Jaar - column 'Fiscal RelativeWeekPos' - caption: Fiscaal RelatieveWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscaal RelatieveMaandPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscaal RelatieveKwartaalPos - column 'Fiscal RelativeYearPos' - caption: Fiscaal RelatieveJaarPos - column 'Fiscal StartOfMonth' - caption: Fiscaal BeginVanMaand - column 'Fiscal EndOfMonth' - caption: Fiscaal EindVanMaand - column 'Fiscal StartOfQuarter' - caption: Fiscaal BeginVanKwartaal - column 'Fiscal EndOfQuarter' - caption: Fiscaal EindVanKwartaal - column 'Fiscal StartOfYear' - caption: Fiscaal BeginVanJaar - column 'Fiscal EndOfYear' - caption: Fiscaal EindVanJaar - column 'Fiscal MonthDays' - caption: Fiscaal MaandDagen - column 'Fiscal QuarterDays' - caption: Fiscaal KwartaalDagen - column 'Fiscal YearDays' - caption: Fiscaal JaarDagen - column 'Fiscal DayOfMonthNumber' - caption: Fiscaal DagVanMaandNummer - column 'Fiscal DayOfQuarterNumber' - caption: Fiscaal DagVanKwartaalNummer - column 'Fiscal DayOfYearNumber' - caption: Fiscaal DagVanJaarNummer - column 'Fiscal DatePreviousWeek' - caption: Fiscaal DatumVorigeWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscaal DatumVorigeMaand - column 'Fiscal DatePreviousQuarter' - caption: Fiscaal DatumVorigKwartaal - column 'Fiscal DatePreviousYear' - caption: Fiscaal DatumVorigJaar - column 'FW Year' - caption: FW Jaar - column 'FW Quarter' - caption: FW Kwartaal - column 'FW Quarter Year' - caption: FW Kwartaal Jaar - column 'FW Month' - caption: FW Maand - column 'FW Month Year' - caption: FW Maand Jaar - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Periode - column 'FW Week Year' - caption: FW Week Jaar - column 'FW StartOfWeek' - caption: FW BeginVanWeek - column 'FW EndOfWeek' - caption: FW EindVanWeek - column 'FW RelativeWeekPos' - caption: FW RelatieveWeekPos - column 'FW RelativeMonthPos' - caption: FW RelatieveMaandPos - column 'FW RelativeQuarterPos' - caption: FW RelatieveKwartaalPos - column 'FW RelativeYearPos' - caption: FW RelatieveJaarPos - column 'FW StartOfMonth' - caption: FW BeginVanMaand - column 'FW EndOfMonth' - caption: FW EindVanMaand - column 'FW StartOfQuarter' - caption: FW BeginVanKwartaal - column 'FW EndOfQuarter' - caption: FW EindVanKwartaal - column 'FW StartOfYear' - caption: FW BeginVanJaar - column 'FW EndOfYear' - caption: FW EindVanJaar - column 'FW MonthDays' - caption: FW MaandDagen - column 'FW QuarterDays' - caption: FW KwartaalDagen - column 'FW YearDays' - caption: FW JaarDagen - column 'FW DayOfMonthNumber' - caption: FW DagVanMaandNummer - column 'FW DayOfQuarterNumber' - caption: FW DagVanKwartaalNummer - column 'FW DayOfYearNumber' - caption: FW DagVanJaarNummer - column 'FW DatePreviousWeek' - caption: FW DatumVorigeWeek - column 'FW DatePreviousMonth' - caption: FW DatumVorigeMaand - column 'FW DatePreviousQuarter' - caption: FW DatumVorigKwartaal - column 'FW DatePreviousYear' - caption: FW DatumVorigJaar - column 'Relative Day' - caption: Relatieve Dag - column Sequential365DayNumber - caption: Sequentieel 365 DagNummer - column 'Data Range Deferrals' - caption: Uitstel van gegevensbereik - measure 'No. of Days' - caption: Aantal dagen - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscaal Jaar-Kwartaal-Maand-Week - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Quarter Year' - caption: Fiscaal Kwartaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - level 'Fiscal Week Year' - caption: Fiscaal Week Jaar - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender Jaar-Kwartaal-Maand-Week - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Quarter Year' - caption: Kalender Kwartaal Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - level 'Calendar Week Year' - caption: Kalender Week Jaar - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Jaar-Kwartaal-Maand-Week - level 'FW Year' - caption: FW Jaar - level 'FW Quarter Year' - caption: FW Kwartaal Jaar - level 'FW Month Year' - caption: FW Maand Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'Fiscal Year-Month' - caption: Fiscaal Jaar-Maand - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscaal Jaar-Maand-Week - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - level 'Fiscal Week Year' - caption: Fiscaal Week Jaar - hierarchy 'Calendar Year-Month' - caption: Kalender Jaar-Maand - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - hierarchy 'Calendar Year-Month-Week' - caption: Kalender Jaar-Maand-Week - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - level 'Calendar Week Year' - caption: Kalender Week Jaar - hierarchy 'FW Year-Month-Week' - caption: FW Jaar-Maand-Week - level 'FW Year' - caption: FW Jaar - level 'FW Month Year' - caption: FW Maand Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'FW Year-Quarter-Week' - caption: FW Jaar-Kwartaal-Week - level 'FW Year' - caption: FW Jaar - level 'FW Quarter Year' - caption: FW Kwartaal Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'FW Year-Week' - caption: FW Jaar-Week - level 'FW Year' - caption: FW Jaar - level 'FW Week Year' - caption: FW Week Jaar - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: UW GEGEVENS VERBINDEN - measure '1. Download the Finance Connector for Power BI' - caption: 1. De Finance Connector for Power BI downloaden - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Dynamics 365 Business Central configureren - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken. - measure 'HELP AND SUPPORT' - caption: HELP EN ONDERSTEUNING - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie. - measure 'for Business Central' - caption: voor Business Central - measure 'Last Refreshed' - caption: Laatst vernieuwd - measure 'Company Name' - caption: Bedrijfsnaam - measure 'Analysis Entries as of' - caption: Analyseposten vanaf - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Factureringsprognose per factureringsperiode, klant en contractnr. - measure 'Billing Forecast by Year and Month' - caption: Factureringsprognose per kalenderjaar en -maand - measure 'Billing Schedule' - caption: Factureringsplanning - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Wijziging van maand. periodieke opbrengst per jaar en maand - measure 'Current Date Range:' - caption: Huidig datumbereik: - measure 'Customer Contract Deferrals' - caption: Uitstel van klantcontracten - measure 'Customer Contract Lines' - caption: Klantcontractregels - measure 'Customer Deferrals (Caption)' - caption: Klantuitstel - measure 'Mon. Recurring Revenue Analysis' - caption: Maand. periodieke analyse van opbrengst - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand - measure 'Mon. Recurring Revenue by Customer' - caption: Maand. periodieke opbrengst per klant - measure 'Mon. Recurring Revenue by Salesperson' - caption: Maand. periodieke opbrengst per verkoper - measure 'Mon. Recurring Revenue by Year and Month' - caption: Maand. periodieke opbrengst per kalenderjaar en -maand - measure 'Mon. Recurring Revenue by Item' - caption: Maand. periodieke opbrengst per artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Maand. periodieke opbrengst per artikelcategorie - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Maand. periodiek opbrengstverloop en downgrade per klantcontract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Maand. periodieke opbrengst nieuw en upgrade per klantcontract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand - measure 'Revenue Analysis' - caption: Opbrengstanalyse - measure 'Revenue by Customer' - caption: Opbrengst per klant - measure 'Revenue by Item' - caption: Opbrengst per artikel - measure 'Revenue by Salesperson' - caption: Opbrengst per verkoper - measure 'Revenue Development' - caption: Opbrengstontwikkeling - measure 'Sales and Cost Forecast' - caption: Opbrengstprognose - measure 'Revenue Year-Over-Year Growth' - caption: Opbrengstgroei jaar-tot-jaar - measure 'Subscription Billing Analysis' - caption: Analyse van Subscription Billing - measure 'Subscription Billing Overview' - caption: Overzicht van Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 klanten per maand. periodieke opbrengst - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 leveranciers op maand. periodieke kosten - measure 'Total Contract Value Analysis' - caption: Analyse van totale contractwaarde - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Totale contractwaarde en totale contractwaarde VJ per kalendermaand - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand - measure 'Total Contract Value by Year and Month' - caption: Totale contractwaarde per kalenderjaar en -maand - measure 'Total Contract Value Year-Over-Year Growth' - caption: Groei totale contractwaarde jaar-tot-jaar - measure 'Vendor Contract Deferrals' - caption: Uitstel van leverancierscontracten - measure 'Vendor Deferrals (Caption)' - caption: Leveranciersuitstel - measure 'Back button' - caption: Knop Terug - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst - measure 'Churn Analysis' - caption: Verloopanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Gem. maand. % verloop per jaar en maand - table 'Meta Information' - caption: BEDRIJF - table Subscription - caption: Serviceobject - column 'Subscription No.' - caption: Serviceobjectnr. - column 'Package Code' - caption: Pakketcode - column 'Subscription Desc.' - caption: Omschrijving van serviceobject - column 'Analysis Date' - caption: Analysedatum - column 'Subscription No. Desc.' - caption: Omschrijving van Subscription-nr. - table 'Vendor Contract Deferrals' - caption: Uitstel van leverancierscontracten - column 'Document Type' - caption: Documenttype - column 'Document No.' - caption: Documentnr. - column 'Posting Date' - caption: Boekingsdatum - column 'Document Posting Date' - caption: Documentboekingsdatum - column 'Release Posting Date' - caption: Boekingsdatum van vrijgave - column 'G LEntry No.' - caption: Grootboekpostnr. - column Discount - caption: Korting - column 'Document Line No.' - caption: Documentregelnr. - table 'Customer Contract Line' - caption: Klantcontractregel - column 'Subscription Line No.' - caption: Nr. van toezeggingsregel - column Template - caption: Sjabloon - column 'Customer Contract Line Desc.' - caption: Omschrijving van klantcontractregel - column 'Subscription Start Date' - caption: Begindatum van service - column 'Subscription End Date' - caption: Einddatum van service - column 'Next Billing Date' - caption: Volgende factureringsdatum - column 'Billing Base Period' - caption: Basisperiode van facturering - column 'Invoicing Item No.' - caption: Nr. van factureringsartikel - column 'Customer Contract Line No.' - caption: Nr. van klantcontractregel - column 'Notice Period' - caption: Opzegperiode - column 'Initial Term' - caption: Initiële termijn - column 'Extension Term' - caption: Uitbreidingstermijn - column 'Billing Rhythm' - caption: Factureringsritme - column 'Cancellation Possible Until' - caption: Annulering mogelijk tot - column 'Term Until' - caption: Termijn tot - column 'Renewal Term' - caption: Verlengingstermijn - column 'Line Active' - caption: Regel actief - column 'Remaining Term' - caption: Resterende termijn - column 'Billing Rhythm Months' - caption: Maanden factureringsritme - column 'Customer Contract No.' - caption: Nr. van klantcontract - column 'Is Usage Based Billing' - caption: Is op gebruik gebaseerde facturering - column 'Source Type' - caption: Bronsoort - column 'Source No.' - caption: Bronnr. - table 'Vendor Contract Line' - caption: Leverancierscontractregel - column 'Subscription Line No.' - caption: Nr. van toezeggingsregel - column Template - caption: Sjabloon - column 'Vendor Contract Line Desc.' - caption: Omschrijving van leverancierscontractregel - column 'Subscription Start Date' - caption: Begindatum van service - column 'Subscription End Date' - caption: Einddatum van service - column 'Next Billing Date' - caption: Volgende factureringsdatum - column 'Vendor Contract Line No.' - caption: Nr. van leverancierscontractregel - column 'Notice Period' - caption: Opzegperiode - column 'Initial Term' - caption: Initiële termijn - column 'Extension Term' - caption: Uitbreidingstermijn - column 'Billing Rhythm' - caption: Factureringsritme - column 'Cancellation Possible Until' - caption: Annulering mogelijk tot - column 'Term Until' - caption: Termijn tot - column 'Renewal Term' - caption: Verlengingstermijn - column 'Line Active' - caption: Regel actief - column 'Remaining Term' - caption: Resterende termijn - column 'Billing Rhythm Months' - caption: Maanden factureringsritme - column 'Vendor Contract No.' - caption: Nr. van leverancierscontract - column 'Is Latest Version' - caption: Is nieuwste versie - column 'Is Usage Based Billing' - caption: Is op gebruik gebaseerde facturering - column 'Source Type' - caption: Bronsoort - column 'Source No.' - caption: Bronnr. - table 'Customer Contract Deferrals' - caption: Uitstel van klantcontracten - column 'Document Type' - caption: Documenttype - column 'Document No.' - caption: Documentnr. - column 'Posting Date' - caption: Boekingsdatum - column 'Document Line No.' - caption: Documentregelnr. - column 'Document Posting Date' - caption: Documentboekingsdatum - column 'Release Posting Date' - caption: Boekingsdatum van vrijgave - column 'G LEntry No.' - caption: Grootboekpostnr. - table 'Customer Contract' - caption: Klantcontract - column 'Customer Contract No.' - caption: Nr. van klantcontract - column 'Customer Contract Type' - caption: Type klantcontract - column 'Customer Contract Description' - caption: Omschrijving van klantcontract - column 'Customer Contract No. Desc.' - caption: Omschrijving van klantcontractnr. - table 'Vendor Contract' - caption: Leverancierscontract - column 'Vendor Contract No.' - caption: Nr. van leverancierscontract - column 'Vendor Contract Type' - caption: Type leverancierscontract - column 'Vendor Contract Description' - caption: Omschrijving van leverancierscontract - column 'Vendor Contract No. Desc.' - caption: Omschrijving van leverancierscontractnr. - table 'UBB handling' - caption: GGF-verwerking - column 'Treat Usage Based Billing as constant' - caption: GGF behandelen als constante - table 'Is Released' - caption: Is vrijgegeven - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnr. - column 'Item Name' - caption: Artikelnaam - column 'Item Category Code' - caption: Artikelcategoriecode - column 'Item Category Description' - caption: Omschrijving van artikelcategorie - column 'Inventory Posting Group' - caption: Voorraadboekingsgroep - column 'Base Unit of Measure' - caption: Basiseenheid - column 'Item No. & Description' - caption: Artikelnr. en -omschrijving - table 'Analysis Date' - caption: Analysedatum - column 'Is Initial Version' - caption: Is initiële versie - column 'Is Current Version' - caption: Is huidige versie - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Berekeningsgroep - Tijdinformatie voor kalender (fiscaal) - column Perspective - caption: Perspectief - table 'Subscription Billing KPIs' - caption: KPI's van Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MPO - measure 'Mon. Recurring Cost' - caption: MPK - measure 'Customer Deferrals' - caption: Klantuitstel - measure 'Vendor Deferrals' - caption: Leveranciersuitstel - measure 'Annual Recurring Revenue' - caption: VORDERING - measure 'Total Contract Value' - caption: TCW - measure 'Forecast Sales' - caption: Verkoop voorspellen - measure 'Mon. Recurring Cost PY' - caption: MPK VJ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MPK Δ versus VJ - measure 'Mon. Recurring Revenue Churn' - caption: Maand. periodiek opbrengstverloop - measure 'Mon. Recurring Revenue PY' - caption: MPO VJ - measure 'Mon. Recurring Revenue New' - caption: Maand. periodieke opbrengst nieuw - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Maand. periodieke opbrengst Δ versus VJ - measure 'Mon. Net Profit Amount' - caption: NMPO - measure 'Mon. Net Profit %' - caption: NMPO % van MPO - measure 'Mon. Net Profit PY' - caption: NMPO VJ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMPO Δ versus VJ - measure 'Change in Mon. Recurring Revenue' - caption: Algehele wijziging MPO - measure 'Total Contract Value PY' - caption: TCW VJ - measure 'Total Contract Value Δ vs. PY' - caption: TCW Δ versus VJ - measure 'Last Update Analysis Entries' - caption: Analyseposten laatste update - measure 'Last Update Semantic Model' - caption: Laatste update semantisch model - measure 'Param Environment' - caption: Param.omgeving - measure 'Param Company' - caption: Param.bedrijf - measure 'Mon. Recurring Revenue Upgrade' - caption: Maand. periodieke opbrengstupgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Wijziging GGF maand. periodieke opbrengst - measure 'Reporting Currency' - caption: Aangiftevaluta - measure 'Active Customers' - caption: Actieve klanten - measure 'Active Customers PY' - caption: Actieve klanten VJ - measure 'Active Customers Δ vs. PY' - caption: Actieve klanten Δ versus VJ - measure 'Customer Billing Forecast' - caption: Prognose van klantfacturering - measure 'Vendor Billing Forecast' - caption: Prognose van leveranciersfacturering - measure 'Forecast Costs' - caption: Prognosekosten - measure 'Mon. Recurring Revenue Downgrade' - caption: Maand. periodieke opbrengstdowngrade - measure 'Selected Date Range' - caption: Geselecteerd datumbereik - measure 'Avg. Mon. Churn Rate %' - caption: Gem. maand. % verloop - measure 'Mon. Avg. Downgrade Rate %' - caption: Maand. gem. % downgrade - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Maand. periodieke opbrengstdowngrade en -verloop - table Salesperson - caption: Verkoper - column 'Salesperson Code' - caption: Verkoperscode - column 'Salesperson Name' - caption: Verkopersnaam - table 'Customer Contract Changes' - caption: Wijzigingen in klantcontract - column 'Customer Contract Line Key' - caption: Sleutel van klantcontractregel - column Date - caption: Datum - column 'Change Type' - caption: Type wijzigen - column 'MRR Delta' - caption: MPO Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-NL.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-NL.tmdl deleted file mode 100644 index 3c359a2f27..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/nl-NL.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo nl-NL - translations - model Model - table 'Dimension Sets' - caption: Dimensiesets - column 'Global Dimension 1' - caption: Globale dimensie 1 - column 'Global Dimension 2' - caption: Globale dimensie 2 - column 'Shortcut Dimension 3' - caption: Shortcutdimensie 3 - column 'Shortcut Dimension 4' - caption: Shortcutdimensie 4 - column 'Shortcut Dimension 5' - caption: Shortcutdimensie 5 - column 'Shortcut Dimension 6' - caption: Shortcutdimensie 6 - column 'Shortcut Dimension 7' - caption: Shortcutdimensie 7 - column 'Shortcut Dimension 8' - caption: Shortcutdimensie 8 - column id - caption: id - table Vendors - caption: Leveranciers - column 'Vendor No.' - caption: Leveranciersnr. - column 'Vendor Name' - caption: Leveranciersnaam - column Address - caption: Adres - column 'Address 2' - caption: Adres 2 - column City - caption: Plaats - column 'Post Code' - caption: Postcode - column State - caption: Staat - column 'Country/Region Code' - caption: Land/regio-code - column 'Vendor Posting Group' - caption: Leveranciersboekingsgroep - column 'Vendor No. & Name' - caption: Nr. en naam van leverancier - table Customers - caption: Klanten - column 'Customer No.' - caption: Klantnr. - column 'Customer Name' - caption: Klantnaam - column Address - caption: Adres - column 'Address 2' - caption: Adres 2 - column City - caption: Plaats - column 'Post Code' - caption: Postcode - column State - caption: Staat - column 'Country/Region Code' - caption: Land/regio-code - column 'Customer Posting Group' - caption: Klantboekingsgroep - column 'Customer Price Group' - caption: Klantenprijsgroep - column 'Customer Discount Group' - caption: Klantenkortingsgroep - column 'Customer No. & Name' - caption: Klantnr. en -naam - table Date - caption: Datum - column 'Week Day' - caption: Week Dag - column 'Day Type' - caption: Dagsoort - column 'Calendar Year' - caption: Kalender Jaar - column 'Calendar Quarter' - caption: Kalender Kwartaal - column 'Calendar Quarter Year' - caption: Kalender Kwartaal Jaar - column 'Calendar Month' - caption: Kalender Maand - column 'Calendar Month Year' - caption: Kalender Maand Jaar - column 'Calendar Week' - caption: Kalender Week - column 'Calendar Week Year' - caption: Kalender Week Jaar - column 'Calendar RelativeWeekPos' - caption: Kalender RelatieveWeekPos - column 'Calendar RelativeMonthPos' - caption: Kalender RelatieveMaandPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelatieveKwartaalPos - column 'Calendar RelativeYearPos' - caption: Kalender RelatieveJaarPos - column 'Calendar StartOfMonth' - caption: Kalender BeginVanMaand - column 'Calendar EndOfMonth' - caption: Kalender EindVanMaand - column 'Calendar StartOfQuarter' - caption: Kalender BeginVanKwartaal - column 'Calendar EndOfQuarter' - caption: Kalender EindVanKwartaal - column 'Calendar StartOfYear' - caption: Kalender BeginVanJaar - column 'Calendar EndOfYear' - caption: Kalender EindVanJaar - column 'Calendar MonthDays' - caption: Kalender MaandDagen - column 'Calendar QuarterDays' - caption: Kalender KwartaalDagen - column 'Calendar YearDays' - caption: Kalender JaarDagen - column 'Calendar DayOfMonthNumber' - caption: Kalender DagVanMaandNummer - column 'Calendar DayOfQuarterNumber' - caption: Kalender DagVanKwartaalNummer - column 'Calendar DayOfYearNumber' - caption: Kalender DagVanJaarNummer - column 'Calendar DatePreviousWeek' - caption: Kalender DatumVorigeWeek - column 'Calendar DatePreviousMonth' - caption: Kalender DatumVorigeMaand - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumVorigKwartaal - column 'Calendar DatePreviousYear' - caption: Kalender DatumVorigJaar - column 'Fiscal Year' - caption: Fiscaal Jaar - column 'Fiscal Quarter' - caption: Fiscaal Kwartaal - column 'Fiscal Quarter Year' - caption: Fiscaal Kwartaal Jaar - column 'Fiscal Month' - caption: Fiscaal Maand - column 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - column 'Fiscal Week' - caption: Fiscaal Week - column 'Fiscal Week Year' - caption: Fiscaal Week Jaar - column 'Fiscal RelativeWeekPos' - caption: Fiscaal RelatieveWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscaal RelatieveMaandPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscaal RelatieveKwartaalPos - column 'Fiscal RelativeYearPos' - caption: Fiscaal RelatieveJaarPos - column 'Fiscal StartOfMonth' - caption: Fiscaal BeginVanMaand - column 'Fiscal EndOfMonth' - caption: Fiscaal EindVanMaand - column 'Fiscal StartOfQuarter' - caption: Fiscaal BeginVanKwartaal - column 'Fiscal EndOfQuarter' - caption: Fiscaal EindVanKwartaal - column 'Fiscal StartOfYear' - caption: Fiscaal BeginVanJaar - column 'Fiscal EndOfYear' - caption: Fiscaal EindVanJaar - column 'Fiscal MonthDays' - caption: Fiscaal MaandDagen - column 'Fiscal QuarterDays' - caption: Fiscaal KwartaalDagen - column 'Fiscal YearDays' - caption: Fiscaal JaarDagen - column 'Fiscal DayOfMonthNumber' - caption: Fiscaal DagVanMaandNummer - column 'Fiscal DayOfQuarterNumber' - caption: Fiscaal DagVanKwartaalNummer - column 'Fiscal DayOfYearNumber' - caption: Fiscaal DagVanJaarNummer - column 'Fiscal DatePreviousWeek' - caption: Fiscaal DatumVorigeWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscaal DatumVorigeMaand - column 'Fiscal DatePreviousQuarter' - caption: Fiscaal DatumVorigKwartaal - column 'Fiscal DatePreviousYear' - caption: Fiscaal DatumVorigJaar - column 'FW Year' - caption: FW Jaar - column 'FW Quarter' - caption: FW Kwartaal - column 'FW Quarter Year' - caption: FW Kwartaal Jaar - column 'FW Month' - caption: FW Maand - column 'FW Month Year' - caption: FW Maand Jaar - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Periode - column 'FW Week Year' - caption: FW Week Jaar - column 'FW StartOfWeek' - caption: FW BeginVanWeek - column 'FW EndOfWeek' - caption: FW EindVanWeek - column 'FW RelativeWeekPos' - caption: FW RelatieveWeekPos - column 'FW RelativeMonthPos' - caption: FW RelatieveMaandPos - column 'FW RelativeQuarterPos' - caption: FW RelatieveKwartaalPos - column 'FW RelativeYearPos' - caption: FW RelatieveJaarPos - column 'FW StartOfMonth' - caption: FW BeginVanMaand - column 'FW EndOfMonth' - caption: FW EindVanMaand - column 'FW StartOfQuarter' - caption: FW BeginVanKwartaal - column 'FW EndOfQuarter' - caption: FW EindVanKwartaal - column 'FW StartOfYear' - caption: FW BeginVanJaar - column 'FW EndOfYear' - caption: FW EindVanJaar - column 'FW MonthDays' - caption: FW MaandDagen - column 'FW QuarterDays' - caption: FW KwartaalDagen - column 'FW YearDays' - caption: FW JaarDagen - column 'FW DayOfMonthNumber' - caption: FW DagVanMaandNummer - column 'FW DayOfQuarterNumber' - caption: FW DagVanKwartaalNummer - column 'FW DayOfYearNumber' - caption: FW DagVanJaarNummer - column 'FW DatePreviousWeek' - caption: FW DatumVorigeWeek - column 'FW DatePreviousMonth' - caption: FW DatumVorigeMaand - column 'FW DatePreviousQuarter' - caption: FW DatumVorigKwartaal - column 'FW DatePreviousYear' - caption: FW DatumVorigJaar - column 'Relative Day' - caption: Relatieve Dag - column Sequential365DayNumber - caption: Sequentieel 365 DagNummer - column 'Data Range Deferrals' - caption: Uitstel van gegevensbereik - measure 'No. of Days' - caption: Aantal dagen - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscaal Jaar-Kwartaal-Maand-Week - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Quarter Year' - caption: Fiscaal Kwartaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - level 'Fiscal Week Year' - caption: Fiscaal Week Jaar - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender Jaar-Kwartaal-Maand-Week - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Quarter Year' - caption: Kalender Kwartaal Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - level 'Calendar Week Year' - caption: Kalender Week Jaar - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Jaar-Kwartaal-Maand-Week - level 'FW Year' - caption: FW Jaar - level 'FW Quarter Year' - caption: FW Kwartaal Jaar - level 'FW Month Year' - caption: FW Maand Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'Fiscal Year-Month' - caption: Fiscaal Jaar-Maand - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscaal Jaar-Maand-Week - level 'Fiscal Year' - caption: Fiscaal Jaar - level 'Fiscal Month Year' - caption: Fiscaal Maand Jaar - level 'Fiscal Week Year' - caption: Fiscaal Week Jaar - hierarchy 'Calendar Year-Month' - caption: Kalender Jaar-Maand - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - hierarchy 'Calendar Year-Month-Week' - caption: Kalender Jaar-Maand-Week - level 'Calendar Year' - caption: Kalender Jaar - level 'Calendar Month Year' - caption: Kalender Maand Jaar - level 'Calendar Week Year' - caption: Kalender Week Jaar - hierarchy 'FW Year-Month-Week' - caption: FW Jaar-Maand-Week - level 'FW Year' - caption: FW Jaar - level 'FW Month Year' - caption: FW Maand Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'FW Year-Quarter-Week' - caption: FW Jaar-Kwartaal-Week - level 'FW Year' - caption: FW Jaar - level 'FW Quarter Year' - caption: FW Kwartaal Jaar - level 'FW Week Year' - caption: FW Week Jaar - hierarchy 'FW Year-Week' - caption: FW Jaar-Week - level 'FW Year' - caption: FW Jaar - level 'FW Week Year' - caption: FW Week Jaar - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: UW GEGEVENS VERBINDEN - measure '1. Download the Finance Connector for Power BI' - caption: 1. De Finance Connector for Power BI downloaden - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Dynamics 365 Business Central configureren - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken. - measure 'HELP AND SUPPORT' - caption: HELP EN ONDERSTEUNING - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie. - measure 'for Business Central' - caption: voor Business Central - measure 'Last Refreshed' - caption: Laatst vernieuwd - measure 'Company Name' - caption: Bedrijfsnaam - measure 'Analysis Entries as of' - caption: Analyseposten vanaf - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Factureringsprognose per factureringsperiode, klant en contractnr. - measure 'Billing Forecast by Year and Month' - caption: Factureringsprognose per kalenderjaar en -maand - measure 'Billing Schedule' - caption: Factureringsplanning - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Wijziging van maand. periodieke opbrengst per jaar en maand - measure 'Current Date Range:' - caption: Huidig datumbereik: - measure 'Customer Contract Deferrals' - caption: Uitstel van klantcontracten - measure 'Customer Contract Lines' - caption: Klantcontractregels - measure 'Customer Deferrals (Caption)' - caption: Klantuitstel - measure 'Mon. Recurring Revenue Analysis' - caption: Maand. periodieke analyse van opbrengst - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand - measure 'Mon. Recurring Revenue by Customer' - caption: Maand. periodieke opbrengst per klant - measure 'Mon. Recurring Revenue by Salesperson' - caption: Maand. periodieke opbrengst per verkoper - measure 'Mon. Recurring Revenue by Year and Month' - caption: Maand. periodieke opbrengst per kalenderjaar en -maand - measure 'Mon. Recurring Revenue by Item' - caption: Maand. periodieke opbrengst per artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Maand. periodieke opbrengst per artikelcategorie - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Maand. periodiek opbrengstverloop en downgrade per klantcontract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Maand. periodieke opbrengst nieuw en upgrade per klantcontract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr. - measure 'Released and Deferred Amount by Year and Month' - caption: Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand - measure 'Revenue Analysis' - caption: Opbrengstanalyse - measure 'Revenue by Customer' - caption: Opbrengst per klant - measure 'Revenue by Item' - caption: Opbrengst per artikel - measure 'Revenue by Salesperson' - caption: Opbrengst per verkoper - measure 'Revenue Development' - caption: Opbrengstontwikkeling - measure 'Sales and Cost Forecast' - caption: Opbrengstprognose - measure 'Revenue Year-Over-Year Growth' - caption: Opbrengstgroei jaar-tot-jaar - measure 'Subscription Billing Analysis' - caption: Analyse van Subscription Billing - measure 'Subscription Billing Overview' - caption: Overzicht van Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 klanten per maand. periodieke opbrengst - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 leveranciers op maand. periodieke kosten - measure 'Total Contract Value Analysis' - caption: Analyse van totale contractwaarde - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Totale contractwaarde en totale contractwaarde VJ per kalendermaand - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand - measure 'Total Contract Value by Year and Month' - caption: Totale contractwaarde per kalenderjaar en -maand - measure 'Total Contract Value Year-Over-Year Growth' - caption: Groei totale contractwaarde jaar-tot-jaar - measure 'Vendor Contract Deferrals' - caption: Uitstel van leverancierscontracten - measure 'Vendor Deferrals (Caption)' - caption: Leveranciersuitstel - measure 'Back button' - caption: Knop Terug - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst - measure 'Churn Analysis' - caption: Verloopanalyse - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Gem. maand. % verloop per jaar en maand - table 'Meta Information' - caption: BEDRIJF - table Subscription - caption: Serviceobject - column 'Subscription No.' - caption: Serviceobjectnr. - column 'Package Code' - caption: Pakketcode - column 'Subscription Desc.' - caption: Omschrijving van serviceobject - column 'Analysis Date' - caption: Analysedatum - column 'Subscription No. Desc.' - caption: Omschrijving van Subscription-nr. - table 'Vendor Contract Deferrals' - caption: Uitstel van leverancierscontracten - column 'Document Type' - caption: Documenttype - column 'Document No.' - caption: Documentnr. - column 'Posting Date' - caption: Boekingsdatum - column 'Document Posting Date' - caption: Documentboekingsdatum - column 'Release Posting Date' - caption: Boekingsdatum van vrijgave - column 'G LEntry No.' - caption: Grootboekpostnr. - column Discount - caption: Korting - column 'Document Line No.' - caption: Documentregelnr. - table 'Customer Contract Line' - caption: Klantcontractregel - column 'Subscription Line No.' - caption: Nr. van toezeggingsregel - column Template - caption: Sjabloon - column 'Customer Contract Line Desc.' - caption: Omschrijving van klantcontractregel - column 'Subscription Start Date' - caption: Begindatum van service - column 'Subscription End Date' - caption: Einddatum van service - column 'Next Billing Date' - caption: Volgende factureringsdatum - column 'Billing Base Period' - caption: Basisperiode van facturering - column 'Invoicing Item No.' - caption: Nr. van factureringsartikel - column 'Customer Contract Line No.' - caption: Nr. van klantcontractregel - column 'Notice Period' - caption: Opzegperiode - column 'Initial Term' - caption: Initiële termijn - column 'Extension Term' - caption: Uitbreidingstermijn - column 'Billing Rhythm' - caption: Factureringsritme - column 'Cancellation Possible Until' - caption: Annulering mogelijk tot - column 'Term Until' - caption: Termijn tot - column 'Renewal Term' - caption: Verlengingstermijn - column 'Line Active' - caption: Regel actief - column 'Remaining Term' - caption: Resterende termijn - column 'Billing Rhythm Months' - caption: Maanden factureringsritme - column 'Customer Contract No.' - caption: Nr. van klantcontract - column 'Is Usage Based Billing' - caption: Is op gebruik gebaseerde facturering - column 'Source Type' - caption: Bronsoort - column 'Source No.' - caption: Bronnr. - table 'Vendor Contract Line' - caption: Leverancierscontractregel - column 'Subscription Line No.' - caption: Nr. van toezeggingsregel - column Template - caption: Sjabloon - column 'Vendor Contract Line Desc.' - caption: Omschrijving van leverancierscontractregel - column 'Subscription Start Date' - caption: Begindatum van service - column 'Subscription End Date' - caption: Einddatum van service - column 'Next Billing Date' - caption: Volgende factureringsdatum - column 'Vendor Contract Line No.' - caption: Nr. van leverancierscontractregel - column 'Notice Period' - caption: Opzegperiode - column 'Initial Term' - caption: Initiële termijn - column 'Extension Term' - caption: Uitbreidingstermijn - column 'Billing Rhythm' - caption: Factureringsritme - column 'Cancellation Possible Until' - caption: Annulering mogelijk tot - column 'Term Until' - caption: Termijn tot - column 'Renewal Term' - caption: Verlengingstermijn - column 'Line Active' - caption: Regel actief - column 'Remaining Term' - caption: Resterende termijn - column 'Billing Rhythm Months' - caption: Maanden factureringsritme - column 'Vendor Contract No.' - caption: Nr. van leverancierscontract - column 'Is Latest Version' - caption: Is nieuwste versie - column 'Is Usage Based Billing' - caption: Is op gebruik gebaseerde facturering - column 'Source Type' - caption: Bronsoort - column 'Source No.' - caption: Bronnr. - table 'Customer Contract Deferrals' - caption: Uitstel van klantcontracten - column 'Document Type' - caption: Documenttype - column 'Document No.' - caption: Documentnr. - column 'Posting Date' - caption: Boekingsdatum - column 'Document Line No.' - caption: Documentregelnr. - column 'Document Posting Date' - caption: Documentboekingsdatum - column 'Release Posting Date' - caption: Boekingsdatum van vrijgave - column 'G LEntry No.' - caption: Grootboekpostnr. - table 'Customer Contract' - caption: Klantcontract - column 'Customer Contract No.' - caption: Nr. van klantcontract - column 'Customer Contract Type' - caption: Type klantcontract - column 'Customer Contract Description' - caption: Omschrijving van klantcontract - column 'Customer Contract No. Desc.' - caption: Omschrijving van klantcontractnr. - table 'Vendor Contract' - caption: Leverancierscontract - column 'Vendor Contract No.' - caption: Nr. van leverancierscontract - column 'Vendor Contract Type' - caption: Type leverancierscontract - column 'Vendor Contract Description' - caption: Omschrijving van leverancierscontract - column 'Vendor Contract No. Desc.' - caption: Omschrijving van leverancierscontractnr. - table 'UBB handling' - caption: GGF-verwerking - column 'Treat Usage Based Billing as constant' - caption: GGF behandelen als constante - table 'Is Released' - caption: Is vrijgegeven - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnr. - column 'Item Name' - caption: Artikelnaam - column 'Item Category Code' - caption: Artikelcategoriecode - column 'Item Category Description' - caption: Omschrijving van artikelcategorie - column 'Inventory Posting Group' - caption: Voorraadboekingsgroep - column 'Base Unit of Measure' - caption: Basiseenheid - column 'Item No. & Description' - caption: Artikelnr. en -omschrijving - table 'Analysis Date' - caption: Analysedatum - column 'Is Initial Version' - caption: Is initiële versie - column 'Is Current Version' - caption: Is huidige versie - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Berekeningsgroep - Tijdinformatie voor kalender (fiscaal) - column Perspective - caption: Perspectief - table 'Subscription Billing KPIs' - caption: KPI's van Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MPO - measure 'Mon. Recurring Cost' - caption: MPK - measure 'Customer Deferrals' - caption: Klantuitstel - measure 'Vendor Deferrals' - caption: Leveranciersuitstel - measure 'Annual Recurring Revenue' - caption: VORDERING - measure 'Total Contract Value' - caption: TCW - measure 'Forecast Sales' - caption: Verkoop voorspellen - measure 'Mon. Recurring Cost PY' - caption: MPK VJ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MPK Δ versus VJ - measure 'Mon. Recurring Revenue Churn' - caption: Maand. periodiek opbrengstverloop - measure 'Mon. Recurring Revenue PY' - caption: MPO VJ - measure 'Mon. Recurring Revenue New' - caption: Maand. periodieke opbrengst nieuw - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Maand. periodieke opbrengst Δ versus VJ - measure 'Mon. Net Profit Amount' - caption: NMPO - measure 'Mon. Net Profit %' - caption: NMPO % van MPO - measure 'Mon. Net Profit PY' - caption: NMPO VJ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMPO Δ versus VJ - measure 'Change in Mon. Recurring Revenue' - caption: Algehele wijziging MPO - measure 'Total Contract Value PY' - caption: TCW VJ - measure 'Total Contract Value Δ vs. PY' - caption: TCW Δ versus VJ - measure 'Last Update Analysis Entries' - caption: Analyseposten laatste update - measure 'Last Update Semantic Model' - caption: Laatste update semantisch model - measure 'Param Environment' - caption: Param.omgeving - measure 'Param Company' - caption: Param.bedrijf - measure 'Mon. Recurring Revenue Upgrade' - caption: Maand. periodieke opbrengstupgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Wijziging GGF maand. periodieke opbrengst - measure 'Reporting Currency' - caption: Aangiftevaluta - measure 'Active Customers' - caption: Actieve klanten - measure 'Active Customers PY' - caption: Actieve klanten VJ - measure 'Active Customers Δ vs. PY' - caption: Actieve klanten Δ versus VJ - measure 'Customer Billing Forecast' - caption: Prognose van klantfacturering - measure 'Vendor Billing Forecast' - caption: Prognose van leveranciersfacturering - measure 'Forecast Costs' - caption: Prognosekosten - measure 'Mon. Recurring Revenue Downgrade' - caption: Maand. periodieke opbrengstdowngrade - measure 'Selected Date Range' - caption: Geselecteerd datumbereik - measure 'Avg. Mon. Churn Rate %' - caption: Gem. maand. % verloop - measure 'Mon. Avg. Downgrade Rate %' - caption: Maand. gem. % downgrade - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Maand. periodieke opbrengstdowngrade en -verloop - table Salesperson - caption: Verkoper - column 'Salesperson Code' - caption: Verkoperscode - column 'Salesperson Name' - caption: Verkopersnaam - table 'Customer Contract Changes' - caption: Wijzigingen in klantcontract - column 'Customer Contract Line Key' - caption: Sleutel van klantcontractregel - column Date - caption: Datum - column 'Change Type' - caption: Type wijzigen - column 'MRR Delta' - caption: MPO Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/ru-RU.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/ru-RU.tmdl deleted file mode 100644 index 622226a164..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/ru-RU.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo ru-RU - translations - model Model - table 'Dimension Sets' - caption: Dimension Sets - column 'Global Dimension 1' - caption: Global Dimension 1 - column 'Global Dimension 2' - caption: Global Dimension 2 - column 'Shortcut Dimension 3' - caption: Shortcut Dimension 3 - column 'Shortcut Dimension 4' - caption: Shortcut Dimension 4 - column 'Shortcut Dimension 5' - caption: Shortcut Dimension 5 - column 'Shortcut Dimension 6' - caption: Shortcut Dimension 6 - column 'Shortcut Dimension 7' - caption: Shortcut Dimension 7 - column 'Shortcut Dimension 8' - caption: Shortcut Dimension 8 - column id - caption: ИД - table Vendors - caption: Vendors - column 'Vendor No.' - caption: Vendor No. - column 'Vendor Name' - caption: Vendor Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Post Code - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Vendor Posting Group' - caption: Vendor Posting Group - column 'Vendor No. & Name' - caption: Vendor No. & Name - table Customers - caption: Customers - column 'Customer No.' - caption: Customer No. - column 'Customer Name' - caption: Customer Name - column Address - caption: Address - column 'Address 2' - caption: Address 2 - column City - caption: City - column 'Post Code' - caption: Post Code - column State - caption: State - column 'Country/Region Code' - caption: Country/Region Code - column 'Customer Posting Group' - caption: Customer Posting Group - column 'Customer Price Group' - caption: Customer Price Group - column 'Customer Discount Group' - caption: Customer Discount Group - column 'Customer No. & Name' - caption: Customer No. & Name - table Date - caption: Date - column 'Week Day' - caption: Week Day - column 'Day Type' - caption: Day Type - column 'Calendar Year' - caption: Calendar Year - column 'Calendar Quarter' - caption: Calendar Quarter - column 'Calendar Quarter Year' - caption: Calendar Quarter Year - column 'Calendar Month' - caption: Calendar Month - column 'Calendar Month Year' - caption: Calendar Month Year - column 'Calendar Week' - caption: Calendar Week - column 'Calendar Week Year' - caption: Calendar Week Year - column 'Calendar RelativeWeekPos' - caption: Calendar RelativeWeekPos - column 'Calendar RelativeMonthPos' - caption: Calendar RelativeMonthPos - column 'Calendar RelativeQuarterPos' - caption: Calendar RelativeQuarterPos - column 'Calendar RelativeYearPos' - caption: Calendar RelativeYearPos - column 'Calendar StartOfMonth' - caption: Calendar StartOfMonth - column 'Calendar EndOfMonth' - caption: Calendar EndOfMonth - column 'Calendar StartOfQuarter' - caption: Calendar StartOfQuarter - column 'Calendar EndOfQuarter' - caption: Calendar EndOfQuarter - column 'Calendar StartOfYear' - caption: Calendar StartOfYear - column 'Calendar EndOfYear' - caption: Calendar EndOfYear - column 'Calendar MonthDays' - caption: Calendar MonthDays - column 'Calendar QuarterDays' - caption: Calendar QuarterDays - column 'Calendar YearDays' - caption: Calendar YearDays - column 'Calendar DayOfMonthNumber' - caption: Calendar DayOfMonthNumber - column 'Calendar DayOfQuarterNumber' - caption: Calendar DayOfQuarterNumber - column 'Calendar DayOfYearNumber' - caption: Calendar DayOfYearNumber - column 'Calendar DatePreviousWeek' - caption: Calendar DatePreviousWeek - column 'Calendar DatePreviousMonth' - caption: Calendar DatePreviousMonth - column 'Calendar DatePreviousQuarter' - caption: Calendar DatePreviousQuarter - column 'Calendar DatePreviousYear' - caption: Calendar DatePreviousYear - column 'Fiscal Year' - caption: Fiscal Year - column 'Fiscal Quarter' - caption: Fiscal Quarter - column 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - column 'Fiscal Month' - caption: Fiscal Month - column 'Fiscal Month Year' - caption: Fiscal Month Year - column 'Fiscal Week' - caption: Fiscal Week - column 'Fiscal Week Year' - caption: Fiscal Week Year - column 'Fiscal RelativeWeekPos' - caption: Fiscal RelativeWeekPos - column 'Fiscal RelativeMonthPos' - caption: Fiscal RelativeMonthPos - column 'Fiscal RelativeQuarterPos' - caption: Fiscal RelativeQuarterPos - column 'Fiscal RelativeYearPos' - caption: Fiscal RelativeYearPos - column 'Fiscal StartOfMonth' - caption: Fiscal StartOfMonth - column 'Fiscal EndOfMonth' - caption: Fiscal EndOfMonth - column 'Fiscal StartOfQuarter' - caption: Fiscal StartOfQuarter - column 'Fiscal EndOfQuarter' - caption: Fiscal EndOfQuarter - column 'Fiscal StartOfYear' - caption: Fiscal StartOfYear - column 'Fiscal EndOfYear' - caption: Fiscal EndOfYear - column 'Fiscal MonthDays' - caption: Fiscal MonthDays - column 'Fiscal QuarterDays' - caption: Fiscal QuarterDays - column 'Fiscal YearDays' - caption: Fiscal YearDays - column 'Fiscal DayOfMonthNumber' - caption: Fiscal DayOfMonthNumber - column 'Fiscal DayOfQuarterNumber' - caption: Fiscal DayOfQuarterNumber - column 'Fiscal DayOfYearNumber' - caption: Fiscal DayOfYearNumber - column 'Fiscal DatePreviousWeek' - caption: Fiscal DatePreviousWeek - column 'Fiscal DatePreviousMonth' - caption: Fiscal DatePreviousMonth - column 'Fiscal DatePreviousQuarter' - caption: Fiscal DatePreviousQuarter - column 'Fiscal DatePreviousYear' - caption: Fiscal DatePreviousYear - column 'FW Year' - caption: FW Year - column 'FW Quarter' - caption: FW Quarter - column 'FW Quarter Year' - caption: FW Quarter Year - column 'FW Month' - caption: FW Month - column 'FW Month Year' - caption: FW Month Year - column 'FW Week' - caption: FW Week - column 'FW Period' - caption: FW Period - column 'FW Week Year' - caption: FW Week Year - column 'FW StartOfWeek' - caption: FW StartOfWeek - column 'FW EndOfWeek' - caption: FW EndOfWeek - column 'FW RelativeWeekPos' - caption: FW RelativeWeekPos - column 'FW RelativeMonthPos' - caption: FW RelativeMonthPos - column 'FW RelativeQuarterPos' - caption: FW RelativeQuarterPos - column 'FW RelativeYearPos' - caption: FW RelativeYearPos - column 'FW StartOfMonth' - caption: FW StartOfMonth - column 'FW EndOfMonth' - caption: FW EndOfMonth - column 'FW StartOfQuarter' - caption: FW StartOfQuarter - column 'FW EndOfQuarter' - caption: FW EndOfQuarter - column 'FW StartOfYear' - caption: FW StartOfYear - column 'FW EndOfYear' - caption: FW EndOfYear - column 'FW MonthDays' - caption: FW MonthDays - column 'FW QuarterDays' - caption: FW QuarterDays - column 'FW YearDays' - caption: FW YearDays - column 'FW DayOfMonthNumber' - caption: FW DayOfMonthNumber - column 'FW DayOfQuarterNumber' - caption: FW DayOfQuarterNumber - column 'FW DayOfYearNumber' - caption: FW DayOfYearNumber - column 'FW DatePreviousWeek' - caption: FW DatePreviousWeek - column 'FW DatePreviousMonth' - caption: FW DatePreviousMonth - column 'FW DatePreviousQuarter' - caption: FW DatePreviousQuarter - column 'FW DatePreviousYear' - caption: FW DatePreviousYear - column 'Relative Day' - caption: Relative Day - column Sequential365DayNumber - caption: Sequential 365 DayNumber - column 'Data Range Deferrals' - caption: Data Range Deferrals - measure 'No. of Days' - caption: No. of Days - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Fiscal Year-Quarter-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Quarter Year' - caption: Fiscal Quarter Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Calendar Year-Quarter-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Quarter Year' - caption: Calendar Quarter Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Quarter-Month-Week' - caption: FW Year-Quarter-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'Fiscal Year-Month' - caption: Fiscal Year-Month - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - hierarchy 'Fiscal Year-Month-Week' - caption: Fiscal Year-Month-Week - level 'Fiscal Year' - caption: Fiscal Year - level 'Fiscal Month Year' - caption: Fiscal Month Year - level 'Fiscal Week Year' - caption: Fiscal Week Year - hierarchy 'Calendar Year-Month' - caption: Calendar Year-Month - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - hierarchy 'Calendar Year-Month-Week' - caption: Calendar Year-Month-Week - level 'Calendar Year' - caption: Calendar Year - level 'Calendar Month Year' - caption: Calendar Month Year - level 'Calendar Week Year' - caption: Calendar Week Year - hierarchy 'FW Year-Month-Week' - caption: FW Year-Month-Week - level 'FW Year' - caption: FW Year - level 'FW Month Year' - caption: FW Month Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Quarter-Week' - caption: FW Year-Quarter-Week - level 'FW Year' - caption: FW Year - level 'FW Quarter Year' - caption: FW Quarter Year - level 'FW Week Year' - caption: FW Week Year - hierarchy 'FW Year-Week' - caption: FW Year-Week - level 'FW Year' - caption: FW Year - level 'FW Week Year' - caption: FW Week Year - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: CONNECT YOUR DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Download the Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Configure Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: USE, EDIT AND BUILD YOUR OWN REPORTS - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - measure 'HELP AND SUPPORT' - caption: HELP AND SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: For help and support with your new report please visit the Analytics overview documentation. - measure 'for Business Central' - caption: for Business Central - measure 'Last Refreshed' - caption: Last Refreshed - measure 'Company Name' - caption: Company Name - measure 'Analysis Entries as of' - caption: Analysis Entries as of - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Billing Forecast by Billing Period, Customer and Contract No. - measure 'Billing Forecast by Year and Month' - caption: Billing Forecast by Calendar Year and Month - measure 'Billing Schedule' - caption: Billing Schedule - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Change of Mon. Recurring Revenue by Year and Month - measure 'Current Date Range:' - caption: Current Date Range: - measure 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - measure 'Customer Contract Lines' - caption: Customer Contract Lines - measure 'Customer Deferrals (Caption)' - caption: Customer Deferrals - measure 'Mon. Recurring Revenue Analysis' - caption: Mon. Recurring Revenue Analysis - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - measure 'Mon. Recurring Revenue by Customer' - caption: Mon. Recurring Revenue by Customer - measure 'Mon. Recurring Revenue by Salesperson' - caption: Mon. Recurring Revenue by Salesperson - measure 'Mon. Recurring Revenue by Year and Month' - caption: Mon. Recurring Revenue by Calendar Year and Month - measure 'Mon. Recurring Revenue by Item' - caption: Mon. Recurring Revenue by Item - measure 'Mon. Recurring Revenue by Item Category' - caption: Mon. Recurring Revenue by Item Category - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Mon. Recurring Revenue Churn and Downgrade by Customer Contract - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Mon. Recurring Revenue New and Upgrade by Customer Contract - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Monthly Revenue and Cost Forecast by Calendar Year and Month - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - measure 'Released and Deferred Amount by Year and Month' - caption: Released and Deferred Amount by Calendar Year and Month - measure 'Revenue Analysis' - caption: Revenue Analysis - measure 'Revenue by Customer' - caption: Revenue by Customer - measure 'Revenue by Item' - caption: Revenue by Item - measure 'Revenue by Salesperson' - caption: Revenue by Salesperson - measure 'Revenue Development' - caption: Revenue Development - measure 'Sales and Cost Forecast' - caption: Revenue Forecast - measure 'Revenue Year-Over-Year Growth' - caption: Revenue Year-Over-Year Growth - measure 'Subscription Billing Analysis' - caption: Subscription Billing Analysis - measure 'Subscription Billing Overview' - caption: Subscription Billing Overview - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: Top 5 Customers by Mon. Recurring Revenue - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: Top 5 Vendors by Mon. Recurring Cost - measure 'Total Contract Value Analysis' - caption: Total Contract Value Analysis - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Total Contract Value and Total Contract Value PY by Calendar Month - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - measure 'Total Contract Value by Year and Month' - caption: Total Contract Value by Calendar Year and Month - measure 'Total Contract Value Year-Over-Year Growth' - caption: Total Contract Value Year-Over-Year Growth - measure 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - measure 'Vendor Deferrals (Caption)' - caption: Vendor Deferrals - measure 'Back button' - caption: Back button - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - measure 'Churn Analysis' - caption: Churn Analysis - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Avg. Mon. Churn Rate % by Year and Month - table 'Meta Information' - caption: ОРГАНИЗАЦИЯ - table Subscription - caption: Service Object - column 'Subscription No.' - caption: Service Object No. - column 'Package Code' - caption: Package Code - column 'Subscription Desc.' - caption: Service Object Desc. - column 'Analysis Date' - caption: Analysis Date - column 'Subscription No. Desc.' - caption: Subscription No. Desc. - table 'Vendor Contract Deferrals' - caption: Vendor Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - column Discount - caption: Discount - column 'Document Line No.' - caption: Document Line No. - table 'Customer Contract Line' - caption: Customer Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Customer Contract Line Desc.' - caption: Customer Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Billing Base Period' - caption: Billing Base Period - column 'Invoicing Item No.' - caption: Invoicing Item No. - column 'Customer Contract Line No.' - caption: Customer Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Vendor Contract Line' - caption: Vendor Contract Line - column 'Subscription Line No.' - caption: Commitment Line No. - column Template - caption: Template - column 'Vendor Contract Line Desc.' - caption: Vendor Contract Line Desc. - column 'Subscription Start Date' - caption: Service Start Date - column 'Subscription End Date' - caption: Service End Date - column 'Next Billing Date' - caption: Next Billing Date - column 'Vendor Contract Line No.' - caption: Vendor Contract Line No. - column 'Notice Period' - caption: Notice Period - column 'Initial Term' - caption: Initial Term - column 'Extension Term' - caption: Extension Term - column 'Billing Rhythm' - caption: Billing Rhythm - column 'Cancellation Possible Until' - caption: Cancellation Possible Until - column 'Term Until' - caption: Term Until - column 'Renewal Term' - caption: Renewal Term - column 'Line Active' - caption: Line Active - column 'Remaining Term' - caption: Remaining Term - column 'Billing Rhythm Months' - caption: Billing Rhythm Months - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Is Latest Version' - caption: Is Latest Version - column 'Is Usage Based Billing' - caption: Is Usage Based Billing - column 'Source Type' - caption: Source Type - column 'Source No.' - caption: Source No. - table 'Customer Contract Deferrals' - caption: Customer Contract Deferrals - column 'Document Type' - caption: Document Type - column 'Document No.' - caption: Document No. - column 'Posting Date' - caption: Posting Date - column 'Document Line No.' - caption: Document Line No. - column 'Document Posting Date' - caption: Document Posting Date - column 'Release Posting Date' - caption: Release Posting Date - column 'G LEntry No.' - caption: G LEntry No. - table 'Customer Contract' - caption: Customer Contract - column 'Customer Contract No.' - caption: Customer Contract No. - column 'Customer Contract Type' - caption: Customer Contract Type - column 'Customer Contract Description' - caption: Customer Contract Description - column 'Customer Contract No. Desc.' - caption: Customer Contract No. Desc. - table 'Vendor Contract' - caption: Vendor Contract - column 'Vendor Contract No.' - caption: Vendor Contract No. - column 'Vendor Contract Type' - caption: Vendor Contract Type - column 'Vendor Contract Description' - caption: Vendor Contract Description - column 'Vendor Contract No. Desc.' - caption: Vendor Contract No. Desc. - table 'UBB handling' - caption: UBB handling - column 'Treat Usage Based Billing as constant' - caption: Treat UBB as constant - table 'Is Released' - caption: Is Released - table Item - caption: Item - column 'Item No.' - caption: Item No. - column 'Item Name' - caption: Item Name - column 'Item Category Code' - caption: Item Category Code - column 'Item Category Description' - caption: Item Category Description - column 'Inventory Posting Group' - caption: Inventory Posting Group - column 'Base Unit of Measure' - caption: Base Unit of Measure - column 'Item No. & Description' - caption: Item No. & Description - table 'Analysis Date' - caption: Analysis Date - column 'Is Initial Version' - caption: Is Initial Version - column 'Is Current Version' - caption: Is Current Version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Calc. Group - Time Intelligence for Calendar (Fiscal) - column Perspective - caption: Perspective - table 'Subscription Billing KPIs' - caption: Subscription Billing KPIs - measure 'Mon. Recurring Revenue' - caption: MRR - measure 'Mon. Recurring Cost' - caption: MRC - measure 'Customer Deferrals' - caption: Customer Deferrals - measure 'Vendor Deferrals' - caption: Vendor Deferrals - measure 'Annual Recurring Revenue' - caption: ARR - measure 'Total Contract Value' - caption: TCV - measure 'Forecast Sales' - caption: Forecast Sales - measure 'Mon. Recurring Cost PY' - caption: MRC PY - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MRC Δ vs. PY - measure 'Mon. Recurring Revenue Churn' - caption: Mon. Recurring Revenue Churn - measure 'Mon. Recurring Revenue PY' - caption: MRR PY - measure 'Mon. Recurring Revenue New' - caption: Mon. Recurring Revenue New - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Mon. Recurring Revenue Δ vs. PY - measure 'Mon. Net Profit Amount' - caption: NMRP - measure 'Mon. Net Profit %' - caption: NMRP % of MRR - measure 'Mon. Net Profit PY' - caption: NMRP PY - measure 'Mon. Net Profit Δ vs. PY' - caption: NMRP Δ vs. PY - measure 'Change in Mon. Recurring Revenue' - caption: MRR overall change - measure 'Total Contract Value PY' - caption: TCV PY - measure 'Total Contract Value Δ vs. PY' - caption: TCV Δ vs. PY - measure 'Last Update Analysis Entries' - caption: Last Update Analysis Entries - measure 'Last Update Semantic Model' - caption: Last Update Semantic Model - measure 'Param Environment' - caption: Param Environment - measure 'Param Company' - caption: Param Company - measure 'Mon. Recurring Revenue Upgrade' - caption: Mon. Recurring Revenue Upgrade - measure 'Mon. Recurring Revenue Change UBB' - caption: Mon. Recurring Revenue Change UBB - measure 'Reporting Currency' - caption: Reporting Currency - measure 'Active Customers' - caption: Active Customers - measure 'Active Customers PY' - caption: Active Customers PY - measure 'Active Customers Δ vs. PY' - caption: Active Customers Δ vs. PY - measure 'Customer Billing Forecast' - caption: Customer Billing Forecast - measure 'Vendor Billing Forecast' - caption: Vendor Billing Forecast - measure 'Forecast Costs' - caption: Forecast Costs - measure 'Mon. Recurring Revenue Downgrade' - caption: Mon. Recurring Revenue Downgrade - measure 'Selected Date Range' - caption: Selected Date Range - measure 'Avg. Mon. Churn Rate %' - caption: Avg. Mon. Churn Rate % - measure 'Mon. Avg. Downgrade Rate %' - caption: Mon. Avg. Downgrade Rate % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Mon. Recurring Revenue Downgrade & Churn - table Salesperson - caption: Salesperson - column 'Salesperson Code' - caption: Salesperson Code - column 'Salesperson Name' - caption: Salesperson Name - table 'Customer Contract Changes' - caption: Customer Contract Changes - column 'Customer Contract Line Key' - caption: Customer Contract Line Key - column Date - caption: Date - column 'Change Type' - caption: Change Type - column 'MRR Delta' - caption: MRR Delta - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/sv-SE.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/sv-SE.tmdl deleted file mode 100644 index 49a5ffdf9f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/cultures/sv-SE.tmdl +++ /dev/null @@ -1,731 +0,0 @@ -cultureInfo sv-SE - translations - model Model - table 'Dimension Sets' - caption: Dimensionsuppsättningar - column 'Global Dimension 1' - caption: Global dimension 1 - column 'Global Dimension 2' - caption: Global dimension 2 - column 'Shortcut Dimension 3' - caption: Genväg dimension 3 - column 'Shortcut Dimension 4' - caption: Genväg dimension 4 - column 'Shortcut Dimension 5' - caption: Genväg dimension 5 - column 'Shortcut Dimension 6' - caption: Genväg dimension 6 - column 'Shortcut Dimension 7' - caption: Genväg dimension 7 - column 'Shortcut Dimension 8' - caption: Genväg dimension 8 - column id - caption: ID - table Vendors - caption: Leverantörer - column 'Vendor No.' - caption: Leverantörsnummer - column 'Vendor Name' - caption: Leverantörsnamn - column Address - caption: Adress - column 'Address 2' - caption: Adress 2 - column City - caption: Ort - column 'Post Code' - caption: Postnummer - column State - caption: Delstat - column 'Country/Region Code' - caption: Lands-/regionskod - column 'Vendor Posting Group' - caption: Leverantörsbokföringsmall - column 'Vendor No. & Name' - caption: Leverantörsnummer och -namn - table Customers - caption: Kunder - column 'Customer No.' - caption: Kundnummer - column 'Customer Name' - caption: Kundnamn - column Address - caption: Adress - column 'Address 2' - caption: Adress 2 - column City - caption: Ort - column 'Post Code' - caption: Postnummer - column State - caption: Delstat - column 'Country/Region Code' - caption: Lands-/regionskod - column 'Customer Posting Group' - caption: Kundbokföringsmall - column 'Customer Price Group' - caption: Kundprisgrupp - column 'Customer Discount Group' - caption: Kundrabattgrupp - column 'Customer No. & Name' - caption: Kundnummer och -namn - table Date - caption: Datum - column 'Week Day' - caption: Vecka Dag - column 'Day Type' - caption: Typ av dag - column 'Calendar Year' - caption: Kalender År - column 'Calendar Quarter' - caption: Kalender Kvartal - column 'Calendar Quarter Year' - caption: Kalender Kvartal År - column 'Calendar Month' - caption: Kalender Månad - column 'Calendar Month Year' - caption: Kalender Månad År - column 'Calendar Week' - caption: Kalender Vecka - column 'Calendar Week Year' - caption: Kalender Vecka År - column 'Calendar RelativeWeekPos' - caption: Kalender RelativtVeckaPos - column 'Calendar RelativeMonthPos' - caption: Kalender RelativtMånadPos - column 'Calendar RelativeQuarterPos' - caption: Kalender RelativtKvartalPos - column 'Calendar RelativeYearPos' - caption: Kalender RelativtÅrPos - column 'Calendar StartOfMonth' - caption: Kalender StartPåMånad - column 'Calendar EndOfMonth' - caption: Kalender SlutPåMånad - column 'Calendar StartOfQuarter' - caption: Kalender StartPåKvartal - column 'Calendar EndOfQuarter' - caption: Kalender SlutPåKvartal - column 'Calendar StartOfYear' - caption: Kalender StartPåÅr - column 'Calendar EndOfYear' - caption: Kalender Årsslut - column 'Calendar MonthDays' - caption: Kalender MånadDagar - column 'Calendar QuarterDays' - caption: Kalender KvartalDagar - column 'Calendar YearDays' - caption: Kalender ÅrDagar - column 'Calendar DayOfMonthNumber' - caption: Kalender DagIMånadNummer - column 'Calendar DayOfQuarterNumber' - caption: Kalender DagIKvartalNummer - column 'Calendar DayOfYearNumber' - caption: Kalender DagIÅrNummer - column 'Calendar DatePreviousWeek' - caption: Kalender DatumFöregåendeVecka - column 'Calendar DatePreviousMonth' - caption: Kalender DatumFöregåendeMånad - column 'Calendar DatePreviousQuarter' - caption: Kalender DatumFöregåendeKvartal - column 'Calendar DatePreviousYear' - caption: Kalender DatumFöregåendeÅr - column 'Fiscal Year' - caption: Räkenskapsår - column 'Fiscal Quarter' - caption: Räkenskapskalender Kvartal - column 'Fiscal Quarter Year' - caption: Räkenskapskalender Kvartal År - column 'Fiscal Month' - caption: Räkenskapskalender Månad - column 'Fiscal Month Year' - caption: Räkenskapskalender Månad År - column 'Fiscal Week' - caption: Räkenskapskalender Vecka - column 'Fiscal Week Year' - caption: Räkenskapskalender År Vecka - column 'Fiscal RelativeWeekPos' - caption: Räkenskapskalender RelativtVeckaPos - column 'Fiscal RelativeMonthPos' - caption: Räkenskapskalender: RelativtMånadPos - column 'Fiscal RelativeQuarterPos' - caption: Räkenskapskalender RelativtKvartalPos - column 'Fiscal RelativeYearPos' - caption: Räkenskapskalender RelativtÅrPos - column 'Fiscal StartOfMonth' - caption: Räkenskapskalender StartPåMånad - column 'Fiscal EndOfMonth' - caption: Räkenskapskalender SlutPåMånad - column 'Fiscal StartOfQuarter' - caption: Räkenskapskalender StartPåKvartal - column 'Fiscal EndOfQuarter' - caption: Räkenskapskalender SlutPåKvartal - column 'Fiscal StartOfYear' - caption: Räkenskapskalender StartPåÅr - column 'Fiscal EndOfYear' - caption: Räkenskapskalender Årsslut - column 'Fiscal MonthDays' - caption: Räkenskapskalender MånadDagar - column 'Fiscal QuarterDays' - caption: Räkenskapskalender KvartalDagar - column 'Fiscal YearDays' - caption: Räkenskapskalender ÅrDagar - column 'Fiscal DayOfMonthNumber' - caption: Räkenskapskalender DagIMÅnadNummer - column 'Fiscal DayOfQuarterNumber' - caption: Räkenskapskalender DagIKvartalNummer - column 'Fiscal DayOfYearNumber' - caption: Räkenskapskalender DagIÅrNummer - column 'Fiscal DatePreviousWeek' - caption: Räkenskapskalender DatumFöregåendeVecka - column 'Fiscal DatePreviousMonth' - caption: Räkenskapskalender DatumFöregåendeMånad - column 'Fiscal DatePreviousQuarter' - caption: Räkenskapskalender DatumFöregåendeKvartal - column 'Fiscal DatePreviousYear' - caption: Räkenskapskalender DatumFöregåendeÅr - column 'FW Year' - caption: RV År - column 'FW Quarter' - caption: RV Kvartal - column 'FW Quarter Year' - caption: RV Kvartal År - column 'FW Month' - caption: RV Månad - column 'FW Month Year' - caption: RV Månad År - column 'FW Week' - caption: RV Vecka - column 'FW Period' - caption: RV Period - column 'FW Week Year' - caption: RV Vecka År - column 'FW StartOfWeek' - caption: RV StartPåVecka - column 'FW EndOfWeek' - caption: RV SlutPåVecka - column 'FW RelativeWeekPos' - caption: RV RelativtVeckaPos - column 'FW RelativeMonthPos' - caption: RV RelativtMånPos - column 'FW RelativeQuarterPos' - caption: RV RelativtKvartalPos - column 'FW RelativeYearPos' - caption: RV RelativtÅrPos - column 'FW StartOfMonth' - caption: RV StartPåMånad - column 'FW EndOfMonth' - caption: RV SlutPåMånad - column 'FW StartOfQuarter' - caption: RV StartPåKvartal - column 'FW EndOfQuarter' - caption: RV SlutPåKvartal - column 'FW StartOfYear' - caption: RV StartPåÅr - column 'FW EndOfYear' - caption: RV Årsslut - column 'FW MonthDays' - caption: RV MånadDagar - column 'FW QuarterDays' - caption: RV KvartalDagar - column 'FW YearDays' - caption: RV ÅrDagar - column 'FW DayOfMonthNumber' - caption: RV DagPåMånadNummer - column 'FW DayOfQuarterNumber' - caption: RV DagIKvartalNummer - column 'FW DayOfYearNumber' - caption: RV DagIÅrNummer - column 'FW DatePreviousWeek' - caption: RV DatumFöregåendeVecka - column 'FW DatePreviousMonth' - caption: RV DatumFöregåendeMånad - column 'FW DatePreviousQuarter' - caption: RV DatumFöregåendeKvartal - column 'FW DatePreviousYear' - caption: RV DatumFöregåendeÅr - column 'Relative Day' - caption: Relativt Dag - column Sequential365DayNumber - caption: Serienummer i 365-dagarsformat - column 'Data Range Deferrals' - caption: Periodiseringar av dataintervall - measure 'No. of Days' - caption: Antal dagar - hierarchy 'Fiscal Year-Quarter-Month-Week' - caption: Räkenskapskalender År-Kvartal-Månad-Vecka - level 'Fiscal Year' - caption: Räkenskapsår - level 'Fiscal Quarter Year' - caption: Räkenskapskalender Kvartal År - level 'Fiscal Month Year' - caption: Räkenskapskalender Månad År - level 'Fiscal Week Year' - caption: Räkenskapskalender År Vecka - hierarchy 'Calendar Year-Quarter-Month-Week' - caption: Kalender År-Kvartal-Månad-Vecka - level 'Calendar Year' - caption: Kalender År - level 'Calendar Quarter Year' - caption: Kalender Kvartal År - level 'Calendar Month Year' - caption: Kalender Månad År - level 'Calendar Week Year' - caption: Kalender Vecka År - hierarchy 'FW Year-Quarter-Month-Week' - caption: RV År-Kvartal-Månad-Vecka - level 'FW Year' - caption: RV År - level 'FW Quarter Year' - caption: RV Kvartal År - level 'FW Month Year' - caption: RV Månad År - level 'FW Week Year' - caption: RV Vecka År - hierarchy 'Fiscal Year-Month' - caption: Räkenskapskalender År-Månad - level 'Fiscal Year' - caption: Räkenskapsår - level 'Fiscal Month Year' - caption: Räkenskapskalender Månad År - hierarchy 'Fiscal Year-Month-Week' - caption: Räkenskapskalender År-Månad-Vecka - level 'Fiscal Year' - caption: Räkenskapsår - level 'Fiscal Month Year' - caption: Räkenskapskalender Månad År - level 'Fiscal Week Year' - caption: Räkenskapskalender År Vecka - hierarchy 'Calendar Year-Month' - caption: Kalender År-Månad - level 'Calendar Year' - caption: Kalender År - level 'Calendar Month Year' - caption: Kalender Månad År - hierarchy 'Calendar Year-Month-Week' - caption: Kalender År-Månad-Vecka - level 'Calendar Year' - caption: Kalender År - level 'Calendar Month Year' - caption: Kalender Månad År - level 'Calendar Week Year' - caption: Kalender Vecka År - hierarchy 'FW Year-Month-Week' - caption: RV År-Månad-Vecka - level 'FW Year' - caption: RV År - level 'FW Month Year' - caption: RV Månad År - level 'FW Week Year' - caption: RV Vecka År - hierarchy 'FW Year-Quarter-Week' - caption: RV År-Kvartal-Vecka - level 'FW Year' - caption: RV År - level 'FW Quarter Year' - caption: RV Kvartal År - level 'FW Week Year' - caption: RV Vecka År - hierarchy 'FW Year-Week' - caption: RV År-Vecka - level 'FW Year' - caption: RV År - level 'FW Week Year' - caption: RV Vecka År - table 'Localized Labels' - measure 'CONNECT YOUR DATA' - caption: ANSLUT DINA DATA - measure '1. Download the Finance Connector for Power BI' - caption: 1. Ladda ned Finance Connector for Power BI - measure '2. Configure Dynamics 365 Business Central' - caption: 2. Konfigurera Dynamics 365 Business Central - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' - caption: ANVÄND, REDIGERA OCH SKAPA EGNA RAPPORTER - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' - caption: Ekonomi omfattar en mängd olika färdiga rapporter som gör det enkelt att se data direkt. Du kan redigera dessa rapporter eller skapa en egen rapport från grunden. - measure 'HELP AND SUPPORT' - caption: HJÄLP OCH SUPPORT - measure 'For help and support with your new report please visit the Analytics overview documentation.' - caption: Hjälp och support med den nya rapporten finns i översiktsdokumentationen för Analys. - measure 'for Business Central' - caption: för Business Central - measure 'Last Refreshed' - caption: Uppdaterades senast - measure 'Company Name' - caption: Företagsnamn - measure 'Analysis Entries as of' - caption: Analysera transaktioner per - measure 'Billing Forecast by Billing Period, Customer and Contract No.' - caption: Faktureringsprognos per faktureringsperiod, kund och kontraktsnr - measure 'Billing Forecast by Year and Month' - caption: Faktureringsprognos per kalenderår och månad - measure 'Billing Schedule' - caption: Faktureringsschema - measure 'Change of Mon. Recurring Revenue by Year and Month' - caption: Ändring av månatliga återkommande intäkter per år och månad - measure 'Current Date Range:' - caption: Aktuellt datumintervall: - measure 'Customer Contract Deferrals' - caption: Periodiseringar av kundkontrakt - measure 'Customer Contract Lines' - caption: Kundkontraktsrader - measure 'Customer Deferrals (Caption)' - caption: Kundperiodiseringar - measure 'Mon. Recurring Revenue Analysis' - caption: Analys av månatliga återkommande intäkter - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' - caption: Månatliga återkommande intäkter och månatliga återkommande intäkter FÅ per kalendermånad - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' - caption: Månatliga återkommande intäkter och tillväxt år för år per kalenderår och månad - measure 'Mon. Recurring Revenue by Customer' - caption: Månatliga återkommande intäkter per kund - measure 'Mon. Recurring Revenue by Salesperson' - caption: Månatliga återkommande intäkter per säljare - measure 'Mon. Recurring Revenue by Year and Month' - caption: Månatliga återkommande intäkter per kalenderår och månad - measure 'Mon. Recurring Revenue by Item' - caption: Månatliga återkommande intäkter per artikel - measure 'Mon. Recurring Revenue by Item Category' - caption: Månatliga återkommande intäkter per artikelkategori - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' - caption: Månatliga återkommande intäktsbortfall och nedgradering per kundkontrakt - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' - caption: Månatliga återkommande intäkter, nya och nedgradering per kundkontrakt - measure 'Monthly Sales and Cost Forecast by Year and Month' - caption: Månatlig intäkts- och kostnadsprognos per kalenderår och månad - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' - caption: Månatliga intäkter och kostnadsprognos per säljare, kund och kontraktsnr - measure 'Released and Deferred Amount by Year and Month' - caption: Frisläppt och periodiserat belopp per kalenderår och månad - measure 'Revenue Analysis' - caption: Intäktsanalys - measure 'Revenue by Customer' - caption: Intäkt per kund - measure 'Revenue by Item' - caption: Intäkt per artikel - measure 'Revenue by Salesperson' - caption: Intäkt per säljare - measure 'Revenue Development' - caption: Intäktsutveckling - measure 'Sales and Cost Forecast' - caption: Intäktsprognos - measure 'Revenue Year-Over-Year Growth' - caption: Tillväxtökning år för år - measure 'Subscription Billing Analysis' - caption: Analys av Subscription Billing - measure 'Subscription Billing Overview' - caption: Översikt över Subscription Billing - measure 'Top 5 Customers by Mon. Recurring Revenue' - caption: 5 främsta kunderna per månatliga återkommande intäkter - measure 'Top 5 Vendors by Mon. Recurring Cost' - caption: 5 främsta leverantörer per månatlig återkommande kostnad - measure 'Total Contract Value Analysis' - caption: Analys av totalt kontraktsvärde - measure 'Total Contract Value and Total Contract Value PY by Month' - caption: Totalt kontraktsvärde och totalt kontraktsvärde FÅ per kalendermånad - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' - caption: Totalt kontraktsvärde och tillväxt år för år per kalenderår och månad - measure 'Total Contract Value by Year and Month' - caption: Totalt kontraktsvärde per kalenderår och månad - measure 'Total Contract Value Year-Over-Year Growth' - caption: Totalt kontraktsvärde tillväxt år för år - measure 'Vendor Contract Deferrals' - caption: Kontraktsperiodiseringar för leverantör - measure 'Vendor Deferrals (Caption)' - caption: Leverantörsperiodiseringar - measure 'Back button' - caption: Knappen Föregående - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' - caption: Månatliga återkommande intäkter, månatlig återkommande kostnad, månatlig nettovinst, aktiva kunder, totalt kontraktsvärde, förändring i månatliga återkommande intäkter - measure 'Churn Analysis' - caption: Bortfallsanalys - measure 'Avg. Mon. Churn Rate % by Year and Month' - caption: Genomsnittlig månatlig bortfallsgrad % per år och månad - table 'Meta Information' - caption: FÖRETAG - table Subscription - caption: Serviceobjekt - column 'Subscription No.' - caption: Serviceobjektsnummer - column 'Package Code' - caption: Paketkod - column 'Subscription Desc.' - caption: Beskrivning av serviceobjekt - column 'Analysis Date' - caption: Analysdatum - column 'Subscription No. Desc.' - caption: Beskrivning av Subscription-nummer - table 'Vendor Contract Deferrals' - caption: Kontraktsperiodiseringar för leverantör - column 'Document Type' - caption: Dokumenttyp - column 'Document No.' - caption: Dokumentnummer - column 'Posting Date' - caption: Bokföringsdatum - column 'Document Posting Date' - caption: Dokumentets bokföringsdatum - column 'Release Posting Date' - caption: Bokföringsdatum för frisläppning - column 'G LEntry No.' - caption: Transaktionsnummer i redovisning - column Discount - caption: Rabatt - column 'Document Line No.' - caption: Dokumentradnr - table 'Customer Contract Line' - caption: Kundkontraktsrad - column 'Subscription Line No.' - caption: Ufästelseradnr - column Template - caption: Mall - column 'Customer Contract Line Desc.' - caption: Beskrivning av kundkontraktsrad - column 'Subscription Start Date' - caption: Tjänstens startdatum - column 'Subscription End Date' - caption: Tjänstens slutdatum - column 'Next Billing Date' - caption: Nästa faktureringsdatum - column 'Billing Base Period' - caption: Faktureringsbasperiod - column 'Invoicing Item No.' - caption: Faktureringsartikelnummer - column 'Customer Contract Line No.' - caption: Kundkontraktsradnr - column 'Notice Period' - caption: Uppsägningstid - column 'Initial Term' - caption: Inledande löptid - column 'Extension Term' - caption: Tilläggsvillkor - column 'Billing Rhythm' - caption: Faktureringstakt - column 'Cancellation Possible Until' - caption: Annullering möjlig till - column 'Term Until' - caption: Löptid till - column 'Renewal Term' - caption: Förnyelseperiod - column 'Line Active' - caption: Aktiv rad - column 'Remaining Term' - caption: Återstående löptid - column 'Billing Rhythm Months' - caption: Månader för faktureringstakt - column 'Customer Contract No.' - caption: Kundkontraktsnummer - column 'Is Usage Based Billing' - caption: Är användningsbaserad fakturering - column 'Source Type' - caption: Källtyp - column 'Source No.' - caption: Ursprungsnr - table 'Vendor Contract Line' - caption: Leverantörskontraktsrad - column 'Subscription Line No.' - caption: Ufästelseradnr - column Template - caption: Mall - column 'Vendor Contract Line Desc.' - caption: Beskrivning av leverantörskontraktsrad - column 'Subscription Start Date' - caption: Tjänstens startdatum - column 'Subscription End Date' - caption: Tjänstens slutdatum - column 'Next Billing Date' - caption: Nästa faktureringsdatum - column 'Vendor Contract Line No.' - caption: Leverantörskontraktsradnr - column 'Notice Period' - caption: Uppsägningstid - column 'Initial Term' - caption: Inledande löptid - column 'Extension Term' - caption: Tilläggsvillkor - column 'Billing Rhythm' - caption: Faktureringstakt - column 'Cancellation Possible Until' - caption: Annullering möjlig till - column 'Term Until' - caption: Löptid till - column 'Renewal Term' - caption: Förnyelseperiod - column 'Line Active' - caption: Aktiv rad - column 'Remaining Term' - caption: Återstående löptid - column 'Billing Rhythm Months' - caption: Månader för faktureringstakt - column 'Vendor Contract No.' - caption: Leverantörskontraktsnummer - column 'Is Latest Version' - caption: Är senaste version - column 'Is Usage Based Billing' - caption: Är användningsbaserad fakturering - column 'Source Type' - caption: Källtyp - column 'Source No.' - caption: Ursprungsnr - table 'Customer Contract Deferrals' - caption: Periodiseringar av kundkontrakt - column 'Document Type' - caption: Dokumenttyp - column 'Document No.' - caption: Dokumentnummer - column 'Posting Date' - caption: Bokföringsdatum - column 'Document Line No.' - caption: Dokumentradnr - column 'Document Posting Date' - caption: Dokumentets bokföringsdatum - column 'Release Posting Date' - caption: Bokföringsdatum för frisläppning - column 'G LEntry No.' - caption: Transaktionsnummer i redovisning - table 'Customer Contract' - caption: Kundkontrakt - column 'Customer Contract No.' - caption: Kundkontraktsnummer - column 'Customer Contract Type' - caption: Typ av kundkontrakt - column 'Customer Contract Description' - caption: Beskrivning av kundkontrakt - column 'Customer Contract No. Desc.' - caption: Beskrivning av kundkontraktsnummer - table 'Vendor Contract' - caption: Leverantörskontrakt - column 'Vendor Contract No.' - caption: Leverantörskontraktsnummer - column 'Vendor Contract Type' - caption: Typ av leverantörskontrakt - column 'Vendor Contract Description' - caption: Beskrivning av leverantörskontrakt - column 'Vendor Contract No. Desc.' - caption: Beskrivning av leverantörskontraktsnummer - table 'UBB handling' - caption: Hantering av ABF - column 'Treat Usage Based Billing as constant' - caption: Behandla ABF som konstant - table 'Is Released' - caption: Är släppt - table Item - caption: Artikel - column 'Item No.' - caption: Artikelnummer - column 'Item Name' - caption: Artikelnamn - column 'Item Category Code' - caption: Artikelkategorikod - column 'Item Category Description' - caption: Beskrivning av artikelkategori - column 'Inventory Posting Group' - caption: Lagerbokföringsmall - column 'Base Unit of Measure' - caption: Basmåttenhet - column 'Item No. & Description' - caption: Artikelnummer och -beskrivning - table 'Analysis Date' - caption: Analysdatum - column 'Is Initial Version' - caption: Är inledande version - column 'Is Current Version' - caption: Är aktuell version - table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - caption: Beräkningsgrupp – Tidsintelligens för kalender (räkenskapskalender) - column Perspective - caption: Perspektiv - table 'Subscription Billing KPIs' - caption: KPI:er för Subscription Billing - measure 'Mon. Recurring Revenue' - caption: MÅI - measure 'Mon. Recurring Cost' - caption: MÅK - measure 'Customer Deferrals' - caption: Kundperiodiseringar - measure 'Vendor Deferrals' - caption: Leverantörsperiodiseringar - measure 'Annual Recurring Revenue' - caption: KRA - measure 'Total Contract Value' - caption: TKV - measure 'Forecast Sales' - caption: Prognosförsäljning - measure 'Mon. Recurring Cost PY' - caption: MÅK FÅ - measure 'Mon. Recurring Cost Δ vs. PY' - caption: MÅK Δ jämfört med FÅ - measure 'Mon. Recurring Revenue Churn' - caption: Bortfall av månatliga återkommande intäkter - measure 'Mon. Recurring Revenue PY' - caption: MÅI FÅ - measure 'Mon. Recurring Revenue New' - caption: Ny månatlig återkommande intäkt - measure 'Mon. Recurring Revenue Δ vs. PY' - caption: Månatliga återkommande intäkter Δ jämfört med FÅ - measure 'Mon. Net Profit Amount' - caption: NMÅI - measure 'Mon. Net Profit %' - caption: NMÅI % av MÅI - measure 'Mon. Net Profit PY' - caption: NMÅI FÅ - measure 'Mon. Net Profit Δ vs. PY' - caption: NMÅI Δ jämfört med FÅ - measure 'Change in Mon. Recurring Revenue' - caption: Övergripande förändring för MÅI - measure 'Total Contract Value PY' - caption: TKV FÅ - measure 'Total Contract Value Δ vs. PY' - caption: TKV Δ jämfört med FÅ - measure 'Last Update Analysis Entries' - caption: Senaste uppdatering av analystransaktioner - measure 'Last Update Semantic Model' - caption: Semantisk modell för senaste uppdatering - measure 'Param Environment' - caption: Parametermiljö - measure 'Param Company' - caption: Parameterföretag - measure 'Mon. Recurring Revenue Upgrade' - caption: Uppgradering av månatliga återkommande intäkter - measure 'Mon. Recurring Revenue Change UBB' - caption: Förändring av månatliga återkommande intäkter vid ABF - measure 'Reporting Currency' - caption: Rapporteringsvaluta - measure 'Active Customers' - caption: Aktiva kunder - measure 'Active Customers PY' - caption: Aktiva kunder FÅ - measure 'Active Customers Δ vs. PY' - caption: Aktiva kunder Δ jämfört med FÅ - measure 'Customer Billing Forecast' - caption: Prognos för kundfakturering - measure 'Vendor Billing Forecast' - caption: Prognos för leverantörsfakturering - measure 'Forecast Costs' - caption: Prognoskostnader - measure 'Mon. Recurring Revenue Downgrade' - caption: Nedgradering av månatliga återkommande intäkter - measure 'Selected Date Range' - caption: Valt datumintervall - measure 'Avg. Mon. Churn Rate %' - caption: Genomsnittlig månatlig bortfallsgrad % - measure 'Mon. Avg. Downgrade Rate %' - caption: Månatlig genomsnittlig nedgraderingsgrad % - measure 'Mon. Recurring Revenue Downgrade & Churn' - caption: Nedgradering och bortfall av månatliga återkommande intäkter - table Salesperson - caption: Säljare - column 'Salesperson Code' - caption: Säljarkod - column 'Salesperson Name' - caption: Säljarnamn - table 'Customer Contract Changes' - caption: Ändringar i kundkontrakt - column 'Customer Contract Line Key' - caption: Nyckel för kundkontraktsrad - column Date - caption: Datum - column 'Change Type' - caption: Ändringstyp - column 'MRR Delta' - caption: Delta för MÅI - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/database.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/database.tmdl deleted file mode 100644 index 19b27aa405..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/database.tmdl +++ /dev/null @@ -1,3 +0,0 @@ -database - compatibilityLevel: 1600 - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/expressions.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/expressions.tmdl deleted file mode 100644 index 7434d6d388..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/expressions.tmdl +++ /dev/null @@ -1,487 +0,0 @@ -expression Dimensions = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="dimensions",Signature="table"]}[Data], - #"Changed Type" = Table.TransformColumnTypes( - TableData, - { - {"dim1Code", type text}, - {"dim1Name", type text}, - {"dim1Caption", type text}, - {"dim2Code", type text}, - {"dim2Name", type text}, - {"dim2Caption", type text}, - {"dim3Code", type text}, - {"dim3Name", type text}, - {"dim3Caption", type text}, - {"dim4Code", type text}, - {"dim4Name", type text}, - {"dim4Caption", type text}, - {"dim5Code", type text}, - {"dim5Name", type text}, - {"dim5Caption", type text}, - {"dim6Code", type text}, - {"dim6Name", type text}, - {"dim6Caption", type text}, - {"dim7Code", type text}, - {"dim7Name", type text}, - {"dim7Caption", type text}, - {"dim8Code", type text}, - {"dim8Name", type text}, - {"dim8Caption", type text} - } - ), - #"Removed Columns" = Table.RemoveColumns(#"Changed Type",{"ETag"}) - in - #"Removed Columns" - lineageTag: 0e7242e1-6de4-4458-b6aa-e47397d3c6c0 - queryGroup: Diemensions - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - -expression DimensionSet_Blank = - let - Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlDSUTIEYtJQbCwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [dimensionSetID = _t, valueCount = _t, dimension1ValueCode = _t, dimension1ValueName = _t, dimension2ValueCode = _t, dimension2ValueName = _t, dimension3ValueCode = _t, dimension3ValueName = _t, dimension4ValueCode = _t, dimension4ValueName = _t, dimension5ValueCode = _t, dimension5ValueName = _t, dimension6ValueCode = _t, dimension6ValueName = _t, dimension7ValueCode = _t, dimension7ValueName = _t, dimension8ValueCode = _t, dimension8ValueName = _t]), - #"Changed Type" = Table.TransformColumnTypes(Source,{{"dimensionSetID", Int64.Type}, {"valueCount", Int64.Type}, {"dimension1ValueCode", type text}, {"dimension1ValueName", type text}, {"dimension2ValueCode", type text}, {"dimension2ValueName", type text}, {"dimension3ValueCode", type text}, {"dimension3ValueName", type text}, {"dimension4ValueCode", type text}, {"dimension4ValueName", type text}, {"dimension5ValueCode", type text}, {"dimension5ValueName", type text}, {"dimension6ValueCode", type text}, {"dimension6ValueName", type text}, {"dimension7ValueCode", type text}, {"dimension7ValueName", type text}, {"dimension8ValueCode", type text}, {"dimension8ValueName", type text}}) - in - #"Changed Type" - lineageTag: b4247344-244a-48dc-9215-b6ea1325f879 - queryGroup: Diemensions - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - -expression DimensionSets_DataSource = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="dimensionSetEntries",Signature="table"]}[Data], - #"Changed Type" = Table.TransformColumnTypes( - TableData, - { - {"dimensionSetID", Int64.Type}, - {"valueCount", Int64.Type}, - {"dimension1ValueCode", type text}, - {"dimension1ValueName", type text}, - {"dimension2ValueCode", type text}, - {"dimension2ValueName", type text}, - {"dimension3ValueCode", type any}, - {"dimension3ValueName", type any}, - {"dimension4ValueCode", type any}, - {"dimension4ValueName", type any}, - {"dimension5ValueCode", type any}, - {"dimension5ValueName", type any}, - {"dimension6ValueCode", type any}, - {"dimension6ValueName", type any}, - {"dimension7ValueCode", type any}, - {"dimension7ValueName", type any}, - {"dimension8ValueCode", type any}, - {"dimension8ValueName", type any} - } - ), - #"Removed Columns" = Table.RemoveColumns(#"Changed Type",{"ETag"}), - #"Appended Query" = Table.Combine({#"Removed Columns", DimensionSet_Blank}), - #"Filtered Rows" = Table.SelectRows(#"Appended Query", each ([dimensionSetID] <> 0)) - in - #"Filtered Rows" - lineageTag: 946e1eeb-d5fb-44ad-a36f-17324489be24 - queryGroup: Diemensions - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - -expression GetDimCode = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Code") else if - DimNo = 2 then Record.Field(Rec,"Dim2Code") else if - DimNo = 3 then Record.Field(Rec,"Dim3Code") else if - DimNo = 4 then Record.Field(Rec,"Dim4Code") else if - DimNo = 5 then Record.Field(Rec,"Dim5Code") else if - DimNo = 6 then Record.Field(Rec,"Dim6Code") else if - DimNo = 7 then Record.Field(Rec,"Dim7Code") else if - DimNo = 8 then Record.Field(Rec,"Dim8Code") else "" - in - DimCaption - in - Source - ``` - lineageTag: 510862c7-c25e-42da-9d78-6001e7156983 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression GetDimCodeCaption = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Caption") else if - DimNo = 2 then Record.Field(Rec,"Dim2Caption") else if - DimNo = 3 then Record.Field(Rec,"Dim3Caption") else if - DimNo = 4 then Record.Field(Rec,"Dim4Caption") else if - DimNo = 5 then Record.Field(Rec,"Dim5Caption") else if - DimNo = 6 then Record.Field(Rec,"Dim6Caption") else if - DimNo = 7 then Record.Field(Rec,"Dim7Caption") else if - DimNo = 8 then Record.Field(Rec,"Dim8Caption") else "N/A Code", - DimCaption2 = if DimCaption="" then "N/A Code" else DimCaption, - DimCaption3 = DimCaption2&" (Dim "& Number.ToText(DimNo) & ")" - in - DimCaption3 - in - Source - ``` - lineageTag: bb9e9440-7a6e-4528-b25f-c8df576b848f - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression GetDimNameCaption = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Name") else if - DimNo = 2 then Record.Field(Rec,"Dim2Name") else if - DimNo = 3 then Record.Field(Rec,"Dim3Name") else if - DimNo = 4 then Record.Field(Rec,"Dim4Name") else if - DimNo = 5 then Record.Field(Rec,"Dim5Name") else if - DimNo = 6 then Record.Field(Rec,"Dim6Name") else if - DimNo = 7 then Record.Field(Rec,"Dim7Name") else if - DimNo = 8 then Record.Field(Rec,"Dim8Name") else "N/A Name", - DimCaption2 = if DimCaption="" then "N/A Name" else DimCaption&" Name", - DimCaption3 = DimCaption2&" (Dim "& Number.ToText(DimNo) & ")" - in - DimCaption3 - in - Source - ``` - lineageTag: 7a06943c-0bd7-4fbb-8eb0-f507f5438d06 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression API_ENDPOINT = "microsoft/analytics/v0.5" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - lineageTag: 0750104b-0db0-49f8-9dd1-0d6053b4b02b - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_ResultType = Text - - annotation PBI_NavigationStepName = Navigation - -/// Default contract lenght for the calculation of total contract value. Used only if service end and term until are empty. -expression 'Default Contract Term' = 12 meta [IsParameterQuery=true, Type="Number", IsParameterQueryRequired=true] - lineageTag: 33309295-6020-4bbe-a978-e3e8582c0775 - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Number - -expression MaxForecastDate = ``` - let - Source = Date.EndOfYear(#"Date Table Setup"[dateTblEnd]{0}) - - in - Source - ``` - lineageTag: 4950d3ae-7164-49b7-9bdf-a509e38a6648 - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Date - -expression MinReportingDate = ``` - let - Source = Date.StartOfYear(#"Date Table Setup"[dateTblStart]{0}) - - in - Source - ``` - lineageTag: cdafab33-35d6-4449-a371-05ca601a4222 - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Date - -expression fncPeriodsBetween = ``` - let - //this function calculates the number of periods / month between two dates including the start and end date - //remaining days are devided by 30 - //("01/01/2024, "12/31/2024") => 12.0000 - //("01/01/2024, "02/01/2024") => 1.0333 - //The function is used to calculate total renvenue (TVC, ARV) based on a given duration - - - fncPeriodsBetween = (startDate as date, endDate as date) as number => - let - endDateAdj= Date.AddDays(endDate,1) , - periodsBetween = Date.Year(endDateAdj)*12 + Date.Month(endDateAdj) - Date.Year(startDate)*12 - Date.Month(startDate) , - daysBetween = Date.Day(endDateAdj) - Date.Day(startDate), - result= periodsBetween + (daysBetween / 30) - in - result - in - fncPeriodsBetween - ``` - lineageTag: 75ed47f1-4fd7-4dd6-b290-7a70e647f8b3 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Function - -expression fctImproveColumnNames = ``` - let - Source = (camelText) => - let - - charactersWithleadingSpace = List.Union({{"A".."Z"},{"0".."9"}}), - spaceCharPostions = Text.PositionOfAny(camelText, charactersWithleadingSpace, Occurrence.All), - //several consecutiv upper case letters are usually an Abbreviation (LCY, ID ect.) there should only be a space for the first Letter - - treadAbbr = List.Select( - List.Transform(spaceCharPostions,each if List.Contains(spaceCharPostions,_-1) then -1 else _ ), - each _<>-1), - spaceCharPostionsFinal = List.Sort(treadAbbr,Order.Descending), - capitalizeFirstLetter = Text.Upper(Text.Start(camelText,1)) & Text.Middle(camelText,1), - converted = List.Accumulate(spaceCharPostionsFinal,capitalizeFirstLetter,(state, current) => Text.Insert(state, current, " ") ), - replaceNoSuffix = if Text.EndsWith(converted," No") then converted & "." else converted, - //the function should only be applied if org text is CamelCase - result = if Text.PositionOf(camelText," ") = -1 then replaceNoSuffix else camelText - in - result - in - Source - ``` - lineageTag: 1c90c1d9-db99-4f37-99ed-035046190764 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Function - -expression SourceContractAnalysisEntries = ``` - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name = "contractAnalysisEntries", Signature = "table"]}[Data], - #"Date Filter" = Table.SelectRows(TableData, each [analysisDate] >= MinReportingDate), - #"Subscription Package Key" = Table.AddColumn( - #"Date Filter", - "Subscription Package Key", - each Text.Combine({[serviceObjectNo], [packageCode]}, "-"), - type text - ), - #"Renamed Columns" = Table.RenameColumns( - #"Subscription Package Key", - {{"monthlyRecurrRevenueLCY", "monthlyRecurringRevenueLCY"}} - ) - in - #"Renamed Columns" - ``` - lineageTag: e417c1bb-7070-4669-ae5b-453842615608 - queryGroup: 'Parameters and Functions\Contract Analysis Entries Base' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - -expression ContractLineBase = ``` - let - Source = SourceContractAnalysisEntries, - //the colummn serviceObjectItemNo is depricated - #"Changed Type" = Table.TransformColumnTypes(Source,{{"serviceObjectSourceType", type text}}), - #"Added Custom" = Table.AddColumn(#"Changed Type", "Item No.", each if [serviceObjectSourceType] = "Item" then [serviceObjectSourceNo] else null, type text), - ReplaceEmptyDates = Table.ReplaceValue( - #"Added Custom", - #date(1, 1, 1), - null, - Replacer.ReplaceValue, - { - "serviceEndDate", - "nextBillingDate", - "termUntil", - "cancellationPossibleUntil", - "currencyFactorDate" - } - ), - #"Added Contract Line Key" = Table.AddColumn( - ReplaceEmptyDates, - "Contract Line Key", - each [contractNo] - & "-" - & Number.ToText([contractLineNo]) - & "-" - & Date.ToText([analysisDate], "yyMMdd"), - type text - ), - #"Added Line Active" = Table.AddColumn( - #"Added Contract Line Key", - "Line Active", - each [serviceStartDate] - <= [analysisDate] - and ([serviceEndDate] = null or [serviceEndDate] >= [analysisDate]), - type logical - ), - #"Added Duration Start" = Table.AddColumn( - #"Added Line Active", - "Duration Start Date", - each - if [serviceStartDate] - <= Date.StartOfMonth( - [analysisDate] - ) //the current month should be considered fully for TVC and ARR even if analysis date is not on the first of month - then - Date.StartOfMonth([analysisDate]) - else - [serviceStartDate], - type date - ), - #"Added remainingTermEnd" = Table.AddColumn( - #"Added Duration Start", - "Remaining Term End", - each if [serviceEndDate] <> null then [serviceEndDate] else [termUntil], - type date - ), - #"Added Remaining Term Months" = Table.AddColumn( - #"Added remainingTermEnd", - "Remaining Term Months", - each - if ([#"Remaining Term End"] is null) then - 999 - else if [#"Remaining Term End"] < [#"Duration Start Date"] then - - 1 - else - Number.RoundDown(fncPeriodsBetween([#"Duration Start Date"], [#"Remaining Term End"])), - Int32.Type - ), - #"Added Remaining Term" = Table.AddColumn( - #"Added Remaining Term Months", - "Remaining Term", - each - if [Remaining Term Months] = 999 then - "No End" - else if [Remaining Term Months] = - 1 then - "Ended" - else if [Remaining Term Months] = 0 then - "<1 M" - else if [Remaining Term Months] = 1 then - "1 M" - else - Number.ToText([Remaining Term Months]) & " M", - type text - ), - #"Added ForecastUntil" = Table.AddColumn( - #"Added Remaining Term", - "Forecast Until", - each - if [serviceEndDate] <> null then - Date.AddMonths(Date.AddDays([serviceEndDate], 1), - 1) - else - MaxForecastDate, - type date - ), - #"Added Billling Rhythm Months" = Table.AddColumn( - #"Added ForecastUntil", - "Billing Rhythm Months", - each - let - periodType = Text.End([billingRhythm], 1), - NoOfPeriods = Number.FromText(Text.Start([billingRhythm], Text.Length([billingRhythm]) - 1)), - NoOfNonth = - if periodType = "Y" then - NoOfPeriods * 12 - else if periodType = "Q" then - NoOfPeriods * 3 - else if periodType = "M" then - NoOfPeriods - else if periodType = "W" then - Number.RoundUp(NoOfPeriods / 7 * 30) - else - NoOfPeriods - in - NoOfPeriods, - Int16.Type - ), - CleansSourceType = Table.ReplaceValue(#"Added Billling Rhythm Months","G_x002F_L_x0020_Account","G/L Account",Replacer.ReplaceText,{"serviceObjectSourceType"}) - in - CleansSourceType - ``` - lineageTag: 9ea82b8a-e0bb-4576-947e-0a3f57ca4113 - queryGroup: 'Parameters and Functions\Contract Analysis Entries Base' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Exception - -expression API_ENDPOINT_SUBSCR_BILLING = "microsoft/subsBilling/v1.0" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - lineageTag: 552e550a-53c0-4c25-848b-daf684594e00 - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Text - -expression BCConnectionSubscriptionBilling = - let - - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT_SUBSCR_BILLING, []) - in - Source - lineageTag: 7f64365a-5be9-4b80-bbb1-ebdde9f03063 - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - -expression ConvertUTC = - let - Source = (dateTableSetup as table) => - let - #"Added UTC Now" = Table.AddColumn(dateTableSetup, "UTC Now", each DateTimeZone.UtcNow()), - #"Extract UTC Value" = Table.AddColumn( - #"Added UTC Now", "Extract UTC", each Text.BetweenDelimiters([timeZoneDisplayName], "(", ")") - ), - #"Remove UTC prefix" = Table.AddColumn( - #"Extract UTC Value", "Remove UTC prefix", each Text.AfterDelimiter([Extract UTC], "UTC") - ), - #"Replace Colon" = Table.AddColumn( - #"Remove UTC prefix", "Offset", each Replacer.ReplaceText([Remove UTC prefix], ":", ".") - ), - #"Changed Type1" = Table.TransformColumnTypes(#"Replace Colon", {{"Offset", type number}},"en-us"), - #"Switch Zone" = Table.AddColumn( - #"Changed Type1", - "UTC Offset", - each if [Offset] = null then [UTC Now] else DateTimeZone.SwitchZone([UTC Now], [Offset]) - ), - #"Set Date" = Table.AddColumn( - #"Switch Zone", "Today", each Date.From(DateTimeZone.RemoveZone([UTC Offset])), type date - ), - #"Set Last Refresh Time" = Table.AddColumn( - #"Set Date", "Last Refresh Time", each Time.From(DateTimeZone.RemoveZone([UTC Offset])), type time - ), - #"Remove unnecessary" = Table.RemoveColumns( - #"Set Last Refresh Time", {"UTC Now", "Extract UTC", "Remove UTC prefix", "Offset", "UTC Offset"} - ) - in - #"Remove unnecessary" - in - Source - lineageTag: 827bbd60-43e6-4563-9311-cba3db9ea7ea - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Function - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/model.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/model.tmdl deleted file mode 100644 index 0036b1be1f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/model.tmdl +++ /dev/null @@ -1,112 +0,0 @@ -model Model - culture: en-US - defaultPowerBIDataSourceVersion: powerBI_V3 - discourageImplicitMeasures - sourceQueryCulture: de-DE - dataAccessOptions - legacyRedirects - returnErrorValuesAsNull - -queryGroup 'Parameters and Functions' - - annotation PBI_QueryGroupOrder = 0 - -queryGroup 'Dimension Tables' - - annotation PBI_QueryGroupOrder = 1 - -queryGroup 'Fact Tables' - - annotation PBI_QueryGroupOrder = 2 - -queryGroup 'Date Table' - - annotation PBI_QueryGroupOrder = 3 - -queryGroup 'Parameters and Functions\Functions' - - annotation PBI_QueryGroupOrder = 0 - -queryGroup 'Parameters and Functions\Connection Parameters' - - annotation PBI_QueryGroupOrder = 1 - -queryGroup 'Parameters and Functions\Contract Analysis Entries Base' - - annotation PBI_QueryGroupOrder = 2 - -queryGroup Diemensions - - annotation PBI_QueryGroupOrder = 8 - -annotation __PBI_TimeIntelligenceEnabled = 0 - -annotation PBI_QueryOrder = ["ENVIRONMENT","COMPANY","Dimensions","DimensionSet_Blank","DimensionSets_DataSource","GetDimCode","GetDimCodeCaption","GetDimNameCaption","Subscription","Dimension Sets","Date Table Setup","Working Days","Vendors","Customers","API_ENDPOINT","Default Contract Term","API_ENDPOINT_SUBSCR_BILLING","MaxForecastDate","MinReportingDate","fncPeriodsBetween","fctImproveColumnNames","SourceContractAnalysisEntries","ContractLineBase","Customer Contract Line","Vendor Contract Line","Vendor Contract Deferrals","Customer Contract Deferrals","Customer Contract","Vendor Contract","UBB handling","Is Released","Item","Salesperson","Meta Information","BCConnectionSubscriptionBilling","ConvertUTC","Item Category"] - -annotation __BNorm = 1 - -annotation __TEdtr = 1 - -annotation PBI_ProTooling = ["DevMode","DaxQueryView_Desktop"] - -annotation TranslationsBuilder = Version:2.2-Updated:2025-05-06 - -ref table 'Dimension Sets' -ref table 'Date Table Setup' -ref table 'Date Ref' -ref table 'Working Days' -ref table Vendors -ref table Customers -ref table Date -ref table 'Localized Labels' -ref table 'Meta Information' -ref table Subscription -ref table 'Vendor Contract Deferrals' -ref table 'Customer Contract Line' -ref table 'Vendor Contract Line' -ref table 'Customer Contract Deferrals' -ref table 'Customer Contract' -ref table 'Vendor Contract' -ref table 'UBB handling' -ref table 'Is Released' -ref table Item -ref table 'Analysis Date' -ref table 'Tec Dummy Values' -ref table 'Calc. Group - Tec. Transformations' -ref table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' -ref table 'Customer Billing Forecast' -ref table 'Vendor Billing Forecast' -ref table 'Subscription Billing KPIs' -ref table Salesperson -ref table 'Customer Contract Changes' -ref table ENVIRONMENT -ref table COMPANY -ref table 'Item Category' -ref table 'Translated Localized Labels' - -ref cultureInfo en-US -ref cultureInfo es-ES -ref cultureInfo de-DE -ref cultureInfo fr-FR -ref cultureInfo cs-CZ -ref cultureInfo da-DK -ref cultureInfo de-AT -ref cultureInfo de-CH -ref cultureInfo en-AU -ref cultureInfo en-CA -ref cultureInfo en-GB -ref cultureInfo en-NZ -ref cultureInfo es-MX -ref cultureInfo fi-FI -ref cultureInfo fr-BE -ref cultureInfo fr-CA -ref cultureInfo fr-CH -ref cultureInfo is-IS -ref cultureInfo it-CH -ref cultureInfo it-IT -ref cultureInfo nb-NO -ref cultureInfo nl-BE -ref cultureInfo nl-NL -ref cultureInfo ru-RU -ref cultureInfo sv-SE - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/relationships.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/relationships.tmdl deleted file mode 100644 index a883e404d4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/relationships.tmdl +++ /dev/null @@ -1,119 +0,0 @@ -relationship df09f516-e31b-c6f6-b93e-464786c27f86 - fromColumn: 'Customer Contract Line'.'Customer Contract No.' - toColumn: 'Customer Contract'.'Customer Contract No.' - -relationship 104f27b6-1b89-bc22-306f-74144205b97a - fromColumn: 'Vendor Contract Line'.'Vendor Contract No.' - toColumn: 'Vendor Contract'.'Vendor Contract No.' - -relationship 66cbba4c-a6d7-f1e8-bfb6-2402eabd5350 - fromColumn: 'Customer Contract Line'.'Customer No.' - toColumn: Customers.'Customer No.' - -relationship c4068136-d140-f61b-c697-37b5c904889d - fromColumn: 'Vendor Contract Line'.'Vendor No.' - toColumn: Vendors.'Vendor No.' - -relationship f8f74bd9-53fb-6c01-302f-083dbf2f761d - fromColumn: 'Customer Contract Deferrals'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship c9d8503a-7be1-4a47-4a93-1c01ea3b6fb4 - fromColumn: 'Vendor Contract Deferrals'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship 0991a7fd-eb08-b168-2040-dbf20073b8e9 - isActive: false - fromColumn: 'Customer Contract Line'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship 28fa964c-4937-38ca-408a-93ad2b5ddaa4 - isActive: false - fromColumn: 'Vendor Contract Line'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship d13fc6c3-7e69-5cc9-aef9-8c120d2bc00a - fromColumn: 'Customer Contract Deferrals'.'Is Released Key' - toColumn: 'Is Released'.'Is Released Key' - -relationship 74b5a5e5-22bb-7720-4da1-5eb4f39d1b92 - fromColumn: 'Vendor Contract Deferrals'.'Is Released Key' - toColumn: 'Is Released'.'Is Released Key' - -relationship 2470fc77-e1e0-ef44-5e0b-f10592ff8886 - fromColumn: 'Vendor Contract Deferrals'.'Vendor Contract Line Key' - toColumn: 'Vendor Contract Line'.'Vendor Contract Line Key' - -relationship 316b9a4f-120d-c99f-c29a-720c2f3f47e5 - fromColumn: 'Customer Contract Deferrals'.'Customer Contract Line Key' - toColumn: 'Customer Contract Line'.'Customer Contract Line Key' - -relationship 6a7c4c49-c7a9-f11f-e064-2366df85ce3a - fromColumn: 'Customer Contract'.'Salesperson Code' - toColumn: Salesperson.'Salesperson Code' - -relationship b7c5d2ac-1ad7-f927-f924-f4dfe4f205ce - fromColumn: 'Customer Billing Forecast'.'Customer Contract Line Key' - toColumn: 'Customer Contract Line'.'Customer Contract Line Key' - -relationship e2cccd02-d137-840f-5bf1-3419ad98c2e8 - fromColumn: 'Vendor Billing Forecast'.'Vendor Contract Line Key' - toColumn: 'Vendor Contract Line'.'Vendor Contract Line Key' - -relationship 89e9cebf-d6c5-6d80-cfbb-5abb46bbbffc - fromColumn: 'Customer Contract Line'.'Analysis Date' - toColumn: 'Analysis Date'.'Analysis Date' - -relationship a4e5873f-5f39-b6ce-dcf7-a10f516112b1 - fromColumn: 'Vendor Contract Line'.'Analysis Date' - toColumn: 'Analysis Date'.'Analysis Date' - -relationship 22be9f2f-8eb8-b8f6-d897-3194896b9226 - fromColumn: 'Customer Contract Changes'.'Customer Contract Line Key' - toColumn: 'Customer Contract Line'.'Customer Contract Line Key' - -relationship bd002b58-f000-945a-200e-6decb35c24a4 - fromColumn: 'Vendor Contract Line'.'Subscription Package Key' - toColumn: Subscription.'Subscription Package Key' - -relationship 88ff94a1-34db-3c4b-4e7c-21266454036a - fromColumn: 'Customer Contract Line'.'Subscription Package Key' - toColumn: Subscription.'Subscription Package Key' - -relationship 80414a26-dae8-1b37-0124-b2ca687e5edd - fromColumn: 'Vendor Contract Line'.'Item No.' - toColumn: Item.'Item No.' - -relationship dc3dc700-54d2-4b88-1476-3ead61000752 - fromColumn: 'Customer Contract Line'.'Item No.' - toColumn: Item.'Item No.' - -relationship ef84c36d-381a-72e3-a1c6-2781bebe6630 - fromColumn: Item.'Item Category Code' - toColumn: 'Item Category'.'Item Category Code' - -relationship 0f262536-8a91-34a9-ed42-a009cdb01c92 - fromColumn: 'Customer Contract Deferrals'.'Posting Date' - toColumn: Date.Date - -relationship e4d09685-a0f0-02f9-5cc7-0d6feadcc3f4 - fromColumn: 'Vendor Contract Deferrals'.'Posting Date' - toColumn: Date.Date - -relationship bc5d0b23-a9f1-e2e0-a709-5efe9c6183d2 - fromColumn: 'Customer Billing Forecast'.'Billing Date' - toColumn: Date.Date - -relationship aad3924a-bcce-9274-b61d-e083e24f43f5 - fromColumn: 'Vendor Billing Forecast'.'Billing Date' - toColumn: Date.Date - -relationship 91982125-2aa3-0a83-87b7-16911234d746 - isActive: false - fromColumn: 'Analysis Date'.'Analysis Date' - toColumn: Date.Date - -relationship 4e0d5525-21e9-4811-4e56-b4c2176f9b62 - fromColumn: 'Customer Contract Changes'.Date - toColumn: Date.Date - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Analysis Date.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Analysis Date.tmdl deleted file mode 100644 index 287a2fc29c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Analysis Date.tmdl +++ /dev/null @@ -1,54 +0,0 @@ -table 'Analysis Date' - lineageTag: f142381c-cc7e-4ac9-bd00-1cdcb9e5fed4 - - column 'Analysis Date' - isKey - formatString: Short Date - lineageTag: f354934c-8f48-490c-9fd0-eb800249dd81 - summarizeBy: none - isNameInferred - sourceColumn: Vendor Contract Line[Analysis Date] - - annotation SummarizationSetBy = Automatic - - column 'Is Initial Version' - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 65db46d3-d4ad-4dc4-ba3d-189bffc60012 - summarizeBy: none - isNameInferred - sourceColumn: [is initial Version] - - annotation SummarizationSetBy = Automatic - - column 'Is Current Version' - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 512f4ba6-6bce-4f7f-8980-e83f6e09f810 - summarizeBy: none - isNameInferred - sourceColumn: [is current Version] - - annotation SummarizationSetBy = Automatic - - partition 'Analysis Date' = calculated - mode: import - source = - - VAR baseData = - FILTER ( - DISTINCT ( - UNION ( - DISTINCT ( 'Vendor Contract Line'[Analysis Date] ), - DISTINCT ( 'Customer Contract Line'[Analysis Date] ) - ) - ), - [Analysis Date] <> BLANK () - ) - RETURN - ADDCOLUMNS ( - baseData, - "Is Current Version", [Analysis Date] = MAXX ( baseData, [Analysis Date] ), - "Is Initial Version", [Analysis Date] = MINX ( baseData, [Analysis Date] ) - ) - - annotation PBI_Id = 25ffb15ee8fc45bf828951fe0d758d8b - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/COMPANY.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/COMPANY.tmdl deleted file mode 100644 index bd53f42397..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/COMPANY.tmdl +++ /dev/null @@ -1,26 +0,0 @@ -table COMPANY - isHidden - lineageTag: 004b5b9a-792f-4610-8f60-53d447a01056 - - column COMPANY - dataType: string - isHidden - lineageTag: d8745bdd-241f-4273-9fa8-aa847b0a7cff - summarizeBy: none - sourceColumn: COMPANY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition COMPANY = m - mode: import - queryGroup: 'Parameters and Functions\Connection Parameters' - source = "Cronus" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - - changedProperty = IsHidden - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Text - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Tec. Transformations.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Tec. Transformations.tmdl deleted file mode 100644 index 75e98ca991..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Tec. Transformations.tmdl +++ /dev/null @@ -1,50 +0,0 @@ -table 'Calc. Group - Tec. Transformations' - isHidden - lineageTag: b4013165-d40f-4a15-b723-412a6d9170e6 - - calculationGroup - - calculationItem 'Customer Contract by Analysis Date' = ``` - - calculate( - Calculate(SELECTEDMEASURE(), - 'Analysis Date'[Analysis Date] = max('Analysis Date'[Analysis Date]) - ) - ,USERELATIONSHIP('Dimension Sets'[dimensionSetID],'Customer Contract Line'[Dimension Set Id]) - ,USERELATIONSHIP('Date'[Date],'Analysis Date'[Analysis Date]) - ,crossfilter('Subscription'[Subscription Package Key],'Vendor Contract Line'[Subscription Package Key],both) ) - - ``` - - calculationItem 'Vendor Contract by Analysis Date' = ``` - - calculate( - Calculate(SELECTEDMEASURE(), - 'Analysis Date'[Analysis Date] = max('Analysis Date'[Analysis Date]) - ) - ,USERELATIONSHIP('Dimension Sets'[dimensionSetID],'Customer Contract Line'[Dimension Set Id]) - ,USERELATIONSHIP('Date'[Date],'Analysis Date'[Analysis Date]) - ,crossfilter('Subscription'[Subscription Package Key],'Customer Contract Line'[Subscription Package Key],both) ) - - ``` - - column 'calculation Type' - dataType: string - isHidden - lineageTag: f54085a1-6d5f-4204-b399-6d2515d9ba24 - summarizeBy: none - sourceColumn: Name - sortByColumn: Ordinal - - annotation SummarizationSetBy = Automatic - - column Ordinal - dataType: int64 - isHidden - formatString: 0 - lineageTag: cef47836-f11a-48e0-ba81-2320c58b2a0e - summarizeBy: sum - sourceColumn: Ordinal - - annotation SummarizationSetBy = Automatic - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl deleted file mode 100644 index 42e3ac9673..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl +++ /dev/null @@ -1,37 +0,0 @@ -table 'Calc. Group - Time Intelligence for Calendar (Fiscal)' - lineageTag: 472eaab7-d1a5-4024-a758-94a911af9808 - - calculationGroup - precedence: 100 - - calculationItem Periode = SELECTEDMEASURE() - - calculationItem PY = ``` - CALCULATE ( - SELECTEDMEASURE (), - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, YEAR ), - 'Date'[Data Range Analysis] = TRUE - ) - ) - - ``` - - column Perspective - dataType: string - lineageTag: eef633e2-ed98-4dbc-b435-63b87327198e - summarizeBy: none - sourceColumn: Name - sortByColumn: Ordinal - - annotation SummarizationSetBy = Automatic - - column Ordinal - dataType: int64 - isHidden - lineageTag: 781d1bb3-fbb6-4e4c-9427-eaa5a8de3bf1 - summarizeBy: sum - sourceColumn: Ordinal - - annotation SummarizationSetBy = Automatic - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Billing Forecast.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Billing Forecast.tmdl deleted file mode 100644 index 0fb63dde1a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Billing Forecast.tmdl +++ /dev/null @@ -1,109 +0,0 @@ -table 'Customer Billing Forecast' - isHidden - lineageTag: 275911b3-dd02-448d-a8c5-6912124ec22f - - column 'Customer Contract Line Key' - isHidden - lineageTag: efdbc5f6-5433-4c1b-8e53-e3914d5d20f6 - summarizeBy: none - isNameInferred - sourceColumn: [Customer Contract Line Key] - - annotation SummarizationSetBy = Automatic - - column 'Billing Date' - isHidden - formatString: Short Date - lineageTag: 6b3fc7a3-9ee9-4656-8399-6c625acc6d1d - summarizeBy: none - isNameInferred - sourceColumn: [Billing Date] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Billing Amount LCY' - isHidden - isAvailableInMdx: false - lineageTag: 78debf15-91a7-4f16-a75e-f72b623572a9 - summarizeBy: sum - isNameInferred - sourceColumn: [Billing Amount LCY] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Billing Amount UBB LCY' - isHidden - isAvailableInMdx: false - lineageTag: a27a73cf-2427-44b4-8195-7e3f7c57a4d8 - summarizeBy: sum - isNameInferred - sourceColumn: [Billing Amount UBB LCY] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - partition 'Customer Billing Forecast' = calculated - mode: import - source = ``` - - VAR currentAnalysisDate = - LOOKUPVALUE ( - 'Analysis Date'[Analysis Date], - 'Analysis Date'[is current Version], TRUE - ) - VAR baseContractLines = - FILTER ( - 'Customer Contract Line', - 'Customer Contract Line'[Analysis Date] = currentAnalysisDate // Dont use 'Customer Contract Line'[Is Latest Version], this is also true for the latest version of inactive / deleted contract lines - ) - VAR contractLines = - ADDCOLUMNS ( - baseContractLines, - "No. Of Bilings", - DIVIDE ( - DATEDIFF ( - 'Customer Contract Line'[Next Billing Date], - 'Customer Contract Line'[Forecast Until], - MONTH - ), - 'Customer Contract Line'[Billing Rhythm Months] - ) + 1 - ) - VAR resultTab = - GENERATE ( - contractLines, - ADDCOLUMNS ( - GENERATESERIES ( 0, [No. Of Bilings] - 1 ), - "Billing Date", - EDATE ( - 'Customer Contract Line'[Next Billing Date], - [Value] * 'Customer Contract Line'[Billing Rhythm Months] - ), - "Billing Amount LCY", - 'Customer Contract Line'[Monthly Recurring Revenue LCY] * 'Customer Contract Line'[Billing Rhythm Months], - "Billing Amount UBB LCY", - IF ( - 'Customer Contract Line'[Is Usage Based Billing] - && [Value] = 0, - 'Customer Contract Line'[Monthly Recurring Revenue LCY], - BLANK () - ) - ) - ) - RETURN - SELECTCOLUMNS ( - resultTab, - "Customer Contract Line Key", [Customer Contract Line Key], - "Billing Date", [Billing Date], - "Billing Amount LCY", [Billing Amount LCY], - "Billing Amount UBB LCY", [Billing Amount UBB LCY] - ) - ``` - - annotation PBI_Id = 73b699ecac224e13a63308498b914068 - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Changes.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Changes.tmdl deleted file mode 100644 index 5f44206d32..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Changes.tmdl +++ /dev/null @@ -1,175 +0,0 @@ -table 'Customer Contract Changes' - lineageTag: a52c7d2e-c3c5-4330-9695-131023bbf63e - - column 'Customer Contract Line Key' - lineageTag: 43a7ecaa-2e0d-4ca9-ae48-1eb7691f259b - summarizeBy: none - isNameInferred - sourceColumn: [Customer Contract Line Key] - - annotation SummarizationSetBy = Automatic - - column Date - formatString: General Date - lineageTag: 34d8f42d-2120-4d00-9756-07562cb6134a - summarizeBy: none - isNameInferred - sourceColumn: [Date] - - annotation SummarizationSetBy = Automatic - - column 'Change Type' - lineageTag: d78985d9-4abb-4c2c-8cef-a9df72b0c297 - summarizeBy: none - isNameInferred - sourceColumn: [Change Type] - - annotation SummarizationSetBy = Automatic - - column 'MRR Delta' - lineageTag: d5ed6ba1-e2b1-4a38-bc21-a8953119f31c - summarizeBy: sum - isNameInferred - sourceColumn: [MRR Delta] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - partition 'Customer Contract Changes' = calculated - mode: import - source = ``` - - VAR __base_Information = - ADDCOLUMNS ( - FILTER ( - 'Customer Contract Line', - 'Customer Contract Line'[Line Active] = TRUE - ), - "MMR Previous Month", - CALCULATE ( - SUM ( 'Customer Contract Line'[Monthly Recurring Revenue LCY] ), - ALLEXCEPT ( - 'Customer Contract Line', - 'Customer Contract Line'[Customer Contract Line No.], - 'Customer Contract Line'[Customer Contract No.], - 'Customer Contract Line'[Analysis Date] - ), - FILTER ( - ALLNOBLANKROW ( 'Customer Contract Line'[Line Active] ), - 'Customer Contract Line'[Line Active] = TRUE - ), - OFFSET ( - -1, - ALLNOBLANKROW ( 'Customer Contract Line'[Analysis Date] ), - ORDERBY ( [Analysis Date] ) - ) - ), - "Is Initial Version", RELATED ( 'Analysis Date'[is initial Version] ) - ) - VAR __addNewService = - ADDCOLUMNS ( - __base_Information, - "Is New Service", - IF ( - [is initial Version], - IF ( - EOMONTH ( [Subscription Start Date], 0 ) = EOMONTH ( [Analysis Date], 0 ), - TRUE, - FALSE - ), - IF ( ISBLANK ( [MMR Previous Month] ), TRUE, FALSE ) - ) - ) - VAR __add_MRR_Delta = - ADDCOLUMNS ( - __addNewService, - "MRR Delta", [Monthly Recurring Revenue LCY] - [MMR Previous Month] - ) - VAR __add_Change_Type = - ADDCOLUMNS ( - __Add_MRR_Delta, - "Change Type", - SWITCH ( - TRUE, - [Is New Service], "New", - [MRR Delta] <> 0 - && [Is Usage Based Billing], "UBB", - [MRR Delta] < 0, "Downgrade", - [MRR Delta] > 0, "Upgrade", - "None" - ) - ) //Values are not filtered to Change Type <> None to to display 0 values without enabling "show items without values" - VAR __result_changes = - SELECTCOLUMNS ( - __add_Change_Type, - "Customer Contract Line Key", [Customer Contract Line Key], - "Date", [Analysis Date], - "Change Type", [Change Type], - "MRR Delta", [MRR Delta] - ) - VAR __churn_base_Information = - ADDCOLUMNS ( - 'Customer Contract Line', - - "MMR Next Month", - CALCULATE ( - SUM ( 'Customer Contract Line'[Monthly Recurring Revenue LCY] ), - ALLEXCEPT ( - 'Customer Contract Line', - 'Customer Contract Line'[Customer Contract Line No.], - 'Customer Contract Line'[Customer Contract No.], - 'Customer Contract Line'[Analysis Date] - ), - FILTER ( - ALLNOBLANKROW ( 'Customer Contract Line'[Line Active] ), - 'Customer Contract Line'[Line Active] = TRUE - ), - OFFSET ( - 1, - ALLNOBLANKROW ( 'Customer Contract Line'[Analysis Date] ), - ORDERBY ( [Analysis Date] ) - ) - ), - "Is Current Version", RELATED ( 'Analysis Date'[Is Current Version] ), - "Is Initial Version", RELATED ( 'Analysis Date'[is initial Version] ) - ) - VAR __filter_is_churn = - FILTER ( - __churn_base_Information, - - ( - [Is Current Version] = FALSE - && [Line Active] = TRUE - && ISBLANK ( [MMR Next Month] ) - ) - || ( - [Line Active] = FALSE //Line is already inactice in the initial version endet in previous month - && [Is Initial Version] = True - && EOMONTH ( 'Customer Contract Line'[Subscription End Date], 1 ) - = EOMONTH ( 'Customer Contract Line'[Analysis Date], 0 ) - ) - ) - VAR __churn_add_Change_Type = - ADDCOLUMNS ( __filter_is_churn, "Change Type", "Churn" ) - VAR __churn_add_Date = - ADDCOLUMNS ( __churn_add_Change_Type, "Date", if([Is Initial Version] = True - , EDATE ( [Analysis Date], 0 ), //speciall case above: line is already inactive in the initial version and was cancelled in previous month, analysis date should not be shifted - EDATE ( [Analysis Date], 1 ) )) - VAR __churn_add_MRR_Delta = - ADDCOLUMNS ( __churn_add_Date, "MRR Delta", - [Monthly Recurring Revenue LCY] ) - VAR __result_churn = - SELECTCOLUMNS ( - __churn_add_MRR_Delta, - "Customer Contract Line Key", [Customer Contract Line Key], - "Date", [Date], - "Change Type", [Change Type], - "MRR Delta", [MRR Delta] - ) - RETURN - -- __result_changes - UNION ( __result_churn, __result_changes ) - ``` - - annotation PBI_Id = e106299b806b448e8bb02e3de664065f - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Deferrals.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Deferrals.tmdl deleted file mode 100644 index b8131e8d7d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Deferrals.tmdl +++ /dev/null @@ -1,200 +0,0 @@ -table 'Customer Contract Deferrals' - lineageTag: fe6c8954-df24-4726-8ad2-a5866e1c40aa - - column 'Contract No.' - dataType: string - isHidden - lineageTag: 961d38d9-add0-40bd-b66d-0c298d2032c7 - summarizeBy: none - sourceColumn: Contract No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Document Type' - dataType: string - lineageTag: e7a94cd6-62ae-4eeb-87d1-312c9e300d65 - summarizeBy: none - sourceColumn: Document Type - - annotation SummarizationSetBy = Automatic - - column 'Document No.' - dataType: string - lineageTag: e4c5ac4a-40a0-4a64-b3a9-54c2a3ab5dac - summarizeBy: none - sourceColumn: Document No. - - annotation SummarizationSetBy = Automatic - - column 'Is Released Key' - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: e511d3b3-7526-4fc0-90b1-4abaf4a9a67e - summarizeBy: none - sourceColumn: Is Released Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: 0c4a760b-5c65-4f4a-91b6-63732fe941fd - summarizeBy: none - sourceColumn: Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column Amount - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: 4dbb0663-9013-410e-abf0-9dbd423abec0 - summarizeBy: sum - sourceColumn: Amount - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Document Line No.' - dataType: int64 - formatString: 0 - lineageTag: 76247cb4-78b4-4873-ac7c-d51dc12c0e60 - summarizeBy: none - sourceColumn: Document Line No. - - annotation SummarizationSetBy = Automatic - - column 'Document Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: 01a68154-264b-4852-9d77-03cfd505e500 - summarizeBy: none - sourceColumn: Document Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Release Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: 26341214-5d76-46e2-a6f0-f1bc92011467 - summarizeBy: none - sourceColumn: Release Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'G LEntry No.' - dataType: int64 - formatString: 0 - lineageTag: cf1d949f-58b8-4478-a930-4669af0792ea - summarizeBy: none - sourceColumn: G LEntry No. - - annotation SummarizationSetBy = Automatic - - column Discount - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - isAvailableInMdx: false - lineageTag: 27a6636d-eb43-4a26-8810-4d0bb3b94b58 - summarizeBy: none - sourceColumn: Discount - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 127cface-4ac3-46de-b8e9-ad9fb147fd00 - summarizeBy: none - sourceColumn: Dimension Set ID - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Line Key' = - - VAR contractNo = 'Customer Contract Deferrals'[Contract No.] - VAR LineNo = 'Customer Contract Deferrals'[Contract Line No.] - RETURN - LOOKUPVALUE ( - 'Customer Contract Line'[Customer Contract Line Key], - 'Customer Contract Line'[Customer Contract No.], contractNo, - 'Customer Contract Line'[Customer Contract Line No.], LineNo, - 'Customer Contract Line'[Is Latest Version], TRUE - ) - isHidden - lineageTag: b5cdd570-7e36-4a1e-b207-2633ccaab20b - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Contract Line No.' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 9aaa6472-edc1-47cd-b2d7-de7be973a387 - summarizeBy: sum - sourceColumn: Contract Line No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Customer Contract Deferrals' = m - mode: import - queryGroup: 'Fact Tables' - source = ``` - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name = "customerContractDeferrals", Signature = "table"]}[Data], - #"Date Filter" = Table.SelectRows(TableData, each [postingDate] >= MinReportingDate), - #"Changed Type" = Table.TransformColumnTypes(#"Date Filter", {{"documentType", type text}}), - #"Removed Other Columns" = Table.SelectColumns( - #"Changed Type", - { - "contractNo", - "documentType", - "documentNo", - "released", - "postingDate", - "amount", - "documentLineNo", - "documentPostingDate", - "releasePostingDate", - "gLEntryNo", - "contractLineNo", - "discount", - "dimensionSetID" - } - ), - ConvertColumnNames = Table.TransformColumnNames(#"Removed Other Columns", fctImproveColumnNames), - #"Renamed Columns" = Table.RenameColumns(ConvertColumnNames, {{"Released", "Is Released Key"}}) - in - #"Renamed Columns" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Line.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Line.tmdl deleted file mode 100644 index 876b86e57f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract Line.tmdl +++ /dev/null @@ -1,490 +0,0 @@ -table 'Customer Contract Line' - lineageTag: 540f4568-d4e5-47d8-8c9c-1c4a21f3b091 - - column 'Subscription Line No.' - dataType: int64 - formatString: 0 - lineageTag: 629ee0a1-242f-480c-8cad-1ee6b0564776 - summarizeBy: sum - sourceColumn: Subscription Line No. - - annotation SummarizationSetBy = Automatic - - column Template - dataType: string - lineageTag: a74c0fa5-293b-43ca-b021-44b1fbec3e9e - summarizeBy: none - sourceColumn: Template - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Line Desc.' - dataType: string - lineageTag: 94516e49-8be0-446e-b47a-a5a15a4ea74c - summarizeBy: none - sourceColumn: Customer Contract Line Desc. - - annotation SummarizationSetBy = Automatic - - column 'Subscription Start Date' - dataType: dateTime - formatString: Short Date - lineageTag: 437d1962-af85-4a9d-a8b9-98756140762d - summarizeBy: none - sourceColumn: Subscription Start Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Subscription End Date' - dataType: dateTime - formatString: Short Date - lineageTag: 086f2e4d-7b22-46ff-a427-71eb4a65a0dd - summarizeBy: none - sourceColumn: Subscription End Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Next Billing Date' - dataType: dateTime - formatString: Short Date - lineageTag: 138b795c-d660-4555-8bb2-2dd928aa1fda - summarizeBy: none - sourceColumn: Next Billing Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Analysis Date' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 7a69330f-6251-4009-b1ff-1f6b46cd7402 - summarizeBy: none - sourceColumn: Analysis Date - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Billing Base Period' - dataType: string - lineageTag: be9102bd-a8f2-4fd7-9da1-dd5b21c8a239 - summarizeBy: none - sourceColumn: Billing Base Period - - annotation SummarizationSetBy = Automatic - - column 'Invoicing Item No.' - dataType: string - lineageTag: 7a12c532-b0a2-42fb-ab5c-3d9acf805db6 - summarizeBy: none - sourceColumn: Invoicing Item No. - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Line No.' - dataType: int64 - formatString: 0 - lineageTag: 3b5bcb86-b76f-4168-bba6-a6c5884310e8 - summarizeBy: sum - sourceColumn: Customer Contract Line No. - - annotation SummarizationSetBy = Automatic - - column 'Notice Period' - dataType: string - lineageTag: cb0e9a7e-5be0-4015-bdff-d7bcd0650ee2 - summarizeBy: none - sourceColumn: Notice Period - - annotation SummarizationSetBy = Automatic - - column 'Initial Term' - dataType: string - lineageTag: e4bc9b8a-0c86-46da-9e95-8b0cf4a5c903 - summarizeBy: none - sourceColumn: Initial Term - - annotation SummarizationSetBy = Automatic - - column 'Extension Term' - dataType: string - lineageTag: 67cb45bf-50df-491e-addb-baf97bbb3f51 - summarizeBy: none - sourceColumn: Extension Term - - annotation SummarizationSetBy = Automatic - - column 'Billing Rhythm' - dataType: string - lineageTag: bfefd601-679a-441f-878b-8a44febbd08f - summarizeBy: none - sourceColumn: Billing Rhythm - - annotation SummarizationSetBy = Automatic - - column 'Cancellation Possible Until' - dataType: dateTime - formatString: Short Date - lineageTag: 3853a6b4-f848-4ba4-83bc-41028ea51311 - summarizeBy: none - sourceColumn: Cancellation Possible Until - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Term Until' - dataType: dateTime - formatString: Short Date - lineageTag: 464c8bde-198f-47e2-904a-7006e5a092a7 - summarizeBy: none - sourceColumn: Term Until - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column Quantity - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: 45abeee7-981c-4a5f-b2ce-080f487e4a67 - summarizeBy: sum - sourceColumn: Quantity - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Renewal Term' - dataType: string - lineageTag: 182f5d6d-5552-4f96-a2f8-932aa81d7c7e - summarizeBy: none - sourceColumn: Renewal Term - - annotation SummarizationSetBy = Automatic - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - isAvailableInMdx: false - lineageTag: 3e8cf3c7-8f78-45a4-b9ac-745f5117cf88 - summarizeBy: count - sourceColumn: Dimension Set ID - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Line Active' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: d27f2e97-a9e3-48fb-8bd2-4a2b45f84862 - summarizeBy: none - sourceColumn: Line Active - - annotation SummarizationSetBy = Automatic - - column 'Duration Start Date' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 510e6836-7c6e-4dff-affe-63ae3b1547da - summarizeBy: none - sourceColumn: Duration Start Date - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Remaining Term Months' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 87efc619-c187-46de-b955-ba40f3c7a91f - summarizeBy: sum - sourceColumn: Remaining Term Months - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Remaining Term' - dataType: string - lineageTag: da552f9a-4ca2-48a8-80cc-c316b3ef6dc8 - summarizeBy: none - sourceColumn: Remaining Term - - annotation SummarizationSetBy = Automatic - - column 'Forecast Until' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: aaa4aaa8-da71-4874-b185-d4d4961bbf3b - summarizeBy: none - sourceColumn: Forecast Until - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Billing Rhythm Months' - dataType: int64 - formatString: 0 - lineageTag: ccfb9c91-33d0-431c-a603-74d29500478c - summarizeBy: sum - sourceColumn: Billing Rhythm Months - - annotation SummarizationSetBy = Automatic - - column 'Total Contract Value LCY' - dataType: double - isHidden - lineageTag: b41a3724-63b7-43c4-a69e-66ca2076c6b5 - summarizeBy: sum - sourceColumn: Total Contract Value LCY - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Total Contract Value UBB LCY' - dataType: double - isHidden - lineageTag: 24a8c46f-fc5c-4555-b60c-e6c68fd4012d - summarizeBy: sum - sourceColumn: Total Contract Value UBB LCY - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Annual Recurring Revenue LCY' - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: fa0ded71-1fc9-40aa-bcaa-e5892f1fb90d - summarizeBy: sum - sourceColumn: Annual Recurring Revenue LCY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Annual Recurring Revenue UBB LCY' - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: 3cf799f8-5251-4c54-b5dd-5595d6c3d1f4 - summarizeBy: sum - sourceColumn: Annual Recurring Revenue UBB LCY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Monthly Recurring Revenue LCY' - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: c1a9c296-6a4a-4ed6-8bb5-ee25a76ed9d7 - summarizeBy: sum - sourceColumn: Monthly Recurring Revenue LCY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Customer No.' - dataType: string - isHidden - lineageTag: 6a75155b-fe27-48c6-98d5-deaf40804672 - summarizeBy: none - sourceColumn: Customer No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract No.' - dataType: string - lineageTag: 8780ef1b-a766-4410-a222-14b42bb69d45 - summarizeBy: none - sourceColumn: Customer Contract No. - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Line Key' - dataType: string - isHidden - isKey - lineageTag: 6e4604b2-a36c-4007-a824-9351abc9a962 - summarizeBy: none - sourceColumn: Customer Contract Line Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Is Latest Version' = ``` - - calculate(max('Customer Contract Line'[Analysis Date]) - ,ALLEXCEPT('Customer Contract Line','Customer Contract Line'[Customer Contract Line No.],'Customer Contract Line'[Customer Contract No.]) - ) - = 'Customer Contract Line'[Analysis Date] - ``` - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 073eb683-43e1-4114-876b-3bcf483d1164 - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Is Usage Based Billing' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 09ddd484-4371-4e38-8b41-a86d555c982f - summarizeBy: none - sourceColumn: Is Usage Based Billing - - annotation SummarizationSetBy = Automatic - - column 'Subscription Package Key' - dataType: string - isHidden - lineageTag: b4464f92-fd36-4b77-a576-f2e01b63d2e3 - summarizeBy: none - sourceColumn: Subscription Package Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Source Type' - dataType: string - lineageTag: 53bbef46-039e-4881-8b85-6856cbbb3cba - summarizeBy: none - sourceColumn: Source Type - - annotation SummarizationSetBy = Automatic - - column 'Source No.' - dataType: string - lineageTag: 5106eee8-6b17-416b-93cf-b1cd300d9445 - summarizeBy: none - sourceColumn: Source No. - - annotation SummarizationSetBy = Automatic - - column 'Item No.' - dataType: string - isHidden - lineageTag: 701b05a5-36f9-4323-baab-2eb992edcf63 - summarizeBy: none - sourceColumn: Item No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Customer Contract Line' = m - mode: import - queryGroup: 'Fact Tables' - source = ``` - let - Source = ContractLineBase, - #"Filtered Rows" = Table.SelectRows(Source, each ([partner] = "Customer")), - #"AddTVCPeriods" = Table.AddColumn( - #"Filtered Rows", - "TVC Periods", - each - if [serviceEndDate] <> null then - fncPeriodsBetween([#"Duration Start Date"], [serviceEndDate]) - else if [termUntil] <> null then - fncPeriodsBetween([#"Duration Start Date"], [termUntil]) - else - #"Default Contract Term", - type number - ), - AddTotalContractValueLCY = Table.AddColumn( - AddTVCPeriods, - "Total Contract Value LCY", - each if [TVC Periods] <= 0 then 0 else [TVC Periods] * [monthlyRecurringRevenueLCY], - type number - ), - AddTotalContractValueUBBLCY = Table.AddColumn( - AddTotalContractValueLCY, - "Total Contract Value UBB LCY", - each if [usageBasedBilling] = false then null // Calculate only for UBB - else if [TVC Periods] <= 1 then [Total Contract Value LCY] //UBB Value can not exceed non UBB - else [monthlyRecurringRevenueLCY], - type number - ), - #"AddARRPeriods" = Table.AddColumn( - AddTotalContractValueUBBLCY, - "ARR Periods", - each - if [Line Active] = false then - 0 - else if [serviceEndDate] - <> null - and [serviceEndDate] < Date.AddMonths([#"Duration Start Date"], 12) - then - fncPeriodsBetween([#"Duration Start Date"], [serviceEndDate]) - else - 12, - type number - ), - AddAnnualRecurringRevenueLCY = Table.AddColumn( - AddARRPeriods, - "Annual Recurring Revenue LCY", - each [ARR Periods] * [monthlyRecurringRevenueLCY], - type number - ), - AddAnnualRecurringRevenueUBBLCY = Table.AddColumn( - AddAnnualRecurringRevenueLCY, - "Annual Recurring Revenue UBB LCY", - each - if [usageBasedBilling] = false then - null // Calculate only for UBB - else if [ARR Periods] <= 1 then - [Annual Recurring Revenue LCY] //UBB Value can not exceed non UBB - else - [monthlyRecurringRevenueLCY], - type number - ), - #"Removed Other Columns" = Table.SelectColumns(AddAnnualRecurringRevenueUBBLCY,{"serviceObjectSourceType", "serviceObjectSourceNo", "serviceCommitmentLineNo", "template", "description", "serviceStartDate", "serviceEndDate", "nextBillingDate", "analysisDate", "monthlyRecurringRevenueLCY", "billingBasePeriod", "invoicingItemNo", "partnerNo", "contractNo", "contractLineNo", "noticePeriod", "initialTerm", "extensionTerm", "billingRhythm", "cancellationPossibleUntil", "termUntil", "quantityDecimal", "renewalTerm", "dimensionSetID", "usageBasedBilling", "Subscription Package Key", "Item No.", "Contract Line Key", "Line Active", "Duration Start Date", "Remaining Term Months", "Remaining Term", "Forecast Until", "Billing Rhythm Months", "Total Contract Value LCY", "Total Contract Value UBB LCY", "Annual Recurring Revenue LCY", "Annual Recurring Revenue UBB LCY"}), - ConvertColumnNames = Table.TransformColumnNames(#"Removed Other Columns", fctImproveColumnNames), - #"Renamed Columns2" = Table.RenameColumns(ConvertColumnNames,{{"Description", "Customer Contract Line Desc."}, {"Contract Line No.", "Customer Contract Line No."}, {"Service Commitment Line No.", "Subscription Line No."}, {"Contract No.", "Customer Contract No."}, {"Partner No.", "Customer No."}, {"Contract Line Key", "Customer Contract Line Key"}, {"Usage Based Billing", "Is Usage Based Billing"}, {"Quantity Decimal", "Quantity"}, {"Service End Date", "Subscription End Date"}, {"Service Start Date", "Subscription Start Date"},{"Service Object Source Type", "Source Type"}, {"Service Object Source No.", "Source No."}}) - in - #"Renamed Columns2" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract.tmdl deleted file mode 100644 index ab0b77eccc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customer Contract.tmdl +++ /dev/null @@ -1,65 +0,0 @@ -table 'Customer Contract' - lineageTag: b748c247-65fd-49d8-93a8-6221ddd88c2e - - column 'Customer Contract No.' - dataType: string - isKey - lineageTag: 3e6ba627-9755-49e3-b41e-7b1a77dfdf37 - summarizeBy: none - sourceColumn: Customer Contract No. - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Type' - dataType: string - lineageTag: 5e2f6832-7830-452f-b32e-95cb61f2821b - summarizeBy: none - sourceColumn: Customer Contract Type - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract Description' - dataType: string - lineageTag: 386570cf-eb0c-418c-aa1e-692ae34c0489 - summarizeBy: none - sourceColumn: Customer Contract Description - - annotation SummarizationSetBy = Automatic - - column 'Customer Contract No. Desc.' - dataType: string - lineageTag: 68f8dc9b-ac46-47bc-b60f-64e52a4fdf65 - summarizeBy: none - sourceColumn: Customer Contract No. Desc. - - annotation SummarizationSetBy = Automatic - - column 'Salesperson Code' - dataType: string - isHidden - lineageTag: a41ff40b-a319-41e5-a6f1-4c86e69c6aa2 - summarizeBy: none - sourceColumn: Salesperson Code - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Customer Contract' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name="customerContracts",Signature="table"]}[Data], - - #"Removed Other Columns" = Table.SelectColumns(TableData,{"no", "salespersonCode", "contractType", "descriptionPreview"}), - #"Added No.Name" = Table.AddColumn( #"Removed Other Columns", "Customer Contract No. Desc.", each [no] & ": " & [descriptionPreview], type text), - #"Renamed Columns" = Table.RenameColumns(#"Added No.Name",{{"contractType", "Customer Contract Type"}, {"descriptionPreview", "Customer Contract Description"}, {"no", "Customer Contract No."}, {"salespersonCode", "Salesperson Code"}}) - in - #"Renamed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customers.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customers.tmdl deleted file mode 100644 index aaee47fa98..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Customers.tmdl +++ /dev/null @@ -1,142 +0,0 @@ -table Customers - lineageTag: d55409c9-b7e4-40a4-9297-5905ff1fb1d6 - - column 'Customer No.' - dataType: string - isKey - lineageTag: 885a8763-e16e-4cd6-bf80-97a1a3b238e5 - summarizeBy: none - sourceColumn: Customer No. - - annotation SummarizationSetBy = Automatic - - column 'Customer Name' - dataType: string - lineageTag: 765e0664-28ad-47e3-ab5a-3acfac3fe5ac - summarizeBy: none - sourceColumn: Customer Name - - annotation SummarizationSetBy = Automatic - - column Address - dataType: string - lineageTag: b1ce4028-11a7-499a-b882-d21202008c79 - summarizeBy: none - sourceColumn: Address - - annotation SummarizationSetBy = Automatic - - column 'Address 2' - dataType: string - lineageTag: c990380f-0bd9-456e-a73d-5b2d3d31c0ef - summarizeBy: none - sourceColumn: Address 2 - - annotation SummarizationSetBy = Automatic - - column City - dataType: string - lineageTag: 507ad0ee-0bd2-4956-9150-ecf5afec66ae - dataCategory: City - summarizeBy: none - sourceColumn: City - - annotation SummarizationSetBy = Automatic - - column 'Post Code' - dataType: string - lineageTag: 7ec4924a-cfaf-480a-8995-8907f85c1cc5 - summarizeBy: none - sourceColumn: Post Code - - annotation SummarizationSetBy = Automatic - - column State - dataType: string - lineageTag: b92000a3-0df4-436d-8e63-712bd0812091 - summarizeBy: none - sourceColumn: State - - annotation SummarizationSetBy = Automatic - - column 'Country/Region Code' - dataType: string - lineageTag: 09becb91-bbb5-4a78-b570-7cb46a4e79fe - dataCategory: Country - summarizeBy: none - sourceColumn: Country/Region Code - - annotation SummarizationSetBy = Automatic - - column 'Customer Posting Group' - dataType: string - lineageTag: 7d11d0b8-25e1-45be-96c1-5a7ae99fd36f - summarizeBy: none - sourceColumn: Customer Posting Group - - annotation SummarizationSetBy = Automatic - - column 'Customer Price Group' - dataType: string - lineageTag: 53e6ca0b-ea85-4edd-920f-152548126eac - summarizeBy: none - sourceColumn: Customer Price Group - - annotation SummarizationSetBy = Automatic - - column 'Customer Discount Group' - dataType: string - lineageTag: 4eac39c3-f6fd-4e93-a4e9-a1208465d2bb - summarizeBy: none - sourceColumn: Customer Discount Group - - annotation SummarizationSetBy = Automatic - - column 'Customer No. & Name' - dataType: string - lineageTag: 37d951da-649d-47c2-803a-343fbdae9f5d - summarizeBy: none - sourceColumn: Customer No. & Name - - annotation SummarizationSetBy = Automatic - - partition Customers-98691bd9-6683-4714-828a-3730fe10fdcb = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="customers",Signature="table"]}[Data], - #"Removed Columns" = Table.RemoveColumns(TableData, {"ETag"}), - #"Changed Type" = Table.TransformColumnTypes(#"Removed Columns",{{"customerNo", type text}, {"customerName", type text}, {"address", type text}, {"address2", type text}, {"city", type text}, {"postCode", type text}, {"county", type text}, {"countryRegionCode", type text}, {"customerPostingGroup", type text}, {"customerPriceGroup", type text}, {"customerDiscGroup", type text}}), - #"Renamed Columns" = Table.RenameColumns( - #"Changed Type", - { - {"customerNo", "Customer No."}, - {"customerName", "Customer Name"}, - {"address", "Address"}, - {"address2", "Address 2"}, - {"postCode", "Post Code"}, - {"city", "City"}, - {"countryRegionCode", "Country/Region Code"} - } - ), - #"Added Custom" = Table.AddColumn( - #"Renamed Columns", "Customer No. & Name", each [#"Customer No."] & " " & [Customer Name], type text - ), - #"Renamed Columns1" = Table.RenameColumns( - #"Added Custom", - { - {"customerDiscGroup", "Customer Discount Group"}, - {"customerPostingGroup", "Customer Posting Group"}, - {"customerPriceGroup", "Customer Price Group"}, - {"county", "State"} - } - ) - in - #"Renamed Columns1" - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Ref.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Ref.tmdl deleted file mode 100644 index a124e2ca71..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Ref.tmdl +++ /dev/null @@ -1,2866 +0,0 @@ -table 'Date Ref' - isHidden - lineageTag: a4c43a16-3071-4a40-ba44-570be33b216b - dataCategory: Time - - measure ShowValueForDates = - - CALCULATE(COUNTROWS('Date'),'Date'[Data Range Analysis])>0 - formatString: """TRUE"";""TRUE"";""FALSE""" - isHidden - lineageTag: adc06805-5b13-45af-b298-3fc6f11c0e43 - - changedProperty = IsHidden - - measure 'Current Date Range' = "Current Date Range: " & FIRSTDATE('Date Ref'[Date]) & " .. " & LASTDATE('Date Ref'[Date]) - isHidden - lineageTag: 75d54c63-1447-4564-a478-5da8b014f91a - - changedProperty = IsHidden - - column Date - isHidden - isKey - formatString: Short Date - lineageTag: 2bbc3c34-8fbb-43d5-b1aa-daaef4e219fd - summarizeBy: none - isNameInferred - sourceColumn: [Date] - - changedProperty = DataType - - changedProperty = FormatString - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column DateKey - isHidden - formatString: 0 - lineageTag: 06ab21ff-ae2b-46f3-8c30-997b040a562f - summarizeBy: count - isNameInferred - sourceColumn: [DateKey] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Day of Month' - isHidden - formatString: 0 - lineageTag: 8dbfdf38-d0e9-4c76-b5b0-a634fa94f943 - summarizeBy: sum - isNameInferred - sourceColumn: [Day of Month] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column WeekDayNumber - isHidden - formatString: 0 - lineageTag: a67086bf-fd58-49ab-9bc0-738d18394d32 - summarizeBy: sum - isNameInferred - sourceColumn: [WeekDayNumber] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Week Day' - isHidden - lineageTag: 1f8f2b4a-bd5b-4c19-90b8-8d0aab109478 - summarizeBy: none - isNameInferred - sourceColumn: [Week Day] - sortByColumn: WeekDayNumber - - changedProperty = SortByColumn - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Holiday Name' - isHidden - lineageTag: 8dd9bf85-6701-4373-bd31-c61dbb46fdf9 - summarizeBy: none - isNameInferred - sourceColumn: [Holiday Name] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column IsWorkingDay - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 0ce9e2d6-98bc-4698-9a01-36776c38ab87 - summarizeBy: none - isNameInferred - sourceColumn: [IsWorkingDay] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Day Type' - isHidden - lineageTag: 4a400d2e-c05c-4447-967d-45bc54f6e913 - summarizeBy: none - isNameInferred - sourceColumn: [Day Type] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Data Range Analysis' = ``` - - VAR - MinDate = min('Analysis Date'[Analysis Date]) - VAR - MaxDate = Max('Analysis Date'[Analysis Date]) - Return - EOMONTH('Date Ref'[Date],0) >= eomonth(MinDate,0) && - EOMONTH('Date Ref'[Date],0) <= eomonth(MaxDate,0) - - ``` - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: ff8ffd34-286f-4996-ab13-48278d54059e - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearNumber' - isHidden - formatString: 0 - lineageTag: ef7b1d9c-b0be-48f5-ae23-08838c6dbb48 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Year' - isHidden - lineageTag: bd0f3d3f-095c-4055-912a-5f0410aff3e6 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterNumber' - isHidden - lineageTag: 549dc900-ebd5-4487-90c1-f48ca74700c5 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter' - isHidden - lineageTag: 38bdfc43-2c93-48b7-9df6-7b2c1706024d - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Quarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearQuarterNumber' - isHidden - lineageTag: 7031d9fc-85e9-435c-a019-fd714241ee3c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter Year' - isHidden - lineageTag: 61a5df58-d3bb-4729-995c-d192c0320f43 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthNumber' - isHidden - formatString: 0 - lineageTag: 58e49b69-1ef3-4066-9a49-470be0e4b606 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month' - isHidden - lineageTag: 316f6b3f-a5f8-47b2-a76b-164186328643 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Month] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 0959737a-0014-4d21-a7be-b67803615ae6 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month Year' - isHidden - lineageTag: 9068816f-8a8b-4eeb-9dc3-89d6ed9b18dc - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Month Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekNumber' - isHidden - formatString: 0 - lineageTag: 05cc1398-82e3-4d2c-b12d-e3aab8de7b84 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week' - isHidden - lineageTag: b31f07a8-38e3-408f-894d-8b3bd3993860 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Week] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearWeekNumber' - isHidden - formatString: 0 - lineageTag: b6198754-2be5-4e78-a7ec-372138cc46df - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week Year' - isHidden - lineageTag: 43d111f2-bb43-4533-8e64-c8460325eeb5 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Week Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekYearOrder' - isHidden - formatString: 0 - lineageTag: 19773601-9ef8-4a9f-9d35-ccc022dbd916 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Calendar RelativeWeekPos' - isHidden - lineageTag: dde24949-baac-48ac-81be-40d8e8f3ef91 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeMonthPos' - isHidden - lineageTag: d0dae596-61c8-4761-a329-d2435bc65739 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeQuarterPos' - isHidden - lineageTag: 75f7de36-78c9-4efe-9d93-fdab710d107b - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeYearPos' - isHidden - lineageTag: 79fba4fa-2306-40c8-87b7-52317485aa7c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar StartOfMonth' - isHidden - formatString: Short Date - lineageTag: 9ab5a7bd-3028-4369-bc6a-f629b923b1cd - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfMonth' - isHidden - formatString: Short Date - lineageTag: c7da01f6-f1d6-4e73-ae06-32e10e32c011 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfQuarter' - isHidden - formatString: Short Date - lineageTag: ac699e69-5405-4af6-91f2-8effb25c98f9 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfQuarter' - isHidden - formatString: Short Date - lineageTag: 336fa715-5507-4154-97f6-4636b2c4ccb9 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfYear' - isHidden - formatString: Short Date - lineageTag: fa71a538-7f62-4eb8-8358-47c7e14ad18a - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfYear' - isHidden - formatString: Short Date - lineageTag: ba74cfd4-28e2-430c-a96f-ec9856d79681 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthDays' - isHidden - formatString: 0 - lineageTag: e2c89387-780b-439d-8072-0ed4df890933 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterDays' - isHidden - formatString: 0 - lineageTag: 09819e16-a4b0-4604-bb63-1abcfaacb735 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearDays' - isHidden - formatString: 0 - lineageTag: 5e5bbd97-3f1e-46f3-92ab-6147b55bfd76 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: f32ba97b-2da7-49cf-a828-89fd323c1cd4 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: ebb93534-d5f8-47a0-9084-e92bb16b23fc - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 149b3927-3744-4af8-876a-1179f15bad8c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousWeek' - isHidden - formatString: Short Date - lineageTag: bba58cdf-6ea2-416b-8662-32d64a3e7d56 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousMonth' - isHidden - formatString: Short Date - lineageTag: 87ee7208-9bde-406e-9d9c-3a552666eb9c - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousQuarter' - isHidden - formatString: Short Date - lineageTag: cc5a6bb2-44c4-439b-8b1a-7e9668a1f2fd - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousYear' - isHidden - formatString: Short Date - lineageTag: 6a45bbfd-7302-44e5-9c41-340bda7886e0 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Year' - isHidden - lineageTag: 247c3551-dc03-4258-a2e0-3373d7824994 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearNumber' - isHidden - formatString: 0 - lineageTag: c0371eba-b8af-4a40-9af4-cac328835a6e - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterNumber' - isHidden - lineageTag: fd81a129-7b48-4701-a4c4-750b52d1fbfe - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter' - isHidden - lineageTag: 93ccdf3a-4738-4f26-9835-3d9ae2b78088 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Quarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearQuarterNumber' - isHidden - lineageTag: 7581d083-164d-4d46-b09a-7bb84ffdf7d7 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter Year' - isHidden - lineageTag: 04f82a95-3e17-4152-8cd0-fc6f74ba669a - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthNumber' - isHidden - formatString: 0 - lineageTag: 8f9a4c68-6c13-4153-b367-f99982602af8 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthInQuarterNumber' - isHidden - formatString: 0 - lineageTag: 1f9ccca5-8bd4-4c8c-86a7-b06d9d7ddda1 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthInQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month' - isHidden - lineageTag: ac4b4ef2-b735-4a91-8e53-5f3ec42eb96b - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Month] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 819587fd-7dc9-4578-b38f-37db03ad8a20 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month Year' - isHidden - lineageTag: 4b88baba-b33c-4418-873f-39607ea030d9 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Month Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekNumber' - isHidden - formatString: 0 - lineageTag: 0dff40ba-b78d-4577-989e-0b65b6b09ef8 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week' - isHidden - lineageTag: 26dde602-47d9-4ca3-bc96-dee118152bbf - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Week] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearWeekNumber' - isHidden - formatString: 0 - lineageTag: ec2c915b-e3d6-4639-b5aa-3c7d0c7f3e15 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week Year' - isHidden - lineageTag: 472cee3e-3123-480a-94e9-64a053646aa5 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Week Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekYearOrder' - isHidden - formatString: 0 - lineageTag: c01e8935-3f87-4bf6-bbb3-e9831eacea53 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal RelativeWeekPos' - isHidden - lineageTag: 0762f819-ea88-49f6-bf2c-a1c4abc5d61b - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeMonthPos' - isHidden - lineageTag: e6b300eb-e6e7-4269-84f2-f31cfea7c594 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeQuarterPos' - isHidden - lineageTag: e4b5ca99-18ba-449b-bf02-6ba595a348bb - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeYearPos' - isHidden - lineageTag: df90b375-fd83-4156-800f-80732ae980c2 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal StartOfMonth' - isHidden - formatString: Short Date - lineageTag: 6c421b26-2101-46d7-9983-122860d39f8b - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfMonth' - isHidden - formatString: Short Date - lineageTag: 06038d6e-4335-4333-8ae4-a111c2cb1351 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfQuarter' - isHidden - formatString: Short Date - lineageTag: 3f1d2511-1fac-48cd-85f5-79c04fd4042d - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfQuarter' - isHidden - formatString: Short Date - lineageTag: 30f11a71-96a8-49f7-b6c3-b036fbb0a1d3 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfYear' - isHidden - formatString: Short Date - lineageTag: a03e418b-bf2f-4ba7-aab1-49c233129581 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfYear' - isHidden - formatString: Short Date - lineageTag: ac1e6d22-569f-4930-8350-eab8d97cd203 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthDays' - isHidden - formatString: 0 - lineageTag: e6c92183-8ab5-45b3-b31b-8a2fc08fc3fa - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterDays' - isHidden - formatString: 0 - lineageTag: 4900d436-89bd-4c2b-9249-47fa4d616954 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearDays' - isHidden - formatString: 0 - lineageTag: 540cd2c0-aa7e-4bc5-8b23-176f168088e5 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: b2e64002-584f-4361-afe1-9a3344529ff0 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: 31d08eaf-4348-4b78-adec-dcaaf3230768 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 9ba27de7-0b8d-4dd9-a7af-f07dcac0e71e - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousWeek' - isHidden - formatString: Short Date - lineageTag: 7fd5c588-f9f0-4c9c-adc6-3a81acc90873 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousMonth' - isHidden - formatString: Short Date - lineageTag: 355bb33d-cb89-45d2-8cdb-aa46a118166a - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousQuarter' - isHidden - formatString: Short Date - lineageTag: 5f8780eb-53e8-492c-b08b-4a75e41ee8a1 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousYear' - isHidden - formatString: Short Date - lineageTag: ea0b214f-3c85-4b8d-ba60-957f6e7545e2 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'FW YearNumber' - isHidden - formatString: 0 - lineageTag: cbf7a1ae-5796-43ba-a05c-3e6064f645e8 - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Year' - isHidden - lineageTag: 630bbb76-857e-46f7-bdea-7c35dc97b163 - summarizeBy: none - isNameInferred - sourceColumn: [FW Year] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterNumber' - isHidden - lineageTag: b8d0529a-d0e9-47b4-bf2f-60cb08f01a6f - summarizeBy: sum - isNameInferred - sourceColumn: [FW QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter' - isHidden - lineageTag: 952e537b-bc95-4ac2-98e0-2e7d9b6ada3c - summarizeBy: none - isNameInferred - sourceColumn: [FW Quarter] - - annotation SummarizationSetBy = Automatic - - column 'FW YearQuarterNumber' - isHidden - lineageTag: 2f9fa70a-e141-4346-aac6-4a3c3642dc75 - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter Year' - isHidden - lineageTag: a838e2cd-6b14-4b6d-908c-ca6cd14f2a23 - summarizeBy: none - isNameInferred - sourceColumn: [FW Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthNumber' - isHidden - lineageTag: 27bf0749-44f2-4f69-a042-4d3bd9fc1132 - summarizeBy: sum - isNameInferred - sourceColumn: [FW MonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month' - isHidden - lineageTag: 95e3de3c-f808-4e10-9961-f97b42c142fb - summarizeBy: none - isNameInferred - sourceColumn: [FW Month] - - annotation SummarizationSetBy = Automatic - - column 'FW YearMonthNumber' - isHidden - lineageTag: 5778bde1-e3a9-43d7-9c8a-e38b8880893e - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month Year' - isHidden - lineageTag: 0944fbcb-8660-40e7-9162-912790936fa5 - summarizeBy: none - isNameInferred - sourceColumn: [FW Month Year] - - annotation SummarizationSetBy = Automatic - - column 'FW WeekNumber' - isHidden - formatString: 0 - lineageTag: e7aa325a-1f4a-4a87-9cd1-444779be556b - summarizeBy: sum - isNameInferred - sourceColumn: [FW WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week' - isHidden - lineageTag: 4a3e6cda-7b44-46ff-81f2-2e1a934b534b - summarizeBy: none - isNameInferred - sourceColumn: [FW Week] - - annotation SummarizationSetBy = Automatic - - column 'FW PeriodNumber' - isHidden - lineageTag: 8b43f926-a86c-481f-a2fc-3e2c7c20b89b - summarizeBy: sum - isNameInferred - sourceColumn: [FW PeriodNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Period' - isHidden - lineageTag: 0aeb813d-6d08-4747-9619-1471f016da98 - summarizeBy: none - isNameInferred - sourceColumn: [FW Period] - - annotation SummarizationSetBy = Automatic - - column 'FW YearWeekNumber' - isHidden - formatString: 0 - lineageTag: 32da3b8b-82ff-4d28-ab04-cb2d1157277d - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week Year' - isHidden - lineageTag: 1f423f64-7510-4596-ac2c-a59d0f3b0b0d - summarizeBy: none - isNameInferred - sourceColumn: [FW Week Year] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfWeek' - isHidden - formatString: Short Date - lineageTag: e10ddd6a-1f1b-4ad1-9be2-4343b7623d5f - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfWeek' - isHidden - formatString: Short Date - lineageTag: c6e35452-6a1c-4f77-bc07-3f691507317e - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW RelativeWeekPos' - isHidden - lineageTag: 81483dd5-9758-4e0d-be34-4b5a1c67bd8b - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeMonthPos' - isHidden - lineageTag: 51ce3ca8-b205-4b7a-a411-685cc6920ba1 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeQuarterPos' - isHidden - lineageTag: 9984d835-5170-4f5c-8eb8-8535c9c87c81 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeYearPos' - isHidden - lineageTag: 14738b53-3e0d-42ee-a619-4013be60f4a3 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW StartOfMonth' - isHidden - formatString: Short Date - lineageTag: 031d0594-a5e3-42f8-9e62-6fab59a5b18e - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfMonth' - isHidden - formatString: Short Date - lineageTag: 4a087d5e-5d2f-4bbd-bcc9-11e70377c82d - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfQuarter' - isHidden - formatString: Short Date - lineageTag: 549daede-8ed7-47ca-baf7-22142cd55965 - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfQuarter' - isHidden - formatString: Short Date - lineageTag: 74f623b4-8c4e-4168-aea7-4880556d5472 - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfYear' - isHidden - formatString: Short Date - lineageTag: b3693736-a90c-484e-97af-dde2d6df788c - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfYear' - isHidden - formatString: Short Date - lineageTag: ddfc1074-f083-4ff2-bc1d-121c3364d892 - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthDays' - isHidden - formatString: 0 - lineageTag: 21849620-f077-4b21-849d-76f86cf7dcdf - summarizeBy: sum - isNameInferred - sourceColumn: [FW MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterDays' - isHidden - formatString: 0 - lineageTag: 4ee3648c-f5cf-43c3-9029-065b597b2206 - summarizeBy: sum - isNameInferred - sourceColumn: [FW QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'FW YearDays' - isHidden - formatString: 0 - lineageTag: 972b026d-6b92-4515-b2fb-3edc06070c8a - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearDays] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: 415c4151-010d-42be-aa7a-9442524d6361 - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: 7877920b-94b4-45e8-9a98-b3497dfc1c63 - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 40f789d2-ebcd-42b9-bf16-2270cd61a60a - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousWeek' - isHidden - formatString: Short Date - lineageTag: 183ddc03-f98a-4945-a55b-0bd660e92f77 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousMonth' - isHidden - formatString: Short Date - lineageTag: 4c1cdcda-0408-4607-9e06-432aed827a44 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousQuarter' - isHidden - formatString: Short Date - lineageTag: af0cfe5e-2dfd-4b02-932d-757f36ad1ab3 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousYear' - isHidden - formatString: Short Date - lineageTag: 3902fc78-91ea-4ad0-84a3-f4d1239de85c - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Relative Day' - formatString: 0 - lineageTag: 1b6b5166-75b4-4106-a11c-3b9323408f5e - summarizeBy: sum - isNameInferred - sourceColumn: [Relative Day] - - annotation SummarizationSetBy = Automatic - - column Sequential365DayNumber - formatString: 0 - lineageTag: 21daa895-e32b-49e1-a55b-2f46be623041 - summarizeBy: sum - isNameInferred - sourceColumn: [Sequential365DayNumber] - - annotation SummarizationSetBy = Automatic - - column 'Data Range Deferrals' = ``` - - VAR - MinDate = min(min('Customer Contract Deferrals'[Posting Date]),min('Vendor Contract Deferrals'[Posting Date])) - VAR - MaxDate = max(max('Customer Contract Deferrals'[Posting Date]),max('Vendor Contract Deferrals'[Posting Date])) - Return - EOMONTH('Date Ref'[Date],0) >= eomonth(MinDate,0) && - EOMONTH('Date Ref'[Date],0) <= eomonth(MaxDate,0) - ``` - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 2a68e74d-9409-463c-ac27-2f33bcc351da - summarizeBy: none - - annotation SummarizationSetBy = Automatic - - partition 'Date Ref-d63d5669-3a74-4b2b-b49d-f504bd49d56d' = calculated - mode: import - source = ``` - - ------------------------------------------------------------ - -- - -- Configuration - -- - ------------------------------------------------------------ - VAR TodayReference = VALUES('Date Table Setup'[Today]) -- Change this if you need to use another date as a reference "current" day - - // Based on the first and last dates in the main fact table - VAR FirstYear = YEAR(VALUES('Date Table Setup'[dateTblStart])) - VAR LastYear = YEAR(VALUES('Date Table Setup'[dateTblEnd])) - - // For Fiscal 52-53 weeks (start depends on rules) and Gregorian (starts on the first of the month) - VAR FiscalCalendarFirstMonth = VALUES('Date Table Setup'[fiscalCalendarFirstMonth]) - - // Use: 0 - Sunday, 1 - Monday, 2 - Tuesday, ... 5 - Friday, 6 - Saturday - VAR FirstDayOfWeek = VALUES('Date Table Setup'[First Day of Week]) - - VAR TypeStartFiscalYear = 1 -- Fiscal year as Calendar Year of : 0 - First day of fiscal year, 1 - Last day of fiscal year - - VAR IsoCountryHolidays = VALUES('Date Table Setup'[isoCountryHolidays]) -- Use only supported ISO countries or "" for no holidays - - VAR WeeklyType = COALESCE(VALUES('Date Table Setup'[weeklyType]), "Nearest") -- Supports only "Nearest", or "Last" - - VAR QuarterWeekType = COALESCE(VALUES('Date Table Setup'[quarterWeekType]),"445") -- Supports only "445", "454", and "544" - - VAR CalendarRange = VALUES('Date Table Setup'[calendarRange]) -- Supports "Calendar", "FiscalGregorian", "FiscalWeekly" - -- Last: for last weekday of the month at fiscal year end - -- Nearest: for last weekday nearest the end of month - -- Reference for Last/Nearest definition: https://en.wikipedia.org/wiki/4%E2%80%934%E2%80%935_calendar) - -- - -- For ISO calendar use - -- FiscalCalendarFirstMonth = 1 (ISO always starts in January) - -- FirstDayOfWeek = 1 (ISO always starts on Monday) - -- WeeklyType = "Nearest" (ISO use the nearest week type algorithm) - -- For US with last Saturday of the month at fiscal year end - -- FirstDayOfWeek = 0 (US weeks start on Sunday) - -- WeeklyType = "Last" - -- For US with last Saturday nearest the end of month - -- FirstDayOfWeek = 0 (US weeks start on Sunday) - -- WeeklyType = "Nearest" - -- - ------------------------------ - VAR CalendarGregorianPrefix = VALUES('Date Table Setup'[calendarPrefix]) -- Prefix used in columns of standard Gregorian calendar - VAR FiscalGregorianPrefix = VALUES('Date Table Setup'[fiscalGregorianPrefix]) -- Prefix used in columns of fiscal Gregorian calendar - VAR FiscalWeeklyPrefix = VALUES('Date Table Setup'[fiscalWeeklyPrefix]) -- Prefix used in columns of fiscal weekly calendar - VAR WorkingDayType = "Working day" -- Description for working days - VAR NonWorkingDayType = "Non-working day" -- Description for non-working days - ------------------------------ - VAR WeeklyCalendarType = "Weekly" -- Supports "Weekly", "Custom" - -- Set the working days - 0 = Sunday, 1 = Monday, ... 6 = Saturday - VAR WorkingDays = VALUES('Working Days') - - - -- Use CustomFiscalPeriods in case you need arbitrary definition of weekly fiscal years - -- Set "UseCustomFiscalPeriods" to TRUE in order to use CustomFiscalPeriods - VAR UseCustomFiscalPeriods = FALSE - -- Set "IgnoreWeeklyFiscalPeriods" to TRUE in order to ignore the WeeklyFiscalPeriods - -- You should set IgnoreWeeklyFiscalPeriods to TRUE only when UseCustomFiscalPeriods is TRUE, too - VAR IgnoreWeeklyFiscalPeriods = FALSE - -- Include here your own definition of custom fiscal periods - VAR CustomFiscalPeriods = - FILTER ( - DATATABLE ( - "Fiscal YearNumber", INTEGER, - "FirstDayOfYear", DATETIME, - "LastDayOfYear", DATETIME, - { - -- IMPORTANT!!! The first day of each year must be a weekday corresponding to the definition of FirstDayOfWeek - -- If you want to use this table, remember to set the UseCustomFiscalPeriods variable to TRUE - -- If the IgnoreWeeklyFiscalPeriods is TRUE, there are no warnings in case the FirstDayOfWeek - -- does not match the first day of the year - { 2016, "2015-06-28", "2016-07-02" }, - { 2017, "2016-07-03", "2017-07-01" }, - { 2018, "2017-07-02", "2018-06-30" }, - { 2019, "2018-07-01", "2019-06-29" } - } - ), - UseCustomFiscalPeriods - ) - - ------------------------------------------------------------ - -- - -- End of General Configuration - -- - ------------------------------------------------------------ - -- - -- The following variables define specific parameters - -- for calendars - you should modify them only to - -- change configuration of specific countries, translate - -- names of holidays, or to add configuration for other - -- countries - -- - ------------------------------------------------------------ - VAR InLieuOf_prefix = "(in lieu of " -- prefix of substitute holidays - VAR InLieuOf_suffix = ")" -- suffix of substitute holidays - VAR HolidayParameters = - DATATABLE ( - "ISO Country", STRING, - -- ISO country code (to enable filter based on country) - "MonthNumber", INTEGER, - -- Number of month - use 99 for relative dates using Easter as a reference - "DayNumber", INTEGER, - -- Absolute day (ignore WeekDayNumber, otherwise use 0) - "WeekDayNumber", INTEGER, - -- 0 = Sunday, 1 = Monday, ... , 7 = Saturday - "OffsetWeek", INTEGER, - -- 1 = first, 2 = second, ... -1 = last, -2 = second-last, ... - "OffsetDays", INTEGER, - -- days to add after offsetWeek and WeekDayNumber have been applied - "HolidayName", STRING, - -- Holiday name - "SubstituteHoliday", INTEGER, - -- 0 = no substituteHoliday, 1 = substitute holiday with next working day, 2 = substitute holiday with next working day - -- (use 2 before 1 only, e.g. Christmas = 2, Boxing Day = 1) - -- -1 = if it falls on a Saturday then it is observed on Friday, if it falls on a Sunday then it is observed on Monday - "ConflictPriority", INTEGER, - -- Priority in case of two or more holidays in the same date - lower number --> higher priority - -- For example: marking Easter relative days with 150 and other holidays with 100 means that other holidays take - -- precedence over Easter-related days; use 50 for Easter related holidays to invert such a priority - "FirstYear", INTEGER, - -- First year for the holiday, 0 if it is not defined - "LastYear", INTEGER, - -- Last year for the holiday, 0 if it is not defined - { - -- - -- US = United States - { "US", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "US", 1, 0, 1, 3, 0, "Martin Luther King, Jr.", 0, 100, 0, 0 }, - { "US", 2, 0, 1, 3, 0, "Presidents' Day", 0, 100, 0, 0 }, - // aka Washington's Birthday - { "US", 5, 0, 1, -1, 0, "Memorial Day", 0, 100, 0, 0 }, - { "US", 6, 19, 0, 0, 0, "Juneteenth", -1, 100, 2021, 0 }, - { "US", 7, 4, 0, 0, 0, "Independence Day", 0, 100, 0, 0 }, - { "US", 9, 0, 1, 1, 0, "Labor Day", 0, 100, 0, 0 }, - { "US", 10, 0, 1, 2, 0, "Columbus Day", 0, 100, 0, 0 }, - { "US", 11, 11, 0, 0, 0, "Veterans Day", 0, 100, 0, 0 }, - { "US", 11, 0, 4, 4, 0, "Thanksgiving Day", 0, 100, 0, 0 }, - { "US", 11, 0, 4, 4, 1, "Black Friday", 0, 100, 0, 0 }, - { "US", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- The following countries are in alphabetical order (by ISO Code) - -- - - -- - -- AT = Austria - { "AT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "AT", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "AT", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "AT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "AT", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "AT", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "AT", 99, 60, 0, 0, 0, "Corpus Christi", 0, 50, 0, 0 }, - { "AT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "AT", 10, 26, 0, 0, 0, "National Day", 0, 100, 0, 0 }, - { "AT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "AT", 12, 8, 0, 0, 0, "Immaculate Conception Day", 0, 100, 0, 0 }, - { "AT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "AT", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- AU = Australia - { "AU", 1, 1, 0, 0, 0, "New Year's Day", 1, 100, 0, 0 }, - { "AU", 1, 26, 0, 0, 0, "Australia Day", 1, 100, 0, 0 }, - { "AU", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "AU", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "AU", 4, 25, 0, 0, 0, "Anzac Day", 1, 100, 0, 0 }, - { "AU", 12, 25, 0, 0, 0, "Christmas Day", 2, 100, 0, 0 }, - { "AU", 12, 26, 0, 0, 0, "Boxing Day", 1, 100, 0, 0 }, - -- - -- BE = Belgium - { "BE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "BE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "BE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "BE", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "BE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "BE", 7, 21, 0, 0, 0, "Belgian National DayDay", 0, 100, 0, 0 }, - { "BE", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "BE", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "BE", 11, 11, 0, 0, 0, "Armistice Day", 0, 100, 0, 0 }, - { "BE", 12, 25, 0, 0,0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- CA = Canada (include only nationwide and Thanksgiving) - { "CA", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "CA", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "CA", 7, 1, 0, 0, 0, "Canada Day", 0, 100, 0, 0 }, - { "CA", 9, 0, 1, 1, 0, "Labour Day", 0, 100, 0, 0 }, - { "CA", 10, 0, 1, 2, 0, "Thanksgiving", 0, 100, 0, 0 }, - { "CA", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- DE = Germany - { "DE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "DE", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "DE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "DE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "DE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "DE", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "DE", 10, 3, 0, 0, 0, "German Unity Day", 0, 100, 0, 0 }, - { "DE", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "DE", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- ES = Spain - { "ES", 1, 1, 0, 0,0, "New Year's Day", 0, 100, 0, 0 }, - { "ES", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "ES", 99, -3, 0, 0, 0, "Maundy Thursday", 0, 50, 0, 0 }, - // Except Catalonia - { "ES", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "ES", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - // Belearic Islands, Basque Country, Catalonia, La Rioja, Navarra and Valenciana only - { "ES", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "ES", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "ES", 10, 12, 0, 0, 0, "Fiesta Navional de España", 0, 100, 0, 0 }, - { "ES", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "ES", 12, 6, 0, 0, 0, "Constitution Day", 0, 100, 0, 0 }, - { "ES", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "ES", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- FR = France - { "FR", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "FR", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "FR", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "FR", 5, 8, 0, 0, 0, "Victor in Europe Day", 0, 100, 0, 0 }, - { "FR", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "FR", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "FR", 7, 14, 0, 0, 0, "Bastille Day", 0, 100, 0, 0 }, - { "FR", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "FR", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "FR", 11, 11, 0, 0, 0, "Armistice Day", 0, 100, 0, 0 }, - { "FR", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- GB = England (different configuration in Scotland and Northern Ireland) - { "GB", 1, 1, 0, 0, 0, "New Year's Day", 1, 100, 0, 0 }, - { "GB", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "GB", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "GB", 5, 0, 1, 1, 0, "May Day Bank Holiday", 0, 100, 0, 0 }, - { "GB", 5, 0, 1, -1, 0, "Spring Bank Holiday", 0, 100, 0, 0 }, - { "GB", 8, 0, 1, -1, 0, "Late Summer Bank Holiday", 0, 100, 0, 0 }, - { "GB", 12, 25, 0, 0, 0, "Christmas Day", 2, 100, 0, 0 }, - { "GB", 12, 26, 0, 0, 0, "Boxing Day", 1, 100, 0, 0 }, - -- - -- IT = Italy - { "IT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "IT", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "IT", 99, 1, 0, 0, 0, "Easter Monday", 0, 100, 0, 0 }, - { "IT", 4, 25, 0, 0, 0, "Liberation Day", 0, 100, 0, 0 }, - { "IT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "IT", 6, 2, 0, 0, 0, "Republic Day", 0, 100, 0, 0 }, - { "IT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "IT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "IT", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "IT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "IT", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- NL = The Netherlands - { "NL", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "NL", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "NL", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "NL", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "NL", 4, 27, 0, 0, 0, "King's Day", 0, 100, 0, 0 }, - // King's day shifted to Saturday if on a Sunday - not handled in this calendar - { "NL", 5, 5, 0, 0, 0, "Liberation Day", 0, 100, 0, 0 }, - { "NL", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "NL", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- NO = Norway - { "NO", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "NO", 99, -3, 0, 0, 0, "Maundy Thursday", 0, 100, 0, 0 }, - { "NO", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "NO", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "NO", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "NO", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "NO", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "NO", 5, 17, 0, 0, 0, "Constitution Day", 0, 100, 0, 0 }, - { "NO", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "NO", 12, 26, 0, 0, 0, "Boxing Day", 0, 100, 0, 0 }, - -- De facto Holidays in Norway - not official public holidays - { "NO", 12, 24, 0, 0, 0, "Christmas Eve", 0, 50, 0, 0 }, - { "NO", 12, 31, 0, 0, 0, "New Year's Eve", 0, 50, 0, 0 }, - -- - -- PT = Portugal - { "PT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "PT", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "PT", 99, 60, 0, 0, 0, "Corpus Christi", 0, 50, 0, 0 }, - { "PT", 4, 25, 0, 0, 0, "Freedom Day", 0, 100, 0, 0 }, - { "PT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "PT", 6, 10, 0, 0, 0, "Portugal Day", 0, 100, 0, 0 }, - { "PT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "PT", 10, 5, 0, 0, 0, "Republic Day", 0, 100, 0, 0 }, - { "PT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "PT", 12, 1, 0, 0, 0, "Restoration of Independence", 0, 100, 0, 0 }, - { "PT", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "PT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, -- - -- - -- SE = Sweden - { "SE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "SE", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "SE", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "SE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "SE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "SE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "SE", 6, 6, 0, 0, 0, "National Day", 0, 100, 0, 0 }, - { "SE", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "SE", 12, 26, 0, 0, 0, "Boxing Day", 0, 100, 0, 0 }, - -- De facto Holidays in Sweden - not official public holidays - { "SE", 12, 24, 0, 0, 0, "Christmas Eve", 0, 50, 0, 0 }, - { "SE", 12, 31, 0, 0, 0, "New Year's Eve", 0, 50, 0, 0 }, - -- Midsummer Day is a Saturday - -- { "SE", 98, 0, 0, 0, "Midsummer Day", 0, 50, 0, 0 }, - { "SE", 98, -1, 0, 0, 0, "Midsummer Eve", 0, 50, 0, 0 } - ------------------------------------------------------------ - -- UK --> see GB - } - ) - VAR HolidayDates_ConfigGeneration = - FILTER ( - HolidayParameters, - IF ( - CONTAINS ( HolidayParameters, [ISO Country], IsoCountryHolidays ) - || IsoCountryHolidays = "", - [ISO Country] = IsoCountryHolidays, - ERROR ( "IsoCountryHolidays set to an unsupported country code" ) - ) - ) - VAR HolidayDates_GeneratedRawWithDuplicatesUnfiltered = - GENERATE ( - GENERATE ( - GENERATESERIES ( FirstYear - 1, LastYear + 1, 1 ), - HolidayDates_ConfigGeneration - ), - VAR HolidayYear = [Value] - VAR EasterDate = - -- Code adapted from original VB version from https://www.assa.org.au/edm - VAR EasterYear = HolidayYear - VAR FirstDig = - INT ( EasterYear / 100 ) - VAR Remain19 = - MOD ( EasterYear, 19 ) // - -- Calculate PFM date - VAR temp1 = - MOD ( - INT ( ( FirstDig - 15 ) / 2 ) - + 202 - - 11 * Remain19 - + SWITCH ( - TRUE, - FirstDig IN { 21, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 38 }, -1, - FirstDig IN { 33, 36, 37, 39, 40 }, -2, - 0 - ), - 30 - ) - VAR tA = - temp1 + 21 - + IF ( temp1 = 29 || ( temp1 = 28 && Remain19 > 10 ), -1 ) // - -- Find the next Sunday - VAR tB = - MOD ( tA - 19, 7 ) - VAR tCpre = - MOD ( 40 - FirstDig, 4 ) - VAR tC = - tCpre - + IF ( tCpre = 3, 1 ) - + IF ( tCpre > 1, 1 ) - VAR temp2 = - MOD ( EasterYear, 100 ) - VAR tD = - MOD ( temp2 + INT ( temp2 / 4 ), 7 ) - VAR tE = - MOD ( 20 - tB - tC - tD, 7 ) - + 1 - VAR d = tA + tE // - -- Return the date - VAR EasterDay = - IF ( d > 31, d - 31, d ) - VAR EasterMonth = - IF ( d > 31, 4, 3 ) - RETURN - DATE ( EasterYear, EasterMonth, EasterDay ) // - -- End of code adapted from original VB version from https://www.assa.org.au/edm - VAR SwedishMidSummer = - -- Compute the Midsummer day in Swedish - it is the Saturday between 20 and 26 June - -- This calculation is valid only for years after 1953 - -- https://sv.wikipedia.org/wiki/Midsommar_i_Sverige - VAR __June20 = - DATE ( HolidayYear, 6, 20 ) - RETURN - DATE ( HolidayYear, 6, 20 + (7 - WEEKDAY ( __June20, 1 ) ) ) - -- End of SwedishMidSummer calculation - VAR HolidayDate = - SWITCH ( - TRUE, - [DayNumber] <> 0 - && [WeekDayNumber] <> 0, ERROR ( "Wrong configuration in HolidayParameters" ), - [DayNumber] <> 0 - && [MonthNumber] <= 12, DATE ( HolidayYear, [MonthNumber], [DayNumber] ), - [MonthNumber] = 99, -- Easter offset - EasterDate + [DayNumber], - [MonthNumber] = 98, -- Swedish Midsummer Day - SwedishMidSummer + [DayNumber], - [WeekDayNumber] <> 0, - VAR ReferenceDate = - DATE ( HolidayYear, 1 - + MOD ( [MonthNumber] - 1 + IF ( [OffsetWeek] < 0, 1 ), 12 ), 1 ) - - IF ( [OffsetWeek] < 0, 1 ) - VAR ReferenceWeekDayNumber = - WEEKDAY ( ReferenceDate, 1 ) - 1 - VAR Offset = - [WeekDayNumber] - ReferenceWeekDayNumber - + 7 * [OffsetWeek] - + IF ( - [OffsetWeek] > 0, - IF ( [WeekDayNumber] >= ReferenceWeekDayNumber, - 7 ), - IF ( ReferenceWeekDayNumber >= [WeekDayNumber], 7 ) - ) - RETURN - ReferenceDate + Offset + [OffsetDays], - ERROR ( "Wrong configuration in HolidayParameters" ) - ) - VAR HolidayDay = - WEEKDAY ( HolidayDate, 1 ) - 1 - VAR SubstituteHolidayOffset = - SWITCH ( - TRUE, - [SubstituteHoliday] = -1, - SWITCH ( - HolidayDay, - 0, 1, -- If it falls on a Sunday then it is observed on Monday - 6, -1, -- If it falls on a Saturday then it is observed on Friday - 0 - ), - [SubstituteHoliday] > 0 - && NOT CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], HolidayDay ), - VAR NextWorkingDay = - MINX ( - FILTER ( WorkingDays, [FSG_PBI_Day_Number] > HolidayDay ), - [FSG_PBI_Day_Number] - ) - VAR SubstituteDay = - IF ( - ISBLANK ( NextWorkingDay ), - MINX ( WorkingDays, [FSG_PBI_Day_Number] ) + 7, - NextWorkingDay - ) - RETURN - SubstituteDay - HolidayDay - + ( [SubstituteHoliday] - 1 ) - ) - RETURN - ROW ( - -- Use DATE function to get a DATE column as a result - "HolidayDate", DATE ( YEAR ( HolidayDate ), MONTH ( HolidayDate ), DAY ( HolidayDate ) ), - "SubstituteHolidayOffset", SubstituteHolidayOffset - ) - ) // - VAR HolidayDates_GeneratedRawWithDuplicates = - FILTER ( - HolidayDates_GeneratedRawWithDuplicatesUnfiltered, - ( [FirstYear] = 0 || [FirstYear] <= [Value] ) - && ( [LastYear] = 0 || [LastYear] >= [Value] ) - ) - VAR HolidayDates_RawDatesUnique = - DISTINCT ( - SELECTCOLUMNS ( - HolidayDates_GeneratedRawWithDuplicates, - "HolidayDateUnique", [HolidayDate] - ) - ) - VAR HolidayDates_GeneratedRaw = - GENERATE ( - HolidayDates_RawDatesUnique, - VAR FilterDate = [HolidayDateUnique] - RETURN - TOPN ( - 1, - FILTER ( - HolidayDates_GeneratedRawWithDuplicates, - [HolidayDate] = FilterDate - ), - [ConflictPriority], - ASC, - [HolidayName], - ASC - ) - ) - VAR HolidayDates_GeneratedSubstitutesOffset = - SELECTCOLUMNS ( - FILTER ( HolidayDates_GeneratedRawWithDuplicates, [SubstituteHoliday] <> 0 ), - "Value", [Value], - "ISO Country", [ISO Country], - "MonthNumber", [MonthNumber], - "DayNumber", [DayNumber], - "WeekDayNumber", [WeekDayNumber], - "OffsetWeek", [OffsetWeek], - "HolidayName", [HolidayName], - "SubstituteHoliday", [SubstituteHoliday], - "ConflictPriority", [ConflictPriority], - "HolidayDate", [HolidayDate], - "SubstituteHolidayOffset", - VAR CurrentHolidayDate = [HolidayDate] - VAR CurrentHolidayName = [HolidayName] - VAR OriginalSubstituteDate = [HolidayDate] + [SubstituteHolidayOffset] - VAR OtherHolidays = - FILTER ( - HolidayDates_GeneratedRawWithDuplicates, - [HolidayDate] <> CurrentHolidayDate - || [HolidayName] <> CurrentHolidayName - ) - VAR ConflictDay0 = - CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate - ) - VAR ConflictDay1 = - ConflictDay0 - && CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate + 1 - ) - VAR ConflictDay2 = - ConflictDay1 - && CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate + 2 - ) - VAR SubstituteOffsetStep1 = [SubstituteHolidayOffset] + ConflictDay0 + ConflictDay1 + ConflictDay2 - VAR HolidayDateStep1 = CurrentHolidayDate + SubstituteOffsetStep1 - VAR HolidayDayStep1 = - WEEKDAY ( HolidayDateStep1, 1 ) - 1 - VAR SubstituteHolidayOffsetNonWorkingDays = - IF ( - NOT CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], HolidayDayStep1 ), - VAR NextWorkingDayStep2 = - MINX ( - FILTER ( WorkingDays, [FSG_PBI_Day_Number] > HolidayDayStep1 ), - [FSG_PBI_Day_Number] - ) - VAR SubstituteDay = - IF ( - ISBLANK ( NextWorkingDayStep2 ), - MINX ( WorkingDays, [FSG_PBI_Day_Number] ) + 7, - NextWorkingDayStep2 - ) - RETURN SubstituteDay - HolidayDateStep1 - ) - VAR SubstituteOffsetStep2 = SubstituteOffsetStep1 + SubstituteHolidayOffsetNonWorkingDays - VAR SubstituteDateStep2 = OriginalSubstituteDate + SubstituteOffsetStep2 - VAR ConflictDayStep2_0 = - CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 - ) - VAR ConflictDayStep2_1 = - ConflictDayStep2_0 - && CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 + 1 - ) - VAR ConflictDayStep2_2 = - ConflictDayStep2_1 - && CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 + 2 - ) - VAR FinalSubstituteHolidayOffset = - SubstituteOffsetStep2 + ConflictDayStep2_0 + ConflictDayStep2_1 + ConflictDayStep2_2 - RETURN - FinalSubstituteHolidayOffset - ) - VAR HolidayDates_GeneratedSubstitutesExpanded = - ADDCOLUMNS ( - HolidayDates_GeneratedSubstitutesOffset, - "ReplacementHolidayDate", [HolidayDate] + [SubstituteHolidayOffset] - ) - VAR HolidayDates_GeneratedSubstitutesUnique = - DISTINCT ( - SELECTCOLUMNS ( - HolidayDates_GeneratedSubstitutesExpanded, - "UniuqeReplacementHolidayDate", [ReplacementHolidayDate] - ) - ) - VAR HolidayDates_GeneratedSubstitutes = - GENERATE ( - HolidayDates_GeneratedSubstitutesUnique, - TOPN ( - 1, - FILTER ( - HolidayDates_GeneratedSubstitutesExpanded, - [UniuqeReplacementHolidayDate] = [ReplacementHolidayDate] - ), - [ConflictPriority], - ASC, - [HolidayName], - ASC - ) - ) - VAR HolidayDates_Generated = - UNION ( - SELECTCOLUMNS ( - HolidayDates_GeneratedRaw, - "HolidayDate", [HolidayDate], - "HolidayName", [HolidayName] - ), - SELECTCOLUMNS ( - FILTER ( HolidayDates_GeneratedSubstitutes, [SubstituteHolidayOffset] <> 0 ), - "HolidayDate", [HolidayDate] + [SubstituteHolidayOffset], - "HolidayName", InLieuOf_prefix & [HolidayName] - & InLieuOf_suffix - ) - ) - -- Alternative way to express holidays: create a table with the list of the dates - -- The following table should be used instead of HolidayDates_Generated in the following - -- HolidayDates variable if you want to use a fixed list of holidays - VAR HolidayDates_US_ExplicitDates = - DATATABLE ( - "HolidayDate", DATETIME, - "HolidayName", STRING, - { - { "2008-01-01", "New Year's Day" }, - { "2008-12-25", "Christmas Day" }, - ------------------------- - { "2008-11-27", "Thanksgiving Day" }, - { "2009-11-26", "Thanksgiving Day" }, - { "2010-11-25", "Thanksgiving Day" }, - { "2011-11-24", "Thanksgiving Day" }, - { "2012-11-22", "Thanksgiving Day" }, - { "2013-11-28", "Thanksgiving Day" }, - { "2014-11-27", "Thanksgiving Day" }, - { "2015-11-26", "Thanksgiving Day" }, - { "2016-11-24", "Thanksgiving Day" }, - { "2017-11-23", "Thanksgiving Day" }, - { "2018-11-22", "Thanksgiving Day" }, - { "2019-11-28", "Thanksgiving Day" }, - { "2020-11-26", "Thanksgiving Day" } - } - ) - VAR HolidayDates = - SELECTCOLUMNS ( - HolidayDates_Generated, - "Date", [HolidayDate], - "Holiday Name", [HolidayName] - ) // - ------------------------------------------------------------ - -- - -- End of Configuration - -- - ------------------------------------------------------------ - -- - -- The following variables define - -- the content of the calendar tables - -- - ------------------------------------------------------------ - ------------------------------------------------------------ - VAR FirstDayCalendar = - DATE ( FirstYear - 1, 1, 1 ) - VAR LastDayCalendar = - DATE ( LastYear + 1, 12, 31 ) - VAR WeekDayCalculationType = - IF ( FirstDayOfWeek = 0, 7, FirstDayOfWeek ) - + 10 - VAR OffsetFiscalYear = - IF ( FiscalCalendarFirstMonth > 1, 1, 0 ) - VAR WeeklyFiscalPeriods = - GENERATE ( - SELECTCOLUMNS ( - GENERATESERIES ( FirstYear - OffsetFiscalYear, LastYear + OffsetFiscalYear, 1 ), - "CalendarType", "Weekly", - "Fiscal YearNumber", [Value] - ), - VAR StartFiscalYearNumber = [Fiscal YearNumber] - (OffsetFiscalYear * TypeStartFiscalYear) - VAR FirstDayCurrentYear = - DATE ( StartFiscalYearNumber, FiscalCalendarFirstMonth, 1 ) - VAR FirstDayNextYear = - DATE ( StartFiscalYearNumber + 1, FiscalCalendarFirstMonth, 1 ) - VAR DayOfWeekNumberCurrentYear = - WEEKDAY ( FirstDayCurrentYear, WeekDayCalculationType ) - VAR OffsetStartCurrentFiscalYear = - SWITCH ( - WeeklyType, - "Last", 1 - DayOfWeekNumberCurrentYear, - "Nearest", IF ( - DayOfWeekNumberCurrentYear >= 5, - 8 - DayOfWeekNumberCurrentYear, - 1 - DayOfWeekNumberCurrentYear - ), - ERROR ( "Unknown WeeklyType definition.") - ) - VAR DayOfWeekNumberNextYear = - WEEKDAY ( FirstDayNextYear, WeekDayCalculationType ) - VAR OffsetStartNextFiscalYear = - SWITCH ( - WeeklyType, - "Last", - DayOfWeekNumberNextYear, - "Nearest", IF ( - DayOfWeekNumberNextYear >= 5, - 7 - DayOfWeekNumberNextYear, - - DayOfWeekNumberNextYear - ), - ERROR ( "Unknown WeeklyType definition.") - ) - VAR FirstDayOfFiscalYear = FirstDayCurrentYear + OffsetStartCurrentFiscalYear - VAR LastDayOfFiscalYear = FirstDayNextYear + OffsetStartNextFiscalYear - RETURN - ROW ( "FirstDayOfYear", FirstDayOfFiscalYear, - "LastDayOfYear", LastDayOfFiscalYear ) - ) - VAR CheckFirstDayOfWeek = - IF ( - UseCustomFiscalPeriods && (NOT IgnoreWeeklyFiscalPeriods) - && WEEKDAY ( MINX ( CustomFiscalPeriods, [FirstDayOfYear] ), 1 ) - <> ( FirstDayOfWeek + 1 ), - ERROR ( "CustomFiscalPeriods table does not match FirstDayOfWeek setting" ), - TRUE - ) - VAR CustomFiscalPeriodsWithType = - GENERATE ( - ROW ( "CalendarType", "Custom" ), - FILTER ( CustomFiscalPeriods, CheckFirstDayOfWeek ) - ) - VAR FiscalPeriods = - SELECTCOLUMNS ( - FILTER ( - UNION ( - FILTER ( WeeklyFiscalPeriods, NOT IgnoreWeeklyFiscalPeriods ), - CustomFiscalPeriodsWithType - ), - [CalendarType] = WeeklyCalendarType - ), - "FW YearNumber", [Fiscal YearNumber], - "FW StartOfYear", [FirstDayOfYear], - "FW EndOfYear", [LastDayOfYear] - ) - VAR WeeksInP1 = - SWITCH ( - QuarterWeekType, - "445", 4, - "454", 4, - "544", 5, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR WeeksInP2 = - SWITCH ( - QuarterWeekType, - "445", 4, - "454", 5, - "544", 4, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR WeeksInP3 = - SWITCH ( - QuarterWeekType, - "445", 5, - "454", 4, - "544", 4, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR FirstSundayReference = - DATE ( 1900, 12, 30 ) -- Do not change this - VAR FirstWeekReference = FirstSundayReference + FirstDayOfWeek - VAR RawDays = - CALENDAR ( FirstDayCalendar, LastDayCalendar ) - VAR CalendarGregorianPrefixSpace = - IF ( CalendarGregorianPrefix <> "", CalendarGregorianPrefix & " ", "" ) - VAR FiscalGregorianPrefixSpace = - IF ( FiscalGregorianPrefix <> "", FiscalGregorianPrefix & " ", "" ) - VAR FiscalWeeklyPrefixSpace = - IF ( FiscalWeeklyPrefix <> "", FiscalWeeklyPrefix & " ", "" ) - VAR CustomFiscalRawDays = - GENERATE ( FiscalPeriods, CALENDAR ( [FW StartOfYear], [FW EndOfYear] ) ) - VAR CalendarStandardGregorianBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( RawDays, HolidayDates ), - VAR CalDate = [Date] - VAR CalYear = - YEAR ( [Date] ) - VAR CalMonthNumber = - MONTH ( [Date] ) - VAR CalQuarterNumber = - ROUNDUP ( CalMonthNumber / 3, 0 ) - VAR CalDay = - DAY ( [Date] ) - VAR CalWeekNumber = - WEEKNUM ( CalDate, WeekDayCalculationType ) - VAR CalDayOfMonth = - DAY ( CalDate ) - VAR WeekDayNumber = - WEEKDAY ( CalDate, WeekDayCalculationType ) - VAR YearWeekNumber = - INT ( DIVIDE ( CalDate - FirstWeekReference, 7 ) ) - VAR CalendarFirstDayOfYear = - DATE ( CalYear, 1, 1 ) - VAR CalendarDayOfYear = - INT ( CalDate - CalendarFirstDayOfYear + 1 ) - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( CalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - VAR _CheckLeapYearBefore = - CalYear - - IF ( (CalMonthNumber = 2 && CalDayOfMonth < 29) - || CalMonthNumber < 2, - 1, - 0 ) - VAR LeapYearsBefore1900 = - INT ( 1899 / 4 ) - - INT ( 1899 / 100 ) - + INT ( 1899 / 400 ) - VAR LeapYearsBetween = - INT ( _CheckLeapYearBefore / 4 ) - - INT ( _CheckLeapYearBefore / 100 ) - + INT ( _CheckLeapYearBefore / 400 ) - - LeapYearsBefore1900 - VAR Sequential365DayNumber = - INT ( CalDate - LeapYearsBetween ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - "Calendar YearNumber", CalYear, - "Calendar Year", CalendarGregorianPrefixSpace & CalYear, - "Calendar QuarterNumber", CalQuarterNumber, - "Calendar Quarter", CalendarGregorianPrefix & "Q" - & CalQuarterNumber - & " ", - "Calendar YearQuarterNumber", CalYear * 4 - - 1 - + CalQuarterNumber, - "Calendar Quarter Year", CalendarGregorianPrefix & "Q" - & CalQuarterNumber - & " " - & CalYear, - "Calendar MonthNumber", CalMonthNumber, - "Calendar Month", FORMAT ( CalDate, "mmm" ), - "Calendar YearMonthNumber", CalYear * 12 - - 1 - + CalMonthNumber, - "Calendar Month Year", FORMAT ( CalDate, "mmm" ) & " " - & CalYear, - "Calendar WeekNumber", CalWeekNumber, - "Calendar Week", CalendarGregorianPrefix & "W" - & FORMAT ( CalWeekNumber, "00" ), - "Calendar YearWeekNumber", YearWeekNumber, - "Calendar Week Year", CalendarGregorianPrefix & "W" - & FORMAT ( CalWeekNumber, "00" ) - & "-" - & CalYear, - "Calendar WeekYearOrder", CalYear * 100 - + CalWeekNumber, - "Calendar DayOfYearNumber", CalendarDayOfYear, - "Day of Month", CalDayOfMonth, - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( CalDate, "ddd" ), - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ), - "Sequential365DayNumber", Sequential365DayNumber - ) - ) - VAR CalendarStandardGregorian = - GENERATE ( - CalendarStandardGregorianBase, - VAR CalDate = [Date] - VAR YearNumber = [Calendar YearNumber] - VAR MonthNumber = [Calendar MonthNumber] - VAR YearWeekNumber = [Calendar YearWeekNumber] - VAR YearMonthNumber = [Calendar YearMonthNumber] - VAR YearQuarterNumber = [Calendar YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearNumber] - ) - VAR RelativeWeekPos = YearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = YearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = YearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = YearNumber - CurrentYearPos - VAR CalStartOfMonth = - DATE ( YearNumber, MonthNumber, 1 ) - VAR CalEndOfMonth = - EOMONTH ( CalDate, 0 ) - VAR CalMonthDays = - INT ( CalEndOfMonth - CalStartOfMonth + 1 ) - VAR CalDayOfMonthNumber = - INT ( CalDate - CalStartOfMonth + 1 ) - VAR CalStartOfQuarter = - MINX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR CalEndOfQuarter = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR CalQuarterDays = - INT ( CalEndOfQuarter - CalStartOfQuarter + 1 ) - VAR CalDayOfQuarterNumber = - INT ( CalDate - CalStartOfQuarter + 1 ) - VAR CalYearDays = - INT ( DATE ( YearNumber, 12, 31 ) - DATE ( YearNumber, 1, 1 ) + 1 ) - VAR CalDatePreviousWeek = CalDate - 7 - VAR CalDatePreviousMonth = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 1 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalDatePreviousQuarter = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 3 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalDatePreviousYear = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 12 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalStartOfYear = - DATE ( YearNumber, 1, 1 ) - VAR CalEndOfYear = - DATE ( YearNumber, 12, 31 ) - RETURN - ROW ( "Calendar RelativeWeekPos", RelativeWeekPos, - "Calendar RelativeMonthPos", RelativeMonthPos, - "Calendar RelativeQuarterPos", RelativeQuarterPos, - "Calendar RelativeYearPos", RelativeYearPos, - "Calendar StartOfMonth", CalStartOfMonth, - "Calendar EndOfMonth", CalEndOfMonth, - "Calendar DayOfMonthNumber", CalDayOfMonthNumber, - "Calendar StartOfQuarter", CalStartOfQuarter, - "Calendar EndOfQuarter", CalEndOfQuarter, - "Calendar DayOfQuarterNumber", CalDayOfQuarterNumber, - "Calendar StartOfYear", CalStartOfYear, - "Calendar EndOfYear", CalEndOfYear, - "Calendar DatePreviousWeek", CalDatePreviousWeek, - "Calendar DatePreviousMonth", CalDatePreviousMonth, - "Calendar DatePreviousQuarter", CalDatePreviousQuarter, - "Calendar DatePreviousYear", CalDatePreviousYear, - "Calendar MonthDays", CalMonthDays, - "Calendar QuarterDays", CalQuarterDays, - "Calendar YearDays", CalYearDays - ) - ) - VAR FiscalStandardGregorianBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( RawDays, HolidayDates ), - VAR FiscalDate = [Date] - VAR CalYear = - YEAR ( FiscalDate ) - VAR CalMonthNumber = - MONTH ( FiscalDate ) - VAR CalDay = - DAY ( [Date] ) - VAR WeekDayNumber = - WEEKDAY ( FiscalDate, WeekDayCalculationType ) - VAR YearWeekNumber = - INT ( DIVIDE ( FiscalDate - FirstWeekReference, 7 ) ) - VAR FiscalYear = - CalYear - + IF ( FiscalCalendarFirstMonth > 1, - IF ( CalMonthNumber >= FiscalCalendarFirstMonth, - TypeStartFiscalYear, -- TypeStartFiscalYear = 1 - -1 * (TypeStartFiscalYear = 0) -- TypeStartFiscalYear = 0 - ) - ) - VAR FiscalMonthNumber = - MOD ( CalMonthNumber - FiscalCalendarFirstMonth, 12 ) - + 1 - VAR FiscalMonthQuarterNumber = - MOD ( FiscalMonthNumber - 1, 3 ) + 1 - VAR FiscalFirstDayOfYear = - DATE ( FiscalYear - (OffsetFiscalYear * TypeStartFiscalYear), FiscalCalendarFirstMonth, 1 ) - VAR FiscalDayOfYear = - INT ( FiscalDate - FiscalFirstDayOfYear + 1 ) - VAR FiscalFirstYearWeekNumber = - INT ( DIVIDE ( FiscalFirstDayOfYear - FirstWeekReference, 7 ) ) - VAR FiscalWeekNumber = YearWeekNumber - FiscalFirstYearWeekNumber - + 1 - VAR FiscalQuarterNumber = - ROUNDUP ( FiscalMonthNumber / 3, 0 ) - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( FiscalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - "Fiscal Year", FiscalGregorianPrefixSpace & FiscalYear, - "Fiscal YearNumber", FiscalYear, - "Fiscal QuarterNumber", FiscalQuarterNumber, - "Fiscal Quarter", FiscalGregorianPrefix & "Q" - & FiscalQuarterNumber - & " ", - "Fiscal YearQuarterNumber", FiscalYear * 4 - - 1 - + FiscalQuarterNumber, - "Fiscal Quarter Year", FiscalGregorianPrefix & "Q" - & FiscalQuarterNumber - & " " - & FiscalYear, - "Fiscal MonthNumber", FiscalMonthNumber, - "Fiscal MonthQuarterNumber", FiscalMonthQuarterNumber, - "Fiscal Month", FORMAT ( FiscalDate, "mmm" ), - "Fiscal YearMonthNumber", FiscalYear * 12 - - 1 - + FiscalMonthNumber, - "Fiscal Month Year", FORMAT ( FiscalDate, "mmm" ) & " " - & CalYear, - "Fiscal WeekNumber", FiscalWeekNumber, - "Fiscal Week", FiscalGregorianPrefix & "W" - & FORMAT ( FiscalWeekNumber, "00" ), - "Fiscal YearWeekNumber", YearWeekNumber, - "Fiscal Week Year", FiscalGregorianPrefix & "W" - & FORMAT ( FiscalWeekNumber, "00" ) - & "-" - & FiscalYear, - "Fiscal WeekYearOrder", FiscalYear * 100 - + FiscalWeekNumber, - "Fiscal DayOfYearNumber", FiscalDayOfYear, - "Day of Month", DAY ( FiscalDate ), - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( FiscalDate, "ddd" ), - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ) - ) - ) - VAR FiscalStandardGregorian = - GENERATE ( - FiscalStandardGregorianBase, - VAR FiscalDate = [Date] - VAR FiscalYearNumber = [Fiscal YearNumber] - VAR MonthNumber = [Fiscal MonthNumber] - VAR CalendarYearNumber = - YEAR ( FiscalDate ) - VAR CalendarMonthNumber = - MONTH ( FiscalDate ) - VAR YearWeekNumber = [Fiscal YearWeekNumber] - VAR YearMonthNumber = [Fiscal YearMonthNumber] - VAR YearQuarterNumber = [Fiscal YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearNumber] - ) - VAR RelativeWeekPos = YearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = YearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = YearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = FiscalYearNumber - CurrentYearPos - VAR FiscalStartOfMonth = - DATE ( CalendarYearNumber, CalendarMonthNumber, 1 ) - VAR FiscalEndOfMonth = - EOMONTH ( FiscalDate, 0 ) - VAR FiscalMonthDays = - INT ( FiscalEndOfMonth - FiscalStartOfMonth + 1 ) - VAR FiscalDayOfMonthNumber = - INT ( FiscalDate - FiscalStartOfMonth + 1 ) - VAR FiscalStartOfQuarter = - MINX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR FiscalEndOfQuarter = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR FiscalQuarterDays = - INT ( FiscalEndOfQuarter - FiscalStartOfQuarter + 1 ) - VAR FiscalFirstDayOfYear = - DATE ( FiscalYearNumber - OffsetFiscalYear, FiscalCalendarFirstMonth, 1 ) - VAR FiscalLastDayOfYear = - DATE ( FiscalYearNumber + (1 * (OffsetFiscalYear = 0)), FiscalCalendarFirstMonth, 1 ) - 1 - VAR FiscalYearDays = - INT ( FiscalLastDayOfYear - FiscalFirstDayOfYear + 1 ) - VAR FiscalDayOfQuarterNumber = - INT ( FiscalDate - FiscalStartOfQuarter + 1 ) - VAR FiscalStartOfYear = - MINX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearNumber] = FiscalYearNumber - ), - [Date] - ) - VAR FiscalEndOfYear = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearNumber] = FiscalYearNumber - ), - [Date] - ) - VAR FiscalDatePreviousWeek = FiscalDate - 7 - VAR FiscalDatePreviousMonth = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 1 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - VAR FiscalDatePreviousQuarter = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 3 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - VAR FiscalDatePreviousYear = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 12 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - RETURN - ROW ( "Fiscal RelativeWeekPos", RelativeWeekPos, - "Fiscal RelativeMonthPos", RelativeMonthPos, - "Fiscal RelativeQuarterPos", RelativeQuarterPos, - "Fiscal RelativeYearPos", RelativeYearPos, - "Fiscal StartOfMonth", FiscalStartOfMonth, - "Fiscal EndOfMonth", FiscalEndOfMonth, - "Fiscal DayOfMonthNumber", FiscalDayOfMonthNumber, - "Fiscal StartOfQuarter", FiscalStartOfQuarter, - "Fiscal EndOfQuarter", FiscalEndOfQuarter, - "Fiscal DayOfQuarterNumber", FiscalDayOfQuarterNumber, - "Fiscal StartOfYear", FiscalStartOfYear, - "Fiscal EndOfYear", FiscalEndOfYear, - "Fiscal DatePreviousWeek", FiscalDatePreviousWeek, - "Fiscal DatePreviousMonth", FiscalDatePreviousMonth, - "Fiscal DatePreviousQuarter", FiscalDatePreviousQuarter, - "Fiscal DatePreviousYear", FiscalDatePreviousYear, - "Fiscal MonthDays", FiscalMonthDays, - "Fiscal QuarterDays", FiscalQuarterDays, - "Fiscal YearDays", FiscalYearDays - ) - ) - VAR FiscalWeeksBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( CustomFiscalRawDays, HolidayDates ), - VAR CalDate = [Date] - VAR FwFirstDayOfYear = [FW StartOfYear] - VAR FwDayOfYear = - INT ( CalDate - FwFirstDayOfYear + 1 ) - VAR CalYear = - YEAR ( [Date] ) - VAR CalMonthNumber = - MONTH ( [Date] ) - VAR CalDay = - DAY ( [Date] ) - VAR FwDayOfYearNumber = CalDate - [FW StartOfYear] - + 1 - VAR FwWeekNumber = - INT ( CEILING ( FwDayOfYearNumber / 7, 1 ) ) - VAR FwPeriodNumber = - IF ( FwWeekNumber > 52, 14, ROUNDUP ( FwWeekNumber / 4, 0 ) ) - VAR FwYearNumber = [FW YearNumber] - VAR FwQuarterNumber = - IF ( FwWeekNumber > 52, 4, ROUNDUP ( FwWeekNumber / 13, 0 ) ) - VAR FwWeekInQuarterNumber = - IF ( FwWeekNumber > 52, 14, FwWeekNumber - 13 * ( FwQuarterNumber - 1 ) ) - VAR FwMonthNumber = - ( FwQuarterNumber - 1 ) - * 3 - + SWITCH ( - TRUE, - FwWeekInQuarterNumber <= WeeksInP1, 1, - FwWeekInQuarterNumber - <= ( WeeksInP1 + WeeksInP2 ), 2, - 3 - ) - VAR WeekDayNumber = - WEEKDAY ( CalDate, WeekDayCalculationType ) - VAR FirstDayOfWeek = [Date] - WeekDayNumber - + 1 - VAR LastDayOfWeek = FirstDayOfWeek + 6 - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( CalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - // "FW YearNumber", FwYearNumber, -- It is already in the first set of columns of the GENERATE function - "FW Year", FiscalWeeklyPrefixSpace & FwYearNumber, - "FW QuarterNumber", FwQuarterNumber, - "FW Quarter", FiscalWeeklyPrefix & "Q" - & FwQuarterNumber, - "FW YearQuarterNumber", FwYearNumber * 4 - - 1 - + FwQuarterNumber, - "FW Quarter Year", FiscalWeeklyPrefix & "Q" - & FwQuarterNumber - & " " - & FwYearNumber, - "FW MonthNumber", FwMonthNumber, - "FW Month", FiscalWeeklyPrefix & "P" - & FORMAT ( FwMonthNumber, "00" ), - "FW YearMonthNumber", FwYearNumber * 12 - - 1 - + FwMonthNumber, - "FW Month Year", FiscalWeeklyPrefix & "P" - & FORMAT ( FwMonthNumber, "00" ) - & " " - & FwYearNumber, - "FW WeekNumber", FwWeekNumber, - "FW Week", FiscalWeeklyPrefix & "W" - & FORMAT ( FwWeekNumber, "00" ), - "FW PeriodNumber", FwPeriodNumber, - "FW Period", FiscalWeeklyPrefix & "P" - & FORMAT ( FwPeriodNumber, "00" ), - "FW YearWeekNumber", INT ( DIVIDE ( CalDate - FirstWeekReference, 7 ) ) - + 1, - "FW Week Year", FiscalWeeklyPrefix & "W" - & FORMAT ( FwWeekNumber, "00" ) - & " " - & FwYearNumber, - "FW StartOfWeek", FirstDayOfWeek, - "FW EndOfWeek", LastDayOfWeek, - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( CalDate, "ddd" ), - "FW DayOfYearNumber", FwDayOfYear, - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ) - ) - ) - VAR FiscalWeeks_Pre = - GENERATE ( - FiscalWeeksBase, - VAR CalDate = [Date] - VAR FWYearNumber = [FW YearNumber] - VAR FwYearWeekNumber = [FW YearWeekNumber] - VAR FwYearMonthNumber = [FW YearMonthNumber] - VAR FwYearQuarterNumber = [FW YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearNumber] - ) - VAR RelativeWeekPos = FwYearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = FwYearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = FwYearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = FWYearNumber - CurrentYearPos - VAR FwStartOfMonth = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearMonthNumber] = FwYearMonthNumber ), - [Date] - ) - VAR FwEndOfMonth = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearMonthNumber] = FwYearMonthNumber ), - [Date] - ) - VAR FwMonthDays = - INT ( FwEndOfMonth - FwStartOfMonth + 1 ) - VAR FwDayOfMonthNumber = - INT ( CalDate - FwStartOfMonth + 1 ) - VAR FwStartOfQuarter = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearQuarterNumber] = FwYearQuarterNumber ), - [Date] - ) - VAR FwEndOfQuarter = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearQuarterNumber] = FwYearQuarterNumber ), - [Date] - ) - VAR FwQuarterDays = - INT ( FwEndOfQuarter - FwStartOfQuarter + 1 ) - VAR FwDayOfQuarterNumber = - INT ( CalDate - FwStartOfQuarter + 1 ) - VAR FwStartOfYear = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearNumber] = FwYearNumber ), - [Date] - ) - VAR FwEndOfYear = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearNumber] = FwYearNumber ), - [Date] - ) - VAR FwYearDays = - INT ( FwEndOfYear - FwStartOfYear + 1 ) - RETURN - ROW ( "FW RelativeWeekPos", RelativeWeekPos, - "FW RelativeMonthPos", RelativeMonthPos, - "FW RelativeQuarterPos", RelativeQuarterPos, - "FW RelativeYearPos", RelativeYearPos, - "FW StartOfMonth", FwStartOfMonth, - "FW EndOfMonth", FwEndOfMonth, - "FW DayOfMonthNumber", FwDayOfMonthNumber, - "FW StartOfQuarter", FwStartOfQuarter, - "FW EndOfQuarter", FwEndOfQuarter, - "FW DayOfQuarterNumber", FwDayOfQuarterNumber, - "FW MonthDays", FwMonthDays, - "FW QuarterDays", FwQuarterDays, - "FW YearDays", FwYearDays - ) - ) - VAR FiscalWeeks = - GENERATE ( - FiscalWeeks_Pre, - VAR CalDate = [Date] - VAR FwYearMonthNumber = [FW YearMonthNumber] - VAR FwYearQuarterNumber = [FW YearQuarterNumber] - VAR FWYearNumber = [FW YearNumber] - VAR FwDayOfMonthNumber = [FW DayOfMonthNumber] - VAR FwDayOfQuarterNumber = [FW DayOfQuarterNumber] - VAR FwDayOfYearNumber = [FW DayOfYearNumber] - VAR FwMonthDays = [FW EndOfMonth] - [FW StartOfMonth] + 1 - VAR FwQuarterDays = [FW EndOfQuarter] - [FW StartOfQuarter] + 1 - VAR FwYearDays = [FW EndOfYear] - [FW StartOfYear] + 1 - VAR FwDatePreviousWeek = CalDate - 7 - VAR FwDatePreviousMonth = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearMonthNumber] = FwYearMonthNumber - 1 - && - ( [FW DayOfMonthNumber] <= FwDayOfMonthNumber - || FwDayOfMonthNumber = FwMonthDays ) - ), - [Date] - ) - VAR FwDatePreviousQuarter = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearQuarterNumber] = FwYearQuarterNumber - 1 - && - ( [FW DayOfQuarterNumber] <= FwDayOfQuarterNumber - || FwDayOfQuarterNumber = FwQuarterDays ) - ), - [Date] - ) - VAR FwDatePreviousYear = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearNumber] = FWYearNumber - 1 - && - ( [FW DayOfYearNumber] <= FwDayOfYearNumber - || FwDayOfYearNumber = FwYearDays ) - ), - [Date] - ) - RETURN - ROW ( - "FW DatePreviousWeek", FwDatePreviousWeek, - "FW DatePreviousMonth", FwDatePreviousMonth, - "FW DatePreviousQuarter", FwDatePreviousQuarter, - "FW DatePreviousYear", FwDatePreviousYear - ) - ) - - VAR CompleteCalendarExpanded = - NATURALLEFTOUTERJOIN ( - FiscalStandardGregorian, - NATURALLEFTOUTERJOIN ( CalendarStandardGregorian, FiscalWeeks ) - ) - VAR CompleteCalendar = - FILTER ( - CompleteCalendarExpanded, - ( [Calendar YearNumber] >= FirstYear && [Calendar YearNumber] <= LastYear && CalendarRange = "Calendar" ) - || - ( [Fiscal YearNumber] >= FirstYear && [Fiscal YearNumber] <= LastYear && CalendarRange = "FiscalGregorian" ) - || - ( [FW YearNumber] >= FirstYear && [FW YearNumber] <= LastYear && CalendarRange = "FiscalWeekly" ) - ) - - VAR Result = - SELECTCOLUMNS ( - CompleteCalendar, - - -- Base date columns - "Date", [Date], - "DateKey", [DateKey], - - "Day of Month", [Day of Month], - "WeekDayNumber", [WeekDayNumber], - - "Week Day", [Week Day], - "Sequential365DayNumber", [Sequential365DayNumber], - "Relative Day", DATEDIFF(VALUES('Date Table Setup'[Today]),[Date],DAY), - - -- Calendar = Solar Calendar (January-December) - "Calendar YearNumber", [Calendar YearNumber], - "Calendar Year", [Calendar Year], - "Calendar QuarterNumber", [Calendar QuarterNumber], - "Calendar Quarter", [Calendar Quarter], - "Calendar YearQuarterNumber", [Calendar YearQuarterNumber], - "Calendar Quarter Year", [Calendar Quarter Year], - "Calendar MonthNumber", [Calendar MonthNumber], - "Calendar Month", [Calendar Month], - "Calendar YearMonthNumber", [Calendar YearMonthNumber], - "Calendar Month Year", [Calendar Month Year], - "Calendar WeekNumber", [Calendar WeekNumber], - "Calendar Week", [Calendar Week], - "Calendar YearWeekNumber", [Calendar YearWeekNumber], - "Calendar Week Year", [Calendar Week Year], - "Calendar WeekYearOrder", [Calendar WeekYearOrder], - "Calendar RelativeWeekPos", [Calendar RelativeWeekPos], - "Calendar RelativeMonthPos", [Calendar RelativeMonthPos], - "Calendar RelativeQuarterPos", [Calendar RelativeQuarterPos], - "Calendar RelativeYearPos", [Calendar RelativeYearPos], - "Calendar StartOfMonth", [Calendar StartOfMonth], - "Calendar EndOfMonth", [Calendar EndOfMonth], - "Calendar StartOfQuarter", [Calendar StartOfQuarter], - "Calendar EndOfQuarter", [Calendar EndOfQuarter], - "Calendar StartOfYear", [Calendar StartOfYear], - "Calendar EndOfYear", [Calendar EndOfYear], - "Calendar MonthDays", [Calendar MonthDays], - "Calendar QuarterDays", [Calendar QuarterDays], - "Calendar YearDays", [Calendar YearDays], - "Calendar DayOfMonthNumber", [Calendar DayOfMonthNumber], - "Calendar DayOfQuarterNumber", [Calendar DayOfQuarterNumber], - "Calendar DayOfYearNumber", [Calendar DayOfYearNumber], - "Calendar DatePreviousWeek", [Calendar DatePreviousWeek], - "Calendar DatePreviousMonth", [Calendar DatePreviousMonth], - "Calendar DatePreviousQuarter", [Calendar DatePreviousQuarter], - "Calendar DatePreviousYear", [Calendar DatePreviousYear], - - -- Fiscal = Fiscal Monthly Calendar - "Fiscal Year", [Fiscal Year], - "Fiscal YearNumber", [Fiscal YearNumber], - "Fiscal QuarterNumber", [Fiscal QuarterNumber], - "Fiscal Quarter", [Fiscal Quarter], - "Fiscal YearQuarterNumber", [Fiscal YearQuarterNumber], - "Fiscal Quarter Year", [Fiscal Quarter Year], - "Fiscal MonthNumber", [Fiscal MonthNumber], - "Fiscal MonthInQuarterNumber", [Fiscal MonthQuarterNumber], - "Fiscal Month", [Fiscal Month], - "Fiscal YearMonthNumber", [Fiscal YearMonthNumber], - "Fiscal Month Year", [Fiscal Month Year], - "Fiscal WeekNumber", [Fiscal WeekNumber], - "Fiscal Week", [Fiscal Week], - "Fiscal YearWeekNumber", [Fiscal YearWeekNumber], - "Fiscal Week Year", [Fiscal Week Year], - "Fiscal WeekYearOrder", [Fiscal WeekYearOrder], - "Fiscal RelativeWeekPos", [Fiscal RelativeWeekPos], - "Fiscal RelativeMonthPos", [Fiscal RelativeMonthPos], - "Fiscal RelativeQuarterPos", [Fiscal RelativeQuarterPos], - "Fiscal RelativeYearPos", [Fiscal RelativeYearPos], - "Fiscal StartOfMonth", [Fiscal StartOfMonth], - "Fiscal EndOfMonth", [Fiscal EndOfMonth], - "Fiscal StartOfQuarter", [Fiscal StartOfQuarter], - "Fiscal EndOfQuarter", [Fiscal EndOfQuarter], - "Fiscal StartOfYear", [Fiscal StartOfYear], - "Fiscal EndOfYear", [Fiscal EndOfYear], - "Fiscal MonthDays", [Fiscal MonthDays], - "Fiscal QuarterDays", [Fiscal QuarterDays], - "Fiscal YearDays", [Fiscal YearDays], - "Fiscal DayOfMonthNumber", [Fiscal DayOfMonthNumber], - "Fiscal DayOfQuarterNumber", [Fiscal DayOfQuarterNumber], - "Fiscal DayOfYearNumber", [Fiscal DayOfYearNumber], - "Fiscal DatePreviousWeek", [Fiscal DatePreviousWeek], - "Fiscal DatePreviousMonth", [Fiscal DatePreviousMonth], - "Fiscal DatePreviousQuarter", [Fiscal DatePreviousQuarter], - "Fiscal DatePreviousYear", [Fiscal DatePreviousYear], - - -- FW = Fiscal Weekly calendar - "FW YearNumber", [FW YearNumber], - "FW Year", [FW Year], - "FW QuarterNumber", [FW QuarterNumber], - "FW Quarter", [FW Quarter], - "FW YearQuarterNumber", [FW YearQuarterNumber], - "FW Quarter Year", [FW Quarter Year], - "FW MonthNumber", [FW MonthNumber], - "FW Month", [FW Month], - "FW YearMonthNumber", [FW YearMonthNumber], - "FW Month Year", [FW Month Year], - "FW WeekNumber", [FW WeekNumber], - "FW Week", [FW Week], - "FW PeriodNumber", [FW PeriodNumber], - "FW Period", [FW Period], - "FW YearWeekNumber", [FW YearWeekNumber], - "FW Week Year", [FW Week Year], - "FW StartOfWeek", [FW StartOfWeek], - "FW EndOfWeek", [FW EndOfWeek], - "FW RelativeWeekPos", [FW RelativeWeekPos], - "FW RelativeMonthPos", [FW RelativeMonthPos], - "FW RelativeQuarterPos", [FW RelativeQuarterPos], - "FW RelativeYearPos", [FW RelativeYearPos], - "FW StartOfMonth", [FW StartOfMonth], - "FW EndOfMonth", [FW EndOfMonth], - "FW StartOfQuarter", [FW StartOfQuarter], - "FW EndOfQuarter", [FW EndOfQuarter], - "FW StartOfYear", [FW StartOfYear], - "FW EndOfYear", [FW EndOfYear], - "FW MonthDays", [FW MonthDays], - "FW QuarterDays", [FW QuarterDays], - "FW YearDays", [FW YearDays], - "FW DayOfMonthNumber", [FW DayOfMonthNumber], - "FW DayOfQuarterNumber", [FW DayOfQuarterNumber], - "FW DayOfYearNumber", [FW DayOfYearNumber], - "FW DatePreviousWeek", [FW DatePreviousWeek], - "FW DatePreviousMonth", [FW DatePreviousMonth], - "FW DatePreviousQuarter", [FW DatePreviousQuarter], - "FW DatePreviousYear", [FW DatePreviousYear], - - -- Holidays and working days - "Holiday Name", [Holiday Name], - "IsWorkingDay", [IsWorkingDay], - "Day Type", [Day Type] - ) - RETURN - Result - ``` - - changedProperty = IsHidden - - annotation PBI_Id = 8529640259ef4503a795eb4acb9896dc - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Table Setup.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Table Setup.tmdl deleted file mode 100644 index 98c057ef1e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date Table Setup.tmdl +++ /dev/null @@ -1,374 +0,0 @@ -table 'Date Table Setup' - isHidden - lineageTag: d7025a2b-e909-4d09-8e46-3ac17f8ea354 - - measure 'Last Refresh Label' = ``` - - VAR LastRefreshLabel = [Last Refreshed Label] & ": " - VAR LastRefreshDate = - FORMAT ( VALUES ( 'Date Table Setup'[Today] ), BLANK (), USERCULTURE () ) - VAR LastRefreshTime = - FORMAT ( - VALUES ( 'Date Table Setup'[Last Refresh Time] ), - "hh:nn AMPM", - USERCULTURE () - ) - VAR CompanyName = [Company Name Label] & ": " - VAR AnalysisEntriesAsOfDate = - FORMAT ( - LOOKUPVALUE ( - 'Analysis Date'[Analysis Date], - 'Analysis Date'[is current Version], TRUE () - ), - BLANK (), - USERCULTURE () - ) - RETURN - CompanyName & [Company Label] & " - " & LastRefreshLabel & LastRefreshDate & " " & LastRefreshTime & " - " & [Analysis Entries as of Label] & ": " & AnalysisEntriesAsOfDate - - ``` - isHidden - lineageTag: c652d99c-caec-428b-bfc1-56978a7d1ac9 - - changedProperty = IsHidden - - column 'First Day of Week' - dataType: int64 - isHidden - formatString: 0 - lineageTag: f67dc51b-1f06-4ee1-a723-9d99b4c0e166 - summarizeBy: sum - sourceColumn: First Day of Week - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column Today - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: cc070ecf-9186-4f88-a22e-d07f52fb5717 - summarizeBy: none - sourceColumn: Today - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column fiscalCalendarFirstMonth - dataType: int64 - isHidden - formatString: 0 - lineageTag: 33a00901-69f8-4c81-bfee-2eb0b7d00de1 - summarizeBy: sum - sourceColumn: fiscalCalendarFirstMonth - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column firstDayOfWeek - dataType: string - isHidden - lineageTag: 4446c3e9-c3eb-4b2d-aa91-13436eb1d80b - summarizeBy: none - sourceColumn: firstDayOfWeek - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column isoCountryHolidays - dataType: string - isHidden - lineageTag: 12d102fb-ff3c-41d8-bf79-2e8a6072f91b - summarizeBy: none - sourceColumn: isoCountryHolidays - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column weeklyType - dataType: string - isHidden - lineageTag: bd977b0c-78cf-4b12-8732-5014f60668d6 - summarizeBy: none - sourceColumn: weeklyType - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column quarterWeekType - dataType: string - isHidden - lineageTag: 82446bf0-c58e-45ef-9039-55dd55444ee3 - summarizeBy: none - sourceColumn: quarterWeekType - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column calendarRange - dataType: string - isHidden - lineageTag: 3a8f008a-31df-46d4-bb66-f669ed747388 - summarizeBy: none - sourceColumn: calendarRange - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column calendarPrefix - dataType: string - isHidden - lineageTag: c8fa610e-ec84-4579-964b-dce877909c68 - summarizeBy: none - sourceColumn: calendarPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column fiscalGregorianPrefix - dataType: string - isHidden - lineageTag: eb3c4fef-3b31-43b7-80ba-3fc4e30d7c8b - summarizeBy: none - sourceColumn: fiscalGregorianPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column fiscalWeeklyPrefix - dataType: string - isHidden - lineageTag: b157d4d2-fc5a-4f5f-99d3-f68dd0085da4 - summarizeBy: none - sourceColumn: fiscalWeeklyPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column useCustomFisclPeriods - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 245fa790-9499-4f92-abc4-0586f1e646bb - summarizeBy: none - sourceColumn: useCustomFisclPeriods - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column ignoreWeeklyPeriods - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 3a764081-088c-492b-ae2e-607eb4eb1270 - summarizeBy: none - sourceColumn: ignoreWeeklyPeriods - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column dateTblStart - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 52f280fc-0fcb-4305-b47f-9546da22f7b2 - summarizeBy: none - sourceColumn: dateTblStart - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column dateTblEnd - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 2b872858-d31a-4588-96fb-ebb5593bb154 - summarizeBy: none - sourceColumn: dateTblEnd - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column timeZone - dataType: string - isHidden - lineageTag: 1a8776d9-01e6-4653-b059-459ac905de4b - summarizeBy: none - sourceColumn: timeZone - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column timeZoneDisplayName - dataType: string - isHidden - lineageTag: a4cd51c2-0616-44ee-9888-57332071535e - summarizeBy: none - sourceColumn: timeZoneDisplayName - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - isHidden - lineageTag: 9da54e27-b18f-4012-b4d2-9807ee8d261d - summarizeBy: none - sourceColumn: id - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Last Refresh Time' - dataType: dateTime - isHidden - formatString: Long Time - lineageTag: a12e2d62-cfe3-4cf5-9675-ef5be6a85c8d - summarizeBy: none - sourceColumn: Last Refresh Time - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Time - - column entryNo - dataType: string - isHidden - lineageTag: ba10457d-1371-4678-aca5-857eaf80e03c - summarizeBy: none - sourceColumn: entryNo - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Max Date with Actuals' = - - max(max(max('Subscription'[Analysis Date]),max('Customer Contract Deferrals'[Posting Date])),max('Vendor Contract Deferrals'[Posting Date])) - isHidden - formatString: Short Date - lineageTag: 22c86a03-f247-4187-81cf-d1a4b285f078 - summarizeBy: none - - changedProperty = DataType - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column tenantID - dataType: string - lineageTag: 97dc332c-e49c-41e6-9900-c0e3fca7e493 - summarizeBy: none - sourceColumn: tenantID - - annotation SummarizationSetBy = Automatic - - partition 'Date Table Setup-212423f6-d641-4afd-8cf7-9cfd267b40dc' = m - mode: import - queryGroup: 'Date Table' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY, API_ENDPOINT, []), - TableData = Source{[Name = "dateSetups", Signature = "table"]}[Data], - #"Check TenantID" = if Table.HasColumns(TableData, "tenantID") then TableData else Table.AddColumn(TableData, "tenantID", each null, type text), - #"Convert UTC to Local" = ConvertUTC(#"Check TenantID"), - #"Removed Columns" = Table.RemoveColumns(#"Convert UTC to Local", {"ETag"}), - #"Added Conditional Column" = Table.AddColumn( - #"Removed Columns", - "First Day of Week", - each - if [firstDayOfWeek] = "Sunday" then - 0 - else if [firstDayOfWeek] = "Monday" then - 1 - else if [firstDayOfWeek] = "Tuesday" then - 2 - else if [firstDayOfWeek] = "Wednesday" then - 3 - else if [firstDayOfWeek] = "Thursday" then - 4 - else if [firstDayOfWeek] = "Friday" then - 5 - else if [firstDayOfWeek] = "Saturday" then - 6 - else - 1 - ), - #"Changed Type" = Table.TransformColumnTypes(#"Added Conditional Column", {{"First Day of Week", Int64.Type}}), - #"Replaced Value" = Table.ReplaceValue( - #"Changed Type", - each [calendarRange], - each - if [calendarRange] = "Weekly" then - "FiscalWeekly" - else if [calendarRange] = "Fiscal Calendar" then - "FiscalGregorian" - else - "Calendar", - Replacer.ReplaceText, - {"calendarRange"} - ), - #"Replaced Value1" = Table.ReplaceValue( - #"Replaced Value", "", "F", Replacer.ReplaceValue, {"fiscalGregorianPrefix"} - ), - #"Replaced Value2" = Table.ReplaceValue( - #"Replaced Value1", "", "FW", Replacer.ReplaceValue, {"fiscalWeeklyPrefix"} - ), - #"Changed Type3" = Table.TransformColumnTypes( - #"Replaced Value2", - { - {"fiscalCalendarFirstMonth", Int64.Type}, - {"firstDayOfWeek", type text}, - {"isoCountryHolidays", type text}, - {"weeklyType", type text}, - {"quarterWeekType", type text}, - {"calendarRange", type text}, - {"calendarPrefix", type text}, - {"fiscalGregorianPrefix", type text}, - {"fiscalWeeklyPrefix", type text}, - {"useCustomFisclPeriods", type logical}, - {"ignoreWeeklyPeriods", type logical}, - {"timeZone", type text}, - {"timeZoneDisplayName", type text}, - {"dateTblStart", type date}, - {"dateTblEnd", type date} - } - ) - in - #"Changed Type3" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date.tmdl deleted file mode 100644 index 0a5b044176..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Date.tmdl +++ /dev/null @@ -1,1445 +0,0 @@ -table Date - lineageTag: 43a65c75-84cf-4e19-b893-90aa5fbee72b - dataCategory: Time - - measure 'No. of Days' = ``` - - COUNTROWS ( - DATESBETWEEN ( - 'Date'[Date], - MIN('Date'[Date]), - MAX('Date'[Date]) - ) - ) - ``` - formatString: 0 - lineageTag: 1a4368d8-993e-48df-ba27-a8c23154722a - - changedProperty = IsHidden - - column Date - isKey - formatString: Short Date - lineageTag: de457cc0-85dc-480a-94be-35b6a6b818d0 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Date] - sortByColumn: DateKey - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column DateKey - isHidden - formatString: 0 - lineageTag: a8e1fec3-f094-43aa-b68a-1204a15e3fed - summarizeBy: count - isNameInferred - sourceColumn: Date Ref[DateKey] - - annotation SummarizationSetBy = Automatic - - column 'Day of Month' - isHidden - formatString: 0 - lineageTag: fb640852-0a87-4db3-924f-91271646d948 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Day of Month] - - annotation SummarizationSetBy = Automatic - - column WeekDayNumber - isHidden - formatString: 0 - lineageTag: 4d53cb31-8efa-4e34-ad8c-f0e387a56a2b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[WeekDayNumber] - - annotation SummarizationSetBy = Automatic - - column 'Week Day' - lineageTag: 87d986f6-8d0a-4af1-bf9d-2748b7ba57dc - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Week Day] - sortByColumn: WeekDayNumber - - annotation SummarizationSetBy = Automatic - - column 'Holiday Name' - isHidden - lineageTag: 44c6940b-52cb-4c9f-a4f9-00590fd0a22e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Holiday Name] - - annotation SummarizationSetBy = Automatic - - column IsWorkingDay - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 7d4283ba-58dd-4c57-abec-3945999ba321 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[IsWorkingDay] - - annotation SummarizationSetBy = Automatic - - column 'Day Type' - lineageTag: a92edf57-7150-40d0-98b0-670245650ac0 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Day Type] - - annotation SummarizationSetBy = Automatic - - column 'Data Range Analysis' - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 29288877-7601-49ac-89f6-b9bbd9dd065f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Data Range Analysis] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearNumber' - isHidden - formatString: 0 - lineageTag: 3776f4bf-9971-4135-ae3d-5eeff20d9b67 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Year' - displayFolder: _Standard Calendar - lineageTag: eafb2700-d9bf-40ef-b2a6-d97476b09f5e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Year] - sortByColumn: 'Calendar YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterNumber' - isHidden - lineageTag: c8784f24-f4a6-4663-a2d2-f1cf8cab19aa - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter' - displayFolder: _Standard Calendar - lineageTag: 906fcdf7-6285-4922-8968-362fc571dd84 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Quarter] - sortByColumn: 'Calendar QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearQuarterNumber' - isHidden - lineageTag: 0bb5b664-4cce-44d0-854e-fdb6a35905a5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter Year' - displayFolder: _Standard Calendar - lineageTag: 2c5ea502-608c-4500-beb1-042ffb003d68 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Quarter Year] - sortByColumn: 'Calendar YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthNumber' - isHidden - formatString: 0 - lineageTag: 28353b66-7741-4868-9f92-840f4b4710ec - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month' - displayFolder: _Standard Calendar - lineageTag: 6e1a2bd3-8529-433c-a4ea-a6a3d3611046 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Month] - sortByColumn: 'Calendar MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 549dd6c7-9e3f-4dfd-8bab-67548032517f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month Year' - displayFolder: _Standard Calendar - lineageTag: 46388357-c60d-4744-a628-f9ccff2c0687 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Month Year] - sortByColumn: 'Calendar YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekNumber' - isHidden - formatString: 0 - lineageTag: 1e84e68f-60ef-4164-b0ee-9c93f764a851 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week' - displayFolder: _Standard Calendar - lineageTag: fa556103-ff03-4954-af2d-8e70b22bcfb7 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Week] - sortByColumn: 'Calendar WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearWeekNumber' - isHidden - formatString: 0 - lineageTag: bde602a6-67d7-4d1a-9669-98fc28358fcb - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week Year' - displayFolder: _Standard Calendar - lineageTag: 43f804c2-759c-4fe1-97d9-0dc74f83630c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Week Year] - sortByColumn: 'Calendar YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekYearOrder' - isHidden - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 37b44620-7711-492f-8cb9-0077e01d64eb - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Calendar RelativeWeekPos' - displayFolder: _Standard Calendar - lineageTag: 3c121010-847d-4661-86b0-d3306993d1fc - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeMonthPos' - displayFolder: _Standard Calendar - lineageTag: 72d7ff37-a6f6-45ac-9bd1-cb3050da78f3 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeQuarterPos' - displayFolder: _Standard Calendar - lineageTag: b9bbb6c1-a863-42b0-9be0-4c067880aecf - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeYearPos' - displayFolder: _Standard Calendar - lineageTag: 0389f321-8c3e-4094-9937-a72690d006ce - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar StartOfMonth' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: 86e6859f-ddf3-4905-b792-58c9b97c6e44 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfMonth] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Calendar EndOfMonth' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: cacb2e9f-f673-4700-af72-7afbee746739 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfQuarter' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: fe44207b-b823-4d13-a311-0c96e70b987c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Calendar EndOfQuarter' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: 3291fc3a-8587-4dca-b01d-2ab523ce7101 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfYear' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: c33c2def-e542-47d1-b431-11fa3ec39720 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfYear] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Calendar EndOfYear' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: ef673c14-ae3c-4f69-bb8a-f63db9617875 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: c7b6991d-1e93-4a53-b0bf-bb4d9728240b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 7e1c85c4-20ce-49a5-a788-b44eff618ef3 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 4891dfee-1f75-4c3a-9bea-861d3612b2a5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfMonthNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 34806fca-07c1-4024-a936-9161e13a8c7b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfQuarterNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 9bddb3d9-8f84-44de-9e0c-30aacc4fe3db - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfYearNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 5e77a5c0-44bc-493f-9fd1-3c3c3845fc32 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousWeek' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: 9412edbb-aa3e-440a-b28b-b815200206c1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousMonth' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: c0ff8f0c-5607-440d-beb7-be720f02c21c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousQuarter' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: b1cd39c6-820f-4eec-b95b-eca9e4fb2f3f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousYear' - formatString: Short Date - displayFolder: _Standard Calendar - lineageTag: 3836d147-36d2-4b0c-be3a-02013f871121 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Year' - displayFolder: _Fiscal Calendar - lineageTag: 4309f1b1-5303-4bbe-a033-3ae569481cb4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Year] - sortByColumn: 'Fiscal YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearNumber' - isHidden - formatString: 0 - lineageTag: 9be61963-a572-4d0e-aac5-59229b25c86a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterNumber' - isHidden - lineageTag: f01a737d-316e-41b5-879c-74a492e01e89 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter' - displayFolder: _Fiscal Calendar - lineageTag: a3fdb947-7ec9-4f75-a830-9e008027f5be - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Quarter] - sortByColumn: 'Fiscal QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearQuarterNumber' - isHidden - lineageTag: 91dbdef6-b76d-494a-8b66-dc10f7e03b45 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter Year' - displayFolder: _Fiscal Calendar - lineageTag: 55062367-69e1-4f9a-b4a6-ea8e527caec4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Quarter Year] - sortByColumn: 'Fiscal YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthNumber' - isHidden - formatString: 0 - lineageTag: c080d6c2-37fd-4243-a69b-ae601a5ee927 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthInQuarterNumber' - isHidden - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: eeb15ac4-273e-411a-b2c6-bd6ef69d3ad9 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthInQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month' - displayFolder: _Fiscal Calendar - lineageTag: 8a49071b-afae-41c5-b463-81bce1e24c65 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Month] - sortByColumn: 'Fiscal MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 8254bc5a-ce6f-4b87-bccf-33998052ec7e - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month Year' - displayFolder: _Fiscal Calendar - lineageTag: a6c93316-93e2-4fc2-aebb-21781fcbf7d5 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Month Year] - sortByColumn: 'Fiscal YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekNumber' - isHidden - formatString: 0 - lineageTag: 72c2ff47-4995-4360-9f14-9c170925dfae - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week' - displayFolder: _Fiscal Calendar - lineageTag: 3ee8444b-9959-446c-909b-67ccacc04ec1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Week] - sortByColumn: 'Fiscal WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearWeekNumber' - isHidden - formatString: 0 - lineageTag: 3f1d7ad9-7131-4869-ae4d-1e4861378737 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week Year' - displayFolder: _Fiscal Calendar - lineageTag: b09e6e42-954d-401d-901e-73a4908a36eb - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Week Year] - sortByColumn: 'FW YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekYearOrder' - isHidden - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 10b9bda4-f167-4bd3-a6f7-a9ebf4f38a36 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal RelativeWeekPos' - displayFolder: _Fiscal Calendar - lineageTag: a7092406-c70e-47ce-bb5c-8f8c9eb85e1f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeMonthPos' - displayFolder: _Fiscal Calendar - lineageTag: e4c65d43-bc58-4c60-a2e6-ca42f109abab - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeQuarterPos' - displayFolder: _Fiscal Calendar - lineageTag: 8db19a91-3741-4dfe-832d-0b08d51a578a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeYearPos' - displayFolder: _Fiscal Calendar - lineageTag: 405ce0df-cdba-447e-abb8-2f7fda806b0b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal StartOfMonth' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: 96ec7ed1-cf0f-444d-86bc-2cf7fd378db1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfMonth] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Fiscal EndOfMonth' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: d4ee5d8b-8ac7-4319-a7a6-0ec65331f465 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfQuarter' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: 268275df-62fb-49db-987d-5e4e1b08a39c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Fiscal EndOfQuarter' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: bc4ac4d0-6d23-43e0-9c0f-bd2039e21980 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfYear' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: cfa797dd-4fe9-4af8-9aaf-543956efd413 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfYear] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Fiscal EndOfYear' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: 3d9bdb34-e70a-44ec-b296-d13266432f70 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 5d912c0d-fcf0-4259-b2f2-1b8f21666e05 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: dce72481-e786-4ed9-9776-584f5732d133 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: b2e1d2c0-aa54-4100-a7f2-a4e018e0bce0 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfMonthNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 9005eda0-cd3d-40ac-800b-72f704c571f2 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfQuarterNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 90be3b35-e218-47e3-91fd-707bfc7c7a2a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfYearNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 51f8869a-eae7-44e0-aaa3-a8219657d14c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousWeek' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: f3d6591f-f7e3-4909-a849-6ac956f6e4b5 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousMonth' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: cca225dd-90da-4aa5-8907-aff394845eee - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousQuarter' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: 09daf6ef-268b-4d0d-b5c8-413ce37c6186 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousYear' - formatString: Short Date - displayFolder: _Fiscal Calendar - lineageTag: 239ad661-3781-4f71-a474-045ee230e220 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'FW YearNumber' - isHidden - formatString: 0 - lineageTag: 4a945aab-e20f-4631-aea9-c68d8879113e - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Year' - displayFolder: _Weekly Calendar - lineageTag: ac826f1e-e350-4f10-a088-7cdd9d921d22 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Year] - sortByColumn: 'FW YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterNumber' - isHidden - lineageTag: 1e73dd82-3efb-4a8c-8682-b64d5d5ebf12 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter' - displayFolder: _Weekly Calendar - lineageTag: ea488855-48b0-4a2d-a99c-cfeb1c841c00 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Quarter] - sortByColumn: 'FW QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearQuarterNumber' - isHidden - lineageTag: 9f02774d-9843-422a-b215-e1d6a739825f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter Year' - displayFolder: _Weekly Calendar - lineageTag: 61e1ae08-6194-4c3c-b8d6-b7b3a8548e3f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Quarter Year] - sortByColumn: 'FW YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW MonthNumber' - isHidden - lineageTag: 838c85c2-dc3c-4072-b0fe-21061bb62085 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW MonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month' - displayFolder: _Weekly Calendar - lineageTag: 3b27db1b-5184-48e7-a64f-8713263bbcde - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Month] - sortByColumn: 'FW MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearMonthNumber' - isHidden - lineageTag: f794c90d-e274-43d4-b0fe-e70babcb82e5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month Year' - displayFolder: _Weekly Calendar - lineageTag: b4fc566a-9fa1-4d4c-b593-b9e688465df8 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Month Year] - sortByColumn: 'FW YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW WeekNumber' - isHidden - formatString: 0 - lineageTag: 14b75dde-362c-45e2-b8fa-8b4846b97d92 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week' - displayFolder: _Weekly Calendar - lineageTag: 94ccf79f-75e4-4e53-85e5-d7ba2e318383 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Week] - sortByColumn: 'FW WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW PeriodNumber' - isHidden - lineageTag: ff1b8388-ed99-4f9e-b20b-9fa56541d3c7 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW PeriodNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Period' - displayFolder: _Weekly Calendar - lineageTag: 1ea40e86-d134-40b0-a117-957e0fcb5c94 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Period] - sortByColumn: 'FW PeriodNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearWeekNumber' - isHidden - formatString: 0 - lineageTag: ff50a726-b889-4a2b-90e5-50dd2be2de83 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week Year' - displayFolder: _Weekly Calendar - lineageTag: e215dcb4-1cb2-40be-9dbe-972862b3baa2 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Week Year] - sortByColumn: 'FW YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfWeek' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 13c0c728-c94e-4602-a213-81fdf9318fdd - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfWeek] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'FW EndOfWeek' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: ba4d5cae-592d-4aa1-bb4f-80d480ac0e32 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW RelativeWeekPos' - displayFolder: _Weekly Calendar - lineageTag: 90865798-3ed2-48db-970d-407a69f604a1 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeMonthPos' - displayFolder: _Weekly Calendar - lineageTag: 15cab468-7f86-4a20-81b2-ef7a1108ed10 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeQuarterPos' - displayFolder: _Weekly Calendar - lineageTag: 7c457684-360a-4ede-a38a-41c46bc88d7c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeYearPos' - displayFolder: _Weekly Calendar - lineageTag: 9ba55f9b-2226-4985-a3a5-def688fc151c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW StartOfMonth' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: a46d4152-42a0-44af-9ea8-16d4e9a15ecb - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfMonth] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'FW EndOfMonth' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 6293aed1-d7fa-41a1-a62d-fa2d8e89f045 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfQuarter' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 8483ae63-3171-4889-8dcb-bb706a0cfc45 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'FW EndOfQuarter' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: b249ccc8-36bd-4e18-b574-1fc55d8fc9a8 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfYear' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 4e147ce6-585a-4b5a-bf49-1e96a65022f6 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfYear] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'FW EndOfYear' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 60b08900-3f6c-4855-bc00-789ccb4ca8c2 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: df984e82-e421-48fc-8a00-59826303e58f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 4b23d5be-1bef-4bee-be02-a48c680a91ed - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'FW YearDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: f94d98c8-b581-4c1d-be31-23d2e0f57fba - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearDays] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfMonthNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 8d833c34-a69f-487a-a198-52eb7ae8fa48 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfQuarterNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 13d04d86-e5fa-48e4-a680-4ca569b43bfd - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfYearNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 17054897-fac4-4cab-89a0-88049f3b8b3b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousWeek' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 12add804-bcd9-449c-9034-623015558a9e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousMonth' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 81345b13-f5f8-4a2e-a9fa-2aa7a0cded00 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousQuarter' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: 326717ad-741d-4f97-86fa-864673193d21 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousYear' - formatString: Short Date - displayFolder: _Weekly Calendar - lineageTag: eccf8b73-0631-422c-a03b-44fdf591c2a4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Relative Day' - formatString: 0 - lineageTag: 065c76e8-8ede-45f4-b15b-f30f6d127e3e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Relative Day] - - annotation SummarizationSetBy = User - - column Sequential365DayNumber - formatString: 0 - lineageTag: bbd3cd48-1922-4293-8cd0-c69a7528ca56 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Sequential365DayNumber] - - annotation SummarizationSetBy = Automatic - - column 'Is Forecast Period' = - - if('Date'[Date]> EOMONTH( LOOKUPVALUE('Analysis Date'[Analysis Date],'Analysis Date'[is current Version],true),-1),true,FALSE()) - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 95518203-5407-421a-bb65-45e60150378b - summarizeBy: none - - annotation SummarizationSetBy = Automatic - - column 'Data Range Deferrals' - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 70ca7cef-c41e-4165-995e-f0baa99a67d0 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Data Range Deferrals] - - annotation SummarizationSetBy = Automatic - - hierarchy 'Fiscal Year-Quarter-Month-Week' - displayFolder: _Fiscal Calendar - lineageTag: 3d809386-699f-419e-b16d-f49c19b12b29 - - level 'Fiscal Year' - lineageTag: 40f0b909-9e82-4ba3-92df-a8b50b00a40b - column: 'Fiscal Year' - - level 'Fiscal Quarter Year' - lineageTag: b110c9b3-ebdb-4ed1-8427-abbb882e1d58 - column: 'Fiscal Quarter Year' - - level 'Fiscal Month Year' - lineageTag: 9bd26d03-671d-4cea-9e25-5aafb1c7d21f - column: 'Fiscal Month Year' - - level 'Fiscal Week Year' - lineageTag: 50478d23-8e70-467a-8801-ce96d8e29c35 - column: 'Fiscal Week Year' - - hierarchy 'Calendar Year-Quarter-Month-Week' - displayFolder: _Standard Calendar - lineageTag: 1e1ffcb8-b7cd-4858-91d0-5a8526a6a135 - - level 'Calendar Year' - lineageTag: d82e0fe4-49e2-4df6-a525-9a4f6108743b - column: 'Calendar Year' - - level 'Calendar Quarter Year' - lineageTag: 875d1c42-f9de-4373-9dec-a1409f1e179d - column: 'Calendar Quarter Year' - - level 'Calendar Month Year' - lineageTag: 86bf3301-883d-4e52-be22-7585cc62296d - column: 'Calendar Month Year' - - level 'Calendar Week Year' - lineageTag: 82ff4fc4-5640-43be-96e1-1ccb6533253e - column: 'Calendar Week Year' - - hierarchy 'FW Year-Quarter-Month-Week' - displayFolder: _Weekly Calendar - lineageTag: d82a685d-84a6-48dc-9d56-aba3a6d35852 - - level 'FW Year' - lineageTag: e5cd94ed-0d1a-4e41-89ad-82cf77688b47 - column: 'FW Year' - - level 'FW Quarter Year' - lineageTag: 9adb622b-d68e-41eb-92d3-f0d3ea6d363f - column: 'FW Quarter Year' - - level 'FW Month Year' - lineageTag: 80aae42c-b9ec-42c5-ae09-13c65d700732 - column: 'FW Month Year' - - level 'FW Week Year' - lineageTag: 01c4eb82-c283-4300-8765-3e61e813fec9 - column: 'FW Week Year' - - hierarchy 'Fiscal Year-Month' - displayFolder: _Fiscal Calendar - lineageTag: b91345f2-a64b-4476-bcdd-bc62e8eddf8c - - level 'Fiscal Year' - lineageTag: 54b6013d-cd41-43ea-adde-7461b8f56250 - column: 'Fiscal Year' - - level 'Fiscal Month Year' - lineageTag: 0e94c815-23fc-4ac6-9863-dd02e6f69315 - column: 'Fiscal Month Year' - - hierarchy 'Fiscal Year-Month-Week' - displayFolder: _Fiscal Calendar - lineageTag: 298a8eb2-1115-42f8-9b24-319c1f464fce - - level 'Fiscal Year' - lineageTag: e8fd0bf8-66c7-4df2-8526-1bb27177f912 - column: 'Fiscal Year' - - level 'Fiscal Month Year' - lineageTag: edd3142f-d60d-494b-85fc-dcadaaa5b8a4 - column: 'Fiscal Month Year' - - level 'Fiscal Week Year' - lineageTag: c88b8774-fc79-4567-9b79-2849dedd4657 - column: 'Fiscal Week Year' - - hierarchy 'Calendar Year-Month' - displayFolder: _Standard Calendar - lineageTag: b1438c41-8116-4575-9e46-a0c98f675559 - - level 'Calendar Year' - lineageTag: 7bfba93e-5d86-41fa-a428-152ab854a070 - column: 'Calendar Year' - - level 'Calendar Month Year' - lineageTag: a923bc3f-1bdd-4926-b538-a0bf17d0b2d5 - column: 'Calendar Month Year' - - hierarchy 'Calendar Year-Month-Week' - displayFolder: _Standard Calendar - lineageTag: 14bbd8ca-3b08-45dd-a221-5fde94bf8dc6 - - level 'Calendar Year' - lineageTag: b4693f04-e15f-42f1-afce-641aa9bd8386 - column: 'Calendar Year' - - level 'Calendar Month Year' - lineageTag: ad1f4929-9815-47ae-ae38-e76760467433 - column: 'Calendar Month Year' - - level 'Calendar Week Year' - lineageTag: 8c1e598f-68d9-4ec8-8e8b-94bc0f325e6d - column: 'Calendar Week Year' - - hierarchy 'FW Year-Month-Week' - displayFolder: _Weekly Calendar - lineageTag: 6aaeeccb-1242-43fb-9099-223d53bf7246 - - level 'FW Year' - lineageTag: 37704c7b-a221-40d3-a104-a5e5c16746f0 - column: 'FW Year' - - level 'FW Month Year' - lineageTag: 1d9a9430-6bed-465f-afbf-c367b9f5edf6 - column: 'FW Month Year' - - level 'FW Week Year' - lineageTag: da024fdc-e22a-4d6e-8355-fbe50de4695c - column: 'FW Week Year' - - hierarchy 'FW Year-Quarter-Week' - displayFolder: _Weekly Calendar - lineageTag: 5dc02715-2940-4e60-8501-f9850f5b89a0 - - level 'FW Year' - lineageTag: c4f66205-6c99-4eed-9ea9-0fd4bf9fa72b - column: 'FW Year' - - level 'FW Quarter Year' - lineageTag: d9c3188f-b8fa-45bc-9e08-880f6c98db91 - column: 'FW Quarter Year' - - level 'FW Week Year' - lineageTag: a100ef88-63c6-46b8-88c7-7d5d4ba25929 - column: 'FW Week Year' - - hierarchy 'FW Year-Week' - displayFolder: _Weekly Calendar - lineageTag: 41126b6f-8505-4d19-a3e8-7452ae3cefaa - - level 'FW Year' - lineageTag: 0e86a949-ac84-4345-a88e-352ea19afe07 - column: 'FW Year' - - level 'FW Week Year' - lineageTag: 7fb1d3c0-186f-4de8-a7be-dec117b3c3fd - column: 'FW Week Year' - - partition Date-fb762a96-1dbb-42f0-9ece-2145aa3ae786 = calculated - mode: import - source = 'Date Ref' - - annotation PBI_Id = f76c5b5ef8b847dd831e9ca060731a1c - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Dimension Sets.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Dimension Sets.tmdl deleted file mode 100644 index 97887d5521..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Dimension Sets.tmdl +++ /dev/null @@ -1,211 +0,0 @@ -table 'Dimension Sets' - lineageTag: 1617752a-65ec-4d0c-b652-07eb46ba12e3 - - column dimensionSetID - dataType: int64 - isHidden - isKey - formatString: 0 - lineageTag: 3373136f-17c1-4517-9d9e-13db58e28526 - summarizeBy: none - sourceColumn: dimensionSetID - - annotation SummarizationSetBy = Automatic - - column valueCount - dataType: int64 - isHidden - formatString: 0 - lineageTag: 2dda7c21-1bd5-481e-8f90-096a1d85faf6 - summarizeBy: sum - sourceColumn: valueCount - - annotation SummarizationSetBy = Automatic - - column 'Global Dimension 1' - dataType: string - lineageTag: 509b5a55-d4c9-4990-86ff-4db4ddf6e70b - summarizeBy: none - sourceColumn: Global Dimension 1 - - annotation SummarizationSetBy = Automatic - - column dimension1ValueName - dataType: string - isHidden - lineageTag: 4bbd813f-1a09-4206-a88d-a4d1167606fa - summarizeBy: none - sourceColumn: dimension1ValueName - - annotation SummarizationSetBy = Automatic - - column 'Global Dimension 2' - dataType: string - lineageTag: 901124b7-d0cf-4a6b-a97d-03b01fcbbb7b - summarizeBy: none - sourceColumn: Global Dimension 2 - - annotation SummarizationSetBy = Automatic - - column dimension2ValueName - dataType: string - isHidden - lineageTag: bfb6c790-0055-4011-9079-a97e867ceb06 - summarizeBy: none - sourceColumn: dimension2ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 3' - dataType: string - lineageTag: 6da18d1b-4416-4962-9791-a99a2b1b16df - summarizeBy: none - sourceColumn: Shortcut Dimension 3 - - annotation SummarizationSetBy = Automatic - - column dimension3ValueName - dataType: string - isHidden - lineageTag: 27ce8b9e-ee99-4748-b491-34541647c412 - summarizeBy: none - sourceColumn: dimension3ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 4' - dataType: string - lineageTag: 0a2ce674-7583-47bb-9152-2ed0202f39bd - summarizeBy: none - sourceColumn: Shortcut Dimension 4 - - annotation SummarizationSetBy = Automatic - - column dimension4ValueName - dataType: string - isHidden - lineageTag: 0e6c3dc5-eb1c-4848-9f37-3952b44e806c - summarizeBy: none - sourceColumn: dimension4ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 5' - dataType: string - lineageTag: 6e6336a7-10eb-4cdf-a811-12394bcee5ca - summarizeBy: none - sourceColumn: Shortcut Dimension 5 - - annotation SummarizationSetBy = Automatic - - column dimension5ValueName - dataType: string - isHidden - lineageTag: 9e59bf7d-11fb-45f3-8947-519cc585b522 - summarizeBy: none - sourceColumn: dimension5ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 6' - dataType: string - lineageTag: 19675f86-76bf-4a08-8d8f-782bfe6bc306 - summarizeBy: none - sourceColumn: Shortcut Dimension 6 - - annotation SummarizationSetBy = Automatic - - column dimension6ValueName - dataType: string - isHidden - lineageTag: 16840200-ef6d-406a-8d0d-c3e1606afca9 - summarizeBy: none - sourceColumn: dimension6ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 7' - dataType: string - lineageTag: 5a352164-bd57-476e-b9e1-1dad571ae15f - summarizeBy: none - sourceColumn: Shortcut Dimension 7 - - annotation SummarizationSetBy = Automatic - - column dimension7ValueName - dataType: string - isHidden - lineageTag: 9f0a1e71-3348-49cd-97c9-4f383ed66c3e - summarizeBy: none - sourceColumn: dimension7ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 8' - dataType: string - lineageTag: ae9c39e3-c860-475e-ad05-9ad0ee181ac9 - summarizeBy: none - sourceColumn: Shortcut Dimension 8 - - annotation SummarizationSetBy = Automatic - - column dimension8ValueName - dataType: string - isHidden - lineageTag: 7511231f-227d-4080-b8a6-bb813113ada6 - summarizeBy: none - sourceColumn: dimension8ValueName - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - isHidden - lineageTag: 6c12de5c-d155-4b6f-84ac-e7002abe6dfa - summarizeBy: none - sourceColumn: id - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Dimension Sets-31115007-2e8e-4e19-9f45-164ccd4f8b1b' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = DimensionSets_DataSource, - #"Changed Type" = Table.TransformColumnTypes( - Source, - { - {"dimensionSetID", Int64.Type}, - {"dimension1ValueCode", type text}, - {"dimension2ValueCode", type text}, - {"dimension3ValueCode", type text}, - {"dimension4ValueCode", type text}, - {"dimension5ValueCode", type text}, - {"dimension6ValueCode", type text}, - {"dimension7ValueCode", type text}, - {"dimension8ValueCode", type text} - } - ), - #"Renamed Columns" = Table.RenameColumns( - #"Changed Type", - { - {"dimension1ValueCode", "Global Dimension 1"}, - {"dimension2ValueCode", "Global Dimension 2"}, - {"dimension3ValueCode", "Shortcut Dimension 3"}, - {"dimension4ValueCode", "Shortcut Dimension 4"}, - {"dimension5ValueCode", "Shortcut Dimension 5"}, - {"dimension6ValueCode", "Shortcut Dimension 6"}, - {"dimension7ValueCode", "Shortcut Dimension 7"}, - {"dimension8ValueCode", "Shortcut Dimension 8"} - } - ) - in - #"Renamed Columns" - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/ENVIRONMENT.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/ENVIRONMENT.tmdl deleted file mode 100644 index 9f6e020440..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/ENVIRONMENT.tmdl +++ /dev/null @@ -1,26 +0,0 @@ -table ENVIRONMENT - isHidden - lineageTag: 32a7b143-73c5-4078-b88d-acd1a9c404c8 - - column ENVIRONMENT - dataType: string - isHidden - lineageTag: 8a0b22a2-6033-46cd-a9c1-d491a1de5fc3 - summarizeBy: none - sourceColumn: ENVIRONMENT - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition ENVIRONMENT = m - mode: import - queryGroup: 'Parameters and Functions\Connection Parameters' - source = "a48072_p48015_US_28-0" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - - changedProperty = IsHidden - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Text - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Is Released.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Is Released.tmdl deleted file mode 100644 index 293138421f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Is Released.tmdl +++ /dev/null @@ -1,47 +0,0 @@ -table 'Is Released' - lineageTag: 9728ed60-2d3f-45b2-bab6-f867ea81d7be - - column 'Is Released' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 2cf27524-b651-4999-9baf-680253f8b776 - summarizeBy: none - sourceColumn: Is Released - - annotation SummarizationSetBy = Automatic - - column 'Is Released Key' - dataType: boolean - isHidden - isKey - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 299cc887-964a-47bc-96c1-6924ab1af0f2 - summarizeBy: none - sourceColumn: Is Released Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Is Released Value' - dataType: string - lineageTag: 924163c9-a51f-430e-89bf-b9cf3920703b - summarizeBy: none - sourceColumn: Is Released Value - - annotation SummarizationSetBy = Automatic - - partition 'Is Released' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WKikqTVXSUQqBUIZKsTrRSmmJOcUgHow2UIqNBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Is Released" = _t, #"Is Released Key" = _t, #"Is Released Value" = _t]), - #"Changed Type" = Table.TransformColumnTypes(Source,{{"Is Released", type logical}, {"Is Released Key", type logical}}) - in - #"Changed Type" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item Category.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item Category.tmdl deleted file mode 100644 index 924067b47c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item Category.tmdl +++ /dev/null @@ -1,142 +0,0 @@ -table 'Item Category' - lineageTag: edeb68a9-6c7e-4154-ab57-40a7c79635a6 - - column 'Item Category Code' - dataType: string - lineageTag: 112cfe30-01df-49e7-86d8-ba22a667e132 - summarizeBy: none - sourceColumn: Item Category Code - - annotation SummarizationSetBy = Automatic - - column 'Item Category Description' - dataType: string - lineageTag: aa593ef2-fa6a-466d-b754-4164fba6d2f7 - summarizeBy: none - sourceColumn: Item Category Description - - annotation SummarizationSetBy = Automatic - - column 'Item Category Parent Category' - dataType: string - isHidden - lineageTag: 6dbe2ab9-38ed-4d0f-b55e-638cff7398e1 - summarizeBy: none - sourceColumn: Item Category Parent Category - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column Depth = PATHLENGTH('Item Category'[Entity Path]) - isHidden - lineageTag: b6dcd03c-1d96-4f19-b61b-104b2d29658d - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Entity Path' = PATH('Item Category'[Item Category Code],'Item Category'[Item Category Parent Category]) - isHidden - lineageTag: c4f9ceea-d5e9-4ecf-86be-134fb8ff27ee - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column EntityRowDepth = - - MAX ( 'Item Category'[Depth] ) - isHidden - formatString: 0 - lineageTag: 527fcc2d-057d-4ce3-9d9e-c10ab0f30ae5 - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Item Category Code Level 1' = - - - VAR LevelNumber = 1 - VAR LevelKey = PATHITEM ( 'Item Category'[Entity Path], LevelNumber, TEXT ) - VAR LevelName = LOOKUPVALUE ( 'Item Category'[Item Category Code], 'Item Category'[Item Category Code], LevelKey ) - VAR Result = LevelName - RETURN - Result - isHidden - lineageTag: f447b1b3-1171-4159-9b7e-c015f577a077 - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Item Category Code Level 2' = - - VAR LevelNumber = 2 - VAR LevelKey = PATHITEM ( 'Item Category'[Entity Path], LevelNumber, TEXT ) - VAR LevelName = LOOKUPVALUE ( 'Item Category'[Item Category Code], 'Item Category'[Item Category Code], LevelKey ) - VAR Result = LevelName - RETURN - Result - isHidden - lineageTag: a03b4c87-9520-49a9-aa17-fe8e47c642ff - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Item Category Code Level 3' = - - VAR LevelNumber = 3 - VAR LevelKey = PATHITEM ( 'Item Category'[Entity Path], LevelNumber, TEXT ) - VAR LevelName = LOOKUPVALUE ( 'Item Category'[Item Category Code], 'Item Category'[Item Category Code], LevelKey ) - VAR Result = LevelName - RETURN - Result - isHidden - lineageTag: d6565757-a6e0-4647-be4f-ff71b1fa539d - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - hierarchy 'Item Category Code Hierarchy' - lineageTag: f72b3ccb-2f87-4307-ae90-a17aeb5af1b8 - - level 'Item Category Code Level 1' - lineageTag: 54983986-fbad-431d-b1a9-1e300a5f1268 - column: 'Item Category Code Level 1' - - level 'Item Category Code Level 2' - lineageTag: 57909489-5b68-44a1-9c28-6fc6cb12c0c2 - column: 'Item Category Code Level 2' - - level 'Item Category Code Level 3' - lineageTag: 607f341e-c72e-4a1b-803e-3637de756fc4 - column: 'Item Category Code Level 3' - - partition 'Item Category' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="itemCategories",Signature="table"]}[Data], - #"Replaced Value" = Table.ReplaceValue(TableData,"itemCategories", each _[code],Replacer.ReplaceValue,{"parentCategory"}), - #"Replaced Value1" = Table.ReplaceValue(#"Replaced Value","",null,Replacer.ReplaceValue,{"parentCategory"}), - #"Renamed Columns" = Table.RenameColumns(#"Replaced Value1",{{"code", "Item Category Code"}, {"description", "Item Category Description"}, {"parentCategory", "Item Category Parent Category"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"systemId", "ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item.tmdl deleted file mode 100644 index 7246d621c7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Item.tmdl +++ /dev/null @@ -1,87 +0,0 @@ -table Item - lineageTag: e8181695-0d8d-46a4-a884-1119686c45c5 - - column 'Item No.' - dataType: string - isKey - lineageTag: ec838ba3-3308-496f-b02f-82d63f822c1a - summarizeBy: none - sourceColumn: Item No. - - annotation SummarizationSetBy = Automatic - - column 'Item Name' - dataType: string - lineageTag: 554a518b-1a0e-4285-9fb7-ee9a8d627013 - summarizeBy: none - sourceColumn: Item Name - - annotation SummarizationSetBy = Automatic - - column 'Item Category Code' - dataType: string - isHidden - lineageTag: 9579f121-c85e-497b-a169-78aa8e482153 - summarizeBy: none - sourceColumn: Item Category Code - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Item Category Description' - dataType: string - isHidden - lineageTag: 956c91d4-c21c-49ab-964a-1cb86262eb1a - summarizeBy: none - sourceColumn: Item Category Description - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Inventory Posting Group' - dataType: string - lineageTag: a818434f-0f24-4fff-8ecc-68316bc3d528 - summarizeBy: none - sourceColumn: Inventory Posting Group - - annotation SummarizationSetBy = Automatic - - column 'Base Unit of Measure' - dataType: string - lineageTag: 117b02ae-38a1-48ad-b9d4-366f428638a6 - summarizeBy: none - sourceColumn: Base Unit of Measure - - annotation SummarizationSetBy = Automatic - - column 'Item No. & Description' - dataType: string - lineageTag: 7b4d7ec7-ac3f-468e-86d5-44a449616378 - summarizeBy: none - sourceColumn: Item No. & Description - - annotation SummarizationSetBy = Automatic - - partition Item = m - mode: import - queryGroup: 'Dimension Tables' - source = ``` - let - - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="items",Signature="table"]}[Data], - #"Removed Other Columns1" = Table.SelectColumns(TableData,{ "itemNo", "itemDescription","itemCategoryCode", "itemCategoryDescription", "inventoryPostingGroup", "baseUnitofMeasure" }), - - ConvertColumnNames = Table.TransformColumnNames(#"Removed Other Columns1",fctImproveColumnNames), - #"Renamed Columns1" = Table.RenameColumns(ConvertColumnNames,{{"Item Description", "Item Name"}, {"Base Unitof Measure", "Base Unit of Measure"}}), - #"Add Item No. Description" = Table.AddColumn(#"Renamed Columns1", "Item No. & Description", each Text.Combine({[#"Item No."], " ", [Item Name]}), type text) - in - #"Add Item No. Description" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Localized Labels.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Localized Labels.tmdl deleted file mode 100644 index 44d572dc9a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Localized Labels.tmdl +++ /dev/null @@ -1,277 +0,0 @@ -table 'Localized Labels' - isHidden - lineageTag: bb491cc1-cc21-4024-930c-dd934ce72e6d - - measure 'CONNECT YOUR DATA' = 0 - isHidden - lineageTag: 2e0d925d-a450-462e-b5aa-768960cbdb6f - - measure '1. Download the Finance Connector for Power BI' = 0 - isHidden - lineageTag: 8aaa5c35-6d66-4f75-9ce0-4b7747ad09b0 - - measure '2. Configure Dynamics 365 Business Central' = 0 - isHidden - lineageTag: fca6e0ca-f179-4be6-83ba-13954a9c6fb8 - - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS' = 0 - isHidden - lineageTag: 30ccb8a8-14ea-40b0-b57e-7662a5d0351d - - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.' = 0 - isHidden - lineageTag: 49af546a-c7f8-4d21-b054-1b9196a3e634 - - measure 'HELP AND SUPPORT' = 0 - isHidden - lineageTag: a5955ac3-4cb2-47cd-ad4c-08c768bbc55c - - measure 'For help and support with your new report please visit the Analytics overview documentation.' = 0 - isHidden - lineageTag: 06dfcd33-477b-4ed5-b9bf-2428c57f4a33 - - measure 'for Business Central' = 0 - isHidden - lineageTag: eca50d64-01d0-4c4c-9290-eccae33a5e97 - - measure 'Last Refreshed' = 0 - isHidden - lineageTag: 3878a9f3-ddab-46db-99ad-12f24e36bbfa - - measure 'Company Name' = 0 - isHidden - lineageTag: 92097977-f391-4f47-996c-775a3d895704 - - measure 'Analysis Entries as of' = 0 - isHidden - lineageTag: 6b062a7a-3eb7-4a5d-a4ea-433fddecd35c - - measure 'Billing Forecast by Billing Period, Customer and Contract No.' = 0 - isHidden - lineageTag: 844749de-04b7-4c58-ab13-5f3daaa60c0f - - measure 'Billing Forecast by Year and Month' = 0 - isHidden - lineageTag: c953823b-1413-4c30-a98f-87f08a507f5d - - measure 'Billing Schedule' = 0 - isHidden - lineageTag: 9fa316a2-2600-4aca-8e34-1afef875b17e - - measure 'Change of Mon. Recurring Revenue by Year and Month' = 0 - isHidden - lineageTag: bfa03046-886f-4ef2-9f4f-260ef45799c7 - - measure 'Current Date Range:' = 0 - isHidden - lineageTag: bb1ea999-c865-44de-83c8-0303918d8209 - - measure 'Customer Contract Deferrals' = 0 - isHidden - lineageTag: 4041576c-02c2-43c7-a5a8-b2912ba6afea - - measure 'Customer Contract Lines' = 0 - isHidden - lineageTag: 97234d24-14b3-4e55-98e1-64e15a249b8b - - measure 'Customer Deferrals (Caption)' = 0 - isHidden - lineageTag: 2d14594c-f95c-40b2-a16e-fcd14a43ea9e - - measure 'Mon. Recurring Revenue Analysis' = 0 - isHidden - lineageTag: 0ee39fdc-22f3-4a1f-8935-554dda29762f - - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month' = 0 - isHidden - lineageTag: 83f53b50-5914-4de9-a9ba-7d7f0f0e7af5 - - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month' = 0 - isHidden - lineageTag: 63fd2d9e-64b1-4fa9-84ad-cb5606cc685a - - measure 'Mon. Recurring Revenue by Customer' = 0 - isHidden - lineageTag: 1592b158-1a6e-4da3-8e3b-2f7654d7c26b - - measure 'Mon. Recurring Revenue by Salesperson' = 0 - isHidden - lineageTag: a45186ab-13c5-4bf1-8dfa-007fcb440551 - - measure 'Mon. Recurring Revenue by Year and Month' = 0 - isHidden - lineageTag: 0ec06452-e48a-44dc-ac9c-69eea9e9c90d - - measure 'Mon. Recurring Revenue by Item' = 0 - isHidden - lineageTag: 413d6827-df93-4af7-a6bc-2cf0b8c8b3b9 - - measure 'Mon. Recurring Revenue by Item Category' = 0 - isHidden - lineageTag: 8df0393a-f5c5-456a-a246-be1c02c5f655 - - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract' = 0 - isHidden - lineageTag: 277e2367-9947-4d8f-998f-54a527f79b9e - - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract' = 0 - isHidden - lineageTag: 6edfffb4-0fcd-4594-a05c-fc6be11af633 - - measure 'Monthly Sales and Cost Forecast by Year and Month' = 0 - isHidden - lineageTag: 205d4014-4b70-4eb1-8846-cc92ec330e61 - - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.' = 0 - isHidden - lineageTag: d6da1e7b-f30f-449e-9a6b-a98254cddbbb - - measure 'Released and Deferred Amount by Year and Month' = 0 - isHidden - lineageTag: 1548ea23-9cac-459e-a44f-59f85d5f6e2e - - measure 'Revenue Analysis' = 0 - isHidden - lineageTag: fff8e682-fd4c-4383-9b59-732cce93b54f - - measure 'Revenue by Customer' = 0 - isHidden - lineageTag: 74bf2c9b-8d69-41a2-83e7-caa5a5baea17 - - measure 'Revenue by Item' = 0 - isHidden - lineageTag: 4e5b62e7-1c5a-431f-826e-0fa5e0214775 - - measure 'Revenue by Salesperson' = 0 - isHidden - lineageTag: 9ad2380b-28bc-4256-9641-c7eeb44e9332 - - measure 'Revenue Development' = 0 - isHidden - lineageTag: 56df1932-0d8e-4790-8d09-6c4a40980cf1 - - measure 'Sales and Cost Forecast' = 0 - isHidden - lineageTag: e0c3256a-6dbd-43f6-b684-e5f55eb48f82 - - measure 'Revenue Year-Over-Year Growth' = 0 - isHidden - lineageTag: 6301f566-718e-4d41-a033-1c160569a383 - - measure 'Subscription Billing Analysis' = 0 - isHidden - lineageTag: 90809706-227f-44a2-bda1-b8d5a3478e20 - - measure 'Subscription Billing Overview' = 0 - isHidden - lineageTag: d8b1ba69-e782-4019-b1e1-82631b2f3da8 - - measure 'Top 5 Customers by Mon. Recurring Revenue' = 0 - isHidden - lineageTag: c335ebff-26bb-4dc2-a037-940621cca510 - - measure 'Top 5 Vendors by Mon. Recurring Cost' = 0 - isHidden - lineageTag: 50f239ca-7c1e-4517-8643-b292f9ac664e - - measure 'Total Contract Value Analysis' = 0 - isHidden - lineageTag: d6592fcb-173b-4124-bf9b-e4f224d32a9e - - measure 'Total Contract Value and Total Contract Value PY by Month' = 0 - isHidden - lineageTag: 134c7194-8ef9-4d65-9e94-6165d77d7fb7 - - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month' = 0 - isHidden - lineageTag: 502cdb29-986f-495f-bab1-c2bb28d186aa - - measure 'Total Contract Value by Year and Month' = 0 - isHidden - lineageTag: e53514e4-7fb5-411c-9760-ab7df69d20e4 - - measure 'Total Contract Value Year-Over-Year Growth' = 0 - isHidden - lineageTag: 1a56b4a4-97ab-4a95-984e-069a4cf354b8 - - measure 'Vendor Contract Deferrals' = 0 - isHidden - lineageTag: 36c90144-d3d9-4000-b48c-41e339f86860 - - measure 'Vendor Deferrals (Caption)' = 0 - isHidden - lineageTag: d9ce6943-0cf7-4d3c-91bb-5158022168a5 - - measure 'Back button' = 0 - formatString: 0 - isHidden - lineageTag: 8a192dfe-ff11-4ade-afb9-acacc9cb7c64 - - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue' = 0 - formatString: 0 - isHidden - lineageTag: 673f244c-6171-47fd-88fe-8d25ff9fa65c - - measure 'Churn Analysis' = 0 - formatString: 0 - isHidden - lineageTag: 970aed3a-a493-4dcf-81ce-67b05dbb580a - - measure 'Avg. Mon. Churn Rate % by Year and Month' = 0 - isHidden - lineageTag: dbec714d-36ad-4e74-bc74-9691ee24a02e - - measure 'Total Contract Value by Package' = 0 - isHidden - lineageTag: eb7ac507-a2f1-4ba2-92d4-e7eb91d456d9 - - measure 'Mon. Recurring Revenue by Package' = 0 - isHidden - lineageTag: 9c002ddd-002a-426e-a47d-d6351d291e93 - - measure 'Churn by Customer' = 0 - isHidden - lineageTag: 79e806b1-5fe4-461f-9e2d-8d23af4d33ac - - measure 'Profitability by Item' = 0 - isHidden - lineageTag: aef1f788-4dd3-4346-ba15-c7964929e203 - - measure 'Mon. Recurring Revenue by Customer Location' = 0 - isHidden - lineageTag: 355d4e8c-e2b7-488d-8aae-610791396576 - - measure 'Profitability by Salesperson' = 0 - isHidden - lineageTag: 10fb96a6-7639-4f61-b26c-4c8aeb15b721 - - measure 'Total Contract Value by Salesperson' = 0 - isHidden - lineageTag: 5ca0d80c-d7cc-4f84-9bf1-8cadb5777ad1 - - measure 'Customer Deferrals by Released Status' = 0 - isHidden - lineageTag: dc49dcdf-4074-4dde-845c-dd35d6864bbc - - measure 'Vendor Deferrals by Released Status' = 0 - isHidden - lineageTag: 10e96e0c-8487-469d-97ea-94d49f78cdd5 - - measure 'Billing Forecast by Billing Period, Vendor and Contract No.' = 0 - isHidden - lineageTag: 601a43e9-3983-471f-8187-a5cc4ee23dff - - column unused - isHidden - displayFolder: unused - lineageTag: 199faaa3-4c88-43c8-9560-ca033e5f0ec4 - summarizeBy: none - isNameInferred - sourceColumn: [unused] - - annotation SummarizationSetBy = Automatic - - partition Partition = calculated - mode: import - source = DATATABLE("unused", STRING, {{"This is a table automatically generated by Translations Builder"}}) - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Meta Information.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Meta Information.tmdl deleted file mode 100644 index 94e602590d..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Meta Information.tmdl +++ /dev/null @@ -1,57 +0,0 @@ -table 'Meta Information' - isHidden - lineageTag: d4a507c0-3b24-4242-a536-0cca34435194 - - measure 'Company Label' = VALUES('Meta Information'[COMPANY]) - isHidden - lineageTag: 30c88211-52e8-42f3-bd11-f26b28ec29a4 - - changedProperty = IsHidden - - column COMPANY - dataType: string - isHidden - lineageTag: 68f933ef-dd5d-4a1a-aa91-2de2ae22a652 - summarizeBy: none - sourceColumn: COMPANY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Currency Code' - dataType: string - lineageTag: aee818fe-5e1c-45a0-affb-1f6b9e494fd0 - summarizeBy: none - sourceColumn: Currency Code - - annotation SummarizationSetBy = Automatic - - column Environment - dataType: string - lineageTag: 1c0950a9-6e5b-4696-b519-6f344924bf2b - summarizeBy: none - sourceColumn: Environment - - annotation SummarizationSetBy = Automatic - - partition 'Meta Information' = m - mode: import - queryGroup: 'Parameters and Functions\Connection Parameters' - source = - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name="generalLedgerSetup",Signature="table"]}[Data], - #"Removed Other Columns" = Table.SelectColumns(TableData,{"lcyCode"}), - #"Renamed Columns" = Table.RenameColumns(#"Removed Other Columns",{{"lcyCode", "Currency Code"}}), - #"Added Company" = Table.AddColumn(#"Renamed Columns", "COMPANY", each COMPANY, type text), - #"Added Environment" = Table.AddColumn(#"Added Company", "Environment", each ENVIRONMENT, type text) - in - #"Added Environment" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Salesperson.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Salesperson.tmdl deleted file mode 100644 index 7562c4bfa7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Salesperson.tmdl +++ /dev/null @@ -1,39 +0,0 @@ -table Salesperson - lineageTag: f229e1ee-eb72-4253-af81-91c9b5a4a709 - - column 'Salesperson Code' - dataType: string - isKey - lineageTag: 98ede92e-d6e1-47a6-bf69-78f3137e0020 - summarizeBy: none - sourceColumn: Salesperson Code - - annotation SummarizationSetBy = Automatic - - column 'Salesperson Name' - dataType: string - lineageTag: f283a72e-3215-4975-b9c8-04dcf322becd - summarizeBy: none - sourceColumn: Salesperson Name - - annotation SummarizationSetBy = Automatic - - partition Salesperson = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="salespersonPurchasers",Signature="table"]}[Data], - #"Removed Other Columns" = Table.SelectColumns(TableData,{"salespersonPurchaserCode", "salespersonPurchaserName"}), - #"Renamed Columns" = Table.RenameColumns( - #"Removed Other Columns", - {{"salespersonPurchaserCode", "Salesperson Code"}, {"salespersonPurchaserName", "Salesperson Name"}} - ) - in - #"Renamed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription Billing KPIs.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription Billing KPIs.tmdl deleted file mode 100644 index 7d1532dc58..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription Billing KPIs.tmdl +++ /dev/null @@ -1,930 +0,0 @@ -table 'Subscription Billing KPIs' - lineageTag: e346f0a9-0b2f-43c1-a6d1-92d16991e765 - - measure 'Mon. Recurring Revenue' = - - CALCULATE ( - [Base KPI MRR], - 'Customer Contract Line'[Line Active], - 'Calc. Group - Tec. Transformations'[calculation Type] = "Customer Contract by Analysis Date" - ) - formatString: #,0.00 - displayFolder: Recurring Revenue - lineageTag: efa16235-29ec-4359-b767-4a1a45c5f4e9 - - measure 'Mon. Recurring Cost' = - - CALCULATE ( - [Base KPI MRC], - 'Vendor Contract Line'[Line Active], - 'Calc. Group - Tec. Transformations'[calculation Type] = "Vendor Contract by Analysis Date" - ) - formatString: #,0.00 - displayFolder: Recurring Cost - lineageTag: d67d9f11-460a-4c86-8b8a-f45107b68634 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Customer Deferrals' = - - - CALCULATE ( - SUM ( 'Customer Contract Deferrals'[Amount] ), - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Vendor Contract Line'[Subscription Package Key], BOTH ) - ) - formatString: #,0.00 - displayFolder: Deferrals - lineageTag: 8e3a6640-ba6c-4e85-bca9-1b3f173b953b - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Vendor Deferrals' = - - CALCULATE ( - SUM ( 'Vendor Contract Deferrals'[Amount] ), - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Customer Contract Line'[Subscription Package Key], BOTH ) - ) - formatString: #,0.00 - displayFolder: Deferrals - lineageTag: ff5e3370-233c-4ce8-a15f-5f36821380bb - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Annual Recurring Revenue' = - - CALCULATE ( - [Base KPI ARR UBB handling], - 'Customer Contract Line'[Line Active], - 'Calc. Group - Tec. Transformations'[calculation Type] = "Customer Contract by Analysis Date" - ) - formatString: #,0.00 - displayFolder: Recurring Revenue - lineageTag: 95b4f787-d728-4f46-968c-e7650bacd0d5 - - measure 'Total Contract Value' = - - CALCULATE ( - [Base KPI TCV UBB handling], - 'Calc. Group - Tec. Transformations'[calculation Type] = "Customer Contract by Analysis Date" - ) - formatString: #,0.00 - displayFolder: Total Contract Value - lineageTag: d28aa5fe-b07c-437f-9674-b3e2e749092c - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI TCV' = sum('Customer Contract Line'[Total Contract Value LCY]) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 4bda026e-5e8c-4597-9fba-2b7dd55416d6 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI MRC' = sum('Vendor Contract Line'[Monthly Recurring Cost LCY]) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 17973827-de01-496c-94df-7cae87d2366f - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI MRR' = sum('Customer Contract Line'[Monthly Recurring Revenue LCY]) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: b86c47d0-314e-4d94-b901-13c3c5b2157c - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI ARR' = ``` - sum('Customer Contract Line'[Annual Recurring Revenue LCY]) - - - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 6f221f36-6ccc-44a4-9070-91bd51409b1a - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Count Cust. Deferrals' = countrows('Customer Contract Deferrals') - formatString: 0 - isHidden - displayFolder: Technical - lineageTag: 1f5eb7f9-2c47-439c-a335-950b3aa751e7 - - measure 'Count Vend. Deferrals' = countrows('Vendor Contract Deferrals') - formatString: 0 - isHidden - displayFolder: Technical - lineageTag: 0ebbdc3a-6024-49f4-b6c4-6d7dd3f447a7 - - measure 'Forecast Sales' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant], true ) - VAR forecastPeriods = - CALCULATETABLE ( - VALUES ( 'Date'[Calendar Month Year] ), - 'Date'[Is Forecast Period] = true - ) - RETURN - SUMX ( - forecastPeriods, - VAR firstOfMonth = - CALCULATE ( MIN ( 'Date'[Date] ) ) - RETURN - CALCULATE ( - IF ( - handleUBBasConstant =true, - [Base KPI MRR], - CALCULATE ( - [Base KPI MRR], - KEEPFILTERS ( 'Customer Contract Line'[Is Usage Based Billing] = false ) - ) - ), - USERELATIONSHIP ( 'Dimension Sets'[dimensionSetID], 'Vendor Contract Line'[Dimension Set ID] ), - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Vendor Contract Line'[Subscription Package Key], BOTH ), - 'Analysis Date'[is current Version], - 'Customer Contract Line'[Forecast Until] >= firstOfMonth, - 'Customer Contract Line'[Duration Start Date] <= firstOfMonth - ) - ) - + IF ( - handleUBBasConstant = false, - // in this case usageBasedbilling is not included above and should be counted for the current month only which matches MRR - CALCULATE ( - [Mon. Recurring Revenue], - 'Analysis Date'[is current Version], - KEEPFILTERS ( 'Customer Contract Line'[Is Usage Based Billing] = true) - ) - ) - formatString: #,0.00 - displayFolder: Forecast - lineageTag: fab3b270-bd2c-44ed-a3a6-ab77aa69f945 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Churn (-)' = CALCULATE ( [Change in Mon. Recurring Revenue], 'Customer Contract Changes'[Change Type] = "Churn" ) - formatString: #,0.00 - isHidden - displayFolder: Churn & New - lineageTag: 7c9977a8-9dff-42b1-9829-834424b1f1ee - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Cost PY' = - CALCULATE ( - CALCULATE ( [Mon. Recurring Cost], SAMEPERIODLASTYEAR ( 'Date'[Date] ) ), - KEEPFILTERS ( 'Date'[Data Range Analysis] ) - ) - formatString: #,0.00 - displayFolder: Recurring Cost - lineageTag: d2cb18bd-0e6c-4489-a3cd-a4a5cbd6ba41 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Cost Δ vs. PY' = [Mon. Recurring Cost] - [Mon. Recurring Cost PY] - formatString: #,0.00 - displayFolder: Recurring Cost - lineageTag: d3037065-0a3b-4819-b021-e6a732ce8670 - - annotation PBI_FormatHint = {"isCustom":true} - - measure 'Mon. Recurring Revenue Churn' = [Mon. Recurring Revenue Churn (-)] * -1 - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: 72940ea8-c027-427e-8310-46864947d133 - - measure 'Mon. Recurring Revenue PY' = - CALCULATE ( - CALCULATE ( [Mon. Recurring Revenue], SAMEPERIODLASTYEAR ( 'Date'[Date] ) ), - KEEPFILTERS ( 'Date'[Data Range Analysis] ) - ) - formatString: #,0.00 - displayFolder: Recurring Revenue - lineageTag: 7d1bb0d4-ffd8-4611-b01b-acc089d04451 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue New' = CALCULATE ( [Change in Mon. Recurring Revenue], 'Customer Contract Changes'[Change Type] = "New" ) - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: 8b529b8b-89d2-41b2-8d69-f0cf8d59851c - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Δ vs. PY' = [Mon. Recurring Revenue] - [Mon. Recurring Revenue PY] - formatString: #,0.00 - displayFolder: Recurring Revenue - lineageTag: 47de3afc-2f67-49d2-84f9-988fef51d00b - - annotation PBI_FormatHint = {"isCustom":true} - - measure 'Mon. Net Profit Amount' = [Mon. Recurring Revenue] - [Mon. Recurring Cost] - formatString: #,0.00 - displayFolder: Recurring Profit - lineageTag: 1dd703f4-3a19-4c3a-8664-f08c9e914937 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Net Profit %' = DIVIDE([Mon. Net Profit Amount],[Mon. Recurring Revenue]) - formatString: #,0.0\ %;-#,0.0\ %;#,0.0\ % - displayFolder: Recurring Profit - lineageTag: a73a8e79-eaed-4806-8630-1b4b8a4d5bb5 - - measure 'Mon. Net Profit PY' = - CALCULATE ( - CALCULATE ( [Mon. Net Profit Amount], SAMEPERIODLASTYEAR ( 'Date'[Date] ) ), - KEEPFILTERS ( 'Date'[Data Range Analysis] ) - ) - formatString: #,0.00 - displayFolder: Recurring Profit - lineageTag: 9487fe20-d413-4a48-9d21-c7241abdaeac - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Net Profit Δ vs. PY' = [Mon. Net Profit Amount] - [Mon. Net Profit PY] - formatString: #,0.00 - displayFolder: Recurring Profit - lineageTag: ef21c24d-5a63-416e-8df1-b83d74fa8de6 - - annotation PBI_FormatHint = {"isCustom":true} - - measure 'Change in Mon. Recurring Revenue' = ``` - - CALCULATE ( - [Base KPI MRR Change], - USERELATIONSHIP ( 'Dimension Sets'[dimensionSetID], 'Customer Contract Line'[Dimension Set Id] ), - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Vendor Contract Line'[Subscription Package Key], BOTH ) - ) - - ``` - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: 374c5d52-f0dd-479d-a912-98f2c6db0b05 - - measure 'Total Contract Value PY' = - CALCULATE ( - CALCULATE ([Total Contract Value], SAMEPERIODLASTYEAR ( 'Date'[Date] ) ), - KEEPFILTERS ( 'Date'[Data Range Analysis] ) - ) - formatString: #,0.00 - displayFolder: Total Contract Value - lineageTag: d1e4f767-4d2e-4701-bd7f-a33587ada0fe - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Total Contract Value Δ vs. PY' = [Total Contract Value] - [Total Contract Value PY] - formatString: #,0.00 - displayFolder: Total Contract Value - lineageTag: eeecc9d3-4aee-4cd7-80fa-af595bf90f04 - - annotation PBI_FormatHint = {"isCustom":true} - - measure 'Last Update Analysis Entries' = CALCULATE(max('Analysis Date'[Analysis Date]), all('Analysis Date')) - formatString: Short Date - displayFolder: Meta Information - lineageTag: ab1f34d8-7a54-4395-9910-13b1db61857a - - measure 'Last Update Semantic Model' = SELECTEDVALUE('Date Table Setup'[Last Refresh Time]) - formatString: Short Date - displayFolder: Meta Information - lineageTag: 4746be26-684e-418e-a5bb-26b345b3ff0f - - measure 'Param Environment' = SELECTEDVALUE('Meta Information'[Environment]) - displayFolder: Meta Information - lineageTag: 61ee2d80-29c7-4831-87a5-ea6031175dc9 - - measure 'Param Company' = SELECTEDVALUE('Meta Information'[COMPANY]) - displayFolder: Meta Information - lineageTag: f8228d8b-fb7e-4fe1-aeb0-8724079f0434 - - measure 'Base KPI MRR Change' = sum('Customer Contract Changes'[MRR Delta]) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: fc105b8a-e3ec-4931-a9b3-009e3b89499b - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Upgrade' = CALCULATE ( [Change in Mon. Recurring Revenue], 'Customer Contract Changes'[Change Type] = "Upgrade" ) - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: dff3b741-89d6-4ce1-a52b-1e3903b4fea7 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Change UBB' = CALCULATE ( [Change in Mon. Recurring Revenue], 'Customer Contract Changes'[Change Type] = "UBB" ) - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: 47f61488-d665-4dc8-877d-40e8d5d3e3b3 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Downgrade (-)' = CALCULATE ( [Change in Mon. Recurring Revenue], 'Customer Contract Changes'[Change Type] = "Downgrade" ) - formatString: #,0.00 - isHidden - displayFolder: Churn & New - lineageTag: 71465441-8d49-4012-a658-8fa0b613c02a - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Reporting Currency' = SELECTEDVALUE('Meta Information'[Currency Code]) - displayFolder: Meta Information - lineageTag: c3d6f1e4-281f-4a8b-b012-f3f376b759fb - - measure 'Base KPI TCV UBB' = ``` - - SUM ( 'Customer Contract Line'[Total Contract Value UBB LCY] ) - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 4508bfbd-efa8-4f89-b535-1281ab2fd6c4 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI ARR UBB' = ``` - - SUM ( 'Customer Contract Line'[Annual Recurring Revenue UBB LCY] ) - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 8bb6ea96-4ebc-4423-80bb-a3ba6e8a9a66 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Active Customers' = COUNTROWS ( FILTER ( 'Customers', [Mon. Recurring Revenue] > 0 ) ) - formatString: #,0 - displayFolder: Active Costomers - lineageTag: fe66cb5b-96ae-4d9a-b313-c3bd58b9ff3b - - measure 'Active Customers PY' = - CALCULATE ( - CALCULATE ( [Active Customers], SAMEPERIODLASTYEAR ( 'Date'[Date] ) ), - KEEPFILTERS ( 'Date'[Data Range Analysis] ) - ) - formatString: #,0 - displayFolder: Active Costomers - lineageTag: 7dce4c20-b81e-4300-b18d-a08795754ee7 - - measure 'Active Customers Δ vs. PY' = [Active Customers]-[Active Customers PY] - formatString: " +#,0;-#,0;#,0" - displayFolder: Active Costomers - lineageTag: c23d2ed4-2b55-4fbf-b861-c00111345b0c - - annotation PBI_FormatHint = {"isCustom":true} - - measure 'Base KPI Customer Billing Forecast' = ``` - sum('Customer Billing Forecast'[Billing Amount LCY]) - - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: b9da2bf3-a304-4b6e-8d3a-74da5c517eff - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI Customer Billing Forecast UBB' = - - SUM ( 'Customer Billing Forecast'[Billing Amount UBB LCY] ) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: d3d54a5e-34d5-428b-9ec2-cfd868a0469e - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Customer Billing Forecast' = - - CALCULATE ( - [Base KPI Customer Billing Forecast UBB handling], - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Vendor Contract Line'[Subscription Package Key], BOTH ) - ) - formatString: #,0.00 - displayFolder: Forecast - lineageTag: 5ce8bb92-74cf-496a-aa24-7f785e7434d3 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Base KPI ARR UBB handling' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant], true) - RETURN - IF.EAGER ( - handleUBBasConstant, - [Base KPI ARR], - [Base KPI ARR UBB] - + CALCULATE ( [Base KPI ARR], 'Customer Contract Line'[Is Usage Based Billing] = false ) - ) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: dad3da13-cae6-46c5-a3d0-43ca2ea28af9 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI TCV UBB handling' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant],true ) - RETURN - IF.EAGER ( - handleUBBasConstant , - [Base KPI TCV], - [Base KPI TCV UBB] - + CALCULATE ( [Base KPI TCV], 'Customer Contract Line'[Is Usage Based Billing] = false ) - ) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: cacb70ae-62ec-4567-9948-8ceb66850644 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI Customer Billing Forecast UBB handling' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant], true) - RETURN - IF.EAGER ( - handleUBBasConstant, - [Base KPI Customer Billing Forecast], - [Base KPI Customer Billing Forecast UBB] - + CALCULATE ( - [Base KPI Customer Billing Forecast], - 'Customer Contract Line'[Is Usage Based Billing] = false - ) - ) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 5fbc253d-d97c-498d-bf53-319e005f96b7 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI Vendor Billing Forecast' = ``` - sum('Vendor Billing Forecast'[Billing Amount LCY]) - - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 66d90490-f1b7-4257-98d0-6682f7602dc8 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI Vendor Billing Forecast UBB' = ``` - - sum('Vendor Billing Forecast'[Billing Amount UBB LCY]) - - ``` - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 66c7037c-9dee-48a3-93af-04a6e1963aa5 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Base KPI Vendor Billing Forecast UBB handling' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant], true ) - RETURN - IF.EAGER ( - handleUBBasConstant , - [Base KPI Vendor Billing Forecast], - [Base KPI Vendor Billing Forecast UBB] - + CALCULATE ( - [Base KPI Vendor Billing Forecast], - 'Vendor Contract Line'[Is Usage Based Billing] = false - ) - ) - formatString: #,0.00 - isHidden - displayFolder: Technical - lineageTag: 0355068b-00ca-40b0-87d9-fc2aed435341 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Vendor Billing Forecast' = - - CALCULATE ( - [Base KPI Vendor Billing Forecast UBB handling], - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Customer Contract Line'[Subscription Package Key], BOTH ) - ) - formatString: #,0.00 - displayFolder: Forecast - lineageTag: f5b5dc10-de04-43b4-8c67-8f4d94424af7 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Forecast Costs' = - - VAR handleUBBasConstant = - SELECTEDVALUE ( 'UBB handling'[Treat Usage Based Billing as constant], true) - VAR forecastPeriods = - CALCULATETABLE ( - VALUES ( 'Date'[Fiscal Month Year] ), - 'Date'[Is Forecast Period] = true - ) - RETURN - SUMX ( - forecastPeriods, - VAR firstOfMonth = - CALCULATE ( MIN ( 'Date'[Date] ) ) - RETURN - CALCULATE ( - IF ( - handleUBBasConstant = true, - [Base KPI MRC], - CALCULATE ( - [Base KPI MRC], - KEEPFILTERS ( 'Vendor Contract Line'[Is Usage Based Billing] = false ) - ) - ), - USERELATIONSHIP ( 'Dimension Sets'[dimensionSetID], 'Vendor Contract Line'[Dimension Set ID] ), - CROSSFILTER ( 'Subscription'[Subscription Package Key], 'Customer Contract Line'[Subscription Package Key], BOTH ), - 'Analysis Date'[is current Version], - 'Vendor Contract Line'[Forecast Until] >= firstOfMonth, - 'Vendor Contract Line'[Duration Start Date] <= firstOfMonth - ) - ) - + IF ( - handleUBBasConstant= false, - // in this case usageBasedbilling is not included above and should be counted for the current month only which matches MRR - CALCULATE ( - [Mon. Recurring Revenue], - 'Analysis Date'[is current Version], - KEEPFILTERS ( 'Customer Contract Line'[Is Usage Based Billing] = true) - ) - ) - formatString: #,0.00 - displayFolder: Forecast - lineageTag: c7bae864-f679-439c-af87-d78742926bc7 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Mon. Recurring Revenue Downgrade' = [Mon. Recurring Revenue Downgrade (-)] * -1 - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: d6fb72a4-ec41-4faa-8abe-795abc243e22 - - annotation PBI_FormatHint = {"isDecimal":true} - - measure 'Churn (-)' = [Mon. Recurring Revenue Churn (-)] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: 97d97364-1e94-42dd-a0a1-50f8c741dab9 - - measure 'Downgrade (-)' = [Mon. Recurring Revenue Downgrade (-)] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: 682b0afe-72bd-417b-81b6-b62616a1f9c0 - - measure 'Usage Based Billing Change' = [Mon. Recurring Revenue Change UBB] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: 1b353d3a-e1a9-4b93-ab99-0317060f1aab - - measure Upgrade = [Mon. Recurring Revenue Upgrade] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: 04040d7e-b3a4-4069-92cb-e4fb9478ec9f - - measure New = [Mon. Recurring Revenue New] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: ca15d892-5102-4d5e-8467-41ef46bb0a4b - - measure 'Total Change' = [Change in Mon. Recurring Revenue] - formatString: #,0.00 - displayFolder: Page Specific Naming\Revenue Development - lineageTag: 0fbe1130-cb6d-4208-93d3-8d15206728ab - - measure 'Selected Date Range' = - - FORMAT(Min('Date'[Date]),"Short Date") & " - " & FORMAT(Max('Date'[Date]),"Short Date") - displayFolder: Meta Information - lineageTag: 1f3c3882-eb8b-45ff-9df5-a24d6d0bb80c - - measure Churn = [Mon. Recurring Revenue Churn] - formatString: #,0.00 - displayFolder: Page Specific Naming\Churn - lineageTag: 995319bd-3056-41a9-aca0-17142d85fb8d - - measure Downgrade = [Mon. Recurring Revenue Downgrade] - formatString: #,0.00 - displayFolder: Page Specific Naming\Churn - lineageTag: fe462ca3-cb8f-4aa2-8444-acfdd1e4755a - - measure 'MRR End of Period' = [Mon. Recurring Revenue] - formatString: #,0.00 - displayFolder: Page Specific Naming\Churn - lineageTag: ac440820-dbc1-4014-9753-dcafa6618075 - - measure 'Avg. Mon. Churn Rate %' = - - VAR __months = CALCULATETABLE(DISTINCT ( 'Date'[Calendar Month Year] ),'Date'[Data Range Analysis]) - RETURN - DIVIDE ( - SUMX ( - __months, - DIVIDE ( - [Mon. Recurring Revenue Churn], - CALCULATE ( [Mon. Recurring Revenue], PREVIOUSMONTH ( 'Date'[Date] ) ) - ) - ), - COUNTROWS ( __months ) - ) - formatString: 0.00\ %;-0.00\ %;0.00\ % - displayFolder: Churn & New - lineageTag: 3180f6bf-8dd2-4555-aee9-0423d81808c1 - - measure 'Mon. Avg. Downgrade Rate %' = - - VAR __months = CALCULATETABLE(DISTINCT ( 'Date'[Calendar Month Year] ),'Date'[Data Range Analysis]) - RETURN - DIVIDE ( - SUMX ( - __months, - DIVIDE ( - [Mon. Recurring Revenue Downgrade], - CALCULATE ( [Mon. Recurring Revenue], PREVIOUSMONTH ( 'Date'[Date] ) ) - ) - ), - COUNTROWS ( __months ) - ) - formatString: 0.00\ %;-0.00\ %;0.00\ % - displayFolder: Churn & New - lineageTag: 6fe53dcc-1f21-4ae4-bc6f-0a0339fd5264 - - measure 'Mon. Recurring Revenue Downgrade & Churn' = - CALCULATE ( [Change in Mon. Recurring Revenue], keepfilters('Customer Contract Changes'[Change Type] IN { "Downgrade","Churn"} )) - formatString: #,0.00 - displayFolder: Churn & New - lineageTag: 71625eeb-a549-4225-80d0-592eb747e5f3 - - measure 'Base Link' = - - VAR BusinessCentral = "https://businesscentral.dynamics.com/" - VAR TenantID = VALUES('Date Table Setup'[tenantID]) - VAR Environment = VALUES(ENVIRONMENT[ENVIRONMENT]) - VAR Company = "?company=" & VALUES(COMPANY[COMPANY]) - RETURN BusinessCentral & TenantID & "/" & Environment & "/" & Company - isHidden - displayFolder: Back Links - lineageTag: 0db7c63f-41da-4f6b-9bd4-64cdf8db75e8 - - measure Ranged = ``` - - VAR _FilterTable = VALUES('Date'[Date]) - VAR IndexedDates = - ADDCOLUMNS( - _FilterTable, - "@Index", RANKX( - SUMMARIZECOLUMNS( - 'Date'[Date], _FilterTable - ), - 'Date'[Date], - , - ASC, - DENSE - ) - ) - VAR PreviousIndexedDate = - ADDCOLUMNS( - IndexedDates, - "@Previous Date", - VAR PrevIndex = [@Index] - 1 - RETURN SELECTCOLUMNS( - FILTER(IndexedDates, [@Index] = PrevIndex), - [Date]) - ) - - VAR CalculateBreakPoint = - ADDCOLUMNS( - PreviousIndexedDate, - "@Break Point", - IF( NOT DATEDIFF([@Previous Date],'Date'[Date],DAY) = 1, TRUE(), FALSE() ) - ) - VAR BreakPointTable = FILTER(CalculateBreakPoint, [@Break Point] = TRUE()) - - VAR MaxDate = CALCULATE(MAX('Date'[Date]),_FilterTable) - - var NextIndex = - ADDCOLUMNS( - BreakPointTable, - "@NextIndex", - SELECTCOLUMNS( - OFFSET( +1, BreakPointTable ), - [@Index] - ) - 1 - ) - - VAR NextDate = - ADDCOLUMNS( - NextIndex, - "@NextDate", - VAR PrevIndex = [@Index] - 1 - RETURN SELECTCOLUMNS( - FILTER(IndexedDates, [@Index] = [@NextIndex]), - [Date]) - ) - - VAR Ranged = - ADDCOLUMNS( - NextDate, - "@Range", - IF( ISBLANK([@NextDate]), - FORMAT ( 'Date'[Date], "yyyy-mm-dd" ) & ".." & FORMAT ( MaxDate ,"yyyy-mm-dd"), - FORMAT ( 'Date'[Date], "yyyy-mm-dd" ) & ".." & FORMAT ( [@NextDate] ,"yyyy-mm-dd") - ) - ) - - Return CONCATENATEX(Ranged, [@Range], "|") - ``` - isHidden - displayFolder: Back Links - lineageTag: 1c3ee447-cd2c-4624-9406-dacab0992e6b - - measure 'Ranged Dimensions' = ``` - - VAR _FilterTable = VALUES('Dimension Sets'[dimensionSetID]) - VAR IndexedDimSetID = - ADDCOLUMNS( - _FilterTable, - "@Index", RANKX( - SUMMARIZECOLUMNS( - 'Dimension Sets'[dimensionSetID], _FilterTable - ), - 'Dimension Sets'[dimensionSetID], - , - ASC, - DENSE - ) - ) - - VAR PreviousIndexedDimSetID = - ADDCOLUMNS( - IndexedDimSetID, - "@Previous Date", - VAR PrevIndex = [@Index] - 1 - RETURN SELECTCOLUMNS( - FILTER(IndexedDimSetID, [@Index] = PrevIndex), - [dimensionSetID]) - ) - - VAR CalculateBreakPoint = - ADDCOLUMNS( - PreviousIndexedDimSetID, - "@Break Point", - IF( NOT 'Dimension Sets'[dimensionSetID] - [@Previous Date] = 1, TRUE(), FALSE() - ) - ) - - VAR BreakPointTable = FILTER(CalculateBreakPoint, [@Break Point] = TRUE()) - - VAR MaxDimension = CALCULATE(MAX('Dimension Sets'[dimensionSetID]),_FilterTable) - - var NextIndex = - ADDCOLUMNS( - BreakPointTable, - "@NextIndex", - SELECTCOLUMNS( - OFFSET( +1, BreakPointTable ), - [@Index] - ) - 1 - ) - - VAR NextDimension = - ADDCOLUMNS( - NextIndex, - "@NextDimension", - VAR PrevIndex = [@Index] - 1 - RETURN SELECTCOLUMNS( - FILTER(IndexedDimSetID, [@Index] = [@NextIndex]), - 'Dimension Sets'[dimensionSetID]) - ) - - VAR Ranged = - ADDCOLUMNS( - NextDimension, - "@Range", - IF( ISBLANK([@NextDimension]), - 'Dimension Sets'[dimensionSetID] & ".." & MaxDimension , - 'Dimension Sets'[dimensionSetID] & ".." & [@NextDimension] - ) - ) - - Return - IF(COUNTROWS(NextDimension) = 1, MaxDimension, CONCATENATEX(Ranged, [@Range], "|")) - ``` - isHidden - displayFolder: Back Links - lineageTag: 6c0d4a0f-cb28-4c3f-a0a0-ebb15fbffb8b - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Customer Deferrals Back Link' = ``` - - VAR CustomerContractDeferralDocumentNos = - CONCATENATEX(VALUES('Customer Contract Deferrals'[Document No.]), 'Customer Contract Deferrals'[Document No.], "|") - VAR CustomerContractDeferralSubscriptionNos = - CONCATENATEX(VALUES('Customer Contract Deferrals'[Contract No.]), 'Customer Contract Deferrals'[Contract No.], "|") - VAR CustomerContractDeferralReleasedStatus = - CONCATENATEX(VALUES('Is Released'[Is Released Value]), 'Is Released'[Is Released Value], "|") - RETURN - [Base Link] - & "&page=8079&filter='Cust. Sub. Contract Deferral'.'Subscription Contract No.' IS '" & CustomerContractDeferralSubscriptionNos & "'" - & " AND 'Cust. Sub. Contract Deferral'.'Document No.' IS '" & CustomerContractDeferralDocumentNos & "'" - & " AND 'Cust. Sub. Contract Deferral'.'Posting Date' IS " & [Ranged] - & " AND 'Cust. Sub. Contract Deferral'.'Dimension Set ID' IS '" & [Ranged Dimensions] & "'" - & " AND 'Cust. Sub. Contract Deferral'.'Released' IS '" & CustomerContractDeferralReleasedStatus & "'" - ``` - displayFolder: Back Links - lineageTag: b0e9cd9b-c824-482b-93b8-946fe797d20c - - measure 'Vendor Deferrals Back Link' = ``` - - VAR VendorContractDeferralDocumentNos = - CONCATENATEX(VALUES('Vendor Contract Deferrals'[Document No.]), 'Vendor Contract Deferrals'[Document No.], "|") - VAR VendorContractDeferralSubscriptionNos = - CONCATENATEX(VALUES('Vendor Contract Deferrals'[Contract No.]), 'Vendor Contract Deferrals'[Contract No.], "|") - VAR VendorContractDeferralReleasedStatus = - CONCATENATEX(VALUES('Is Released'[Is Released Value]), 'Is Released'[Is Released Value], "|") - - RETURN - [Base Link] - & "&page=8081&filter='Vend. Sub. Contract Deferral'.'Subscription Contract No.' IS '" & VendorContractDeferralSubscriptionNos & "'" - & " AND 'Vend. Sub. Contract Deferral'.'Document No.' IS '" & VendorContractDeferralDocumentNos & "'" - & " AND 'Vend. Sub. Contract Deferral'.'Posting Date' IS " & [Ranged] - & " AND 'Vend. Sub. Contract Deferral'.'Dimension Set ID' IS '" & [Ranged Dimensions] & "'" - & " AND 'Vend. Sub. Contract Deferral'.'Released' IS '" & VendorContractDeferralReleasedStatus & "'" - ``` - displayFolder: Back Links - lineageTag: fb40ded3-6eb4-4595-a359-ef320241ce65 - - measure 'Customer Contract Line Back Link' = ``` - - VAR ContractLineCustContNos = - CONCATENATEX(VALUES('Customer Contract Line'[Customer Contract No.]), 'Customer Contract Line'[Customer Contract No.], "|") - VAR ContractLineCustContLineNos = - CONCATENATEX(VALUES('Customer Contract Line'[Customer Contract Line No.]), 'Customer Contract Line'[Customer Contract Line No.], "|") - - RETURN - [Base Link] - & "&page=8090&filter='Sub. Contr. Analysis Entry'.'Partner' IS '" & "Customer" & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Subscription Contract No.' IS '" & ContractLineCustContNos & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Subscription Contract Line No.' IS '" & ContractLineCustContLineNos & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Dimension Set ID' IS '" & [Ranged Dimensions] & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Analysis Date' IS '" & [Ranged] & "'" - - ``` - displayFolder: Back Links - lineageTag: fe25274f-9ebf-477c-97a4-790b677123a4 - - measure 'Vendor Contract Line Back Link' = ``` - - VAR ContractLineVendContNos = - CONCATENATEX(VALUES('Vendor Contract Line'[Vendor Contract No.]), 'Vendor Contract Line'[Vendor Contract No.], "|") - VAR ContractLineVendContLineNos = - CONCATENATEX(VALUES('Vendor Contract Line'[Vendor Contract Line No.]), 'Vendor Contract Line'[Vendor Contract Line No.], "|") - - RETURN - [Base Link] - & "&page=8090&filter='Sub. Contr. Analysis Entry'.'Partner' IS '" & "Vendor" & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Subscription Contract No.' IS '" & ContractLineVendContNos & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Subscription Contract Line No.' IS '" & ContractLineVendContLineNos & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Dimension Set ID' IS '" & [Ranged Dimensions] & "'" - & " AND 'Sub. Contr. Analysis Entry'.'Analysis Date' IS '" & [Ranged] & "'" - - ``` - displayFolder: Back Links - lineageTag: 39f6703a-1ae0-4b23-b3e6-88e885731623 - - column Value - isHidden - isAvailableInMdx: false - lineageTag: b932f45e-11d1-4f20-82b0-03f6036d51c3 - summarizeBy: none - isNameInferred - sourceColumn: [Value] - - annotation SummarizationSetBy = Automatic - - partition 'Subscription Billing KPIs' = calculated - mode: import - source = ``` - - { - ("dummy")} - - ``` - - annotation PBI_Id = 1ae73ee762ce4f51baa47a5d16969c61 - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription.tmdl deleted file mode 100644 index 151c0c5684..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Subscription.tmdl +++ /dev/null @@ -1,92 +0,0 @@ -table Subscription - lineageTag: 2ed6d60b-8267-4f92-a751-3689f3be8a5e - - column 'Subscription No.' - dataType: string - lineageTag: 0c16a49c-64da-46b0-827c-577a26f0c6e5 - summarizeBy: none - sourceColumn: Subscription No. - - annotation SummarizationSetBy = Automatic - - column 'Package Code' - dataType: string - lineageTag: e605a6bc-fa17-40f9-96d1-1586fa0c5331 - summarizeBy: none - sourceColumn: Package Code - - annotation SummarizationSetBy = Automatic - - column 'Subscription Desc.' - dataType: string - lineageTag: fe3468db-3f4b-493b-88b0-6f1f8deddc59 - summarizeBy: none - sourceColumn: Subscription Desc. - - annotation SummarizationSetBy = Automatic - - column 'Analysis Date' - dataType: dateTime - formatString: Short Date - lineageTag: cf83c839-2d39-45ad-85b5-73fe1475feb4 - summarizeBy: none - sourceColumn: Analysis Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Subscription Package Key' - dataType: string - isHidden - isKey - lineageTag: 6a637c34-f94a-481f-8465-a96d742b1f0f - summarizeBy: none - sourceColumn: Subscription Package Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Subscription No. Desc.' - dataType: string - lineageTag: 2280128a-2625-4941-9aa4-22a69182b035 - summarizeBy: none - sourceColumn: Subscription No. Desc. - - annotation SummarizationSetBy = Automatic - - partition Subscription = m - mode: import - queryGroup: 'Dimension Tables' - source = ``` - let - Source = SourceContractAnalysisEntries, - #"Removed Other Columns" = Table.SelectColumns( - Source, - { - "serviceObjectNo", - "packageCode", - "serviceObjectDescription", - "analysisDate", - "Subscription Package Key" - } - ), - #"Sorted Rows" = Table.Sort(#"Removed Other Columns", {{"analysisDate", Order.Descending}}), - #"Removed Duplicates1" = Table.Distinct(#"Sorted Rows", {"Subscription Package Key"}), - #"Added No.Name" = Table.AddColumn( - #"Removed Duplicates1", - "Subscription No. Desc.", - each [serviceObjectNo] & ": " & [serviceObjectDescription], - type text - ), - ConvertColumnNames = Table.TransformColumnNames(#"Added No.Name", fctImproveColumnNames), - #"Renamed Columns" = Table.RenameColumns(ConvertColumnNames,{{"Service Object Description", "Subscription Desc."}, {"Service Object No.", "Subscription No."}}) - in - #"Renamed Columns" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Tec Dummy Values.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Tec Dummy Values.tmdl deleted file mode 100644 index 258de96488..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Tec Dummy Values.tmdl +++ /dev/null @@ -1,31 +0,0 @@ -table 'Tec Dummy Values' - isHidden - lineageTag: a0ac206e-2d81-4a6a-83ab-3bb415a478cc - - column Total - isHidden - lineageTag: ae28aa76-ec86-4111-a83f-a69c7aec44d8 - summarizeBy: none - sourceColumn: [Value1] - - annotation SummarizationSetBy = Automatic - - column 'Filter dummy' - isHidden - lineageTag: aa1c65e3-e3a1-41cd-b32b-1755ef102183 - summarizeBy: none - sourceColumn: [Value2] - - annotation SummarizationSetBy = Automatic - - partition 'Tec Dummy Values' = calculated - mode: import - source = ``` - - { - ("Total","select Attribute")} - - ``` - - annotation PBI_Id = 29c877ddfdae48a2b484a4f878b268d0 - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Translated Localized Labels.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Translated Localized Labels.tmdl deleted file mode 100644 index 2905015483..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Translated Localized Labels.tmdl +++ /dev/null @@ -1,1728 +0,0 @@ -table 'Translated Localized Labels' - isHidden - lineageTag: d6492e17-230d-4138-9ab1-16fbcbfeff61 - - measure 'CONNECT YOUR DATA Label' = - SWITCH(USERCULTURE(), - "es-ES", "CONECTAR LOS DATOS", - "de-DE", "MIT EIGENEN DATEN VERBINDEN", - "fr-FR", "CONNECTER VOS DONNÉES", - "cs-CZ", "PŘIPOJENÍ DAT", - "da-DK", "FORBIND DINE DATA", - "de-AT", "MIT EIGENEN DATEN VERBINDEN", - "de-CH", "MIT EIGENEN DATEN VERBINDEN", - "en-AU", "CONNECT YOUR DATA", - "en-CA", "CONNECT YOUR DATA", - "en-GB", "CONNECT YOUR DATA", - "en-NZ", "CONNECT YOUR DATA", - "es-MX", "CONECTAR LOS DATOS", - "fi-FI", "YHDISTÄ TIETOSI", - "fr-BE", "CONNECTER VOS DONNÉES", - "fr-CA", "CONNECTER VOS DONNÉES", - "fr-CH", "CONNECTER VOS DONNÉES", - "is-IS", "TENGIÐ GÖGN", - "it-CH", "CONNETTI I DATI", - "it-IT", "CONNETTI I DATI", - "nb-NO", "KOBLE TIL DATAENE", - "nl-BE", "UW GEGEVENS VERBINDEN", - "nl-NL", "UW GEGEVENS VERBINDEN", - "ru-RU", "CONNECT YOUR DATA", - "sv-SE", "ANSLUT DINA DATA", - "CONNECT YOUR DATA" - ) - isHidden - lineageTag: 8a7130b6-de36-4288-952c-0eba32209a73 - - measure '1. Download the Finance Connector for Power BI Label' = - SWITCH(USERCULTURE(), - "es-ES", "1. Descargar Finance Connector for Power BI", - "de-DE", "1. Finance Connector for Power BI herunterladen", - "fr-FR", "1. Téléchargez Finance Connector for Power BI", - "cs-CZ", "1. Stažení řešení Finance Connector for Power BI", - "da-DK", "1. Download Finance Connector for Power BI", - "de-AT", "1. Finance Connector for Power BI herunterladen", - "de-CH", "1. Finance Connector for Power BI herunterladen", - "en-AU", "1. Download the Finance Connector for Power BI", - "en-CA", "1. Download the Finance Connector for Power BI", - "en-GB", "1. Download the Finance Connector for Power BI", - "en-NZ", "1. Download the Finance Connector for Power BI", - "es-MX", "1. Descargar Finance Connector for Power BI", - "fi-FI", "1. Lataa Finance Connector for Power BI", - "fr-BE", "1. Téléchargez Finance Connector for Power BI", - "fr-CA", "1. Téléchargez Finance Connector for Power BI", - "fr-CH", "1. Téléchargez Finance Connector for Power BI", - "is-IS", "1. Sækja Finance Connector for Power BI", - "it-CH", "1. Scaricare Finance Connector for Power BI", - "it-IT", "1. Scaricare Finance Connector for Power BI", - "nb-NO", "1. Last ned Finance Connector for Power BI", - "nl-BE", "1. De Finance Connector for Power BI downloaden", - "nl-NL", "1. De Finance Connector for Power BI downloaden", - "ru-RU", "1. Download the Finance Connector for Power BI", - "sv-SE", "1. Ladda ned Finance Connector for Power BI", - "1. Download the Finance Connector for Power BI" - ) - isHidden - lineageTag: 9772b5df-04d4-4bd3-838a-40687eb3b9ef - - measure '2. Configure Dynamics 365 Business Central Label' = - SWITCH(USERCULTURE(), - "es-ES", "2. Configurar Dynamics 365 Business Central", - "de-DE", "2. Dynamics 365 Business Central konfigurieren", - "fr-FR", "2. Configurez Dynamics 365 Business Central", - "cs-CZ", "2. Konfigurace Dynamics 365 Business Central", - "da-DK", "2. Konfigurer Dynamics 365 Business Central", - "de-AT", "2. Dynamics 365 Business Central konfigurieren", - "de-CH", "2. Dynamics 365 Business Central konfigurieren", - "en-AU", "2. Configure Dynamics 365 Business Central", - "en-CA", "2. Configure Dynamics 365 Business Central", - "en-GB", "2. Configure Dynamics 365 Business Central", - "en-NZ", "2. Configure Dynamics 365 Business Central", - "es-MX", "2. Configurar Dynamics 365 Business Central", - "fi-FI", "2. Määritä Dynamics 365 Business Central", - "fr-BE", "2. Configurez Dynamics 365 Business Central", - "fr-CA", "2. Configurez Dynamics 365 Business Central", - "fr-CH", "2. Configurez Dynamics 365 Business Central", - "is-IS", "2. Grunnstillið Dynamics 365 Business Central", - "it-CH", "2. Configurare Dynamics 365 Business Central", - "it-IT", "2. Configurare Dynamics 365 Business Central", - "nb-NO", "2. Konfigurer Dynamics 365 Business Central", - "nl-BE", "2. Dynamics 365 Business Central configureren", - "nl-NL", "2. Dynamics 365 Business Central configureren", - "ru-RU", "2. Configure Dynamics 365 Business Central", - "sv-SE", "2. Konfigurera Dynamics 365 Business Central", - "2. Configure Dynamics 365 Business Central" - ) - isHidden - lineageTag: 505d182c-06ee-48c5-94ae-69d2ac2a76e2 - - measure 'USE, EDIT AND BUILD YOUR OWN REPORTS Label' = - SWITCH(USERCULTURE(), - "es-ES", "USAR, EDITAR Y CREAR SUS PROPIOS INFORMES", - "de-DE", "EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN", - "fr-FR", "UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS", - "cs-CZ", "POUŽÍVÁNÍ, ÚPRAVA A TVORBA VLASTNÍCH SESTAV", - "da-DK", "BRUG, REDIGER OG OPRET DINE EGNE RAPPORTER", - "de-AT", "EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN", - "de-CH", "EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN", - "en-AU", "USE, EDIT AND BUILD YOUR OWN REPORTS", - "en-CA", "USE, EDIT AND BUILD YOUR OWN REPORTS", - "en-GB", "USE, EDIT AND BUILD YOUR OWN REPORTS", - "en-NZ", "USE, EDIT AND BUILD YOUR OWN REPORTS", - "es-MX", "USAR, EDITAR Y CREAR SUS PROPIOS INFORMES", - "fi-FI", "KÄYTÄ, MUOKKAA JA LUO OMIA RAPORTTEJA", - "fr-BE", "UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS", - "fr-CA", "Utilisez, modifiez et créez vos propres rapports", - "fr-CH", "UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS", - "is-IS", "NOTIÐ, BREYTIÐ OG BÚIÐ TIL EIGIN SKÝRSLUR", - "it-CH", "USA, MODIFICA E CREA I TUOI REPORT", - "it-IT", "USA, MODIFICA E CREA I TUOI REPORT", - "nb-NO", "BRUK, REDIGER OG BYGG DINE EGNE RAPPORTER", - "nl-BE", "UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN", - "nl-NL", "UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN", - "ru-RU", "USE, EDIT AND BUILD YOUR OWN REPORTS", - "sv-SE", "ANVÄND, REDIGERA OCH SKAPA EGNA RAPPORTER", - "USE, EDIT AND BUILD YOUR OWN REPORTS" - ) - isHidden - lineageTag: bfe44083-3059-4e9b-9446-5afe0d3b2008 - - measure 'Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. Label' = - SWITCH(USERCULTURE(), - "es-ES", "Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero.", - "de-DE", "Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen.", - "fr-FR", "Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro.", - "cs-CZ", "Finance obsahují řadu předpřipravených sestav, které vám pomohou okamžitě zobrazit vaše data. Tyto sestavy můžete upravovat nebo si vytvořit vlastní sestavu od základu.", - "da-DK", "Finans indeholder en række færdigbyggede rapporter, der hjælper dig med at få vist dine data med det samme. Du kan redigere disse rapporter eller oprette din egen rapport fra bunden.", - "de-AT", "Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen.", - "de-CH", "Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen.", - "en-AU", "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.", - "en-CA", "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.", - "en-GB", "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.", - "en-NZ", "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.", - "es-MX", "Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero.", - "fi-FI", "Taloushallinto sisältää erilaisia esimääritettyjä raportteja, joiden avulla voit tarkastella tietoja välittömästi. Voit muokata näitä raportteja tai luoda oman raportin alusta alkaen.", - "fr-BE", "Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro.", - "fr-CA", "La fonction Finance comprend divers rapports prédéfinis qui vous permettent de visualiser immédiatement vos données. Vous pouvez modifier ces rapports ou créer vos propres rapports à partir de zéro.", - "fr-CH", "Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro.", - "is-IS", "Fjármál bjóða upp á innbyggðar skýrslur til að skoða gögn samstundis. Hægt er að breyta skýrslunum eða búa til eigin skýrslur frá grunni.", - "it-CH", "I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero.", - "it-IT", "I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero.", - "nb-NO", "Finans inneholder en rekke forhåndsbygde rapporter som hjelper deg med å se dataene umiddelbart. Du kan redigere disse rapportene eller lage din egen rapport fra bunnen av.", - "nl-BE", "Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken.", - "nl-NL", "Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken.", - "ru-RU", "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.", - "sv-SE", "Ekonomi omfattar en mängd olika färdiga rapporter som gör det enkelt att se data direkt. Du kan redigera dessa rapporter eller skapa en egen rapport från grunden.", - "Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch." - ) - isHidden - lineageTag: ceeaec60-9424-4b93-ac1a-d5c59468fc3b - - measure 'HELP AND SUPPORT Label' = - SWITCH(USERCULTURE(), - "es-ES", "AYUDA Y SOPORTE", - "de-DE", "HILFE UND SUPPORT", - "fr-FR", "AIDE ET SUPPORT", - "cs-CZ", "POMOC A PODPORA", - "da-DK", "HJÆLP OG SUPPORT", - "de-AT", "HILFE UND SUPPORT", - "de-CH", "HILFE UND SUPPORT", - "en-AU", "HELP AND SUPPORT", - "en-CA", "HELP AND SUPPORT", - "en-GB", "HELP AND SUPPORT", - "en-NZ", "HELP AND SUPPORT", - "es-MX", "AYUDA Y SOPORTE", - "fi-FI", "OHJE JA TUKI", - "fr-BE", "AIDE ET SUPPORT", - "fr-CA", "AIDE ET SUPPORT", - "fr-CH", "AIDE ET SUPPORT", - "is-IS", "HJÁLP OG STUÐNINGUR", - "it-CH", "GUIDA E SUPPORTO", - "it-IT", "GUIDA E SUPPORTO", - "nb-NO", "HJELP OG KUNDESTØTTE", - "nl-BE", "HELP EN ONDERSTEUNING", - "nl-NL", "HELP EN ONDERSTEUNING", - "ru-RU", "HELP AND SUPPORT", - "sv-SE", "HJÄLP OCH SUPPORT", - "HELP AND SUPPORT" - ) - isHidden - lineageTag: 1a06eb7f-6bcd-45ee-846f-bbd42b32124d - - measure 'For help and support with your new report please visit the Analytics overview documentation. Label' = - SWITCH(USERCULTURE(), - "es-ES", "Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics.", - "de-DE", "Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht.", - "fr-FR", "Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse.", - "cs-CZ", "Nápovědu a podporu k nové sestavě naleznete v dokumentaci k přehledu Analytics.", - "da-DK", "Du kan få hjælp og support til din nye rapport i dokumentationen til analyseoversigten.", - "de-AT", "Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht.", - "de-CH", "Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht.", - "en-AU", "For help and support with your new report please visit the Analytics overview documentation.", - "en-CA", "For help and support with your new report please visit the Analytics overview documentation.", - "en-GB", "For help and support with your new report please visit the Analytics overview documentation.", - "en-NZ", "For help and support with your new report please visit the Analytics overview documentation.", - "es-MX", "Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics.", - "fi-FI", "Lisätietoja ja tukea uudelle raportillesi löydät analytiikan yleiskatsauksen dokumentaatiosta.", - "fr-BE", "Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse.", - "fr-CA", "Pour obtenir de l’aide et de l’assistance concernant votre nouveau rapport, veuillez consulter la documentation relative à la présentation générale des analyses.", - "fr-CH", "Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse.", - "is-IS", "Lesið fylgigögn greiningaryfirlitsins til að fá hjálp og aðstoð við nýju skýrsluna.", - "it-CH", "Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi.", - "it-IT", "Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi.", - "nb-NO", "Hvis du vil ha hjelp og støtte med den nye rapporten, kan du gå til dokumentasjonen for analyseoversikten.", - "nl-BE", "Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie.", - "nl-NL", "Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie.", - "ru-RU", "For help and support with your new report please visit the Analytics overview documentation.", - "sv-SE", "Hjälp och support med den nya rapporten finns i översiktsdokumentationen för Analys.", - "For help and support with your new report please visit the Analytics overview documentation." - ) - isHidden - lineageTag: aa852ca7-c9f6-4dda-b81f-bad8e2eb7ed2 - - measure 'for Business Central Label' = - SWITCH(USERCULTURE(), - "es-ES", "para Business Central", - "de-DE", "für Business Central", - "fr-FR", "pour Business Central", - "cs-CZ", "pro Business Central", - "da-DK", "til Business Central", - "de-AT", "für Business Central", - "de-CH", "für Business Central", - "en-AU", "for Business Central", - "en-CA", "for Business Central", - "en-GB", "for Business Central", - "en-NZ", "for Business Central", - "es-MX", "para Business Central", - "fi-FI", "Business Centralille", - "fr-BE", "pour Business Central", - "fr-CA", "pour Business Central", - "fr-CH", "pour Business Central", - "is-IS", "fyrir Business Central", - "it-CH", "per Business Central", - "it-IT", "per Business Central", - "nb-NO", "for Business Central", - "nl-BE", "voor Business Central", - "nl-NL", "voor Business Central", - "ru-RU", "for Business Central", - "sv-SE", "för Business Central", - "for Business Central" - ) - isHidden - lineageTag: 22f69113-2403-4419-b18c-47638af906f6 - - measure 'Last Refreshed Label' = - SWITCH(USERCULTURE(), - "es-ES", "Última actualización", - "de-DE", "Zuletzt aktualisiert", - "fr-FR", "Dernière actualisation", - "cs-CZ", "Naposledy aktualizováno", - "da-DK", "Sidst opdateret", - "de-AT", "Zuletzt aktualisiert", - "de-CH", "Zuletzt aktualisiert", - "en-AU", "Last Refreshed", - "en-CA", "Last Refreshed", - "en-GB", "Last Refreshed", - "en-NZ", "Last Refreshed", - "es-MX", "Última actualización", - "fi-FI", "Päivitetty viimeksi", - "fr-BE", "Dernière actualisation", - "fr-CA", "Dernière actualisation", - "fr-CH", "Dernière actualisation", - "is-IS", "Síðast uppfært", - "it-CH", "Ultimo aggiornamento", - "it-IT", "Ultimo aggiornamento", - "nb-NO", "Sist oppdatert", - "nl-BE", "Laatst vernieuwd", - "nl-NL", "Laatst vernieuwd", - "ru-RU", "Last Refreshed", - "sv-SE", "Uppdaterades senast", - "Last Refreshed" - ) - isHidden - lineageTag: c2f4d7e8-3ab0-4c92-99b7-8b6909b877f6 - - measure 'Company Name Label' = - SWITCH(USERCULTURE(), - "es-ES", "Nombre empresa", - "de-DE", "Mandantenname", - "fr-FR", "Nom de la société", - "cs-CZ", "Název společnosti", - "da-DK", "Virksomhedsnavn", - "de-AT", "Mandantenname", - "de-CH", "Mandantenname", - "en-AU", "Company Name", - "en-CA", "Company Name", - "en-GB", "Company Name", - "en-NZ", "Company Name", - "es-MX", "Nombre empresa", - "fi-FI", "Yrityksen nimi", - "fr-BE", "Nom de la société", - "fr-CA", "Nom de la compagnie", - "fr-CH", "Nom de la société", - "is-IS", "Heiti fyrirtækis", - "it-CH", "Nome società", - "it-IT", "Nome società", - "nb-NO", "Selskapsnavn", - "nl-BE", "Bedrijfsnaam", - "nl-NL", "Bedrijfsnaam", - "ru-RU", "Company Name", - "sv-SE", "Företagsnamn", - "Company Name" - ) - isHidden - lineageTag: 5bb86a40-da74-45a7-a578-96b3e6fd8f51 - - measure 'Analysis Entries as of Label' = - SWITCH(USERCULTURE(), - "es-ES", "Movimientos de análisis a partir de", - "de-DE", "Analyseposten zum", - "fr-FR", "Écritures analyse au", - "cs-CZ", "Položky analýzy ke dni", - "da-DK", "Analyseposter fra og med", - "de-AT", "Analyseposten zum", - "de-CH", "Analyseposten zum", - "en-AU", "Analysis Entries as of", - "en-CA", "Analysis Entries as of", - "en-GB", "Analysis Entries as of", - "en-NZ", "Analysis Entries as of", - "es-MX", "Movimientos de análisis a partir de", - "fi-FI", "Analyysitapahtumat alkaen", - "fr-BE", "Écritures analyse au", - "fr-CA", "Écritures analyse au", - "fr-CH", "Écritures analyse au", - "is-IS", "Greiningarfærslur frá og með", - "it-CH", "Movimenti analisi a partire da", - "it-IT", "Movimenti analisi a partire da", - "nb-NO", "Analyseposter per", - "nl-BE", "Analyseposten vanaf", - "nl-NL", "Analyseposten vanaf", - "ru-RU", "Analysis Entries as of", - "sv-SE", "Analysera transaktioner per", - "Analysis Entries as of" - ) - isHidden - lineageTag: db46ff2d-9067-48a8-950c-944de7f0a5eb - - measure 'Billing Forecast by Billing Period, Customer and Contract No. Label' = - SWITCH(USERCULTURE(), - "es-ES", "Previsión de facturación por periodo de facturación, cliente y n.º contrato", - "de-DE", "Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr.", - "fr-FR", "Prévision de facturation par période de facturation, client et n° contrat", - "cs-CZ", "Prognóza fakturace podle fakturačního období, zákazníka a č. smlouvy", - "da-DK", "Faktureringsprognose efter faktureringsperiode, debitor og kontraktnr.", - "de-AT", "Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr.", - "de-CH", "Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr.", - "en-AU", "Billing Forecast by Billing Period, Customer and Contract No.", - "en-CA", "Billing Forecast by Billing Period, Customer and Contract No.", - "en-GB", "Billing Forecast by Billing Period, Customer and Contract No.", - "en-NZ", "Billing Forecast by Billing Period, Customer and Contract No.", - "es-MX", "Previsión de facturación por periodo de facturación, cliente y n.º contrato", - "fi-FI", "Laskutusennuste laskutuskauden, asiakkaan ja sopimuksen numeron mukaan", - "fr-BE", "Prévision de facturation par période de facturation, client et n° contrat", - "fr-CA", "Prévision de facturation par période de facturation, client et n° contrat", - "fr-CH", "Prévision de facturation par période de facturation, client et n° contrat", - "is-IS", "Reikningsspá eftir reikningstímabili, viðskiptavini og samningsnúmeri.", - "it-CH", "Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto", - "it-IT", "Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto", - "nb-NO", "Faktureringsprognose etter faktureringsperiode, kunde- og kontraktnr.", - "nl-BE", "Factureringsprognose per factureringsperiode, klant en contractnr.", - "nl-NL", "Factureringsprognose per factureringsperiode, klant en contractnr.", - "ru-RU", "Billing Forecast by Billing Period, Customer and Contract No.", - "sv-SE", "Faktureringsprognos per faktureringsperiod, kund och kontraktsnr", - "Billing Forecast by Billing Period, Customer and Contract No." - ) - isHidden - lineageTag: eacca12c-73a5-41d8-ac27-1f3474816b6b - - measure 'Billing Forecast by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Previsión de facturación por mes y año naturales", - "de-DE", "Abrechnungsplanung nach Kalenderjahr und Monat", - "fr-FR", "Prévision de facturation par année civile et par mois", - "cs-CZ", "Prognóza fakturace podle kalendářního roku a měsíce", - "da-DK", "Faktureringsprognose efter kalenderår og måned", - "de-AT", "Abrechnungsplanung nach Kalenderjahr und Monat", - "de-CH", "Abrechnungsplanung nach Kalenderjahr und Monat", - "en-AU", "Billing Forecast by Calendar Year and Month", - "en-CA", "Billing Forecast by Calendar Year and Month", - "en-GB", "Billing Forecast by Calendar Year and Month", - "en-NZ", "Billing Forecast by Calendar Year and Month", - "es-MX", "Previsión de facturación por mes y año naturales", - "fi-FI", "Laskutusennuste kalenterivuosittain ja -kuukausittain", - "fr-BE", "Prévision de facturation par année civile et par mois", - "fr-CA", "Prévision de facturation par année civile et par mois", - "fr-CH", "Prévision de facturation par année civile et par mois", - "is-IS", "Reikningsspá eftir almanaksári og -mánuði", - "it-CH", "Previsione fatturazione per anno e mese di calendario", - "it-IT", "Previsione fatturazione per anno e mese di calendario", - "nb-NO", "Faktureringsprognose etter kalenderår og måned", - "nl-BE", "Factureringsprognose per kalenderjaar en -maand", - "nl-NL", "Factureringsprognose per kalenderjaar en -maand", - "ru-RU", "Billing Forecast by Calendar Year and Month", - "sv-SE", "Faktureringsprognos per kalenderår och månad", - "Billing Forecast by Calendar Year and Month" - ) - isHidden - lineageTag: 8926a0f2-b801-4546-9dbd-74b5c2cef0fc - - measure 'Billing Schedule Label' = - SWITCH(USERCULTURE(), - "es-ES", "Programación de facturación", - "de-DE", "Abrechnungszeitplan", - "fr-FR", "Échéancier de facturation", - "cs-CZ", "Plán fakturace", - "da-DK", "Faktureringsskema", - "de-AT", "Abrechnungszeitplan", - "de-CH", "Abrechnungszeitplan", - "en-AU", "Billing Schedule", - "en-CA", "Billing Schedule", - "en-GB", "Billing Schedule", - "en-NZ", "Billing Schedule", - "es-MX", "Programación de facturación", - "fi-FI", "Laskutusaikataulu", - "fr-BE", "Échéancier de facturation", - "fr-CA", "Calendrier de facturation", - "fr-CH", "Échéancier de facturation", - "is-IS", "Greiðsluáætlun", - "it-CH", "Programmazione fatturazione", - "it-IT", "Programmazione fatturazione", - "nb-NO", "Faktureringsplan", - "nl-BE", "Factureringsplanning", - "nl-NL", "Factureringsplanning", - "ru-RU", "Billing Schedule", - "sv-SE", "Faktureringsschema", - "Billing Schedule" - ) - isHidden - lineageTag: 865a4b2c-b572-4eb4-a885-1d3e9051b912 - - measure 'Change of Mon. Recurring Revenue by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Cambio de ingresos periódicos mensuales por mes y año", - "de-DE", "Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat", - "fr-FR", "Modification revenu récurrent mensuel par année et par mois", - "cs-CZ", "Změna měsíčního periodického výnosu podle roku a měsíce", - "da-DK", "Ændring af månedlig tilbagevendende omsætning efter kalenderår og måned", - "de-AT", "Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat", - "de-CH", "Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat", - "en-AU", "Change of Mon. Recurring Revenue by Year and Month", - "en-CA", "Change of Mon. Recurring Revenue by Year and Month", - "en-GB", "Change of Mon. Recurring Revenue by Year and Month", - "en-NZ", "Change of Mon. Recurring Revenue by Year and Month", - "es-MX", "Cambio de ingresos periódicos mensuales por mes y año", - "fi-FI", "Kk:ttain toistuvan tuoton muutos vuosittain ja kuukausittain", - "fr-BE", "Modification revenu récurrent mensuel par année et par mois", - "fr-CA", "Modification revenu récurrent mensuel par année et par mois", - "fr-CH", "Modification revenu récurrent mensuel par année et par mois", - "is-IS", "Breyting á mán. endurteknum tekjum eftir ári og mánuði", - "it-CH", "Modifica dei ricavi periodici mensili per anno e mese", - "it-IT", "Modifica dei ricavi periodici mensili per anno e mese", - "nb-NO", "Endring i månedlig gjentakende inntekt etter år og måned", - "nl-BE", "Wijziging van maand. periodieke opbrengst per jaar en maand", - "nl-NL", "Wijziging van maand. periodieke opbrengst per jaar en maand", - "ru-RU", "Change of Mon. Recurring Revenue by Year and Month", - "sv-SE", "Ändring av månatliga återkommande intäkter per år och månad", - "Change of Mon. Recurring Revenue by Year and Month" - ) - isHidden - lineageTag: aef7110a-9887-4880-bbc5-eac2cdbafeaa - - measure 'Current Date Range: Label' = - SWITCH(USERCULTURE(), - "es-ES", "Intervalo de fechas actual:", - "de-DE", "Aktueller Datumsbereich:", - "fr-FR", "Plage de dates actuelle :", - "cs-CZ", "Aktuální rozsah dat:", - "da-DK", "Aktuelt datointerval:", - "de-AT", "Aktueller Datumsbereich:", - "de-CH", "Aktueller Datumsbereich:", - "en-AU", "Current Date Range:", - "en-CA", "Current Date Range:", - "en-GB", "Current Date Range:", - "en-NZ", "Current Date Range:", - "es-MX", "Intervalo de fechas actual:", - "fi-FI", "Nykyinen päivämääräalue:", - "fr-BE", "Plage de dates actuelle :", - "fr-CA", "Plage de dates actuelle :", - "fr-CH", "Plage de dates actuelle :", - "is-IS", "Núverandi dagsetningabil:", - "it-CH", "Intervallo di date corrente:", - "it-IT", "Intervallo di date corrente:", - "nb-NO", "Nåværende datoområde:", - "nl-BE", "Huidig datumbereik:", - "nl-NL", "Huidig datumbereik:", - "ru-RU", "Current Date Range:", - "sv-SE", "Aktuellt datumintervall:", - "Current Date Range:" - ) - isHidden - lineageTag: accb641e-9b2e-4e22-ac79-43979ef7a88e - - measure 'Customer Contract Deferrals Label' = - SWITCH(USERCULTURE(), - "es-ES", "Fraccionamientos de contratos de clientes", - "de-DE", "Abgrenzungen von Debitorenverträgen", - "fr-FR", "Reports contrat client", - "cs-CZ", "Časová rozlišení zákaznické smlouvy", - "da-DK", "Periodiseringer af debitorkontrakt", - "de-AT", "Abgrenzungen von Debitorenverträgen", - "de-CH", "Abgrenzungen von Debitorenverträgen", - "en-AU", "Customer Contract Deferrals", - "en-CA", "Customer Contract Deferrals", - "en-GB", "Customer Contract Deferrals", - "en-NZ", "Customer Contract Deferrals", - "es-MX", "Fraccionamientos de contratos de clientes", - "fi-FI", "Asiakassopimuksen siirrot", - "fr-BE", "Reports contrat client", - "fr-CA", "Reports contrat client", - "fr-CH", "Reports contrat client", - "is-IS", "Samningsfrestanir viðskiptavinar", - "it-CH", "Differimenti contratto del cliente", - "it-IT", "Differimenti contratto del cliente", - "nb-NO", "Kundekontraktperiodiseringer", - "nl-BE", "Uitstel van klantcontracten", - "nl-NL", "Uitstel van klantcontracten", - "ru-RU", "Customer Contract Deferrals", - "sv-SE", "Periodiseringar av kundkontrakt", - "Customer Contract Deferrals" - ) - isHidden - lineageTag: 7d2fa010-f223-40d7-be7b-6fd98ec89ff2 - - measure 'Customer Contract Lines Label' = - SWITCH(USERCULTURE(), - "es-ES", "Líneas de contrato de cliente", - "de-DE", "Debitorenvertragszeilen", - "fr-FR", "Lignes contrat client", - "cs-CZ", "Řádky zákaznické smlouvy", - "da-DK", "Debitorkontraktlinjer", - "de-AT", "Debitorenvertragszeilen", - "de-CH", "Debitorenvertragszeilen", - "en-AU", "Customer Contract Lines", - "en-CA", "Customer Contract Lines", - "en-GB", "Customer Contract Lines", - "en-NZ", "Customer Contract Lines", - "es-MX", "Líneas de contrato de cliente", - "fi-FI", "Asiakassopimusrivit", - "fr-BE", "Lignes contrat client", - "fr-CA", "Lignes contrat client", - "fr-CH", "Lignes contrat client", - "is-IS", "Samningslínur viðskiptavinar", - "it-CH", "Righe contratto del cliente", - "it-IT", "Righe contratto del cliente", - "nb-NO", "Kundekontraktlinjer", - "nl-BE", "Klantcontractregels", - "nl-NL", "Klantcontractregels", - "ru-RU", "Customer Contract Lines", - "sv-SE", "Kundkontraktsrader", - "Customer Contract Lines" - ) - isHidden - lineageTag: 3fe6d9b4-da2c-4f13-9fbc-173a3c9d08e0 - - measure 'Customer Deferrals (Caption) Label' = - SWITCH(USERCULTURE(), - "es-ES", "Fraccionamientos de clientes", - "de-DE", "Debitorenabgrenzungen", - "fr-FR", "Reports client", - "cs-CZ", "Časová rozlišení zákazníka", - "da-DK", "Debitorperiodiseringer", - "de-AT", "Debitorenabgrenzungen", - "de-CH", "Debitorenabgrenzungen", - "en-AU", "Customer Deferrals", - "en-CA", "Customer Deferrals", - "en-GB", "Customer Deferrals", - "en-NZ", "Customer Deferrals", - "es-MX", "Fraccionamientos de clientes", - "fi-FI", "Asiakassiirrot", - "fr-BE", "Reports client", - "fr-CA", "Reports client", - "fr-CH", "Reports client", - "is-IS", "Frestanir viðskiptamanns", - "it-CH", "Differimenti cliente", - "it-IT", "Differimenti cliente", - "nb-NO", "Kundeperiodiseringer", - "nl-BE", "Klantuitstel", - "nl-NL", "Klantuitstel", - "ru-RU", "Customer Deferrals", - "sv-SE", "Kundperiodiseringar", - "Customer Deferrals" - ) - isHidden - lineageTag: 8c05fa4e-a749-4fbc-93a1-527472053349 - - measure 'Mon. Recurring Revenue Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de ingresos periódicos mensuales", - "de-DE", "Mon. wiederkehrende Umsatzanalyse", - "fr-FR", "Analyse du revenu récurrent mensuel", - "cs-CZ", "Analýza měsíčních periodických výnosů", - "da-DK", "Månedlig tilbagevendende indtægtsanalyse", - "de-AT", "Mon. wiederkehrende Umsatzanalyse", - "de-CH", "Mon. wiederkehrende Umsatzanalyse", - "en-AU", "Mon. Recurring Revenue Analysis", - "en-CA", "Mon. Recurring Revenue Analysis", - "en-GB", "Mon. Recurring Revenue Analysis", - "en-NZ", "Mon. Recurring Revenue Analysis", - "es-MX", "Análisis de ingresos periódicos mensuales", - "fi-FI", "Kk:ttain toistuvan tuoton analyysi", - "fr-BE", "Analyse du revenu récurrent mensuel", - "fr-CA", "Analyse du revenu récurrent mensuel", - "fr-CH", "Analyse du revenu récurrent mensuel", - "is-IS", "Mán. endurtekin tekjugreining", - "it-CH", "Analisi ricavi periodici mensili", - "it-IT", "Analisi ricavi periodici mensili", - "nb-NO", "Månedlig gjentakende inntektsanalyse", - "nl-BE", "Maand. periodieke analyse van opbrengst", - "nl-NL", "Maand. periodieke analyse van opbrengst", - "ru-RU", "Mon. Recurring Revenue Analysis", - "sv-SE", "Analys av månatliga återkommande intäkter", - "Mon. Recurring Revenue Analysis" - ) - isHidden - lineageTag: cd6ddd4f-6d85-40e1-8914-6bf7d30edade - - measure 'Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural", - "de-DE", "Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat", - "fr-FR", "Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil", - "cs-CZ", "Měsíční periodické výnosy a měsíční periodické výnosy PR podle kalendářního měsíce", - "da-DK", "Månedlige tilbagevendende indtægter og månedlige tilbagevendende indtægter FÅ efter kalendermåned", - "de-AT", "Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat", - "de-CH", "Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat", - "en-AU", "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month", - "en-CA", "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month", - "en-GB", "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month", - "en-NZ", "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month", - "es-MX", "Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural", - "fi-FI", "Kk:ttain toistuva tuotto ja Kk:ttain toistuva tuotto EDV kalenterikuukausittain", - "fr-BE", "Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil", - "fr-CA", "Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil", - "fr-CH", "Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil", - "is-IS", "Mán. endurteknar tekjur og mán. endurteknar tekjur fyrra árs eftir almanaksmánuði", - "it-CH", "Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario", - "it-IT", "Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario", - "nb-NO", "Månedlig gjentakende inntekt og månedlig gjentakende inntekt PÅ etter kalendermåned", - "nl-BE", "Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand", - "nl-NL", "Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand", - "ru-RU", "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month", - "sv-SE", "Månatliga återkommande intäkter och månatliga återkommande intäkter FÅ per kalendermånad", - "Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month" - ) - isHidden - lineageTag: b5089048-3bc4-4df8-995e-8a8463f0660d - - measure 'Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales", - "de-DE", "Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "fr-FR", "Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois", - "cs-CZ", "Měsíční periodické výnosy a meziroční růst podle kalendářního roku a měsíce", - "da-DK", "Månedlig tilbagevendende omsætning og vækst fra år til år efter kalenderår og måned", - "de-AT", "Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "de-CH", "Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "en-AU", "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month", - "en-CA", "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month", - "en-GB", "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month", - "en-NZ", "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month", - "es-MX", "Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales", - "fi-FI", "Kk:ttain toistuva tuotto ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain", - "fr-BE", "Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois", - "fr-CA", "Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois", - "fr-CH", "Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois", - "is-IS", "Mán. endurteknar tekjur og vöxtur milli ára eftir almanaksári og -mánuði", - "it-CH", "Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario", - "it-IT", "Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario", - "nb-NO", "Månedlig gjentakende inntekst og vekst år for år etter kalenderår og måned", - "nl-BE", "Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand", - "nl-NL", "Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand", - "ru-RU", "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month", - "sv-SE", "Månatliga återkommande intäkter och tillväxt år för år per kalenderår och månad", - "Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month" - ) - isHidden - lineageTag: b521b0eb-ead5-4caa-91ef-874354968829 - - measure 'Mon. Recurring Revenue by Customer Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales por cliente", - "de-DE", "Mon. wiederkehrende Umsätze nach Debitor", - "fr-FR", "Revenu récurrent mensuel par client", - "cs-CZ", "Měsíční periodické výnosy podle zákazníka", - "da-DK", "Månedlig tilbagevendende indtægt efter debitor", - "de-AT", "Mon. wiederkehrende Umsätze nach Debitor", - "de-CH", "Mon. wiederkehrende Umsätze nach Debitor", - "en-AU", "Mon. Recurring Revenue by Customer", - "en-CA", "Mon. Recurring Revenue by Customer", - "en-GB", "Mon. Recurring Revenue by Customer", - "en-NZ", "Mon. Recurring Revenue by Customer", - "es-MX", "Ingresos periódicos mensuales por cliente", - "fi-FI", "Kk:ttain toistuva tuotto asiakkaittain", - "fr-BE", "Revenu récurrent mensuel par client", - "fr-CA", "Revenu récurrent mensuel par client", - "fr-CH", "Revenu récurrent mensuel par client", - "is-IS", "Mán. endurteknar tekjur eftir viðskiptavini", - "it-CH", "Ricavi periodici mensili per cliente", - "it-IT", "Ricavi periodici mensili per cliente", - "nb-NO", "Månedlig gjentakende inntekt etter kunde", - "nl-BE", "Maand. periodieke opbrengst per klant", - "nl-NL", "Maand. periodieke opbrengst per klant", - "ru-RU", "Mon. Recurring Revenue by Customer", - "sv-SE", "Månatliga återkommande intäkter per kund", - "Mon. Recurring Revenue by Customer" - ) - isHidden - lineageTag: c8865130-8a17-4abf-9171-091295bfad05 - - measure 'Mon. Recurring Revenue by Salesperson Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales por vendedor", - "de-DE", "Mon. wiederkehrende Umsätze nach Verkäufer", - "fr-FR", "Revenu récurrent mensuel par vendeur", - "cs-CZ", "Měsíční periodické výnosy podle prodejce", - "da-DK", "Månedlig tilbagevendende indtægt efter sælger", - "de-AT", "Mon. wiederkehrende Umsätze nach Verkäufer", - "de-CH", "Mon. wiederkehrende Umsätze nach Verkäufer", - "en-AU", "Mon. Recurring Revenue by Salesperson", - "en-CA", "Mon. Recurring Revenue by Salesperson", - "en-GB", "Mon. Recurring Revenue by Salesperson", - "en-NZ", "Mon. Recurring Revenue by Salesperson", - "es-MX", "Ingresos periódicos mensuales por vendedor", - "fi-FI", "Kk:ttain toistuva tuotto myyjittäin", - "fr-BE", "Revenu récurrent mensuel par vendeur", - "fr-CA", "Mois Revenus récurrents par représentant", - "fr-CH", "Revenu récurrent mensuel par vendeur", - "is-IS", "Mán. endurteknar tekjur eftir sölumanni", - "it-CH", "Ricavi periodici mensili per venditore", - "it-IT", "Ricavi periodici mensili per venditore", - "nb-NO", "Månedlig gjentakende inntekt etter selger", - "nl-BE", "Maand. periodieke opbrengst per verkoper", - "nl-NL", "Maand. periodieke opbrengst per verkoper", - "ru-RU", "Mon. Recurring Revenue by Salesperson", - "sv-SE", "Månatliga återkommande intäkter per säljare", - "Mon. Recurring Revenue by Salesperson" - ) - isHidden - lineageTag: 3c59b695-be46-4a97-8d41-d3647e24acbc - - measure 'Mon. Recurring Revenue by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales por mes y año naturales", - "de-DE", "Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat", - "fr-FR", "Revenu récurrent mensuel par année civile et par mois", - "cs-CZ", "Měsíční periodické výnosy podle kalendářního roku a měsíce", - "da-DK", "Månedlig tilbagevendende omsætning efter kalenderår og måned", - "de-AT", "Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat", - "de-CH", "Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat", - "en-AU", "Mon. Recurring Revenue by Calendar Year and Month", - "en-CA", "Mon. Recurring Revenue by Calendar Year and Month", - "en-GB", "Mon. Recurring Revenue by Calendar Year and Month", - "en-NZ", "Mon. Recurring Revenue by Calendar Year and Month", - "es-MX", "Ingresos periódicos mensuales por mes y año naturales", - "fi-FI", "Kk:ttain toistuva tuotto kalenterivuosittain ja -kuukausittain", - "fr-BE", "Revenu récurrent mensuel par année civile et par mois", - "fr-CA", "Revenu récurrent mensuel par année civile et par mois", - "fr-CH", "Revenu récurrent mensuel par année civile et par mois", - "is-IS", "Mán. endurteknar tekjur eftir almanaksári og -mánuði", - "it-CH", "Ricavi periodici mensili per anno e mese di calendario", - "it-IT", "Ricavi periodici mensili per anno e mese di calendario", - "nb-NO", "Månedlig gjentakende inntekt etter kalenderår og måned", - "nl-BE", "Maand. periodieke opbrengst per kalenderjaar en -maand", - "nl-NL", "Maand. periodieke opbrengst per kalenderjaar en -maand", - "ru-RU", "Mon. Recurring Revenue by Calendar Year and Month", - "sv-SE", "Månatliga återkommande intäkter per kalenderår och månad", - "Mon. Recurring Revenue by Calendar Year and Month" - ) - isHidden - lineageTag: 0db46e3c-e9cd-4517-ac0a-5b629bce27be - - measure 'Mon. Recurring Revenue by Item Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales por producto", - "de-DE", "Mon. wiederkehrende Umsätze nach Artikel", - "fr-FR", "Revenu récurrent mensuel par article", - "cs-CZ", "Měsíční periodické výnosy podle zboží", - "da-DK", "Månedlig tilbagevendende indtægt efter vare", - "de-AT", "Mon. wiederkehrende Umsätze nach Artikel", - "de-CH", "Mon. wiederkehrende Umsätze nach Artikel", - "en-AU", "Mon. Recurring Revenue by Item", - "en-CA", "Mon. Recurring Revenue by Item", - "en-GB", "Mon. Recurring Revenue by Item", - "en-NZ", "Mon. Recurring Revenue by Item", - "es-MX", "Ingresos periódicos mensuales por producto", - "fi-FI", "Kk:ttain toistuva tuotto nimikkeittäin", - "fr-BE", "Revenu récurrent mensuel par article", - "fr-CA", "Revenu récurrent mensuel par article", - "fr-CH", "Revenu récurrent mensuel par article", - "is-IS", "Mán. endurteknar tekjur eftir vöru", - "it-CH", "Ricavi periodici mensili per articolo", - "it-IT", "Ricavi periodici mensili per articolo", - "nb-NO", "Månedlig gjentakende inntekt etter vare", - "nl-BE", "Maand. periodieke opbrengst per artikel", - "nl-NL", "Maand. periodieke opbrengst per artikel", - "ru-RU", "Mon. Recurring Revenue by Item", - "sv-SE", "Månatliga återkommande intäkter per artikel", - "Mon. Recurring Revenue by Item" - ) - isHidden - lineageTag: 540a95c3-6fa9-4b87-a612-02747d2152a1 - - measure 'Mon. Recurring Revenue by Item Category Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales por categoría de producto", - "de-DE", "Mon. wiederkehrende Umsätze nach Kategorie", - "fr-FR", "Catégorie revenu récurrent mensuel par article", - "cs-CZ", "Měsíční periodické výnosy podle kategorie zboží", - "da-DK", "Månedlig tilbagevendende indtægt efter kategori", - "de-AT", "Mon. wiederkehrende Umsätze nach Kategorie", - "de-CH", "Mon. wiederkehrende Umsätze nach Kategorie", - "en-AU", "Mon. Recurring Revenue by Item Category", - "en-CA", "Mon. Recurring Revenue by Item Category", - "en-GB", "Mon. Recurring Revenue by Item Category", - "en-NZ", "Mon. Recurring Revenue by Item Category", - "es-MX", "Ingresos periódicos mensuales por categoría de producto", - "fi-FI", "Kk:ttain toistuva tuotto nimikeluokittain", - "fr-BE", "Catégorie revenu récurrent mensuel par article", - "fr-CA", "Catégorie revenu récurrent mensuel par article", - "fr-CH", "Catégorie revenu récurrent mensuel par article", - "is-IS", "Mán. endurteknar tekjur eftir vöruflokkum", - "it-CH", "Ricavi periodici mensili per categoria articolo", - "it-IT", "Ricavi periodici mensili per categoria articolo", - "nb-NO", "Månedlig gjentakende inntekt etter varekategori", - "nl-BE", "Maand. periodieke opbrengst per artikelcategorie", - "nl-NL", "Maand. periodieke opbrengst per artikelcategorie", - "ru-RU", "Mon. Recurring Revenue by Item Category", - "sv-SE", "Månatliga återkommande intäkter per artikelkategori", - "Mon. Recurring Revenue by Item Category" - ) - isHidden - lineageTag: 4be283ab-e6ca-4aca-a4e9-73564b30b4c8 - - measure 'Mon. Recurring Revenue Churn and Downgrade by Customer Contract Label' = - SWITCH(USERCULTURE(), - "es-ES", "Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente", - "de-DE", "Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag", - "fr-FR", "Attrition et rétrogradation revenu récurrent mensuel par contrat client", - "cs-CZ", "Odchod zákazníků a downgrade měsíčních periodických výnosů podle zákaznické smlouvy", - "da-DK", "Månedlig tilbagevendende indtægtsafgang og nedgradering efter debitorkontrakt", - "de-AT", "Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag", - "de-CH", "Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag", - "en-AU", "Mon. Recurring Revenue Churn and Downgrade by Customer Contract", - "en-CA", "Mon. Recurring Revenue Churn and Downgrade by Customer Contract", - "en-GB", "Mon. Recurring Revenue Churn and Downgrade by Customer Contract", - "en-NZ", "Mon. Recurring Revenue Churn and Downgrade by Customer Contract", - "es-MX", "Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente", - "fi-FI", "Kk:ttain toistuvan tuoton Vaihtuvuus ja Palautus asiakassopimuksittain", - "fr-BE", "Attrition et rétrogradation revenu récurrent mensuel par contrat client", - "fr-CA", "Attrition et rétrogradation revenu récurrent mensuel par contrat client", - "fr-CH", "Attrition et rétrogradation revenu récurrent mensuel par contrat client", - "is-IS", "Mán uppsögn endurtekinna tekna og niðurfærsla eftir samningi við viðskiptavin", - "it-CH", "Abbandono e downgrade ricavi periodici mensili per contratto cliente", - "it-IT", "Abbandono e downgrade ricavi periodici mensili per contratto cliente", - "nb-NO", "Månedlig gjentakende inntektsfrafall og -nedgradering etter kundekontrakt", - "nl-BE", "Maand. periodiek opbrengstverloop en downgrade per klantcontract", - "nl-NL", "Maand. periodiek opbrengstverloop en downgrade per klantcontract", - "ru-RU", "Mon. Recurring Revenue Churn and Downgrade by Customer Contract", - "sv-SE", "Månatliga återkommande intäktsbortfall och nedgradering per kundkontrakt", - "Mon. Recurring Revenue Churn and Downgrade by Customer Contract" - ) - isHidden - lineageTag: e16beb8b-7b17-4a61-b51a-5425cb5608f4 - - measure 'Mon. Recurring Revenue New and Upgrade by Customer Contract Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente", - "de-DE", "Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag", - "fr-FR", "Revenu récurrent mensuel nouveau et mis à niveau par contrat client", - "cs-CZ", "Noví zákazníci a upgrade měsíčních periodických výnosů podle zákaznické smlouvy", - "da-DK", "Månedlig tilbagevendende indtægter Nye og opgradering efter debitorkontrakt", - "de-AT", "Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag", - "de-CH", "Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag", - "en-AU", "Mon. Recurring Revenue New and Upgrade by Customer Contract", - "en-CA", "Mon. Recurring Revenue New and Upgrade by Customer Contract", - "en-GB", "Mon. Recurring Revenue New and Upgrade by Customer Contract", - "en-NZ", "Mon. Recurring Revenue New and Upgrade by Customer Contract", - "es-MX", "Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente", - "fi-FI", "Kk:ttain toistuvan tuoton Uusi ja Päivitä asiakassopimuksittain", - "fr-BE", "Revenu récurrent mensuel nouveau et mis à niveau par contrat client", - "fr-CA", "Revenu récurrent mensuel nouveau et mis à niveau par contrat client", - "fr-CH", "Revenu récurrent mensuel nouveau et mis à niveau par contrat client", - "is-IS", "Mán. Endurteknar tekjur nýjar og uppfærðar eftir samningi við viðskiptavin", - "it-CH", "Novità e aggiornamento ricavi periodici mensili per contratto cliente", - "it-IT", "Novità e aggiornamento ricavi periodici mensili per contratto cliente", - "nb-NO", "Månedlig gjentakende inntekt ny og oppgradering etter kundekontrakt", - "nl-BE", "Maand. periodieke opbrengst nieuw en upgrade per klantcontract", - "nl-NL", "Maand. periodieke opbrengst nieuw en upgrade per klantcontract", - "ru-RU", "Mon. Recurring Revenue New and Upgrade by Customer Contract", - "sv-SE", "Månatliga återkommande intäkter, nya och nedgradering per kundkontrakt", - "Mon. Recurring Revenue New and Upgrade by Customer Contract" - ) - isHidden - lineageTag: e88cd996-24ac-4a3f-a46b-c5efd3be4a74 - - measure 'Monthly Sales and Cost Forecast by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Previsión mensual de ingresos y costes por mes y año natural", - "de-DE", "Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat", - "fr-FR", "Revenus mensuels et coûts prévus par année civile et par mois", - "cs-CZ", "Měsíční prognóza výnosů a nákladů podle kalendářního roku a měsíce", - "da-DK", "Månedlig omsætning og omkostningsprognose efter kalenderår og måned", - "de-AT", "Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat", - "de-CH", "Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat", - "en-AU", "Monthly Revenue and Cost Forecast by Calendar Year and Month", - "en-CA", "Monthly Revenue and Cost Forecast by Calendar Year and Month", - "en-GB", "Monthly Revenue and Cost Forecast by Calendar Year and Month", - "en-NZ", "Monthly Revenue and Cost Forecast by Calendar Year and Month", - "es-MX", "Previsión mensual de ingresos y costos por mes y año natural", - "fi-FI", "Kuukausittainen tuotto- ja kustannusennuste kalenterivuovuosittain ja -kuukausittain", - "fr-BE", "Revenus mensuels et coûts prévus par année civile et par mois", - "fr-CA", "Revenus mensuels et coûts prévus par année civile et par mois", - "fr-CH", "Revenus mensuels et coûts prévus par année civile et par mois", - "is-IS", "Mánaðarleg tekju- og kostnaðarspá eftir almanaksári og -mánuði", - "it-CH", "Previsioni mensili di ricavi e costi per anno e mese di calendario", - "it-IT", "Previsioni mensili di ricavi e costi per anno e mese di calendario", - "nb-NO", "Månedlig inntekts- og kostnadsprognose etter kalenderår og måned", - "nl-BE", "Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand", - "nl-NL", "Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand", - "ru-RU", "Monthly Revenue and Cost Forecast by Calendar Year and Month", - "sv-SE", "Månatlig intäkts- och kostnadsprognos per kalenderår och månad", - "Monthly Revenue and Cost Forecast by Calendar Year and Month" - ) - isHidden - lineageTag: 0b194870-8f76-4761-bfeb-363bde6a6ea3 - - measure 'Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No. Label' = - SWITCH(USERCULTURE(), - "es-ES", "Previsión mensual de ingresos y costes por vendedor, cliente y n.º contrato", - "de-DE", "Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr.", - "fr-FR", "Revenus mensuels et coûts prévus par vendeur, client et n° contrat", - "cs-CZ", "Prognóza měsíčních výnosů a nákladů podle prodejce, zákazníka a č. smlouvy", - "da-DK", "Månedlig omsætning og omkostningsprognose efter sælger, debitor og kontraktnr.", - "de-AT", "Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr.", - "de-CH", "Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr.", - "en-AU", "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No.", - "en-CA", "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No.", - "en-GB", "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No.", - "en-NZ", "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No.", - "es-MX", "Previsión mensual de ingresos y costos por vendedor, cliente y n.º contrato", - "fi-FI", "Kuukausittainen tuotto- ja kustannusennuste myyjän, asiakkaan ja sopimuksen numeron mukaan", - "fr-BE", "Revenus mensuels et coûts prévus par vendeur, client et n° contrat", - "fr-CA", "Prévisions mensuelles de revenus et de coûts par représentant, client et numéro de contrat", - "fr-CH", "Revenus mensuels et coûts prévus par vendeur, client et n° contrat", - "is-IS", "Mánaðarleg tekju- og kostnaðarspá sölumanns, viðskiptavinar og samnings nr.", - "it-CH", "Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto", - "it-IT", "Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto", - "nb-NO", "Månedlig inntekts- og kostnadsprognose etter selger, kunde- og kontraktnr.", - "nl-BE", "Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr.", - "nl-NL", "Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr.", - "ru-RU", "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No.", - "sv-SE", "Månatliga intäkter och kostnadsprognos per säljare, kund och kontraktsnr", - "Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No." - ) - isHidden - lineageTag: f70616f5-ce9f-42f9-be49-53f186c42193 - - measure 'Released and Deferred Amount by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Importe liberado y fraccionado por mes y año naturales", - "de-DE", "Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat", - "fr-FR", "Montant lancé et échelonné par année civile et par mois", - "cs-CZ", "Uvolněná a časové rozlišená částka podle kalendářního roku a měsíce", - "da-DK", "Frigivne og udskudte beløb efter kalenderår og måned", - "de-AT", "Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat", - "de-CH", "Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat", - "en-AU", "Released and Deferred Amount by Calendar Year and Month", - "en-CA", "Released and Deferred Amount by Calendar Year and Month", - "en-GB", "Released and Deferred Amount by Calendar Year and Month", - "en-NZ", "Released and Deferred Amount by Calendar Year and Month", - "es-MX", "Importe liberado y fraccionado por mes y año naturales", - "fi-FI", "Vapautettu ja siirretty summa kalenterivuosittain ja -kuukausittain", - "fr-BE", "Montant lancé et échelonné par année civile et par mois", - "fr-CA", "Montant libéré et différé par année civile et par mois", - "fr-CH", "Montant lancé et échelonné par année civile et par mois", - "is-IS", "Losuð og frestuð upphæð eftir almanaksári og -mánuði", - "it-CH", "Importo rilasciato e differito per anno e mese di calendario", - "it-IT", "Importo rilasciato e differito per anno e mese di calendario", - "nb-NO", "Frigitt og periodisert beløp etter kalenderår og måned", - "nl-BE", "Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand", - "nl-NL", "Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand", - "ru-RU", "Released and Deferred Amount by Calendar Year and Month", - "sv-SE", "Frisläppt och periodiserat belopp per kalenderår och månad", - "Released and Deferred Amount by Calendar Year and Month" - ) - isHidden - lineageTag: e958e561-67bc-45ea-b691-d5241a9efb12 - - measure 'Revenue Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de ingresos", - "de-DE", "Umsatzanalyse", - "fr-FR", "Analyse du revenu", - "cs-CZ", "Analýza výnosů", - "da-DK", "Omsætningsanalyse", - "de-AT", "Umsatzanalyse", - "de-CH", "Umsatzanalyse", - "en-AU", "Revenue Analysis", - "en-CA", "Revenue Analysis", - "en-GB", "Revenue Analysis", - "en-NZ", "Revenue Analysis", - "es-MX", "Análisis de ingresos", - "fi-FI", "Tuottoanalyysi", - "fr-BE", "Analyse du revenu", - "fr-CA", "Analyse du revenu", - "fr-CH", "Analyse du revenu", - "is-IS", "Greining tekja", - "it-CH", "Analisi ricavi", - "it-IT", "Analisi ricavi", - "nb-NO", "Inntektsanalyse", - "nl-BE", "Opbrengstanalyse", - "nl-NL", "Opbrengstanalyse", - "ru-RU", "Revenue Analysis", - "sv-SE", "Intäktsanalys", - "Revenue Analysis" - ) - isHidden - lineageTag: d15cf30f-c746-4556-ad49-00927fac9836 - - measure 'Revenue by Customer Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos por cliente", - "de-DE", "Umsatz nach Debitor", - "fr-FR", "Revenu par client", - "cs-CZ", "Výnosy podle zákazníka", - "da-DK", "Omsætning pr. debitor", - "de-AT", "Umsatz nach Debitor", - "de-CH", "Umsatz nach Debitor", - "en-AU", "Revenue by Customer", - "en-CA", "Revenue by Customer", - "en-GB", "Revenue by Customer", - "en-NZ", "Revenue by Customer", - "es-MX", "Ingresos por cliente", - "fi-FI", "Asiakaskohtainen tuotto", - "fr-BE", "Revenu par client", - "fr-CA", "Revenu par client", - "fr-CH", "Revenu par client", - "is-IS", "Tekjur eftir viðskiptamanni", - "it-CH", "Ricavi per cliente", - "it-IT", "Ricavi per cliente", - "nb-NO", "Inntekt etter kunde", - "nl-BE", "Opbrengst per klant", - "nl-NL", "Opbrengst per klant", - "ru-RU", "Revenue by Customer", - "sv-SE", "Intäkt per kund", - "Revenue by Customer" - ) - isHidden - lineageTag: f030382e-d837-4290-a7c8-02c7373b4c2b - - measure 'Revenue by Item Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos por producto", - "de-DE", "Umsatz nach Artikel", - "fr-FR", "Revenu par article", - "cs-CZ", "Výnosy podle zboží", - "da-DK", "Omsætning pr. vare", - "de-AT", "Umsatz nach Artikel", - "de-CH", "Umsatz nach Artikel", - "en-AU", "Revenue by Item", - "en-CA", "Revenue by Item", - "en-GB", "Revenue by Item", - "en-NZ", "Revenue by Item", - "es-MX", "Ingresos por producto", - "fi-FI", "Nimikekohtainen tuotto", - "fr-BE", "Revenu par article", - "fr-CA", "Revenu par article", - "fr-CH", "Revenu par article", - "is-IS", "Tekjur eftir vöru", - "it-CH", "Ricavi per articolo", - "it-IT", "Ricavi per articolo", - "nb-NO", "Inntekt etter vare", - "nl-BE", "Opbrengst per artikel", - "nl-NL", "Opbrengst per artikel", - "ru-RU", "Revenue by Item", - "sv-SE", "Intäkt per artikel", - "Revenue by Item" - ) - isHidden - lineageTag: e876d644-8c77-4beb-bee3-d84955de70f0 - - measure 'Revenue by Salesperson Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos por vendedor", - "de-DE", "Umsatz nach Verkäufer", - "fr-FR", "Revenu par vendeur", - "cs-CZ", "Výnosy podle prodejce", - "da-DK", "Omsætning pr. sælger", - "de-AT", "Umsatz nach Verkäufer", - "de-CH", "Umsatz nach Verkäufer", - "en-AU", "Revenue by Salesperson", - "en-CA", "Revenue by Salesperson", - "en-GB", "Revenue by Salesperson", - "en-NZ", "Revenue by Salesperson", - "es-MX", "Ingresos por vendedor", - "fi-FI", "Myyjäkohtainen tuotto", - "fr-BE", "Revenu par vendeur", - "fr-CA", "Revenus par représentant", - "fr-CH", "Revenu par vendeur", - "is-IS", "Tekjur eftir sölumanni", - "it-CH", "Ricavi per venditore", - "it-IT", "Ricavi per venditore", - "nb-NO", "Inntekt per selger", - "nl-BE", "Opbrengst per verkoper", - "nl-NL", "Opbrengst per verkoper", - "ru-RU", "Revenue by Salesperson", - "sv-SE", "Intäkt per säljare", - "Revenue by Salesperson" - ) - isHidden - lineageTag: c2816182-98f5-48d7-b9fb-0c4530e4b7cb - - measure 'Revenue Development Label' = - SWITCH(USERCULTURE(), - "es-ES", "Desarrollo de ingresos", - "de-DE", "Umsatzentwicklung", - "fr-FR", "Développement du revenu", - "cs-CZ", "Vývoj výnosů", - "da-DK", "Omsætningsudvikling", - "de-AT", "Umsatzentwicklung", - "de-CH", "Umsatzentwicklung", - "en-AU", "Revenue Development", - "en-CA", "Revenue Development", - "en-GB", "Revenue Development", - "en-NZ", "Revenue Development", - "es-MX", "Desarrollo de ingresos", - "fi-FI", "Tuottokehitys", - "fr-BE", "Développement du revenu", - "fr-CA", "Développement du revenu", - "fr-CH", "Développement du revenu", - "is-IS", "Tekjuþróun", - "it-CH", "Sviluppo ricavi", - "it-IT", "Sviluppo ricavi", - "nb-NO", "Inntektsutvikling", - "nl-BE", "Opbrengstontwikkeling", - "nl-NL", "Opbrengstontwikkeling", - "ru-RU", "Revenue Development", - "sv-SE", "Intäktsutveckling", - "Revenue Development" - ) - isHidden - lineageTag: afef247a-5efc-4c21-9441-fedbe4c023c8 - - measure 'Sales and Cost Forecast Label' = - SWITCH(USERCULTURE(), - "es-ES", "Previsión de ingresos", - "de-DE", "Umsatzplanung", - "fr-FR", "Prévision de revenu", - "cs-CZ", "Prognóza výnosů", - "da-DK", "Indtægtsprognose", - "de-AT", "Umsatzplanung", - "de-CH", "Umsatzplanung", - "en-AU", "Revenue Forecast", - "en-CA", "Revenue Forecast", - "en-GB", "Revenue Forecast", - "en-NZ", "Revenue Forecast", - "es-MX", "Previsión de ingresos", - "fi-FI", "Tuottoennuste", - "fr-BE", "Prévision de revenu", - "fr-CA", "Prévision de revenu", - "fr-CH", "Prévision de revenu", - "is-IS", "Tekjuspá", - "it-CH", "Previsione ricavi", - "it-IT", "Previsione ricavi", - "nb-NO", "Inntektsprognose", - "nl-BE", "Opbrengstprognose", - "nl-NL", "Opbrengstprognose", - "ru-RU", "Revenue Forecast", - "sv-SE", "Intäktsprognos", - "Revenue Forecast" - ) - isHidden - lineageTag: 3a3416c4-f6dc-4f7d-822d-4526a7c509ec - - measure 'Revenue Year-Over-Year Growth Label' = - SWITCH(USERCULTURE(), - "es-ES", "Crecimiento interanual de los ingresos", - "de-DE", "Umsatzwachstum im Vergleich zum Vorjahr", - "fr-FR", "Croissance du revenu d’une année sur l’autre", - "cs-CZ", "Meziroční růst výnosů", - "da-DK", "Omsætning fra år til år vækst", - "de-AT", "Umsatzwachstum im Vergleich zum Vorjahr", - "de-CH", "Umsatzwachstum im Vergleich zum Vorjahr", - "en-AU", "Revenue Year-Over-Year Growth", - "en-CA", "Revenue Year-Over-Year Growth", - "en-GB", "Revenue Year-Over-Year Growth", - "en-NZ", "Revenue Year-Over-Year Growth", - "es-MX", "Crecimiento interanual de los ingresos", - "fi-FI", "Tuoton vuosittainen kasvu", - "fr-BE", "Croissance du revenu d’une année sur l’autre", - "fr-CA", "Croissance du revenu d’une année sur l’autre", - "fr-CH", "Croissance du revenu d’une année sur l’autre", - "is-IS", "Tekjuvöxtur milli ára", - "it-CH", "Crescita ricavi anno su anno", - "it-IT", "Crescita ricavi anno su anno", - "nb-NO", "Inntekstvekst år for år", - "nl-BE", "Opbrengstgroei jaar-tot-jaar", - "nl-NL", "Opbrengstgroei jaar-tot-jaar", - "ru-RU", "Revenue Year-Over-Year Growth", - "sv-SE", "Tillväxtökning år för år", - "Revenue Year-Over-Year Growth" - ) - isHidden - lineageTag: 2d2e3c1d-ceec-4c18-ad3b-c6e93ddf6709 - - measure 'Subscription Billing Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis Subscription Billing", - "de-DE", "Subscription Billing-Analyse", - "fr-FR", "Analyse Subscription Billing", - "cs-CZ", "Analýza Subscription Billing", - "da-DK", "Analyse af Subscription Billing", - "de-AT", "Subscription Billing-Analyse", - "de-CH", "Subscription Billing-Analyse", - "en-AU", "Subscription Billing Analysis", - "en-CA", "Subscription Billing Analysis", - "en-GB", "Subscription Billing Analysis", - "en-NZ", "Subscription Billing Analysis", - "es-MX", "Análisis Subscription Billing", - "fi-FI", "Subscription Billing – Analyysi", - "fr-BE", "Analyse Subscription Billing", - "fr-CA", "Analyse Subscription Billing", - "fr-CH", "Analyse Subscription Billing", - "is-IS", "Subscription Billing greining", - "it-CH", "Analisi Subscription Billing", - "it-IT", "Analisi Subscription Billing", - "nb-NO", "Subscription Billing-analyse", - "nl-BE", "Analyse van Subscription Billing", - "nl-NL", "Analyse van Subscription Billing", - "ru-RU", "Subscription Billing Analysis", - "sv-SE", "Analys av Subscription Billing", - "Subscription Billing Analysis" - ) - isHidden - lineageTag: a2636555-b186-43af-9a97-f1be3481f349 - - measure 'Subscription Billing Overview Label' = - SWITCH(USERCULTURE(), - "es-ES", "Información general Subscription Billing", - "de-DE", "Übersicht über Subscription Billing", - "fr-FR", "Vue d’ensemble de Subscription Billing", - "cs-CZ", "Přehled Subscription Billing", - "da-DK", "Oversigt over Subscription Billing", - "de-AT", "Übersicht über Subscription Billing", - "de-CH", "Übersicht über Subscription Billing", - "en-AU", "Subscription Billing Overview", - "en-CA", "Subscription Billing Overview", - "en-GB", "Subscription Billing Overview", - "en-NZ", "Subscription Billing Overview", - "es-MX", "Información general Subscription Billing", - "fi-FI", "Subscription Billing – Yleiskatsaus", - "fr-BE", "Vue d’ensemble de Subscription Billing", - "fr-CA", "Vue d’ensemble de Subscription Billing", - "fr-CH", "Vue d’ensemble de Subscription Billing", - "is-IS", "Subscription Billing yfirlit", - "it-CH", "Panoramica di Subscription Billing", - "it-IT", "Panoramica di Subscription Billing", - "nb-NO", "Oversikt over Subscription Billing", - "nl-BE", "Overzicht van Subscription Billing", - "nl-NL", "Overzicht van Subscription Billing", - "ru-RU", "Subscription Billing Overview", - "sv-SE", "Översikt över Subscription Billing", - "Subscription Billing Overview" - ) - isHidden - lineageTag: 0aa305de-1af5-4f1f-823d-b8e488a089a4 - - measure 'Top 5 Customers by Mon. Recurring Revenue Label' = - SWITCH(USERCULTURE(), - "es-ES", "Los 5 clientes principales por Ingresos periódicos mensuales", - "de-DE", "Top-5-Debitoren nach mon. wiederkehrenden Umsätzen", - "fr-FR", "5 premiers clients par revenu récurrent mensuel", - "cs-CZ", "5 předních zákazníků podle měsíčního periodického výnosu", - "da-DK", "Top 5 debitorer efter månedlig tilbagevendende indtægt", - "de-AT", "Top-5-Debitoren nach mon. wiederkehrenden Umsätzen", - "de-CH", "Top-5-Debitoren nach mon. wiederkehrenden Umsätzen", - "en-AU", "Top 5 Customers by Mon. Recurring Revenue", - "en-CA", "Top 5 Customers by Mon. Recurring Revenue", - "en-GB", "Top 5 Customers by Mon. Recurring Revenue", - "en-NZ", "Top 5 Customers by Mon. Recurring Revenue", - "es-MX", "Los 5 clientes principales por Ingresos periódicos mensuales", - "fi-FI", "Viisi suurinta asiakasta kk:ttain toistuvan tuoton mukaan", - "fr-BE", "5 premiers clients par revenu récurrent mensuel", - "fr-CA", "5 premiers clients par revenu récurrent mensuel", - "fr-CH", "5 premiers clients par revenu récurrent mensuel", - "is-IS", "5 hæstu viðskiptavinirnir eftir mán. endurteknum tekjum", - "it-CH", "Primi 5 clienti per ricavi periodici mensili", - "it-IT", "Primi 5 clienti per ricavi periodici mensili", - "nb-NO", "Beste fem kunder etter månedlig gjentakende inntekt", - "nl-BE", "Top 5 klanten per maand. periodieke opbrengst", - "nl-NL", "Top 5 klanten per maand. periodieke opbrengst", - "ru-RU", "Top 5 Customers by Mon. Recurring Revenue", - "sv-SE", "5 främsta kunderna per månatliga återkommande intäkter", - "Top 5 Customers by Mon. Recurring Revenue" - ) - isHidden - lineageTag: 9a6d9b4a-caa4-4ac3-b5dd-1a312516652c - - measure 'Top 5 Vendors by Mon. Recurring Cost Label' = - SWITCH(USERCULTURE(), - "es-ES", "Los 5 principales proveedores por coste periódico mensual", - "de-DE", "Top-5-Kreditoren nach mon. wiederkehrenden Kosten", - "fr-FR", "5 premiers fournisseurs par coût mensuel récurrent", - "cs-CZ", "5 nejlepších prodejců podle měsíčních periodických nákladů", - "da-DK", "Top 5 kreditorer efter månedlige tilbagevendende omkostninger", - "de-AT", "Top-5-Kreditoren nach mon. wiederkehrenden Kosten", - "de-CH", "Top-5-Kreditoren nach mon. wiederkehrenden Kosten", - "en-AU", "Top 5 Vendors by Mon. Recurring Cost", - "en-CA", "Top 5 Vendors by Mon. Recurring Cost", - "en-GB", "Top 5 Vendors by Mon. Recurring Cost", - "en-NZ", "Top 5 Vendors by Mon. Recurring Cost", - "es-MX", "Los 5 principales proveedores por costo periódico mensual", - "fi-FI", "5 suurinta toimittajaa kk:ttain toistuvien kustannusten mukaan", - "fr-BE", "5 premiers fournisseurs par coût mensuel récurrent", - "fr-CA", "5 premiers fournisseurs par coût mensuel récurrent", - "fr-CH", "5 premiers fournisseurs par coût mensuel récurrent", - "is-IS", "5 hæstu lánardrottnar fyrir mán. endurtekinn kostnað", - "it-CH", "Primi 5 fornitori per costo periodico mensile", - "it-IT", "Primi 5 fornitori per costo periodico mensile", - "nb-NO", "Beste fem leverandører etter månedlig gjentakende kostnad", - "nl-BE", "Top 5 leveranciers op maand. periodieke kosten", - "nl-NL", "Top 5 leveranciers op maand. periodieke kosten", - "ru-RU", "Top 5 Vendors by Mon. Recurring Cost", - "sv-SE", "5 främsta leverantörer per månatlig återkommande kostnad", - "Top 5 Vendors by Mon. Recurring Cost" - ) - isHidden - lineageTag: c7af589e-b446-4868-9738-2facc5405a87 - - measure 'Total Contract Value Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis del valor total del contrato", - "de-DE", "Gesamtvertragswertanalyse", - "fr-FR", "Analyse de la valeur totale du contrat", - "cs-CZ", "Analýza celkové hodnoty smlouvy", - "da-DK", "Analyse af samlet kontraktværdi", - "de-AT", "Gesamtvertragswertanalyse", - "de-CH", "Gesamtvertragswertanalyse", - "en-AU", "Total Contract Value Analysis", - "en-CA", "Total Contract Value Analysis", - "en-GB", "Total Contract Value Analysis", - "en-NZ", "Total Contract Value Analysis", - "es-MX", "Análisis del valor total del contrato", - "fi-FI", "Sopimuksen kokonaisarvon analyysi", - "fr-BE", "Analyse de la valeur totale du contrat", - "fr-CA", "Analyse de la valeur totale du contrat", - "fr-CH", "Analyse de la valeur totale du contrat", - "is-IS", "Heildargreining samningsvirðis", - "it-CH", "Analisi valore totale del contratto", - "it-IT", "Analisi valore totale del contratto", - "nb-NO", "Analyse av total kontraktverdi", - "nl-BE", "Analyse van totale contractwaarde", - "nl-NL", "Analyse van totale contractwaarde", - "ru-RU", "Total Contract Value Analysis", - "sv-SE", "Analys av totalt kontraktsvärde", - "Total Contract Value Analysis" - ) - isHidden - lineageTag: 953467b6-cfb0-4859-a22b-35dcc2cc3270 - - measure 'Total Contract Value and Total Contract Value PY by Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Valor total del contrato y valor total del contrato AA por mes natural", - "de-DE", "Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat", - "fr-FR", "Valeur totale du contrat et valeur totale du contrat AP par mois civil", - "cs-CZ", "Celková hodnota smlouvy a PR celkové hodnoty smlouvy podle kalendářního měsíce", - "da-DK", "Samlet kontraktværdi og samlet kontraktværdi FÅ efter kalendermåned", - "de-AT", "Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat", - "de-CH", "Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat", - "en-AU", "Total Contract Value and Total Contract Value PY by Calendar Month", - "en-CA", "Total Contract Value and Total Contract Value PY by Calendar Month", - "en-GB", "Total Contract Value and Total Contract Value PY by Calendar Month", - "en-NZ", "Total Contract Value and Total Contract Value PY by Calendar Month", - "es-MX", "Valor total del contrato y valor total del contrato AA por mes natural", - "fi-FI", "Sopimuksen kokonaisarvo ja Sopimuksen kokonaisarvo EDV kalenterikuukausittain", - "fr-BE", "Valeur totale du contrat et valeur totale du contrat AP par mois civil", - "fr-CA", "Valeur totale du contrat et valeur totale du contrat AP par mois civil", - "fr-CH", "Valeur totale du contrat et valeur totale du contrat AP par mois civil", - "is-IS", "Heildarsamningsvirði og heildarsamningsvirði fyrra árs eftir almanaksmánuði", - "it-CH", "Valore totale dei contratti e valore totale dei contratti PY per mese di calendario", - "it-IT", "Valore totale dei contratti e valore totale dei contratti PY per mese di calendario", - "nb-NO", "Total kontraktverdi og total kontraktverdi PÅ etter kalendermåned", - "nl-BE", "Totale contractwaarde en totale contractwaarde VJ per kalendermaand", - "nl-NL", "Totale contractwaarde en totale contractwaarde VJ per kalendermaand", - "ru-RU", "Total Contract Value and Total Contract Value PY by Calendar Month", - "sv-SE", "Totalt kontraktsvärde och totalt kontraktsvärde FÅ per kalendermånad", - "Total Contract Value and Total Contract Value PY by Calendar Month" - ) - isHidden - lineageTag: 1507ad1f-7a44-42f7-b19b-6222c22fc3a6 - - measure 'Total Contract Value and Year-Over-Year Growth by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Valor total del contrato y crecimiento interanual por mes y año naturales", - "de-DE", "Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "fr-FR", "Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois", - "cs-CZ", "Celková hodnota smlouvy a meziroční růst podle kalendářního roku a měsíce", - "da-DK", "Samlet kontraktværdi og vækst fra år til år efter kalenderår og måned", - "de-AT", "Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "de-CH", "Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat", - "en-AU", "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month", - "en-CA", "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month", - "en-GB", "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month", - "en-NZ", "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month", - "es-MX", "Valor total del contrato y crecimiento interanual por mes y año naturales", - "fi-FI", "Sopimuksen kokonaisarvo ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain", - "fr-BE", "Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois", - "fr-CA", "Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois", - "fr-CH", "Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois", - "is-IS", "Heildarvirði samnings og vöxtur milli ára eftir almanaksári og -mánuði", - "it-CH", "Valore totale del contratto e crescita anno su anno per anno e mese di calendario", - "it-IT", "Valore totale del contratto e crescita anno su anno per anno e mese di calendario", - "nb-NO", "Total kontraktverdi og vekst år for år etter kalenderår og måned", - "nl-BE", "Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand", - "nl-NL", "Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand", - "ru-RU", "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month", - "sv-SE", "Totalt kontraktsvärde och tillväxt år för år per kalenderår och månad", - "Total Contract Value and Year-Over-Year Growth by Calendar Year and Month" - ) - isHidden - lineageTag: b0f100f9-330d-47f3-83a8-401ca68ae140 - - measure 'Total Contract Value by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Valor total de contrato por mes y año naturales", - "de-DE", "Gesamtvertragswert nach Kalenderjahr und Monat", - "fr-FR", "Valeur totale du contrat par année civile et par mois", - "cs-CZ", "Celková hodnota smlouvy podle kalendářního roku a měsíce", - "da-DK", "Samlet kontraktværdi efter kalenderår og måned", - "de-AT", "Gesamtvertragswert nach Kalenderjahr und Monat", - "de-CH", "Gesamtvertragswert nach Kalenderjahr und Monat", - "en-AU", "Total Contract Value by Calendar Year and Month", - "en-CA", "Total Contract Value by Calendar Year and Month", - "en-GB", "Total Contract Value by Calendar Year and Month", - "en-NZ", "Total Contract Value by Calendar Year and Month", - "es-MX", "Valor total de contrato por mes y año naturales", - "fi-FI", "Sopimuksen kokonaisarvo kalenterivuosittain ja -kuukausittain", - "fr-BE", "Valeur totale du contrat par année civile et par mois", - "fr-CA", "Valeur totale du contrat par année civile et par mois", - "fr-CH", "Valeur totale du contrat par année civile et par mois", - "is-IS", "Heildarverðmæti samnings eftir almanaksári og -mánuði", - "it-CH", "Valore totale del contratto per anno e mese di calendario", - "it-IT", "Valore totale del contratto per anno e mese di calendario", - "nb-NO", "Total kontraktverdi etter kalenderår og måned", - "nl-BE", "Totale contractwaarde per kalenderjaar en -maand", - "nl-NL", "Totale contractwaarde per kalenderjaar en -maand", - "ru-RU", "Total Contract Value by Calendar Year and Month", - "sv-SE", "Totalt kontraktsvärde per kalenderår och månad", - "Total Contract Value by Calendar Year and Month" - ) - isHidden - lineageTag: 1f7bb1f4-5fd2-4cf1-ab4c-1c6636f7929c - - measure 'Total Contract Value Year-Over-Year Growth Label' = - SWITCH(USERCULTURE(), - "es-ES", "Crecimiento interanual del valor total del contrato", - "de-DE", "Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr", - "fr-FR", "Croissance de la valeur totale des contrats d’une année à l’autre", - "cs-CZ", "Meziroční růst celkové hodnoty smlouvy", - "da-DK", "Samlet kontraktværdi Vækst fra år til år", - "de-AT", "Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr", - "de-CH", "Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr", - "en-AU", "Total Contract Value Year-Over-Year Growth", - "en-CA", "Total Contract Value Year-Over-Year Growth", - "en-GB", "Total Contract Value Year-Over-Year Growth", - "en-NZ", "Total Contract Value Year-Over-Year Growth", - "es-MX", "Crecimiento interanual del valor total del contrato", - "fi-FI", "Sopimuksen kokonaisarvo – Vuosittainen kasvu", - "fr-BE", "Croissance de la valeur totale des contrats d’une année à l’autre", - "fr-CA", "Croissance de la valeur totale des contrats d’une année à l’autre", - "fr-CH", "Croissance de la valeur totale des contrats d’une année à l’autre", - "is-IS", "Heildarvöxtur samningsvirðis á milli ára", - "it-CH", "Crescita anno su anno del valore totale dei contratti", - "it-IT", "Crescita anno su anno del valore totale dei contratti", - "nb-NO", "Total kontraktverdivekst år for år", - "nl-BE", "Groei totale contractwaarde jaar-tot-jaar", - "nl-NL", "Groei totale contractwaarde jaar-tot-jaar", - "ru-RU", "Total Contract Value Year-Over-Year Growth", - "sv-SE", "Totalt kontraktsvärde tillväxt år för år", - "Total Contract Value Year-Over-Year Growth" - ) - isHidden - lineageTag: bf178bbe-6578-4c6e-b6f6-63f2a3be0df2 - - measure 'Vendor Contract Deferrals Label' = - SWITCH(USERCULTURE(), - "es-ES", "Fraccionamientos de contrato de proveedor", - "de-DE", "Kreditorenvertragsabgrenzungen", - "fr-FR", "Reports de contrat fournisseur", - "cs-CZ", "Časová rozlišení dodavatelské smlouvy", - "da-DK", "Periodiseringer af kreditorkontrakt", - "de-AT", "Kreditorenvertragsabgrenzungen", - "de-CH", "Kreditorenvertragsabgrenzungen", - "en-AU", "Vendor Contract Deferrals", - "en-CA", "Vendor Contract Deferrals", - "en-GB", "Vendor Contract Deferrals", - "en-NZ", "Vendor Contract Deferrals", - "es-MX", "Fraccionamientos de contrato de proveedor", - "fi-FI", "Toimittajasopimuksen siirrot", - "fr-BE", "Reports de contrat fournisseur", - "fr-CA", "Reports de contrat fournisseur", - "fr-CH", "Reports de contrat fournisseur", - "is-IS", "Frestanir lánardrottnasamnings", - "it-CH", "Differimenti contratto del fornitore", - "it-IT", "Differimenti contratto del fornitore", - "nb-NO", "Leverandørkontraktperiodiseringer", - "nl-BE", "Uitstel van leverancierscontracten", - "nl-NL", "Uitstel van leverancierscontracten", - "ru-RU", "Vendor Contract Deferrals", - "sv-SE", "Kontraktsperiodiseringar för leverantör", - "Vendor Contract Deferrals" - ) - isHidden - lineageTag: 98a7baf4-4d66-439f-904f-0f969958c522 - - measure 'Vendor Deferrals (Caption) Label' = - SWITCH(USERCULTURE(), - "es-ES", "Fraccionamientos de proveedores", - "de-DE", "Kreditorenabgrenzungen", - "fr-FR", "Reports fournisseur", - "cs-CZ", "Časová rozlišení dodavatele", - "da-DK", "Kreditorperiodiseringer", - "de-AT", "Kreditorenabgrenzungen", - "de-CH", "Kreditorenabgrenzungen", - "en-AU", "Vendor Deferrals", - "en-CA", "Vendor Deferrals", - "en-GB", "Vendor Deferrals", - "en-NZ", "Vendor Deferrals", - "es-MX", "Fraccionamientos de proveedores", - "fi-FI", "Toimittajasiirrot", - "fr-BE", "Reports fournisseur", - "fr-CA", "Reports fournisseur", - "fr-CH", "Reports fournisseur", - "is-IS", "Frestun lánardrottins", - "it-CH", "Differimenti fornitore", - "it-IT", "Differimenti fornitore", - "nb-NO", "Leverandørperiodiseringer", - "nl-BE", "Leveranciersuitstel", - "nl-NL", "Leveranciersuitstel", - "ru-RU", "Vendor Deferrals", - "sv-SE", "Leverantörsperiodiseringar", - "Vendor Deferrals" - ) - isHidden - lineageTag: dda9de1a-70c9-4297-9555-6abeb4cbac10 - - measure 'Back button Label' = - SWITCH(USERCULTURE(), - "es-ES", "Botón Atrás", - "de-DE", "Schaltfläche „Zurück“", - "fr-FR", "Bouton Retour", - "cs-CZ", "Tlačítko zpět", - "da-DK", "Knappen Tilbage", - "de-AT", "Schaltfläche „Zurück“", - "de-CH", "Schaltfläche „Zurück“", - "en-AU", "Back button", - "en-CA", "Back button", - "en-GB", "Back button", - "en-NZ", "Back button", - "es-MX", "Botón Atrás", - "fi-FI", "Takaisin-painike", - "fr-BE", "Bouton Retour", - "fr-CA", "Bouton Retour", - "fr-CH", "Bouton Retour", - "is-IS", "Bakkhnappur", - "it-CH", "Pulsante Indietro", - "it-IT", "Pulsante Indietro", - "nb-NO", "Tilbakeknapp", - "nl-BE", "Knop Terug", - "nl-NL", "Knop Terug", - "ru-RU", "Back button", - "sv-SE", "Knappen Föregående", - "Back button" - ) - isHidden - lineageTag: 3e75f090-06f5-4d0c-92a9-3adf4085ee06 - - measure 'Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue Label' = - SWITCH(USERCULTURE(), - "es-ES", "Ingresos periódicos mensuales, Coste periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales", - "de-DE", "Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze", - "fr-FR", "Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent", - "cs-CZ", "Měsíční periodické výnosy, Měsíční periodické náklady, Měsíční čistý zisk, Aktivní zákazníci, Celková hodnota smlouvy, Změna měsíčních periodických výnosů", - "da-DK", "Månedlig tilbagevendende omsætning, Månedlig tilbagevendende omkostning, Månedlig nettofortjeneste, Aktive debitorer, Samlet kontraktværdi, Ændring i månedlig tilbagevendende omsætning", - "de-AT", "Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze", - "de-CH", "Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze", - "en-AU", "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue", - "en-CA", "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue", - "en-GB", "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue", - "en-NZ", "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue", - "es-MX", "Ingresos periódicos mensuales, Costo periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales", - "fi-FI", "Kuukausittain toistuva tuotto, Kuukausittainen toistuva kustannus, Kuukausittainen nettotulos, Aktiiviset asiakkaat, Sopimuksen kokonaisarvo, Kuukausittain toistuvan tuoton muutos", - "fr-BE", "Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent", - "fr-CA", "Revenus mensuels récurrents, coûts mensuels récurrents, bénéfice net mensuel, clients actifs, valeur totale du contrat, variation des revenus mensuels récurrent", - "fr-CH", "Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent", - "is-IS", "Mánaðarlegar endurteknar tekjur, mánaðarlegur endurtekinn kostnaður, mánaðarlegur hreinn hagnaður, virkir viðskiptavinir, heildarvirði samnings, breyting á mánaðarlegum endurteknum tekjum", - "it-CH", "Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili", - "it-IT", "Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili", - "nb-NO", "Månedlig gjentakende inntekt, månedlig gjentakende kostnad, månedlig nettofortjeneste, aktive kunder, total kontraktverdi, endring i månedlig gjentakende inntekt", - "nl-BE", "Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst", - "nl-NL", "Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst", - "ru-RU", "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue", - "sv-SE", "Månatliga återkommande intäkter, månatlig återkommande kostnad, månatlig nettovinst, aktiva kunder, totalt kontraktsvärde, förändring i månatliga återkommande intäkter", - "Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue" - ) - isHidden - lineageTag: 9b422523-bdea-4fed-81b0-ee3be1c4c093 - - measure 'Churn Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de abandono", - "de-DE", "Abwanderungsanalyse", - "fr-FR", "Analyse de l’attrition", - "cs-CZ", "Analýza ztráty zákazníků", - "da-DK", "Analyse af debitorafgang", - "de-AT", "Abwanderungsanalyse", - "de-CH", "Abwanderungsanalyse", - "en-AU", "Churn Analysis", - "en-CA", "Churn Analysis", - "en-GB", "Churn Analysis", - "en-NZ", "Churn Analysis", - "es-MX", "Análisis de abandono", - "fi-FI", "Vaihtuvuusanalyysi", - "fr-BE", "Analyse de l’attrition", - "fr-CA", "Analyse de l’attrition", - "fr-CH", "Analyse de l’attrition", - "is-IS", "Greining á uppsögnum", - "it-CH", "Analisi abbandono", - "it-IT", "Analisi abbandono", - "nb-NO", "Frafallsanalyse", - "nl-BE", "Verloopanalyse", - "nl-NL", "Verloopanalyse", - "ru-RU", "Churn Analysis", - "sv-SE", "Bortfallsanalys", - "Churn Analysis" - ) - isHidden - lineageTag: b7c2633c-0ac8-43e2-acc1-954a28b20297 - - measure 'Avg. Mon. Churn Rate % by Year and Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "% tasa de abandono men. medio por año y mes", - "de-DE", "Durchschn. mon. Abwanderungsrate % nach Jahr und Monat", - "fr-FR", "% taux d’attrition mensuel moyen par année et par mois", - "cs-CZ", "Prům. měsíční míra úbytku (%) podle roku a měsíce", - "da-DK", "Gennemsnitlig månedlig afgangsrateprocent efter år og måned", - "de-AT", "Durchschn. mon. Abwanderungsrate % nach Jahr und Monat", - "de-CH", "Durchschn. mon. Abwanderungsrate % nach Jahr und Monat", - "en-AU", "Avg. Mon. Churn Rate % by Year and Month", - "en-CA", "Avg. Mon. Churn Rate % by Year and Month", - "en-GB", "Avg. Mon. Churn Rate % by Year and Month", - "en-NZ", "Avg. Mon. Churn Rate % by Year and Month", - "es-MX", "% tasa de abandono men. medio por año y mes", - "fi-FI", "Keskim. kk:ttainen vaihtuvuusprosentti % vuosittain ja kuukausittain", - "fr-BE", "% taux d’attrition mensuel moyen par année et par mois", - "fr-CA", "% taux d’attrition mensuel moyen par année et par mois", - "fr-CH", "% taux d’attrition mensuel moyen par année et par mois", - "is-IS", "Meðaltími mán. uppsagna % eftir ári og mánuði", - "it-CH", "% tasso medio di abbandono mensile per anno e mese", - "it-IT", "% tasso medio di abbandono mensile per anno e mese", - "nb-NO", "Gj.sn. månedlig frafallsrate i prosent etter år og måned", - "nl-BE", "Gem. maand. % verloop per jaar en maand", - "nl-NL", "Gem. maand. % verloop per jaar en maand", - "ru-RU", "Avg. Mon. Churn Rate % by Year and Month", - "sv-SE", "Genomsnittlig månatlig bortfallsgrad % per år och månad", - "Avg. Mon. Churn Rate % by Year and Month" - ) - isHidden - lineageTag: 2dd7d7b8-b3ee-4940-a139-d2f0f7e9d11e - - measure 'Total Contract Value by Package Label' = "Total Contract Value by Package" - isHidden - lineageTag: bf787563-9fcc-455b-8bdd-31dad3104ff3 - - measure 'Mon. Recurring Revenue by Package Label' = "Mon. Recurring Revenue by Package" - isHidden - lineageTag: 5f9d0617-ba80-451f-9150-453e124e84b1 - - measure 'Churn by Customer Label' = "Churn by Customer" - isHidden - lineageTag: 25db989a-83ad-47a9-a1e7-e5f1d79df627 - - measure 'Profitability by Item Label' = "Profitability by Item" - isHidden - lineageTag: db70705e-506c-401c-bcc0-919c459c5bae - - measure 'Mon. Recurring Revenue by Customer Location Label' = "Mon. Recurring Revenue by Customer Location" - isHidden - lineageTag: d8db89f5-2451-43e1-b6ba-966e8046e15c - - measure 'Profitability by Salesperson Label' = "Profitability by Salesperson" - isHidden - lineageTag: dbcdf3ac-4d37-49c2-8fca-9f63d6e86935 - - measure 'Total Contract Value by Salesperson Label' = "Total Contract Value by Salesperson" - isHidden - lineageTag: 3bd18626-cd15-4df3-9f0d-ea68a333dd1f - - measure 'Customer Deferrals by Released Status Label' = "Customer Deferrals by Released Status" - isHidden - lineageTag: df99b153-1f8a-4f8c-926f-40453d4d64a0 - - measure 'Vendor Deferrals by Released Status Label' = "Vendor Deferrals by Released Status" - isHidden - lineageTag: e11dfc8c-7b7a-49b0-9285-ab7e0912cda2 - - measure 'Billing Forecast by Billing Period, Vendor and Contract No. Label' = "Billing Forecast by Billing Period, Vendor and Contract No." - isHidden - lineageTag: a919ba27-5489-4ac5-a1de-f1cc7c8963b3 - - column unused - isHidden - displayFolder: unused - lineageTag: 18923585-b9c1-450c-9b76-9f4b2022e615 - isNameInferred - sourceColumn: [unused] - - partition Partition = calculated - source = DATATABLE("unused", STRING, {{"This is a table automatically generated by Translations Builder"}}) - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/UBB handling.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/UBB handling.tmdl deleted file mode 100644 index 2458f3f2ff..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/UBB handling.tmdl +++ /dev/null @@ -1,27 +0,0 @@ -table 'UBB handling' - lineageTag: 37de7ae7-1930-41cc-980c-6505b3f128d8 - - column 'Treat Usage Based Billing as constant' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 0f4da653-1852-49cf-a232-9e265831323b - summarizeBy: none - sourceColumn: Treat Usage Based Billing as constant - - annotation SummarizationSetBy = Automatic - - partition 'UBB handling' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WKikqTVWK1YlWSkvMKQayYgE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Treat UBB as constant" = _t]), - #"Changed Type" = Table.TransformColumnTypes(Source,{{"Treat UBB as constant", type logical}}), - #"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Treat UBB as constant", "Treat Usage Based Billing as constant"}}) - in - #"Renamed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Billing Forecast.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Billing Forecast.tmdl deleted file mode 100644 index e2f8a67c27..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Billing Forecast.tmdl +++ /dev/null @@ -1,110 +0,0 @@ -table 'Vendor Billing Forecast' - isHidden - lineageTag: f1a216b4-3348-47b8-949b-1a18d6347840 - - column 'Billing Date' - isHidden - formatString: Short Date - isAvailableInMdx: false - lineageTag: 2be2c126-5442-44ad-854b-5232427fb296 - summarizeBy: none - isNameInferred - sourceColumn: [Billing Date] - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Billing Amount LCY' - isHidden - isAvailableInMdx: false - lineageTag: 361e892f-be8c-4ef3-93f9-3d6a0d9ed6c0 - summarizeBy: sum - isNameInferred - sourceColumn: [Billing Amount LCY] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Billing Amount UBB LCY' - isHidden - isAvailableInMdx: false - lineageTag: 87b998d2-b4c2-419c-90e1-af4b5bbe52e6 - summarizeBy: sum - isNameInferred - sourceColumn: [Billing Amount UBB LCY] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Vendor Contract Line Key' - isHidden - lineageTag: f3b73673-c745-4287-aff8-ac1ab36d1c8a - summarizeBy: none - isNameInferred - sourceColumn: [Vendor Contract Line Key] - - annotation SummarizationSetBy = Automatic - - partition 'Customer Cash Flow Forecast' = calculated - mode: import - source = ``` - - VAR currentAnalysisDate = - LOOKUPVALUE ( - 'Analysis Date'[Analysis Date], - 'Analysis Date'[is current Version], TRUE - ) - VAR baseContractLines = - FILTER ( - 'Vendor Contract Line', - 'Vendor Contract Line'[Analysis Date] = currentAnalysisDate // Dont use 'Vendor Contract Line'[Is Latest Version], this is also true for the latest version of inactive / deleted contract lines - ) - VAR contractLines = - ADDCOLUMNS ( - baseContractLines, - "No. Of Bilings", - DIVIDE ( - DATEDIFF ( - 'Vendor Contract Line'[Next Billing Date], - 'Vendor Contract Line'[Forecast Until], - MONTH - ), - 'Vendor Contract Line'[Billing Rhythm Months] - ) + 1 - ) - VAR resultTab = - GENERATE ( - contractLines, - ADDCOLUMNS ( - GENERATESERIES ( 0, [No. Of Bilings] - 1 ), - "Billing Date", - EDATE ( - 'Vendor Contract Line'[Next Billing Date], - [Value] * 'Vendor Contract Line'[Billing Rhythm Months] - ), - "Billing Amount LCY", - 'Vendor Contract Line'[Monthly Recurring Cost LCY] * 'Vendor Contract Line'[Billing Rhythm Months], - "Billing Amount UBB LCY", - IF ( - 'Vendor Contract Line'[Is Usage Based Billing] - && [Value] = 0, - 'Vendor Contract Line'[Monthly Recurring Cost LCY], - BLANK () - ) - ) - ) - RETURN - SELECTCOLUMNS ( - resultTab, - "Vendor Contract Line Key", [Vendor Contract Line Key], - "Billing Date", [Billing Date], - "Billing Amount LCY", [Billing Amount LCY], - "Billing Amount UBB LCY", [Billing Amount UBB LCY] - ) - ``` - - annotation PBI_Id = 73b699ecac224e13a63308498b914068 - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Deferrals.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Deferrals.tmdl deleted file mode 100644 index 177dc9040f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Deferrals.tmdl +++ /dev/null @@ -1,195 +0,0 @@ -table 'Vendor Contract Deferrals' - lineageTag: 8c73f9a0-1ebd-4482-9add-657beddf981d - - column 'Contract No.' - dataType: string - isHidden - lineageTag: e1072267-b363-4837-967f-53257735cb7f - summarizeBy: none - sourceColumn: Contract No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Document Type' - dataType: string - lineageTag: 9759c5e8-c5d3-4116-bf44-5c0d8347748a - summarizeBy: none - sourceColumn: Document Type - - annotation SummarizationSetBy = Automatic - - column 'Document No.' - dataType: string - lineageTag: 4b5cd17a-3699-44f7-8d01-e200ddc57c7b - summarizeBy: none - sourceColumn: Document No. - - annotation SummarizationSetBy = Automatic - - column 'Is Released Key' - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 70949c7b-32b9-4b12-8bd4-34fdaa11235c - summarizeBy: none - sourceColumn: Is Released Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: 26b50f2c-060a-4c86-9f3f-5e4664a9269b - summarizeBy: none - sourceColumn: Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column Amount - dataType: decimal - isHidden - lineageTag: fd3b8702-2937-4298-a67d-b74d2c809f62 - summarizeBy: sum - sourceColumn: Amount - - changedProperty = DataType - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Document Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: cc18dd01-6dff-4139-be98-3185ce5f2daf - summarizeBy: none - sourceColumn: Document Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Release Posting Date' - dataType: dateTime - formatString: Short Date - lineageTag: bdfabe80-a9c1-4ab6-aa69-4e913815317d - summarizeBy: none - sourceColumn: Release Posting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'G LEntry No.' - dataType: int64 - formatString: 0 - lineageTag: 29e69ab9-ffc0-4759-8213-ff8a3775b650 - summarizeBy: none - sourceColumn: G LEntry No. - - annotation SummarizationSetBy = Automatic - - column Discount - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: c9e48fa6-3640-4c64-9531-eea988cfa81e - summarizeBy: none - sourceColumn: Discount - - annotation SummarizationSetBy = Automatic - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 62e8d7be-dc13-477d-b787-f99949fd6480 - summarizeBy: none - sourceColumn: Dimension Set ID - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Contract Line No.' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 67b9aca6-d2f5-48cc-8cba-53387940e737 - summarizeBy: sum - sourceColumn: Contract Line No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract Line Key' = - - VAR contractNo = 'Vendor Contract Deferrals'[Contract No.] - VAR LIneNo = 'Vendor Contract Deferrals'[Contract Line No.] - RETURN - LOOKUPVALUE ( - 'Vendor Contract Line'[Vendor Contract Line Key], - 'Vendor Contract Line'[Vendor Contract No.], contractNo, - 'Vendor Contract Line'[Vendor Contract Line No.], LIneNo, - 'Vendor Contract Line'[Is Latest Version], TRUE - ) - isHidden - lineageTag: 501e69db-d751-4a62-8f35-2e83d54ec24e - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Document Line No.' - dataType: int64 - formatString: 0 - lineageTag: 22b53288-ad11-48a2-80b8-005ae86f3cad - summarizeBy: none - sourceColumn: Document Line No. - - annotation SummarizationSetBy = Automatic - - partition 'Vendor Contract Deferrals' = m - mode: import - queryGroup: 'Fact Tables' - source = ``` - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name = "vendorContractDeferrals", Signature = "table"]}[Data], - #"Date Filter" = Table.SelectRows(TableData, each [postingDate] >= MinReportingDate), - #"Changed Type" = Table.TransformColumnTypes(#"Date Filter", {{"documentType", type text}}), - #"Removed Other Columns" = Table.SelectColumns( - #"Changed Type", - { - "contractNo", - "documentType", - "documentNo", - "released", - "postingDate", - "amount", - "documentLineNo", - "documentPostingDate", - "releasePostingDate", - "gLEntryNo", - "contractLineNo", - "discount", - "dimensionSetID" - } - ), - ConvertColumnNames = Table.TransformColumnNames(#"Removed Other Columns", fctImproveColumnNames), - #"Renamed Columns" = Table.RenameColumns(ConvertColumnNames, {{"Released", "Is Released Key"}}) - in - #"Renamed Columns" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Line.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Line.tmdl deleted file mode 100644 index fbd221a6c2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract Line.tmdl +++ /dev/null @@ -1,359 +0,0 @@ -table 'Vendor Contract Line' - lineageTag: 99943954-cca4-451c-9f37-de72dc3ba6fe - - column 'Subscription Line No.' - dataType: int64 - formatString: 0 - lineageTag: bce5266a-6ac8-4b71-9ffd-ef2b727e5670 - summarizeBy: sum - sourceColumn: Subscription Line No. - - annotation SummarizationSetBy = Automatic - - column Template - dataType: string - lineageTag: e2f5fe66-7774-498d-88c2-665377895c76 - summarizeBy: none - sourceColumn: Template - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract Line Desc.' - dataType: string - lineageTag: db6874f8-6f6a-41b6-88fc-37e9e2cb2eb2 - summarizeBy: none - sourceColumn: Vendor Contract Line Desc. - - annotation SummarizationSetBy = Automatic - - column 'Subscription Start Date' - dataType: dateTime - formatString: Short Date - lineageTag: df6619cb-3cae-4cb7-87dc-9c7590f02c40 - summarizeBy: none - sourceColumn: Subscription Start Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Subscription End Date' - dataType: dateTime - formatString: Short Date - lineageTag: aa32d465-8d0d-4b69-99ed-359c9f70897e - summarizeBy: none - sourceColumn: Subscription End Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Next Billing Date' - dataType: dateTime - formatString: Short Date - lineageTag: fe144551-876b-4a54-985e-fef3ae3c102d - summarizeBy: none - sourceColumn: Next Billing Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Analysis Date' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 33452919-8582-48fa-91ca-f022c7e665a8 - summarizeBy: none - sourceColumn: Analysis Date - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Monthly Recurring Cost LCY' - dataType: double - isHidden - lineageTag: b1088446-fad1-44b5-bae7-2e973bf33ce0 - summarizeBy: sum - sourceColumn: Monthly Recurring Cost LCY - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Vendor Contract Line No.' - dataType: int64 - formatString: 0 - lineageTag: 20e0ce7c-3a47-4d50-9c44-6dde84bccd7c - summarizeBy: sum - sourceColumn: Vendor Contract Line No. - - annotation SummarizationSetBy = Automatic - - column 'Notice Period' - dataType: string - lineageTag: b34c08ce-60d2-4942-aaa6-f15afe6fdb87 - summarizeBy: none - sourceColumn: Notice Period - - annotation SummarizationSetBy = Automatic - - column 'Initial Term' - dataType: string - lineageTag: 910e40de-7b02-404e-b8c7-78efa5323eeb - summarizeBy: none - sourceColumn: Initial Term - - annotation SummarizationSetBy = Automatic - - column 'Extension Term' - dataType: string - lineageTag: 307ebf12-ba57-455c-90e0-9d4351e3d9e3 - summarizeBy: none - sourceColumn: Extension Term - - annotation SummarizationSetBy = Automatic - - column 'Billing Rhythm' - dataType: string - lineageTag: 08d6fbd5-0134-4225-a719-01fb6cdb5818 - summarizeBy: none - sourceColumn: Billing Rhythm - - annotation SummarizationSetBy = Automatic - - column 'Cancellation Possible Until' - dataType: dateTime - formatString: Short Date - lineageTag: befb9b2d-f918-4c33-8091-e278119995d3 - summarizeBy: none - sourceColumn: Cancellation Possible Until - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Term Until' - dataType: dateTime - formatString: Short Date - lineageTag: 74e63de3-e4d5-4647-8b24-a588e25efca6 - summarizeBy: none - sourceColumn: Term Until - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column Quantity - dataType: double - isHidden - isAvailableInMdx: false - lineageTag: 7dbb2138-3c15-4876-aa73-f52f69a77693 - summarizeBy: sum - sourceColumn: Quantity - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Renewal Term' - dataType: string - lineageTag: 1f070605-565a-4078-a7b1-7a1057da0ca9 - summarizeBy: none - sourceColumn: Renewal Term - - annotation SummarizationSetBy = Automatic - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 86259f12-33b1-47c8-aecb-0a01ba7d7c3a - summarizeBy: count - sourceColumn: Dimension Set ID - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Line Active' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 392a8bac-72e3-40c9-a631-826f4a3ce2cc - summarizeBy: none - sourceColumn: Line Active - - annotation SummarizationSetBy = Automatic - - column 'Duration Start Date' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: d2e3c70d-14b4-4bd9-b25a-76de1e42352e - summarizeBy: none - sourceColumn: Duration Start Date - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Remaining Term Months' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 91cc0d29-fe61-43ed-83e8-3cf06b0f1df1 - summarizeBy: sum - sourceColumn: Remaining Term Months - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Remaining Term' - dataType: string - lineageTag: 85f404a5-0e10-41f8-8b0a-4a9d7285cb6d - summarizeBy: none - sourceColumn: Remaining Term - - annotation SummarizationSetBy = Automatic - - column 'Forecast Until' - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 13ad8016-3efd-4a5e-94dd-0bc458b62784 - summarizeBy: none - sourceColumn: Forecast Until - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Billing Rhythm Months' - dataType: int64 - formatString: 0 - lineageTag: af022216-de6f-468a-b02a-c9d16607d6e4 - summarizeBy: sum - sourceColumn: Billing Rhythm Months - - annotation SummarizationSetBy = Automatic - - column 'Vendor No.' - dataType: string - isHidden - lineageTag: 387922da-5e1a-4ab4-9aa9-203ef431ab14 - summarizeBy: none - sourceColumn: Vendor No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract No.' - dataType: string - lineageTag: 128cdb6d-e716-4818-83af-fb1bf31b16cb - summarizeBy: none - sourceColumn: Vendor Contract No. - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract Line Key' - dataType: string - isHidden - isKey - lineageTag: a712887c-cbd1-4814-b552-3d8296c0428e - summarizeBy: none - sourceColumn: Vendor Contract Line Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Is Latest Version' = ``` - - calculate(max('Vendor Contract Line'[Analysis Date]) - ,ALLEXCEPT('Vendor Contract Line','Vendor Contract Line'[Vendor Contract Line No.],'Vendor Contract Line'[Vendor Contract No.]) - ) - = 'Vendor Contract Line'[Analysis Date] - - ``` - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 2359e095-afdb-4b0c-906d-ec2f46080974 - summarizeBy: none - - annotation SummarizationSetBy = Automatic - - column 'Is Usage Based Billing' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 9a6e3524-3d1e-4b65-9382-d50b77634a13 - summarizeBy: none - sourceColumn: Is Usage Based Billing - - annotation SummarizationSetBy = Automatic - - column 'Subscription Package Key' - dataType: string - isHidden - lineageTag: e83a8d68-a068-4a87-98a7-156ab837c74f - summarizeBy: none - sourceColumn: Subscription Package Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Source Type' - dataType: string - lineageTag: 98183df7-9e61-4054-9b8c-5bca2533ce9c - summarizeBy: none - sourceColumn: Source Type - - annotation SummarizationSetBy = Automatic - - column 'Source No.' - dataType: string - lineageTag: a7c0f8aa-6090-4851-b1e2-d1c140f6c1b8 - summarizeBy: none - sourceColumn: Source No. - - annotation SummarizationSetBy = Automatic - - column 'Item No.' - dataType: string - isHidden - lineageTag: a2744ccb-b895-4e9c-9bc8-3fea30fbaeec - summarizeBy: none - sourceColumn: Item No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Vendor Contract Line' = m - mode: import - queryGroup: 'Fact Tables' - source = ``` - let - Source = ContractLineBase, - #"Filtered Rows" = Table.SelectRows(Source, each ([partner] = "Vendor")), - #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows",{"serviceObjectSourceType", "serviceObjectSourceNo", "serviceCommitmentLineNo", "template", "description", "serviceStartDate", "serviceEndDate", "nextBillingDate", "analysisDate", "monthlyRecurringCostLCY", "partnerNo", "contractNo", "contractLineNo", "noticePeriod", "initialTerm", "extensionTerm", "billingRhythm", "cancellationPossibleUntil", "termUntil", "quantityDecimal", "renewalTerm", "dimensionSetID", "usageBasedBilling", "Subscription Package Key", "Item No.", "Contract Line Key", "Line Active", "Duration Start Date", "Remaining Term Months", "Remaining Term", "Forecast Until", "Billing Rhythm Months"}), - ConvertColumnNames = Table.TransformColumnNames(#"Removed Other Columns", fctImproveColumnNames), - #"Renamed Columns2" = Table.RenameColumns(ConvertColumnNames,{{"Description", "Vendor Contract Line Desc."}, {"Contract Line No.", "Vendor Contract Line No."}, {"Service Commitment Line No.", "Subscription Line No."}, {"Contract No.", "Vendor Contract No."}, {"Partner No.", "Vendor No."}, {"Contract Line Key", "Vendor Contract Line Key"}, {"Usage Based Billing", "Is Usage Based Billing"}, {"Quantity Decimal", "Quantity"}, {"Service End Date", "Subscription End Date"}, {"Subscription Package Key", "Subscription Package Key"}, {"Service Start Date", "Subscription Start Date"}, {"Service Object Source Type", "Source Type"}, {"Service Object Source No.", "Source No."}}) - in - #"Renamed Columns2" - ``` - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract.tmdl deleted file mode 100644 index 5e8ea126f0..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendor Contract.tmdl +++ /dev/null @@ -1,54 +0,0 @@ -table 'Vendor Contract' - lineageTag: b9c04fa3-148a-4302-9e95-8be447f97ba2 - - column 'Vendor Contract No.' - dataType: string - isKey - lineageTag: c87b6b44-da26-4339-b91e-7d4611ea8ff5 - summarizeBy: none - sourceColumn: Vendor Contract No. - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract Type' - dataType: string - lineageTag: 7efc4d43-57f2-43cd-873b-4baa99465f8b - summarizeBy: none - sourceColumn: Vendor Contract Type - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract Description' - dataType: string - lineageTag: ee9a559f-6eac-4349-9384-e3d8339f56b9 - summarizeBy: none - sourceColumn: Vendor Contract Description - - annotation SummarizationSetBy = Automatic - - column 'Vendor Contract No. Desc.' - dataType: string - lineageTag: 6f067e4a-7bf6-4fb8-bb6a-9695cb186bf8 - summarizeBy: none - sourceColumn: Vendor Contract No. Desc. - - annotation SummarizationSetBy = Automatic - - partition 'Vendor Contract' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = BCConnectionSubscriptionBilling, - TableData = Source{[Name="vendorContracts",Signature="table"]}[Data], - #"Removed Other Columns" = Table.SelectColumns(TableData,{"no", "contractType", "descriptionPreview"}), - #"Added No.Name" = Table.AddColumn( #"Removed Other Columns", "Vendor Contract No. Desc.", each [no] & ": " & [descriptionPreview], type text), - #"Renamed Columns" = Table.RenameColumns(#"Added No.Name",{{"contractType", "Vendor Contract Type"}, {"descriptionPreview", "Vendor Contract Description"}, {"no", "Vendor Contract No."}}), - ConvertColumnNames = Table.TransformColumnNames(#"Renamed Columns",fctImproveColumnNames) - in - ConvertColumnNames - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendors.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendors.tmdl deleted file mode 100644 index b711c1b6f4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Vendors.tmdl +++ /dev/null @@ -1,133 +0,0 @@ -table Vendors - lineageTag: 408107af-c25d-4948-8717-8ea446127d2e - - column 'Vendor No.' - dataType: string - isKey - lineageTag: 8a57adc5-712a-4f45-8885-12dd7f24f447 - isDefaultLabel - summarizeBy: none - sourceColumn: Vendor No. - - annotation SummarizationSetBy = Automatic - - column 'Vendor Name' - dataType: string - lineageTag: d536790e-32c7-456f-bc41-905d14d59418 - summarizeBy: none - sourceColumn: Vendor Name - - annotation SummarizationSetBy = Automatic - - column Address - dataType: string - lineageTag: 5dd27886-e5f8-4054-9941-e69c3a7af04f - summarizeBy: none - sourceColumn: Address - - annotation SummarizationSetBy = Automatic - - column 'Address 2' - dataType: string - lineageTag: 409e7da3-999a-4db0-8d4e-fcfaf3726339 - summarizeBy: none - sourceColumn: Address 2 - - annotation SummarizationSetBy = Automatic - - column City - dataType: string - lineageTag: f19709b6-128b-4010-855b-3cc2d28c9c7c - dataCategory: City - summarizeBy: none - sourceColumn: City - - annotation SummarizationSetBy = Automatic - - column 'Post Code' - dataType: string - lineageTag: 1be292f2-477d-4724-b01a-a86dd32e2c90 - summarizeBy: none - sourceColumn: Post Code - - annotation SummarizationSetBy = Automatic - - column State - dataType: string - lineageTag: 9dcd3364-6145-4c4d-b7d7-9890f4559f9b - summarizeBy: none - sourceColumn: State - - annotation SummarizationSetBy = Automatic - - column 'Country/Region Code' - dataType: string - lineageTag: 0f16ebc0-f487-460e-9f2f-a46086915f2c - dataCategory: Country - summarizeBy: none - sourceColumn: Country/Region Code - - annotation SummarizationSetBy = Automatic - - column 'Vendor Posting Group' - dataType: string - lineageTag: 8bfec60c-3142-46d4-a18f-e126baa9f4fb - summarizeBy: none - sourceColumn: Vendor Posting Group - - annotation SummarizationSetBy = Automatic - - column 'Vendor No. & Name' - dataType: string - lineageTag: bb6ca3bf-dc2b-4416-9d7a-e56997791a2c - summarizeBy: none - sourceColumn: Vendor No. & Name - - annotation SummarizationSetBy = Automatic - - partition Vendors-5370d590-93ff-4d5c-a059-09064ef9b4c5 = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="vendors",Signature="table"]}[Data], - #"Changed Type" = Table.TransformColumnTypes( - TableData, - { - {"vendorNo", type text}, - {"vendorName", type text}, - {"address", type text}, - {"address2", type text}, - {"city", type text}, - {"postCode", type text}, - {"county", type text}, - {"countryRegionCode", type text}, - {"vendorPostingGroup", type text} - } - ), - #"Renamed Columns" = Table.RenameColumns( - #"Changed Type", - { - {"vendorNo", "Vendor No."}, - {"vendorName", "Vendor Name"}, - {"address", "Address"}, - {"address2", "Address 2"}, - {"postCode", "Post Code"}, - {"city", "City"}, - {"countryRegionCode", "Country/Region Code"}, - {"vendorPostingGroup", "Vendor Posting Group"} - } - ), - #"Added Custom" = Table.AddColumn( - #"Renamed Columns", "Vendor No. & Name", each [#"Vendor No."] & " " & [Vendor Name], type text - ), - #"Removed Columns" = Table.RemoveColumns(#"Added Custom", {"ETag"}), - #"Renamed Columns1" = Table.RenameColumns(#"Removed Columns",{{"county", "State"}}) - in - #"Renamed Columns1" - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Working Days.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Working Days.tmdl deleted file mode 100644 index 3067ccccd5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/tables/Working Days.tmdl +++ /dev/null @@ -1,40 +0,0 @@ -table 'Working Days' - isHidden - lineageTag: 6e283994-c665-41c2-94a5-f8c4fe2359ab - - column FSG_PBI_Day_Number - dataType: int64 - formatString: 0 - lineageTag: 05732f60-7f13-4d09-9542-a0ef6cdf62ff - summarizeBy: sum - sourceColumn: FSG_PBI_Day_Number - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - lineageTag: 5373bbb9-9f16-43ab-9051-afc6af534d1c - summarizeBy: none - sourceColumn: id - - annotation SummarizationSetBy = Automatic - - partition 'Working Days-5fa1ce26-448e-4ad6-a78b-37de9da368a1' = m - mode: import - queryGroup: 'Date Table' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="workingDays",Signature="table"]}[Data], - #"Removed Columns" = Table.RemoveColumns(TableData,{"ETag"}), - #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"dayNumber", "FSG_PBI_Day_Number"}}), - #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"FSG_PBI_Day_Number", Int64.Type}}) - in - #"Changed Type" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/diagramLayout.json b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/diagramLayout.json deleted file mode 100644 index ed64347899..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/diagramLayout.json +++ /dev/null @@ -1,886 +0,0 @@ -{ - "version": "1.1.0", - "diagrams": [ - { - "ordinal": 0, - "scrollPosition": { - "x": 5951.0026465536948, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 568, - "y": 0 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 29 - }, - { - "location": { - "x": 1704, - "y": 86 - }, - "nodeIndex": "Working Days", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 27 - }, - { - "location": { - "x": 1988, - "y": 0 - }, - "nodeIndex": "Vendors", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 28 - }, - { - "location": { - "x": 2272, - "y": 0 - }, - "nodeIndex": "Customers", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 26 - }, - { - "location": { - "x": 2556, - "y": 0 - }, - "nodeIndex": "Date Ref", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 24 - }, - { - "location": { - "x": 2840, - "y": 0 - }, - "nodeIndex": "Date", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 25 - }, - { - "location": { - "x": 4828, - "y": 0 - }, - "nodeIndex": "Date Table Setup", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 22 - }, - { - "location": { - "x": 5112, - "y": 0 - }, - "nodeIndex": "Localized Labels", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 23 - }, - { - "location": { - "x": 5964, - "y": 62 - }, - "nodeIndex": "Customer Contract", - "nodeLineageTag": "b748c247-65fd-49d8-93a8-6221ddd88c2e", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 6 - }, - { - "location": { - "x": 6248, - "y": 0 - }, - "nodeIndex": "Customer Contract Deferrals", - "nodeLineageTag": "fe6c8954-df24-4726-8ad2-a5866e1c40aa", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 7 - }, - { - "location": { - "x": 6532, - "y": 0 - }, - "nodeIndex": "Customer Contract Line", - "nodeLineageTag": "540f4568-d4e5-47d8-8c9c-1c4a21f3b091", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 8 - }, - { - "location": { - "x": 6816, - "y": 86 - }, - "nodeIndex": "Is Released", - "nodeLineageTag": "9728ed60-2d3f-45b2-bab6-f867ea81d7be", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 9 - }, - { - "location": { - "x": 7100, - "y": 38 - }, - "nodeIndex": "Item", - "nodeLineageTag": "e8181695-0d8d-46a4-a884-1119686c45c5", - "size": { - "height": 224, - "width": 234 - }, - "zIndex": 31 - }, - { - "location": { - "x": 7668, - "y": 98 - }, - "nodeIndex": "UBB handling", - "nodeLineageTag": "37de7ae7-1930-41cc-980c-6505b3f128d8", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 10 - }, - { - "location": { - "x": 7952, - "y": 62 - }, - "nodeIndex": "Vendor Contract", - "nodeLineageTag": "b9c04fa3-148a-4302-9e95-8be447f97ba2", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 11 - }, - { - "location": { - "x": 8236, - "y": 0 - }, - "nodeIndex": "Vendor Contract Deferrals", - "nodeLineageTag": "8c73f9a0-1ebd-4482-9add-657beddf981d", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 12 - }, - { - "location": { - "x": 8520, - "y": 0 - }, - "nodeIndex": "Vendor Contract Line", - "nodeLineageTag": "99943954-cca4-451c-9f37-de72dc3ba6fe", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 13 - }, - { - "location": { - "x": 8236, - "y": 74 - }, - "nodeIndex": "Analysis Date", - "nodeLineageTag": "f142381c-cc7e-4ac9-bd00-1cdcb9e5fed4", - "size": { - "height": 152, - "width": 234 - }, - "zIndex": 14 - }, - { - "location": { - "x": 8520, - "y": 86 - }, - "nodeIndex": "Tec Dummy Values", - "nodeLineageTag": "a0ac206e-2d81-4a6a-83ab-3bb415a478cc", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 15 - }, - { - "location": { - "x": 5396, - "y": 86 - }, - "nodeIndex": "Meta Information", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 16 - }, - { - "location": { - "x": 9656, - "y": 0 - }, - "nodeIndex": "Subscription Billing KPIs", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 30 - }, - { - "location": { - "x": 9940, - "y": 86 - }, - "nodeIndex": "Calc. Group - Time Intelligence for Calendar (Fiscal)", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 17 - }, - { - "location": { - "x": 10224, - "y": 86 - }, - "nodeIndex": "Calc. Group - Tec. Transformations", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 18 - }, - { - "location": { - "x": 9940, - "y": 86 - }, - "nodeIndex": "Salesperson", - "nodeLineageTag": "f229e1ee-eb72-4253-af81-91c9b5a4a709", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 19 - }, - { - "location": { - "x": 9088, - "y": 62 - }, - "nodeIndex": "Customer Billing Forecast", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 20 - }, - { - "location": { - "x": 9372, - "y": 62 - }, - "nodeIndex": "Vendor Billing Forecast", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 21 - }, - { - "location": { - "x": 9940, - "y": 50 - }, - "nodeIndex": "Customer Contract Changes", - "size": { - "height": 200, - "width": 234 - }, - "zIndex": 1 - }, - { - "location": { - "x": 7384, - "y": 38 - }, - "nodeIndex": "Subscription", - "size": { - "height": 224, - "width": 234 - }, - "zIndex": 2 - }, - { - "location": { - "x": 9940, - "y": 0 - }, - "nodeIndex": "Translated Localized Labels", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 3 - }, - { - "location": { - "x": 9940, - "y": 98 - }, - "nodeIndex": "COMPANY", - "nodeLineageTag": "004b5b9a-792f-4610-8f60-53d447a01056", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 4 - }, - { - "location": { - "x": 10224, - "y": 98 - }, - "nodeIndex": "ENVIRONMENT", - "nodeLineageTag": "32a7b143-73c5-4078-b88d-acd1a9c404c8", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 5 - }, - { - "location": { - "x": 10494.127973662011, - "y": 25.832541046775646 - }, - "nodeIndex": "Item Category", - "nodeLineageTag": "edeb68a9-6c7e-4154-ab57-40a7c79635a6", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 32 - } - ], - "name": "All tables", - "zoomValue": 39.724398398125807, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 1, - "scrollPosition": { - "x": 0, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 532.49628045252837, - "y": 501.359066183108 - }, - "nodeIndex": "Customer Contract Line", - "nodeLineageTag": "540f4568-d4e5-47d8-8c9c-1c4a21f3b091", - "size": { - "height": 248, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 50, - "y": 688.32746522663876 - }, - "nodeIndex": "Customer Contract", - "nodeLineageTag": "b748c247-65fd-49d8-93a8-6221ddd88c2e", - "size": { - "height": 200, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 1053.4887682510457, - "y": 564.06014784134368 - }, - "nodeIndex": "Customers", - "nodeLineageTag": "d55409c9-b7e4-40a4-9297-5905ff1fb1d6", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 49.48231881661053, - "y": 919.14678172720255 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 556.46233353059563, - "y": 874.90163198188782 - }, - "nodeIndex": "Customer Contract Deferrals", - "nodeLineageTag": "fe6c8954-df24-4726-8ad2-a5866e1c40aa", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 813.98338235561471, - "y": 202.09419068870224 - }, - "nodeIndex": "Customer Billing Forecast", - "nodeLineageTag": "275911b3-dd02-448d-a8c5-6912124ec22f", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 176 - }, - { - "location": { - "x": 399.34109842396077, - "y": 166.30131137418965 - }, - "nodeIndex": "Analysis Date", - "nodeLineageTag": "f142381c-cc7e-4ac9-bd00-1cdcb9e5fed4", - "size": { - "height": 152, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 55.028105516700521, - "y": 347.076530749091 - }, - "nodeIndex": "Customer Contract Changes", - "nodeLineageTag": "a52c7d2e-c3c5-4330-9695-131023bbf63e", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 176 - }, - { - "location": { - "x": 892.67178362299933, - "y": 920.520807189357 - }, - "nodeIndex": "Subscription", - "nodeLineageTag": "2ed6d60b-8267-4f92-a751-3689f3be8a5e", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 224 - }, - { - "location": { - "x": 52.645967398051056, - "y": 498.15518295604738 - }, - "nodeIndex": "Item", - "nodeLineageTag": "e8181695-0d8d-46a4-a884-1119686c45c5", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 248 - } - ], - "name": "Customer Contract Line", - "zoomValue": 70.95554390096882, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 2, - "scrollPosition": { - "x": 0, - "y": 348.38714969651153 - }, - "nodes": [ - { - "location": { - "x": 392.99112549984238, - "y": 584.91558313159771 - }, - "nodeIndex": "Vendor Contract Line", - "nodeLineageTag": "99943954-cca4-451c-9f37-de72dc3ba6fe", - "size": { - "height": 248, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 291.59023756863644, - "y": 1005.5533332944242 - }, - "nodeIndex": "Vendor Contract", - "nodeLineageTag": "b9c04fa3-148a-4302-9e95-8be447f97ba2", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 176 - }, - { - "location": { - "x": 573.9278799438797, - "y": 1008.3302937656134 - }, - "nodeIndex": "Vendors", - "nodeLineageTag": "408107af-c25d-4948-8717-8ea446127d2e", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 9.2631963646286266, - "y": 342.53711326142877 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 0.67333984663866886, - "y": 644.02143869716 - }, - "nodeIndex": "Vendor Contract Deferrals", - "nodeLineageTag": "8c73f9a0-1ebd-4482-9add-657beddf981d", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 328.47912448981441, - "y": 176.16664340486193 - }, - "nodeIndex": "Vendor Billing Forecast", - "nodeLineageTag": "f1a216b4-3348-47b8-949b-1a18d6347840", - "size": { - "height": 128, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 176 - }, - { - "location": { - "x": 819.60625385598212, - "y": 513.06213680333394 - }, - "nodeIndex": "Analysis Date", - "nodeLineageTag": "f142381c-cc7e-4ac9-bd00-1cdcb9e5fed4", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 152 - }, - { - "location": { - "x": 827.09583927367589, - "y": 744.51134116775438 - }, - "nodeIndex": "Subscription", - "nodeLineageTag": "2ed6d60b-8267-4f92-a751-3689f3be8a5e", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 224 - }, - { - "location": { - "x": 792.79953974423813, - "y": 246.22628603879019 - }, - "nodeIndex": "Item", - "nodeLineageTag": "e8181695-0d8d-46a4-a884-1119686c45c5", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 248 - } - ], - "name": "Vendor Contract Line", - "zoomValue": 70.95554390096882, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 3, - "scrollPosition": { - "x": 0, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 318.98291134494906, - "y": 221.55841202437608 - }, - "nodeIndex": "Customer Contract Deferrals", - "nodeLineageTag": "fe6c8954-df24-4726-8ad2-a5866e1c40aa", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 600.33369309612056, - "y": 16.91199776686674 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 314.07176280353838, - "y": 556.26233089105131 - }, - "nodeIndex": "Date", - "nodeLineageTag": "43a65c75-84cf-4e19-b893-90aa5fbee72b", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 0, - "y": 226.63598307031833 - }, - "nodeIndex": "Is Released", - "nodeLineageTag": "9728ed60-2d3f-45b2-bab6-f867ea81d7be", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 128 - }, - { - "location": { - "x": 593.724765499258, - "y": 418.55195438135945 - }, - "nodeIndex": "Customer Contract Line", - "nodeLineageTag": "540f4568-d4e5-47d8-8c9c-1c4a21f3b091", - "size": { - "height": 248, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - } - ], - "name": "Customer Contract Deferrals", - "zoomValue": 70.95554390096882, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 4, - "scrollPosition": { - "x": 0, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 383.00842472047543, - "y": 128.16694645751454 - }, - "nodeIndex": "Vendor Contract Deferrals", - "nodeLineageTag": "8c73f9a0-1ebd-4482-9add-657beddf981d", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 50, - "y": 355.43613684281132 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 634.47994941834986, - "y": 406.49192888248575 - }, - "nodeIndex": "Date", - "nodeLineageTag": "43a65c75-84cf-4e19-b893-90aa5fbee72b", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - }, - { - "location": { - "x": 646.26168121086027, - "y": -50 - }, - "nodeIndex": "Is Released", - "nodeLineageTag": "9728ed60-2d3f-45b2-bab6-f867ea81d7be", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 128 - }, - { - "location": { - "x": 46.024337828604644, - "y": 0 - }, - "nodeIndex": "Vendor Contract Line", - "nodeLineageTag": "99943954-cca4-451c-9f37-de72dc3ba6fe", - "size": { - "height": 248, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 300 - } - ], - "name": "Vendor Contract Deferrals", - "zoomValue": 79.553182037699813, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - } - ], - "selectedDiagram": "Customer Contract Line", - "defaultDiagram": "All tables" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbip b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbip deleted file mode 100644 index ef584e50eb..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbip +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/pbip/pbipProperties/1.0.0/schema.json", - "version": "1.0", - "artifacts": [ - { - "report": { - "path": "Subscription Billing app.Report" - } - } - ], - "settings": { - "enableAutoRecovery": true - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbix b/src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.pbix deleted file mode 100644 index 0f924209d2802c91260cdb6dac378b93f9de5312..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 847868 zcmbrm1yCf<(g%nvzPP*V!s2d=ySux)JA=EsySu~UvbZ~oySqCF?_K=AdoS)T;_mxJ z^mI>ER%TUJW=>Uh_sB|senSBQ0)hlub$8ReK7qx9{?|7kAP68_AY~(a2QwRMF)@Ts zf`8+y`U^^mU_iiAZ+&KrhEoP~#&r5XK(hbA>s(lT92^)3$P@$!2>FwjhJcN=qmi|v zj-s2bk%QJxS1ZdezF*Z}_#*wnKYTOgC1m>OzQ6yFt121a^g%G^gc^wKDIh#o-gfrg z&;66R0Eli|CkvvAYU)ZhQaOn~=|@y(>RG&Q(iHR6hA{9_8TDP>=Br9SHi$?86Y#3q z^QGXSO1uNc-DMEG6zH;SxM@- z**H0VY4fY%3tvQE_(z*(S{l(S1E^UCAaC$6yp6wvY=^dto|D+bkpGB9E=kFvc;%3c zu+&-5wx2Mi6MS?WcpiwZ!!#1n*t7pY^dkw|jtFAh$arCYUVHufI-D`J6Z+IYx8L!b z&Ss4BCW+?**Q7G^GUDjbX0b|p#wpQFh=$5RxN`UT!?J2~@Pd^`tj%T4Z>6))xpOf*lG@U0K7?oL8DLvWsBcwMY3yhmVeQ;!~CW?7{F+$l+?4eJ@ zAw%krqUeXk^VkV@@d-_4rP=%iK2-E8YirfoSXa@HjVTPBS#I%g6tf+m1j)2*miCDH8l;%qy}ZL{A=>5^laY>6~}#;*7WkskX3Yu zh^93UJ5wB#p3UxA%LuV_?{8Y_ATR>eUKmU{-wn@@H|a3#&a%_s8;X)|-%>|d2W#HP z6C5M%CJ9m_D3dRjEI8hMwN*rFpU1r-YoAFYjUGI|cRdf*9IFwOPpB(lKOGR>b6Frd zwBqxiS?&6>^FlL`_~!WD*>IM9yObORl%2E|)KB_^r%m7nbH#xBgTw!j)L`1xux*FO zvz7=TcMQ7NMQW-5Q?}Oe=+7w7F7k)5-Qhn&{b4?M4=r;+itDDH3@yU$Tv2!<;Ym&t zysuG_dyzCA)Nf1?XC9S^6>o7iK)OP!8nkD#;h%S>r?K;Hf7}(&IERRp?D(@M*8e_f zR!+<+sisoN5p~7f-rS@VSHcyQ8!kI4NMCMPuLn-7+`9J|%i)EX33NdDmP*-LxFo-v zL8wGlp(qv4S(ncUEUYyzHBG@nW-vHm+H?%k3d$1^^%aqkW70(>rx}T>)92Lfk>ya93lVHwIK9KI@$c~X zizzQtov`}?=(~B2=zTH-Yy=;$P}A6vI>b+{-e(5?cOycV_ft`dCMxGh&8%hILZ>Pb5K zvf@Q){G}K@0t$av)`#>E&62I1S`oczM+p9x%$yN+n>kN z=OU3|08J&oi?rOTGJJi>jDsCv)b{NSXSS^oru5Bh6A!*9)dG7Ogz-S}pmt8IgX@>8)1QDZ9aqM3xZ=RU2o*!ObA%yWx2@K#Vz`OC?npUYH*o-~x^GJ^!I6Ai0 zZe*m`j60~d!Rxe&``2cNaB=-4_kgZyq(k(2hOjqcYds2JgBIZt;|ZFIlW^seuFb1p zq`n+C&u3S>jJ5qhop|l{1ap(xHhyufA*#J^D@<}u)AnmG!cwMBDz*?*C51g25}R z;++(UvUjiec2upt6m=h6ilGAv1BMTF+IeQQOQ`SOWOf*guZA23U-cvLFk9Gj&PRH_ zp74ouFv|fc487t9e^5xfyZO6WC*$O}$-c+U1>S8g20e{~psd>?5?dPiG~^r(+P8b! z3MQV!yZpj|#u}SmqGu|6%`8mbbt;rD6_@l01h&_>%Ln4j58um2Zo)X;u2bM>O7l8f zt}vm9?(eH^xmQp0uWF~EG|b|Se&h=?ZHupn!LRXsg9a4qKT~0fA`nl}!1C7Q1xv|t z5Sp0f|Gp#jq^Au@KqZ#!((`KjrJY1i3hdGezOsnltI9@Z%PG?Leo2Y`NlK#TOBFgICk(F zPW`V)*PFXwR*kC9Oi@m5>A(Q#kh+2T+}sBHlgqg(iUGnXZSFXi(6|5^2 z)_Z%to7brQSBW&jX~Zt@fut$CMV>Vl?v8=hd066SC{ zZ0r?n8#ioJtMXQ6xfq_ZRx5!wgNnZcoD?9W6MEcHh*HU$YP~!Q{qH@A=kmL%gE_ls zUaG44gEf&j8sNHZ-?#P5uD!UnpsF|*U*XpubZoYM=!sIQL3GdrJ7VgIpsF9x^PStn zt;o=aL_3y|AVe84pv;9iXZlqohqWUytxh$qm3=KVK$vM28HK z9{aG%ZaHcGl$f(7=H<*`^TlIOz#CxG@%5YZJv69M#X)*=jv2@l&eJ#rFOLg7jlEw$ z2=A;gPa|4w+8gk&#W;GCiO6mm)!8`!E!X>hnqUy-HkWcZiTV&(O+ z&8Q19o`sVXSmdf^b3!j%$1j~EU2>*SIT+!^Gs*&)3s*Rd=DMa=FY9htW)feOT~G#&v1}j_N&c0 z&Tb|c8bYTOf@DfZ1~EP5`hhrl6`Re%(lPD52A{TJVZDtnby49xo_hy_;IDJ zy7!a4WwdG8xa|N?ro`2+-+(@ISX9^54>IRk32FJs$mM+RY&h8v)2%MDD z?JaSCdCu&bB93p>F%bud@fR5Tr6pKqzXXred?s6L8dOem+VK0Cdap}?JbTq(hF&~U zVH{D5B(YT7bOO(@c9d7o80(FMTkTG<9~*ZSKF3JX4kMUAON?5Kf|F?a5vF=UX}U{c zNE4GybOl$g#4@q8Y3s6cg2~z6b)QV;Zf66Y(5(#SPAlY2tV|l+TtbR@yU|Os+#iS3 z%{s4d5Zgo9vPlVawF5l9__^kCqq*1}AAVuC5N<i4w1sFv>_VX0B0y~3c#bBBQh{4HQwhtzQ#}%}cF)_= zwz%2JJ)Nu-@>>(kk+ufHc+(fA(pc3XS>lc@S{1e$hd@9Js0w0I(|~8|LvE|f%Lski znwU6oo&=pKsEU9=mBXibbLoTg{mMX#3tLZ@8+1>7u`r&EFjOV6%+bolPa#v_8tHXl z-^|IR1(<=cm_ug}z53aVCHI|aWSAeNGq5C-R}w8R9m%`&eMR*KDP!S>JvKneBa?MH zqXB2RepZw93YPtLfpsriKYaIin1dvm?wG4c9rst+MrA%x#sYK<#@z6`g9}N#Gy>W_ z>4*ic%)z`3!E=Qnfy=OJlvI^d08K-fd?8`*VZJ_4hi=^mQ)Bw&2HuCYL48BcmV6-9 z0!2`P0MEqO_p1w?c-X_*9c~irm>jROd8tMogHk2Z);+`f=sQYcx4O&Irpw!W#C4Ok zt8^}d(l#WEZviUfRqQ{F>Mm9-J!U)W-yOXovo~86Ofi!W{he^ui!W;TU(^BFo9}Ld z_=hS#n{U@&0ko@w`1>FKxyv>YhTv-W+~}2jZl57PcZ3Q?j*e#5CJtYl!LPC}eAR#9 zpUq%oj08+C9YR3Y#+(Kr?mft6J)Ftw^U3NbB<^pzR6ha!&td1zTe4e!4ypU|_!_p9k)xiWo}=E^ zu)oT_@KyhXe}-LdEUOP`AZkRRPhmV{IAk&edR>VjiRtLmKrBEh03|zyNs&Gh18G>y zP(b$$co>HcKCd%{5OjzNXoetj`g^TzM~VBYPrGN3W({S@ZKAJwfXgh`| zzaths22d@gKVA$A@U;czf9>2K+SWwJKNBqyxWGU`P8)HWuK{snXD>DNJ9Yz*r9eyVVGixIUCT2D! zW_C74R%Uiq239&c=AY&c|IXNaiTc8q*f0E}hqFu#n-$Td!43433j)_7L|vBhnEvfb zbhk}ZHG(79<@H;A@S9%}4dam{&?rWOYljz|P88D|#iHT~q=WXFxVi(RXeZC*4)0E` zFFUj!EEpN%ac1uKH=CylEL7J*-b!%29#fgVQ;yjKDu}GkY^TkYz5T#~xR8Bmv z=sU(sBeT_t9=OSAhZwqRzdhnxmN-~F0>V9;Cb*?XNQTJWY7xj^k-d?4-xC>GuiKT- zMAOH@V>OYg=1~nPwU4Nf-@`AvP_PVl( z-`CcC=Aoi(@?7m)a!K(YiFO;3oa5ni)?C$&4%S1-ea$`KJSRKTh&lsn>1yJeXwF>X zJDa7E>kJy~ql3jxJaCB4zww$y6^M8?NlzPQF&lL-z)w5~ZnDm6IJ;RAew+8gODpMU zG7bf#H=w2ah91v?8gD+IP3eMDO*+$5DQ0|u3kqxFeL9dBiVdWC%$-c?~>RzCP7W*26#+8zLf(co)`Ss+$#79uei#PZh=#3-)t~t)PWA&$Z8~ME(MF0IZktODgaDyXE5#6tcAB|!fGsg zZ#ni)woT66j|^MUr!O}6W*k|72?{{gpKP?jF~K`EmOa8bN&sB^lLPzyBr_$z_fIyi zAH;dpBs>M6s0ILc++`sD&L4e!aKr$}@_(u)dDqOo9;CVKHtodNo779-C42097gGi8 z&Bm5{r&idX3}aKvPTqPT$`vT@M@(1#-eMC19(SsU+on3qvLN<#h!LP z)pA4f-u=FH9l%#N^#}w2ww8emvy4X@n1g|JTn!^eKM`0YzMpgn0QqAU%DWN&7=P^G zDC?8Zg%DZ1^Y;&r5F*7dN6iY_3P1-C7ab2i3W4}w0Uy+5W&0j9H41C35s8q8=#ln z0Urn#5G?{vH+n!nqU++- zjlVzd_(}1adk+L~?EnTKZm;Y~y|bC~ULNSbYkf(oTj$QMfH(F7DR_;23k8RcxjxYQ zIADD;Sb7HrsBV1A0ipzOnB!jtuT*p90Fl05zNXG;g96ajWrC#M9W7~nyC5fdDSq|h zU*Y@l(hH>U%KD^0$Qq{bMxRF0z@QK`ZR7yiy?t@X{gZ9xxJdqp42^ID@p*v$&$%$r z-y!tv8<^-*9~Th7kjLt)XYBwJGKycv)oj`TEQ()a_!PeswW(1EwmzBe!LLYc!cTT> z%6v-B{*=hOunWJUgN#D3FGH=e3V{0;>rbP!=laM2q6e(zyt)PO&Vs;8y4q3zzDoQM zLV1(t;6LfmMPGeEPOB!T`GE77SV>>Ly7uqxeW_xdOC$fY{?CCw2+2+VS6ev_Lk0li z9{i`Q&tq?r=>Gq_++yr~5&Bf*pD+4X9|*FytpwiD!dJVWH^C3^)F5CXPoQ8S2OADh z05tM@8P#-zNf}*<*QZTH)}t7I2;uj!PYZo=0P{U;fx*MLIryw1@g`e5INbD=du#oZ z{aJ_$-veqhlXcLN@Tq3gcG%1A6y6%27EeyH*VIj4dVnr)Eg<=Ewi`5mhu&3Ju?rk8 z<&ylfqnKQDTQYT@okxTRchw!kchz<59LoknL%@Cbq)&M~pVPp^^RJNRe~7;!k1zN^2SD(GvVHB(d42jUXE1vI z1)O)KpTHaPj>x_512J%tdHu<33|~+OhYKHX4?Yio7Wy#ssU*QWFeCunS3$}rvEDnu zbMVurywGO)kx#a4q457EN=5oqw@f(cyJZjlF|VMGJ`Oy}D<%c(G(z|xX)e&!T?ix! zLG8w$cfMP&X7bO7#=a+01)oPtZ%qpU7IOUQA$d=`pGNrc3s`@>2Q>f5>GJ}Q0)X&F z{2DqxN@wF8&l~kH$a1HG;ML>FciT_;jK)P*wt6G#9s#jgZjrVwthcZ_`* zMo~|!JX#WMOiV*wsA*nLoIF~N^$UkkUfeIkym;{8jlP6{mfiL}Mdt&Sf4_YH93TVW z=Qi+T--}L2=jI*dBE+lS3(z$0(R1)u_=u^XmGwDnncba?d;C&#pv3Fe8_{L(3;Y)e zcHa*C>ukJ5c9+W3A}e2w?cq1(dS!cd z*V-NZd#tMY*39Fah)&5-r1Vi4ojANlawnYcs9XjA>@17!o=%fAyxZQMU0^%>9PNbu z-ua{<%@?Z1F2;)9qVnTdB9A|HXVHT1C+VP?T*h+AdV_nLRa@y{OEr%7VEf?en3(PPcwOA& z$}~=XGL%g7PrI&up1iYhs-M^&c4~Dh87{EFy_og|#nPy)A@+bT0dj3hAs6Dn?nyD# zBKDc!98E4{GipH2MPDkM9JVxRW^r&oByu%`puN%0Knqqr|Eo>WKGd1mOq)BvpxId4 z=d)T6%GRP?Xr2A^dxWg;&|dyjQv^`n>b*aH5KoQEx^h=WPMbcST$l~;DC$f;YF=h( zlj)fsi1a3Z5S;Q_ff!vON%s*@(TxK^Ns)mx4weGDsyn|`4p%>DYspq2x;bsO%=jrR zls18tFMIG7W4y>pFk@Ndw1?QAz?vxO;Qn-I*OVd?=TR*huO-zf70!T7iVQ#6AMV-N z++F_1<@U^$y+gw7oW?)~vfzTkUM0QAEBPU*W6a>scAxyl@*)wYiG(VxX4TDyqF9}c`h1OuGg4a=0SMH*fl1~$A&~MPI^$8D7u*u+G{)YjTv!Y z-m!ZM&4{70mD4Sczq6JhCpz%%Qyq&e(S;I&8WRVQ8_%xLeVgi$QdN`ojASrYfXD=h z)gPP2wZ%P8{b1%{V>8sUCHvRZ+rifR^L_NEwF5)03FF1>l6eTQ>7qTy``qPYYG?YZ z48laCRR3bAvik+;-#^Z01)vBQ=MfZ0yl-l0ydB6RPHco2E=>IcVxI&txb5kg=#D{0 ztQgda-k_c|4QC5lKHhUqdEeY=UDWq~AU8L@C>8ai(Pf+6;pClQjXZMpybV?HK%ax% z?m3)UHcQ*R`7F{tQJ5vNTn({p0n=iB2&sqOw5D`tD#1^+o(77g+UbuHl zYBa4;p)ih(ekqn`Xn5x4Gtpzo4YA{Q1h}V0p)#@~r`ERW6LC%z%|-d%^F5;M4|OS_ zYU3WPQzOJC$am14yI|={M5|q>Q9)kH1Yt{DjzUDaBXMG?$R!@nuTu$={)$@kLP#9~ z*AzeH=hy9gro1o$DyNdUT=`(DzT&TwIPNKB0*)GREY>m{I_(3Wv}O*-p$E;6^YBz`D{{Q)ng%-n)h}*i_Y>l{(i7Bcq9R-l*tV~ z`~5s;dpYsYU^J}_BD{7|JQprc+fYvxQPgWn6|u08%oAU^+YX)oMhC4KIPDBO(Mjdl znvw9g`f2UC(R(fL=ECdS0ps7xHCMOzpkqE^m{H5{UXtGzEhZ-?z zbXNXd5nN!eHey7XeCMTw=6EY{ml{$DchZP?;XUdpQ8;N0oB-iU1V1%fU7hJtd~xo$ zrm>yjmDcPHzd=vL7&-I`e6qE_MOw34xnk>EYjnJD(T88GGHgHN{q!W#;in3=;0$}4 zKX4$3d%ZAZYM;7Mq(gQ847=X32_P@J14D(R`H9uXAl0d5SiYi{q5b2Wg=Tx$8e9DU zrk)75l5@#(`ieurYx*F?CT^8a>P`JM@^DE*syi9!=gk@IpN&axmUVmemB|6$#5c>= zS6!ZQZSSt;33ieOEv=9hH^%-60^p9=vT>KVmzw8Wowe>?RYej+LZ1r>Y>D^e+X5hyzznT`>deAw=ZrDufy0blfAd( z*5q?vZtS`3t3`)rj$AZ2Dm`WPAd+c5We(&}bmhNJ6gA*4T&(Wz3E8XNm95;gyGy(- zYhIkt<&AXl^mg&1xGmc9Wzn8!khWQ3?>=4H4mya?niXB3w5+d(j4!V2dCm+Tv_;`B z!%W`u13nt3A0Ishkak_N@fE@Du56m6n&!@eXqMEjVh8p@_PrH5LT?4qAc>bG`nYEI zat+n?H~Ia`I-FD=LbW;LHiMCP{Av;$R-vk|G-Ag%mkE4lT40|tWTCp&`ux7|o z#$ajn5OrYN1i1s&?$O-o{rlK^#}Rn7xS(Ys2NTv$dCmzR;c`%vWM$_n@rKC4A)s@WGP#dQjJHzy5CcjflGi zwDj^F*2D&!HSwp$n^$_Fi}(B48@5#rEE{&Wjmlrc>-TX<>L*rExiQPD_i-t;34r&* z`T4oEtI7A9?PuIsCRi%>n|Q=fs(mpxMvN}NjhIVNklqn!9}dH4BWSEMO|dv<(l|ux zkD1lVnIMZ$B~B(9W2GnN6}S|hIht_{3{TVLB5t1s;6d0}=M1W@qEII6)~G6gWALgI zwLv$=?g9RHiy_Bgh#>AcoZ$H`c)?|7ShziQmV_>`@GQkA6*H+hh`s7b^s~M16FP|+ z#k{{df(*PWR(9Z+*XC5tg6}y5s#aF9=H6=i&C)QETe}uyZwDCs-MK1qt<{q_O9mwh zQg`b3xU-0O>#28$@i~f4u#`A0jluO(9LIwS^65>wgM-N8^3Vpp$Lf!v28I+E9mS-Y z6=}fcS%nMV>1Sh?`Jc>=Wh2}Y^Wc_iEu1c>rCp_0&;08bfDzV=Fa+*lz46(`5Rcto0JLzkD2h;VE z#6zsiuk+uI*(bzcA|7WX=VN-&z4xVCn-Fn2MV777Nw^fdZt&8udA9BmKZ&$Cx*TaR%^)b%G_6ic? zm8G8pIgbt^^>AcF+A~!7t9d>|f&Du+OlON_Q3GAe+7b>@<5;hCDc$_VRj!4H(+!5x z(R1YHoRSX0iAqkW#kZ!6xvr6|7v12Y+(XRG-qZ)7N|P*ECjNLHaC%(=`|Glivq9EP z1b!fY+#Gy>{%2m8#bM!a>Dy;s7!L@D_y0M~s$i=3A1PLTJqII2QzNU-46J|}J-dPu zJ;Og~)Gtzf(xf-a2$FcINvCo^DeZ21tYj^`0WWBq~ zJ=5UmWYhL56b3~A<6D}MM)-Zsf8b%fYx=0^g30mhZGG^X1<^gTc#00Kz5(EAPKx^3 z1=PLxP%pJIcZ%%M`O}77V)DC_=R|L_<1$F=o4{n0uQB`zaBcoyPFrAGW_RoKq{`v8 z&K-?)yAQBVpYkn;Ev}gzsBckb13@HRb9U|$n9FqPd#T^`?FdGj_Jy+_@RTz6>VzrB z8HchGDqu1ak@4a?gd=wRP3ho$@R{?VBrli}YoFUU-vU`Rv|+{!ez533GPx&+wtQc! zsZH6p+16_G`2AZkbZJz}nGK+g zP^o-ocM}#f02#hyjWoK%gBpUEu|b(s0yKJ>^Ng3Al7Bk6gM`C<9n)PWSa(I{CWN}+_w zE;NW_K^f=iNUxlRBTq0iF(skn+b!X@Ro{Z-zP9){T@@$61Q6kFye&+x=VCoONK85! zpP_=^)cJhhE0r8Tv+D!oP`ByTAaG4k6*xT5TnTBA<%NcW){%c8CJP*o(s;$#FG|^p z;(9@12Qea!i{ff6Q{-z3{-y^XEypI z_@^%rmg)P2Kpf0QTt2zWF(HStd-u!_b7K;*toc0%*YurT{ele}2z5Omg1%Fre zr^#))I4F88=ito8?+;gEQo*DpKjOh=G@^g(g7%xAb~L2m*XLRa_kq7I6mta`7h^5D zIPB76fZ^#O`voZdGz$hpt>-QJJ(eAP?ToUp7%9gXkf9H8mQ#>rk_~Ckrm!QQM7yGzNpeKo zW`j%Yo1D-s-|GGn4T&L#lhzp2{LgFzJo&_4QPKU`0w1e>3Nl@59aG8v(2m$grbC#>+D2~ZfW`w6`p=MhKY+{E2RLSipaI16^ zUelylR!>3D>f4STf&E84moGj&oGqy!QTmVrTUwh4A-BCQnB#z&X9gR$K<0J(4yd_r z`69AUr0=I6VE-9Wnb)uQT|dKK%IAUiKM~c?$k@!<%<=Q#U|Q#YKP3E5!2F{8!dI&= z{1Y%~BI)6J>Anj+h<6B}(DQ3zctF4*%8M`)*%@kRA-ELhN&?(2x*pir4rJ1lsi!9= zs*R;ge85;e?F66#<7(`iVp_Tterv;N5)KB-f-q1MEU8*PFeou>Lt}@Xdx(TfG(axW z1wz5G-r@t^=RY*7H#oKjw{HGxKn1D(zB-=|9m_)ieGccJJ8}P)0oniS-rPUq`6B$n zSEDcdGoDJN4Vz^;gs&d}U?GoHByYGw4PWWZ1~H|+lp-j?c$`0(1|mGg*kz9!F4B-B zz{`~@0=ti$7ZWbo7jea-;lh1x{(Rr)9jdUT4JG|lve0{pArpO^4e(3@&5c%n^{<0c zJ^d`sZ`PL>2aU!K;f4*J33^r5wC_u#rp9ePV(D1zZ#} z#t={{1kX|@o`jik)x0qEF=Kw9$3Ver298BJ)%b+5V)ZwbEgDCG%+e=`)3$BR|Aof~ zY$d@8R&oi;zAGva+R%e-!!j;nOGHw@6~06s7wEhMY#K_QiHb+(?*ac&zo7sN-e%rS zXER3O5UFl6>*0NnzjPPtY4gjtaW%>Q4@J{9nr1iQfYT9a^C>dev`H~rc#9}->0#aE z)jqjVh*l@+wcp~fWYj*KWL6m$LYwy2p-r%6Y`Tq9ew!-2hLC!=Lxf(IWShu$l@ov1 zdLc9EV~tTUr7SXQDzT_mW{f{tJyMgIrZ~OMRWJSL`UU0(Gv#b5k~J>6Yi2`@#ITvq zCg7E;I2dCCMfw%lRmDtYT%?EStEC6*dWx41C)3VQ13y+)l?0#RbHla=3ak4W zk(Q0JTu}VzHLFGq5{Vv-iI?QNsj=T`Ti$z14WQQMfzO^TDY_=7DOsV&)b>i-Od?1&XNoUChc5)(by19nWzob`?JOC6W#d2nkgn}zCgAgi zZq26^68+zrt*xHP=lbPepa0nI7xfpuT7Kal+qH_5idv!j9{2z{hU=Fzx==(B8n+Mk z_7`1CmV|jHFBEhoMQXZD#SDl%-1;uoGkWgj?bVSDhqvO|n4G5*C(35USxsj^?rhC_ z99<)5mSnVj!V24vCz5yZ>GeptGb-|gVVKRz84JB_Y;@se*)glhj3*l1yYa5xs-pes z5FA6d-3e}yaxnU%p;}1?y|J(y(A9a%3K_}G4_%4?j&E`Eq`aQX$`Gu?FO4}YFt6!6 zG|!))Ns$vA6K-V7Io8-Z!=Se-|H}h-8m_X8YzRcv07$++!I?sQK8zG)QuvQH=_$gW zkU%D?L3#6R3l{;fQu?r)7$62QnmsrRV!ASQc2b8;=$x|{rV>#QRB(Pr>F&g~#mWZu*KzqT`lzBZSG}DkRZFP>ke!4UJadit*q?D+MZ5jmB3-G~$ zNWb!B;L}oag_#@*hE$Pxx~=6%ZjCBj&pp7;b)1cOtub}~7P-7E#9s!=I7e;)kS||v z4`}~$f(3o|0nMO5KuMqLO_u+c38rH*)?;L#V`XAxXJKGsWY#xkWc$~w|1;@d9KP_y z?F;`*`dX@#%?b;~;05SC?l*&_()uT&FvV!Qh0mPp-wd1}eTYu32KJ>q!kJ+|qK%G( zN-}HpEO`Mx+Mug;Id|`G!@PG#2ialz*Ai1dmWGB`^y|Xxu-7My!OwNinx~{$rJH$N zv5S{&j6c9OUY#M~8Gk69+>Qw?jj1m^vlMZiV4-K)7;F3vz)a1fOv6Pg(z@Oq_Z||q z&cTLHRF?O19X<(5NT8Gu!q?Yas@m%d=CQ9;;A^&Cng3aJp3~uA`{8srzy24j%i(H3 zrx@Z8RCzP0JcTPG$A518aFrdWuVo_-t#y@Wny8Fy z!FE)fkOEi`s`#1C75`9U2kW>Oa@NZN0$|0K%YgYE!jiw zg*q(2|1GOo!X_^qe(gqk1TsDuF3;1Lq`)+aC zeA|m)9FC<%L@S7E9CPf%5jZ$#LwF;TT5jm-S3Z8E`o5v~gXhuA4vJ4ExZf{v269mo z$X^{RqND(m+EP-rH@at9?y+$xI|aNy$Jarbung$Pu?RGlCHQ;L@ppR77X+<(>h)&t zX56Fz#fqdc1WL0=AK6^NsBie7p%Tr$Mdb?A1f6h$FO4c@)vi?`!9uy_;*bVdi6FTR zPKN;`{`?u7&-Q(RgMMJczszr0^EQE3-Wq}}0J{LCh(gsn9KDoC-;CXy+~=6+T7B?Z%? znOTT$pm5}ODGl&}v~=iVtM;)f#r(MS;#S1pM;zRzJ!NDANQAObkYWUl(S+{zlHuL?=ZHWPvwA)(Hn&%JVe<2h6`zOAS z{q?CC{(`sU=M1>>{AW6@!Tp?3{&vUYKjTECeIc6GXIS_6T$U*Pe~lB)W)4nzmJYP^ zdW`zahV*poYv+2WU7Rj8A|7wx_4@{=+?fB()P)sC7N)sJM#Ug1!QqG z%UVd&`tCjEp<=MBcbQXHt2_(SZjx=~+B?vWW&!?|3?kZTo77S5VhQ=KKg?1N?Wz9e zgQGOan{2pvCXk684pMw4q76NzX;Y@Y#-Wv(rGuM+bhGpE^YxOoJak*X)C5sWkoWgR z7Lmgsp%3dd-Oe?PS&jcqok(=eUrfv&;5P*C?h;ipNb7##o9;9_ zPNPT4*u)SlNZsbI8D`Sai-m=krHj(*gCYK4z3bW)7vwfmvD~w>~=>iX=MLpK4K*Zd2qL zz^M5vm}`^u^&U=D?$NE{^(@HjF^uxxQvBo?cxTMKsgDy8HyHNMOBNvTk2aR{ zg^jtOJIyCFcoo+0`;Lb9;s4XvuX=P4;_CmObmL=3~Y@5 zZR}qHzVIdN3;!5<<)^VP|J&FRjN-3Bp5S6Sdqj}==xBo+1ou(zo~iC1!`!alS) z3BmlPbGB*N4_2ccyms2x)=ksi6Z+x)E01(Vq%d>Qg>32gpsTVNSd=S zDW4-V)S$vBqG-kln<)|k>=BbUK^!EZEke}->*y)jdckBznZ0J4(o_}pr#+nRK=ueE zI1#{O4LqDNUN+k(Y(>_U<&l&RQ0iErAWccLAkMpQ{qzn!a*^52yRq+@PStCwOqR1Q zVEbYZqE5S={F1y-D@<0LU$Q{73);ao4#6hfs3ey1tZXQ#+_t(Oyoyn6QPyVJr>v+# zt<#LLH#{m?x_4SDtn5{AL9TtBv+;z3kt3s*@FCsk_1s` zD5w;iQ}|;|u?gGUOP~wi1toW2jg+h;RG?S}H@kk$P2*g8tPXzK_Ytn-gTeSY>dtP8 z$>ovW$TUu$pO2E5Qb3M3h(0P9^N&XxA`}cx)g$8R2t}qK2vKPZ!!rJ*_?Idf1c)<4 zAxu-oO{G#Uq`lnJfxlw!<(QJ0-eDMvf~1NJFS%qR^dHra%^Vdbb1gP<2o ze%a}3j_!Z&qGH{qBI_G&T*irypjes49KL)N%)crv`C#K3+{;zikhvtU$8A z(@4k`HleV4oE?fCnL5dMXn!G5cet2HQ6=eSM@&c0G%e?uB^p#%j^UbMb=L^`c?1>FnAI+>j%FWC=e~auN5q z;C%|$Jxe8MHAZwoF@RBi<*035Vt-obS_P7|_V={OI~1yvG=+pd zA6~?tu1(V7EDT&5pc#>~EHX52s$Fq|O4`NpZm7eb?9H8!pN=z;eOMUMuF@&Xh=j5Q z*#;;Kk-!KJiKXGgv?UHx!U1+DbLhjJb7QC!>VrBW`SA$rmF@tY##_-q;Sqf+N_bvm z32}yDo!Q14BY_hHV{D5*B2r^Gl?5U@{x+_&K)a}@`7N+@j z3cN=#VdhlOv_C5YG@e!`Z^`QSGIj)Iol2vo2w~_+U7kx#>6ri9NxuYq;Y-*T{&CVX6)BmOUkDv4$AFrOd+_%N+;ol4 z_gqoGfhj^M;Vj&Y@y+vf@YI z6E*D*X(1h9s60(8TW|DVCh%90dlAHNR`s?K0cMhD`4S@1!>9puT9S|6jb0=ArkHpJ zqWMNK%Pu~?L|A0?0+hk$1c>*0WX0V}y})+{cY~IYO5j*Zh3^OAmA98f?pAW#VvQDd=Z)C;2{hr& z9qpc~4dwE*SvN{v-$GDPvWi|K3zp-K)DUZ8wl$S=JO@f!rUphH;%zKp>^XAnUrSth zqz2QtaHKFv!NwC5a>4g@&1!JX?{S)3&;CjjL^iHVq#kaF;8hg3#xz+R9L zhI25il4&Q<-43Yax%_4!tPIs=o1(m%D{$}u$ol=6=1Rsm%fU^xv}J~PFD4`xabu+T zn8-V{R0PU+FQ6=kx(s3=?oCa)ISY0-`7!0=zg`3JD~3di{#>!Se*WFT|L?sJJ2NAT zp`L-U0fV02=MO0pouMJyfBWT^fG>Or`@%ndIsWOF*z^b;#8>#r<>H!gPNG8)tLiaS z1&X)7wq)-%@1#}z4K$iq35A|6a4$qelLV~99^kHtn75(v19@uJuN?x@i9gbLu z2$LYi-9!3*By1uVjAB51L2kKMFTnxEd*{~0DoT-F^RuvT>qw1UOqf*YNBWE4aySHn z`@qAjwF?UDOC^#z!Q7cpN90CM-MjFKTk&jZr@|(D>5YJL0=tZ68u7I54r>`k)Br0P zuzvyK^YvjJWUcC%x(}Fb+tkxG#myC9IHPVGr<|tQV#lT5 zZV5vf%SxO%L1DqtG|?aD87k`(GU*KKE?H@RUqh0&B`@kc!$W8sbCD;^+JgLu69ataK+c5oAd-%=yW?AX zbzDp88V~M8{p?A0x?C{YH{(~9wLZ@_fp%U~vekhG3pkbPuCU}0FV!|n>!u9q+@)EQ zazw!3ll;xVA7}9Fi$srf#c~=*gOMz}h!MkUdeRhGz4V2gp#=J58GHqQuh|@L?iS(E zZtg$45p1G_DF;9LpT#=tZe4U?vC#+=vl389Ui5r zqM=cjsL#L-ex_sRuhI-Dzs>Zb%%j*5H@}97z*xM=Nb8(@*PIkt_8r4 z{|jNFu_0yE#chUa?R_tQpYR{kmU!hLschR=NoI@$X8=ee`L*u`cG_=1WOg&B|a&N=>pjLpX|fmP)<4WGg|gp!{j z6NEC;>Na5Z)CqrhfG&*{B}J=i%`{Aj#$*$wNXsBSVKMF?Bm(#hUED1-bO}F3>wusn zx<&6SJA*gBNa^SmO1kxcPg55#j2LoHO_twLLe+PkAdqJLi}M!0uMTVpX+z-1t?A^v zx&!XG@u%Mo{031&$27vvX&9P|%3H`JBc&;rZ8egD8Eiy^sT-xZJr8eWaHU}zyl^3r zmTzlv9tfZw$ba;Xwrr@TeuD=Bgxm?{{M$ z?Iaq}#`w0Waf-|W@+XdZV;S8cVtXSbx1!r*ErKz26yeFNF-z}r$g+!HWscu$;~BR* zdSt$sN;zQku%+-49JGf@kyCzUVlqPy^ay zq<8}yza?B?8Ed5Vj?=Q{my@hnDw2)~v)8NZo!re@@7gh!S8(JhZ0@bGDtvuGTh6)8 z46g$X2JCPniIWRFv zrktw^fAqGsn8t2vRb#Y!j)(@XLnov5$Gd;K=#S}Ssgl&XhzZvQ zw%D(NsRZw;#9U@rI*=r0PgSYKG_Vbpo`PSV*V2;%}a!_Dcbc4qlze${NngwUjTzK+5kT5iHToIx9SCzn+0Fxv$+n-=4#>WeQ2Iiy-J~Z|_cJ&qU#D=Dv?fH5MN@`uNd422i? z5fjInN^N&?)?;%cgXIt_e)2{7S7{ext^IkhVwtm6JvtM(rG|}Ei}oZ9xh~r>gEZqS z52zXEp}_9_*%~WR%R0O@HChaaF%$F}{KFKwR$Msith3enR%Ut*tjo>#PpFfC!@7ar zjP<-+p2d9a8?h2b}nUoLMDt{MIHeNO0CR)Q`Y7 zuWrm|c0N*=3PlSFz9hb~q!SA<8FnE)+%2q@Xw+ddHx0CfyD0v3#>p)NL9V(?Ls zDi1%Iq!jTDjsl?wNU}=2V(gXbgoBV<4L@p~6GobO{qO_&ljG?RP&o@2cW7=bR#?Gu zYv_<0ZTp0rVt^RZP7-eQ*D5rQ&N@J=WwBd#E$foZO~C;^z)g5$z6%IG(D>AXc_t+|!2wD72jitYsCy z?SGR(t~_yz-1$b>I2116zuAd6$X6ZP| zSyKGcm-4PXXBTGiLY49h{KVQfCb^3SpHm{gGk_WHkZ2+QwYqIymy#Q40=I;dd4(y# z*P27JUF^p^P4#ErRTaKLj0HrmStE|?JE-j-o&~Wh2_-6u0X(P4*JIoeuVZGF``EZY z4_7+>7$D)^48Kr$ePU@0K7?i?wU#rL zCaS8d`{X(2Q7&6oT-TG2*SlW=Gm@D`bbn+n4UZ&@?psVr?hsH;3A9MYL4SSJY=zNr zCnPuFOFo!Q-&2k0CxuPQ^38xNe3*bC4YNJiKvUD@+?CSn<#*L;K77({U1IUhn55wB zlVr#}3}BFfvJ3U%^VORl03%eP;7G>JUOf#*F`Ws}cBx+X-hTe6ZL=KhUvlWemFQg9 zD8G#utP*>VaT~yZ1F5lZQor!3e}UNME;`>1o9DfZ6rvF?OQw|C1l_hV zjF6|x4&APY1rNEiD7f?IrB@)qTbJhLdJ%j(;TSKi*fX@wpC!T)zS2037=+LL$9nY!l5rU zoFWEYFa;V->!#w9WQ>S!(M?<))6gDF3tRk;x%IIcl7~yti2!_cTi-L}LFVS67JR!> zbqZ%k#9GKD=JNZFa!Lf{Ek8kZ_AjtM)vo;;B~RPaN6wDN&ue(<&8OPK6il23KNk&4 z!GeB)-OyXTrs2lj$P_9?Pz_jmItDB|9+`vg#coCXMm6BrR#4QoftC zd|w}TiX+8&YseTh-s4*aFBj}HJlg?lJTJ(~ukKjvcS9orK(nZ6*J6Ha$y659({)km z3a+BtYU1;t9gVA8Wv=HPja~}5(3ZHOxoLsup~_(nui)FBy$ZydUZz8t*jqsC1AUYp zNCl|FCWvmCu}Q+9&+NT1D6{yTO(nY44Y=ai5r0cS}mQ~s_@CoX{V zNLn8U6X&zS6*=^ZK-1uYKt6mu1W_;TW_h)n+9 zyUA0jjCIGfAs=ZjlX~|r2psA)YzB_*g`fmVlZF=c9Yow3`|DA3O6(O}2=^1v=2uqh)@%eXNBh%|m zq9vXOW%=Nxy?iopAGZy`>e+fSt8ZAZ*o7?If+nK21#GKoHtGBgXU74}eHSa|X8DVg zrsklx^F5|o-I@lFXc72F`BxeXueIOgj6aETpajlvNa|S9-ByXT#;z*3%Fj!VXwM8FUmY8ygO$ROQfmr^PhpjV7z(@?9~YSZ3AP?cGh zYA~d;_6KXCj$A9HDse!%CekH+Q4C=nEFh!F8WXGvE33FJQ^ymitky(8lt%Rsb>i!K z^+fT>+=wE?D2XKGy7P2fese!@Ebjmgm_vYfC})rVD14_-#%#)3XH$1#_zc%{0yW*! zg%pa??V*Bi?h>BVu{Xlh_9r&LPj&?CyVf75_RCD7fQ=(>(9p@Nkd&b}{@ATDYc4B0 z`#5j5(=G{}K-v9}-7{A{!Xg~P=fB-e@+=o93IkTZ^yL4BF)$l2uowVe=InY#dH{Vr zW&i`g=HHRjF} zj4hYtdszey_w`ZCEk*VOm`3PN9n}bPbBS7H(4|g5QNJc=vyntl_NsY_7=|4on82by z=55}BPF1fpX6@{08?`e7AnKjqo{16H(=_J3YnU?TN8&j;3|>OW zC%V#^PXi;P8c>J{UH%cEBrQvy8c^pTBqwjO}WmwvPPvY<88=48B- zd4$l*q>S3t(-#QFEn3w`cyxsto(dSRg6Z>^nWSw(5L_>D>1T`dgHxG_qG;%8*X)rv zXE?DU(6G|9x0`Py{G<4DzbFt~sTn%_W_CD&KPw7h*KP=KCIIuQ*!C@SVPItD)`fSx z_0_KM%;jzw@?|E2jMYQyB4?VPL%hU5F;Up^q3Yp^`kv}B;XaLip{N_hMvSkU*OXj@0r%;RF3u}W&P8ofKfJuB20;gG z5yScF&KQ;XaPAOyk5&f=rUr)PbPpmS*Gf$61nb^c&&~;Kb_XO@8Mg zFb<-tYlliPvB&Z!H5kPKAhYh!7hRsoSg{1zMEa^gIZVNCmJ8iPKq)mjt6(0CxYK*R zzl}@d+)+J8#<9SgDTLBp>*oe##JqU$n*31IXDyiTU+A?zO_CQ)x71Dqgwz?wN{F`M zEjM`8Y3~PasT2*P6jTrx{$KggT0$ITOJwontQM3v?|%R4o2Ntp?IWF=g$*m>SaWdG zCFymq=S8sj+;G{p?OG9FuUHiPC^dt{FHMiUFZ-Xbb4E7 zt|@WN-RF1vD?nQ2aIkt4Er4$_ffTX-&b4GpqxZx>UDRSRJF5Pi~$;`c}`g)Z% z-mCzLBXuRb1;v)*o|zCi^y?Ma3)4icWy z{ot}HPTv4*t`Kl~#0>N;DvNwamFeJmyGZPIj_~Ur^AC}FfOMC=c$V~^+VU~MI*10P z*ZncB65JZYgj(IEMX1cL2EMM2I-aWQ*TA6R%m<6{mXQ~3?Q5K|{WZ4c)IJm|*<6QT zkOT&f2{G;x@~FJaXdWGBQz;Tt=*vO5CMPfUTX+qXi&FZBO&xh zV3FW+1?K#0fV*?WrYSeh{qv^jG+~r`luK<;)#rvK2f8H(sJ`4YPM&H$f{UDNzMfd|8RYZLQ*2L33|)xMw}JonOdu)&fOWPa!F(K#bo+RuGn+aSY} zLTPGu^B}OExgeJlN_ia8^DbF==fJl}ziL9ZQ{^I5adu5*Uzj+`_JYWP718chO~IZw z-au@%d2k*g{#OGMjb#KP6bH&+>Ob^IC{V;qStG>KYU7OS0&-FL;z4m@l}#LxCZGbbvgM`gpaP_V?MW${J@|2f!ON^PmX4aOL*ts`$HJf8Acd~(PXs} zeydjbD)lnSeie$V*q#E*`y%c^yUb>j?Dm`n<0hl><%RlBEB~a8%%trI$0LH+H#$gQ zk<4V5AU$GTMB9W#doz!xHhz|OqnTnGNWz8>#*=zUsrMGk2#Qa5;y>LMgAZ;JF| zimyx#pM)(i2p<7U&yBs{LYu!S_Q2;El8_SV@DdayUtZNGTwiP>IQ+Xr0Wt^J9`*{O zJO+l7=hbR>ql5jYT~*(t#!Wlmb^HrLY!WFse{5u-W|$b_De-F)otkjq<^|`A=)NJMihB$!_)Z256)21sk9`2ym*o`S zI=0V)EW4fZD*N1hdJWgP6ehO#-+k=R8|hg)a|jAoZg6vMpTEN~7yN#?gb+y~ewoUs zXTM!D^LGI6jksD2?&i3CNOYcqxJF|sTlo~^pzcbi9gfoBJ}FHyV<#9WL~JdynkM5` z+MojXnx&-iJ0lYlD+ddJfq~74QBVJ$CQv^JKJZVP?7o`(e@YHD@BF4RhqI$gMDn&-&!h(Vgm+6$(TYWHLzJy$ZgbxQ%#FkkF~ePk_OAYHT#0$VJpv^M zozFjr1}EWu38{biE!>RTjh-UL@2oFTAV)HfPqKS1O8!USYgHTZJvq5n8S%Mo$H~#G9*@%S!}298*eisJ2^h5Zkr=ln!l1DIhjyj zcWNAd-GvPG37l<^1#fh^kOYARw^D4|ZlOdVZg+zr%eKSIz|YpM#iwLq0i1I?>;-o2B> z*075^N#ZD+A&=NbvG&n!4;Li&zq@#sknlCoAaurI z)IPEoXW%yHTM(5dI7e6nm}UtMFyMZ(EStil%HF@Ha%@6uD~&ObF1}O|Ka0YsR(G2?+ZDjB)DR!=$nBVrl5hg1Hzjtyqz_n9A*0v^m=q7!&z9I=e3cTE6+#-unv}M* zkaB#%4^+HQeNNNwZZrcQVw~vvcd4;l)^c_M#CxmU+CQ3up?x(-6|B8%a6eET=xKbt z7=tPvxjQ(}N~_Lf);<52#d>y;cAW--L#g>!A(VBzvuk9F^f)C^)9wB=Bu!uZTAML_ zFz!TuuUFCl@lszi&wr=3d<)f3;Kf$~z!e|ePM4J8=Mm zcC^?Zm0{d|>XE&OBN-Z2|I33iX$)|lc1j!&Aq2;w%= z4m|9DMee`PMv7rcD0u;8(kHxsy|>0}#A?LIqz@EL*w~p^nHhi@EXP0Yt$lpM2R^>- z1Ai5S8>wSaz^+vA1H==ezr15&ty^(QWid>fsd1V(rtk~|eF!U@27r?Dm?*`C-iU^I z5}+;(53>n#D5&uM1^-$s+vg>>%$Tpy89{@`Lu+D@<6?CwJSZT#<_DM9ja3a*)68LO zR@G)rg9$?rM6mA4{n&%wkK&^&OxG^5~Uhrh0K-ftm@ zrJVUXP-da#lZ(vwB2_D zA&cZ9Ep}`tW@4@_VMpm7tfJPgr;}dkzF6IaGrZU|{MO1)S(;vbY*FntD=j$i{roi@ zl*PXkgw|6+b@d`3KmXFfiJd7j35g^a)mjrZ zN%dRG!aRF`MB%J+Okf7+kCU39BHZG(fEOk_8@8E*pSxy4-1b)b83~b~dK57vVrGJR zpM<@RDTiAqLs1eq$5ZF!BtD~)7=8+BV?cK~nJr%P;`I|43L-ARK!h(Bz$s6$4@JZ; zyacEp*3asa5?XRBWH48carwiW_~+&pARYAM%SaHkkQ^q8G`n3k zDI^{&ly|lnYt0SLv#+W|DGWrMNfGJtQpT~@#0gW?4O9)w)GN_U#5W8bBy+#KnJp20 z!?K8EnrA}f&uPFBoX!;ilg+z(W9hpWhHnFTifVtpj_tj==xg~b;U1%Oif>zE@#x>q`<{KA zT?$1u$y9a;Fr9}fXOR9rarr|S*RurT)2B(=e_am!x8D9=+h-iijQVVB#=s3U4h9A$ zLpByRgMXTY{vi0k2iXVy3I=ED8o<{fy7z_DJJ>g_dU}`xefU$2uhR7CQVL%-GBafe zz=uWJvE;>Zcv&6Gv|5)#CI2Jb5?H!T1k#R*=N!oX|ei`tJY z!)YMIjGVn42$H}*%h*^|4of=`^%fRJo$1aeHV$IqT_F_G0ttqRRL*+yc)39f7?ra*;KT$fTD`7qOM61n+c8TG++ zSwChL3Q4E5Ml6VhCg}@uo{=mOR=tQHvJfRAjFfUIVi^|iJWeE~#2#fCTfeKAM5_L89r~^F->IlHE?^a(8wW(GCK{~bC;WN(zi5MxlY!qET?@P zTD;NRsK2eM#N`@URu(Hipw*+gR3C0#^z{IJ<$F3j*?ryO)f}blBYg`*(?Lf@X4uCg zm*ar!F`0RKIfGV=Gb+SU8}1afz4lXK2O**x^7jw&y<(!o)-Ku)L40~TG5emYk?S1$ zCrhta%UE+{kPI^mAB+TBp-h%{@DhBej_4N?`cMh}Opcc^@1{3tBIt=SAKxG4qu`wz zbiVS0**JrFaKxU@9##g>CBhC$%k8gxBx|_Clh<3}f+9rp0+igs1+IP@{_Ay()eh%? zPmGD#FIGoBfr74J7dWEU?dNQL@co$Kvf)-=d)T+u-?hf3!v_1{vVv^T>B$edd1V=b z1DBR|29Y>%c19NMP3*v%#Lw$fXf89TbE$|JU<$T)dBW?T=5C($M_{HT3|j1RRL8t) z9K;_Yp_SpW;1eD2e6hSx=(fX?!=}=mn>$*e#8o?D+kVOVeVbA6rf}^g8OS~WYZbbZ zA%C!-v7^5*zKVWtegB)PsFFJ9^a|{Yp&l`U7MHcG&KG_Jl zAcBju5nIqXkS&!;5;HoW%Sdjb*URYe&!?r_uMY-D!j2=wYT8#yS5y90}36h z3SM<}?_v(QysHnPdWdeRk2B-ipmTqF!5T6pu7W=%9g?u!f}*qUd_tg3&F}5G|_m~93cS*Fx`LE#ECQHaCzhKCp)snHL7X-bed?~DAMxpY7S8*|@uZq_q z0+1t_Dybq>Ck^W4P-G(7Ml_r~c$D*hsD0Ju@bxNF3 zW+9Z)I)W3Q{2X}oRubK#i`32T>gnT17-WX zrL`+eF)pb^Th>{Qx)(T*636u#NSZUnY=ASf4!pw-+bpZFxG$IUK0mcf|Bn*C4Yl+G zC(u8n{)esVe_6!oGqJN7u(GhTuo^P3=rQR5jEtE6F7ba5eBguZ1AjSVqtbuwoc`|< z0?^3zRyytB6i&Yr9OH}3%HZ+*X$(l$e$7(9d$9(RA&UYp2z2}b9so?fzyq5~#!NEm z!nA|rsH>*qimyXn>dfv&g{JZK;D`b)oF;0I+rP^*td<}5%F6fKof^QjPUY%qmbIWO z(lX}1p@yTz;);;>qPGybf1|%VQI$Qc-6-P}<~W*_XV2{4n{fol_@ltiAQP?2!%~!G zgxyzwKvXVpz;9$W$}97kR(vr+@Yl65@x@I2zHPfLt&~{aW5|SeTkU^UkXvC(!aRTl zl@A$5*|rCBsl^m&ed26xBswwQ{aREKD5g3VT6so+5>7yzwA-z+3_34XhS!BN&e=jE z(R24g9;|G*Cxl1GPR%qUqbJr7KCLw&Vg4)oM`|(vpFr97c?W!21A3tc?1Mz}0D1#(z?0KL|eX-y8w^hhrEDHN?oXONQ|jM!)AB zJyMHCVHQhHs z&vSKIY?}+HO#F>zrPYo%V3f5S?RSjGb^v!JfwOyZ%wLr>MQEt0$~!!$aTKIf$zdve zJvzA@W0wZnR)+{0R%jIbWip=(x`F?35o+rnLKS9P6FV=}kR|aShCJ`^D_YYBtDi9n zS%eb$wI|r?dj(+&B^G499o`>CSTDT$(|BVP!B-DN$5crO$l(EAWp5CIq0WnZJ$kns zxYUyb;NVwiK0ARPx=4OjGFj^`+%~RBWL5iWJ7Y&_2beX%Ns|Q(O=?Zz25#*yL>r2Lic1lh9lyc;aYG3GZcaUKh%9@a8D*=~u8hYv+hx)xOtzukXZ+k3w)KW3lAOM9hZ(~)c9kM)k4r5 z?TY0d*Ot6H{>l34!sXN%NSPs|IM<5h&JFAB%3hE&Ru=fXues-$E%D@iwix65=aTVr zJ|~|>*Wa2E-L1@K$v|@t{vY-o|E0Mb0*fdEc0D#$BQ{1hCIc1#EAW8S-)_Hr5PaZ+ z>;r!V?g^C*;6fL&kLa#XXr6dSgPqy&kSi{cv{+^eD4E z*lH~Y@>yKVJYd6 zpGtLFB^pe*wL1~EP>TBeG<(z5z2q*M;@87gA_J{)QT8ywj`{H=-(c4$AJCd!PUB>V zvpKQJ2v=&)|6R!wAn}A- z_$pJZ=vCZ(p^%(Tt7Ob=S1OvBPw0xh~t%nv8&*Kec&!RWrzd>)Wb8uCfv zP^rXK`tFG|zJf{G&wleC+m7MmV~r!gZAVpRnjqFfoKY$Zri9*j)^u=6oIQfHg-eTT zTxzDSsC@K5URWI(y5DjLstx9~uu@?TBB|(U4hZ1M8Fb5!?gWU&S_z_pSS~r8y|6+ zNP6&VKNgK;V(|s-u+N#qwaTN8Z{hCxC#UVTbV)PDMjKBUY9B~MB#gf=UCqDRd4B>m12 zDUG7T%4n|Wa}R701A@dQ z+@h!^&J*~<+p8|xp*-Nuq|CL(E-km3@RyDsv(}E2Mm0(s=*FnK zNQw5u#Po)KC)VMjhKa3kL|M4XEM2&2EuA^zS2rM2vg;AoK%~S?hMR^5sp!*zAJzkO zOla$8qLIi9uF!b93a4As%xZ?HEa|s}al164j=FKa})NI`O*nJFvGwxgvsn8?|Dz9QjwHwZx zMQIm}gBn_iZ$E4!^v^(%*Z7hwqt!E5IL)2&l2fbw*}4~rPHZ6(!y@)e8O*Pg$=&gZ z1pGDonqj371T><3YXoDMMJW$zDzqd2B$oMbD8UJG!|BmfWeKe{vOoO#OslbPeRp%c zlix=9nlY;ylWcB--V{_YlT3$#=wwao+F z`$>KIc0dAIM zUafE-9IO~@wgcX>d87+gE#HOG+Lv(|5}u=*GL{K>w^usRC*o8S)3&0@`=@TJLTs-0*V z(4rr`u|@$Pute51D+(glCucGWb%KeB#dqRh4xoWPQP>l2EcX?sqCWyqvq&IetUFq4 z$W>2FhlG-~Sc63|CAz=A9Ixv9Lgr8z2-_EdZv;tXv#~E187T5hG5{yfU0gkB)NOKw z{Y89cPg>6R$o!7*kIxcXRQHFE-p}p-&`HwMHv+I2uye2in3x#=>>Nhy42=KSN&5JP z5ByUnX+Kpm8aTf1djau82%djL)hI6Exv%V+o)bc`X6X(cM(_t~mDX}5=BOxK_uWIZ zsqVxwZ?1~C=O@ff9w0k7BbL|eT}yu4+jIk`$@so5rP5)ukscEc>AjocEGN|_-$Ef> zFsr>m>t&C zxDEF~!GX-#Jbm)g1V~|1n_YwUwUjlspZi=L`R+&qQ;jR@O|`GHzt5^PfM>iu-#j}; zT0B5ngqAyrL>m60e8lq7&i7?nkQ7`uG)*c+vpgrka8=9diSDm6JE<9>{}8XEUeR`Ds^=kaB@-N%rW-vC{#Y5HKeq!G|Fz;{(LIJ zW_!;-RbcGno>559P9U51d#RTkeZTOS+fHHt0aeGMPT42-CsJ@1kHjUC(?<2XVxE#Z zmY8IZC17(e?#TJ(AhADT5-|WJwvk_v3LsvD7Gt*fK zLsRZU6L$B$BdKn>{2*wSOQFzJjUjmE^y4AGwD%27L5;n46LWOBGO#n%8KQ%)1XJuG zf;(;CK#4%iM85`Q)GTHla#!lGp7mzCPMx64&jEMHu>B+=!8gxRN)^)*rcu()K7jD6 zc*pgpIEL&+NT{PGdM6FI`A?$WPq~TZDFpnv^!O0CZb>zQiUN|<0Mfu|g%M(ON1U6R zo7xt&Vv2Sz-dy=8$-YFnv^X_Co`kAUXHDgAfFefq>_ick>y^k5@Gt6c$n3T?61ydA zLIyYi_iARBu@-%0vl6A~x&0cE%)#G3KJS>F7>t!HA{^NOPAR5@YS6K0UBgPj7@D0N zjMvHv`tX^O`)6(KwSxKHD{`dx_|{=z?qDHGAe?~5Ai}^Xr2w)~h^dtR{YQ^U9KP+- z>+ptGg!%4O$aD#MN-?Wy&GG`Z0lTRHq)Ul-#OBnu+^IdQTB)~}E#4?hpSy!szII&N z;pRxu_GeiTD5QqY=f92P=cW&nGXTp=zW+gl_;0=azdA_(BSWD3GqD>PGB9v3urV+i zu>I2=!w-TFe2{(MuOtoJjJ5zCC-9=b<-@Ys#vIZa`CVX>zot7q6YJs{_Yir|D`s6+S>8gz{9!&-(>7*N5;qFO`ePcefU2fZwi`E-msEH72xNe*>|LB zq}*X>UPOD2a&qDLzBxpp5lT{eB9iYZEEuKe|G>UWR{b8T$w-Y-)crb)>*lvL@7@-D zwm3&c%^yu5!0BfP2nIk?2;c>ZbBnx^45B%O*L|x)0F3j zfohiNw}LXG6^h;ite1@t_Y9dgqGsUDYgX%_jSb;8#^wLeAdJl|qVy7dl}4mt5}!cC zzT=InCBBzQ2!u`+@{mlZ4xpt7I;Z7p$dk)%**+(cQbWhZs4vk9fb*Sv0YH&N6dQ17 z|E&MX!G|0D8#q7yHV0cVg&y13otLVQWe>=Kx;0rz%HK~D zW@01>^Z-qY8tz{gng7y$*;tGij5rt>S%K4G46H^5tcFGge=jmW2tM#Z_JP0bcR=|+ zi_HIci}BR;i?0P+UUJ2COY6sQ=i zArW?^yT*a2;#iFrKZfnxdrSHQL7TNKEQ#AA8UfL6a)!mOAe@bSAmDy`t|3w3+@T#< zd5w~TLOrGHS-_)h1PiN~s+|{)@mG4j-0uunTu>H{rE*iXcuNnWq`%w^rd()F#YIU1 z%Pzo&xnoD!1v~dkUaGiKBY2RcMH0urei-HP_;Glzts?QsJRvG@G>?5#|PT#mV+FpztMrYI37j28a!VSc&_caq& zbqVc>iI!82IGE-|qFOf--bsuTUQp%0b(0)k*21P8>>PAQ7{nC?PDWO%nCwO_IQEnn zX?{y^sAASEKNfdz1*1a1&_yU%7gpptbCzRVuy1!zESd3XOMR(4F6e1;RsV^LF*#PZ zA^>O?J6P~Pj+M+-)h12Ea7tf{fT5=^I+!;AF|GK6!_5-4_Qdl=kOl6rG$X09G&5p%dvrD6*P=(vZpy;N?qGapPY)6gz-XU(d*xnH88B zfY+P=j6ikz?+*1r@PQAq5B%j&6aV|w_LsQf)4Xft3m|sV$AKp(;$fdm#L`@=!*MYI>3)seo{e~LjkmScX7a~I|X^~_8$rI99SKhw$X3nD(xt`Ut829y4a;OUrbUN z_uJ@%`jPk}yjkj)Bwm<&lKi)o4(}9NwHVQx#$gL(Y6JC0!zRsl)XF%6l%&rH$|f#p zo;1dR+D1Hj3OCG_zp|3NaE-Z=z7Z?cBm`O`agaJg8t{_SY2DKp_0OllB0^2w0GG+1 z!S4Nq;dx7|Fi((SpIqGLONTm$jYDkdK`%zhtc{!7=e(TVZydOO%YoHn>kN4uHFGsQ zKuxBsq&fHPxc{LcOgQfwHF8jLs7oP=&TeeDcFCZxHI1;$KYjk`xFp}W>CZ6u>q`4a z#23PNe{AD6GsJ7DRE4)cj2z2s2xUtFW)1M`0x#cc1JM10To!Z(sMT>GRj(wt;%TiO z1b&=H2UAWq{N!w~Zhu~H6It4tLOw{Lixeix97v<2*21@uto`(PuBpxnbt>mfFYR{# zvVNd$@aO^7BMB&}e>FK;&pczj%F(;sIhhRV=*0uCqX=MV_;QyBA7MO=W*`Jco@Mnb z9>xD6?Ja}q+O}9c#-*NG#y|BA?aAYCSD*Zx^6WD9@`P z@&4iOF6J?J28eRp4GSS+!;*rdR+ht>#Rj$-B1O-atacRrhQso$>e zoZ+Ao=+Gfc2xY0&U%Zhj9PYc)Al;_h$?0RAMmPBws)*(ld)!vN4XqI%J`Fr`j=y1j zZ>%2uHR|#;+3$8AxV(}@jt(KD9T*y_r0&+v4SUQpKei@ZH zDWq0WwL5Wt>Y8(;eaUaGg0r);M3fOMBC8i)jv@|fk7AY(mzqKW-T*hZ!v~9rJ`J(I z+zFa{U;o^(7=~ipNSsp)SsPOCjI21joKRi9VO7%}fn#klC*0fS`J<&CKf_sA=#}Nt z2}yZ^aNY#ND#2piu1%Pt$_&oI(SgHg%X=3&&H1NA*jNQuDA|+uY2&PcIefWK1?mKx-2M&~!CJm+W?J~l`A1>(C zOZa{Vb>S_?+Ie@ZtbDWSZq2dshIC*@;peLLUA)k{)u?rQN(4$x>yzZz@m7vgW+q zAze4{!r~4`_>uRS=1le|V6;^lG(})8zz}K+PayTRlr)mEN4fhEiAFKnrh#X$W+bLr7RV(vjAX?}(~JUj zryYF?rViBS{CW9HN9{`oa5iqKd&`dWu>^9Un21nDeisboH{Ww|`>T~b)B0L(O|)|! z6VIQH?-BmzS~r1r;nM=%j9-+2%kOV&1pa=lo0_q+gW5M)Oqng%SXo%jIsd|(f&zd5 z3I@U-YyDJz%_Wl?%^%pv2^-eZ@}meBb5QYdf#NQ~YGyA>-^l)vq<2{}DnSXuZdLL1 z?h91o16r8!vs3jI2Ki~V+g%feX~XZAUBq5yf0Hv@sv#e{G{8jZiEG7fH_q>2tgjs1 zjFizxExU;_$C%{Z6`!*j!afSut@IF3F(9akwrt}60&|fMTEH0--7!iGASVE`RFS12C} z$Ms?QKylUv-6xuXZ#w<9vYiA0p#ADBen(Nncx|FBPc8vX;9}L{NsN*vccHFptZ%$A z*gfRo?LICqaP_77;ZVEcH({~}QH+Zm#OOgVzABy6K@=@oNFE*qm$0Enh^iT&4t&9` z(_zmOvhM=t{sXDVO!2TPuaCYVg+_woz3HXF*a9AAY9A_fs7DPo1*6!&Fw|GlRGdhC z`_<1JC0ib8!QoSp7KG zhw)WhXxQYaI}uvv?{6`F_0MVJ%te(^`+7rgS$ z{oqHg04rU99GfI|$cH+@yoHtbQHJmh_26H#y_AoCq9`BR#YmLeR{=y@@GnE8lrmuT z_+*RQ95@CbH@)-#)06@3oDd$RjGMfFJjk_&`aRnkaEyx@0Q%!pu=O>#&9(n{umZQ) z{(nC3YeeswJc6hOtTJ_R<-%y}#|y=JB_n-(Uv79=AK*IKZ8Vs_(7>OKGueSEyy#Js z{Jt1rhZ5-t`kDha`#hP&)dZVt7hME0URGs6)R6LbWCUuL71Um!&E5`6p#FT}fW{o` z2|I+#PXjU(a#2eKLS=dpdAaIn3%nJ-?$(4%3t}ob*l(Mr?M>rj+!`cI=1WS=_)O5G z`Cz6CN4?U5R_uO1zkV^Y`k)`-KshixYL@@=d4C4xON3N)g#@(adyIK23+sN?cqR8%0!bV;*K+7w%}MUrUiR`{waJMteK>wnCQ543ZNRr5sBGZx5PbcJ zMZQ$Ne)inkPXEm6nnsTG8%uRVzollYGU^r7 zsg0PA!n?_~oJ`*-(xwWOtkLd%lZw>Sc9feea+4ApKOA02lFNlW33}hq_&9!CN4MSf zvZ<3^u{z>b%HMR0X*=RhX_D^bgK)YlLDwP%zolcN;2!N8CmMg}D|p8>cm#Rb>*H1y zAm_AhjKcnK`zcm*I0=QvdV@$q@ytB)8~9hz-+|GRekx$qz<)tRLtka6iXy31T!mqc z%t)#!hU-nF%9y_UYpQE(|NAJ_YQ#4%!b@oPW=(xgwuuXZXAn4uT`0@H*W>$d2a z;l&0X`H2eN>XCJ+{s~fJHHs7#uDj%bfux3-1%h=`nVaKDSCqIGeEsxOy$6heU?{mU z%-_-YzsQLFzjRIs=d`o8wNK^R<2n2?r+EKqJWny9G`7dOSGL3^>cFi@Q`*vUBfzna zZ`GB-7gx~RPkmv!tclyqwdjJ{$4z$F66z_SFBf%r+dD?ir$A%CtZz`loGMhG^0w?O zoJD>U!Rb?rY$TZm)}kt+UYj5tSsmu5eiTEr_HR|UE(@zvrUahcb9ozRW7)2Q&D3P~ ze$o8c<>B0u*LH#vd>X%28+q|jTw0uhZmM>raE?ma7GRMdn7)k?m;!C%ayY^~zN<6Z zGgkJd`(vHEODr6cJpDK(#g7*_;9aXmEaO_Zan%Zas7@TWT54q1u?RJ5nQ{SFY!59O z7}?+YvaX;zvVFeSFQa|J*qL1V*#GD#BVwOGIlm#lsep}bqiU$^Cq6B%~DW|Y)%NNW?lXe>{apMpjzKJJF+-cCF;s0xxj2v{mxHP> zM9NvAX}5~N(2Y?U7Gj?J!^4SY>Fe^%O~`_>S2vo5Dnt~x$qBBh*y7pTX(nK&%~@i6 zT|=ukdA@qs2)4uS>6`CCMf}F#vFa;st*c4>cz-WCE#NwK;obin%(4%LpRAjgHDQEG8IeT{|25c^X8Uojx-Uqr9@XBGc!aR(xOru9 z9N^;g{AiS^zlhxQFr>4}<&+!kz5jgo!`JJJSjTD2oveA22Z7UF!`4}U;n8B5KZzs^ zw~U~I{?5v6-c&1vt*NJeBwXpM-E*^IHMck3JAXIEHPk2Oi8~7SDJL>`w<$!Rx14$) z`tX*7^ef#bi62LC?XtTGm9Nfp3UXZ-abE{u0Ox5iVUUB8aCvfMzrAfQ-C!QQQL)t) z*gpRdQ&lmU{``8Mc%2(~8IPe5!l@|-T{I07O{=t*_w2Q?tDTxEsk7m%N+kr}%T=i1 z@atRUXts{xv#4_xX+)ZnFq=vWl<^MSyGQ@7%MKhbRWfL3>_iVmmI7tA{!k*)o;~p* zZz7DBANMW1C&twMB=kEOY+Zzf;$Vp2@5piQp-r1(4N%5Qyt03FWT%9Xg{b6-D2aiE zNAv-_saRk!wDQ??U%2OEMwNOmyl`A~+KDAYW((pCNx_i7bxFFgdWx;^MM!~sTE;u* z0(mRaJd!C^8+u`5+w_2|gWTM>{&CI{+uMf_m>iFWO=ScJT$1-zrSv3bC(Mu&g$=;r zELH~OYFg~*B;pD&BvO4~6M=ZgH=Fd!XZxhg1YXyJ zfwV}uI}-{f_g8l;&-deJCGtZ}!zs;Ag#luc5gkuR|M@|WG{Vl@1KgW1|3w?`f8FW- z=F?bM0bFdXtXw?oz&VfnU35E*)v_IaLf(2@M-#8@#4gLqu0u!Fhh(Hj zzFYx-)-jR?e4=bX>lk~Jb*4fM6`*xYgKGl(Fvh0zKFnbL_pvBWs>{8xg9GHn;pIZ& zml50GnAq3qGl(=(8-w=7B~>jT1yQ-#l=|tWQk|edwJM%Jn5yaY^bk^L6aw8jaZl=@ zHf>R(P!4U26f76qC;@HCH7_o6&4;1t1mZRpu}OQP*wt>w7~WXZ zf%}%D;wk$T2m41F?#<%Ue(K{yB@_3==2zbxHsb^*k4~>3KQbrz0|?*N2MGe+(G)x` z>`JZ0FM|H3t3Ad|t1R4CjYq$82hI`&rl1EC$}R~|I;)b`m`_~F@0hjXcExr}q2p*v z-lzMx*=GHE#2VH?$|g4)OPNf1^6LM5^Sq%m1L1~GAod{KHYqnAdRGOeEB^Hsds|&t zeL{pV0`Bt1Ba}@cHT4RHlEv>ADL8w$;+6Zw7KJ9mRFbwat+&h_?)I&F-$c{g^y5>R z%N|27Itoj9BRu{F8y8BmI{p}ZwN&iAh#POuCgl|$OXk_lgtM`d8k}opOIf-#WDljd zPBILSmz0A3H&wa@nBc8lqNTdS@C^*K3Ss788%+odDeXNiCAP{8EV^)X6Muc$aGU^y z%fS$Hbuw)1YaPn2nWMn3_K#+!yo9+P(o7evTzT``zBbn%4bBblzX^10{d zwQlSbHlmY!$00Srfzw^BofbA7{+ei-Q?(G5{k*gSoA3iHK@Yp=$|M+8WkP z!9e&Uqx_YSnM%3f6wZj}WwHAwBh$db-Du92gmUAbdrDD^T-BH?X>Isx)z@9nU+{^M zX;4Z8&2Ne#6e)aPB<(%<4UZ^1KR70adXfr|k-@}7PsoR5@MsILVehUhfKq|PQzZ#y zU9cDB;ZS$H7I%$ZD&B-qLqWJHnEe`zurl-jujl6$%jT%&e({y9PXN~y<|PiQ)rneB z_A}P<)Aw2&>e>QJzO!2|%ju6(bP_Hfj&2HHm)R=6cUIkgnmW`3GBQ@yS;H8tg%L9C z6z{7AEU|%%j3i|q!PjH6D6%fost;S(K`SlSa=m>L{t5VMRm-B{&tQEATI3%J`O{Et^xl;N1O}3_^VHj5H=O(b-G@r=nv;cVh4(bRZ>oR!f z$_ZFUtCwiT47}4o;HqC)yI|yNe{3Og{TjFwz0vm%N~Q^RB3&obt$)k;z5-YMtan+% zrGCqdMTAJm%4+wV+sJeQcS&;T&iim(eBK$c2lvZh83vCM%9kK`5G4~SkEizPkw$Qm z0dsTQ&8`b`M*5on(-5J1tj)UCG#MEgveKg}U1qQGE>HX}91;uY^hK!KwB~DXPs1R|0goh%mbaBP&|-sQUFmcAbgYRG%RtZV@KPZ3Lk&ZOcd`(4qoO`t7mSaC z%XovrDW8%5h*02mVgH{jHj-E3d*p%gFz?BM%l2=|Xn(s$I9WJZc(}O%94su%+`z7E zZXPbqKkpGx01!aIK=@;ioa)$tLmyFL)`~(n&EX5>OMv2J8nai|(_hu9+G^sqUb_^y*VhT}M82CH++Srg0>= zCe!UnmqrgDncEPZPP@Cmp%>y|RkhRI)Rm)NOoswe(k( zist+g8&aPUSK|0fSRm;h^r&2@b$g=v(=MY$mnZGycw>euZ^ld{AcGmz-gu$9R9+GS zad-ZQvX1S70f#~r3jQ|3*~l}t3o80HIf>h~k;Xe9Up%T*!G*v>&q6i z19-7DDc1}7D&K#O??Uv@Vpgj&{;nsS^NmCcAw}5JO<+?%?QL6L;o&!h4@0vTmW|%& zcc&)q=VxXb`;jbVS*TdgT<9lck{o6af;T?&M&Sh~)?K3By5&Hp*a-fGy@B(^ng4g+2pwLA#%hI=cH(zsNvDq(lGLCdmP84w*=$eG<3VXdz|r02OAS56i-I5 zQ!MxWo&8R!8T&cjoJCW%qrJXiV8>|8(e^7{1EnvO`q1$iCR)kPS40V2GMgRo*EE5h z?u<|6L&~j=nT89T4-Y6cDn&gM$qY!zPpzz?81f!MkZB^mXL?6#Xh|=bHy2q_wd3QIvtFn9du+Bf5Go6x#veNs*hznLd?HlRH7v zotu-D>5ED~f};$?BgqdLOQ6b{Y%1BNjKaj;tB8=_*J>nkkz@lCbcwTro{K%zvAi7_ zH)V5Kxp&f37=1&DvXT-6+?FVepmlwLM#F#&c7I+Ar3><<;}o7_Qy1t=1 zbF39|h3$3gLcUcQ9%|;5wCFV@0!wNZ#WFN@pR;tcr8t*Kx@7!#U)lN%q^50N)B`(* zHZ6fO1LHZ5b-{YI~yl zZenHzv@18`VE#)RJtzPOpkN^Uk=u54>T!fksmWklf9FQ7yC z_wZO$l9t4HVKBsi#N_BVZ*W11L@+za6jOy?!3y;6o*v&tK|k;IE5UgRje5YioV1Iq z%a^Hlzz0FS6ZS;t$^D}3I7~ef_rQNo!}C;ZoZ1Z~71Rf=!i)-4q)*dsFN&)YQg19` z7IyfVEfgLS{l{h83p35aqhzdml8vPYisX$Aw_j-Z*5M(GV&e9ej5CHLrQC=)qguT$ z3zS0Z>_%q}QtZfT}Gf#o5Lq zf%Uh&6HEwpD@59T$t(+(y_~sO|J7oMB3r0M)Av{MeU8Xq?1{)DX$ztk*J-{)PKuBO zcXZWVu11|1>^zZ|=4X>*SA4mT}{n!6EN1R?Oc% zyHGERG?ccH>jp2h?pfwIwW|^=hu;>sE}x2G_VB+WdFmS6SF1e5D?%&kV_UipY4ASg zXpKh_A!C|TE?3Hn5cD>W?q zqF1!nv!eOTPj-_a;Y3GD8z&Y;9>`y~-aTS9+)We=J9{jM(2Z?kOZfI^J6l;J7ca;# zkNSlmd=XVhN!51NQb0h4=y!3UD8fYYyhJ~nC?UMp$6>6W}=`(+jl+Km=W z6nUyuoD?dTi1+=~Iuri`K1KT347#CGtxJUsPD3g7fWZI(Tov1q3Nw$56x|)E!x^GDN+232Iu?TU(rKXlPS#gmj8@WB+_wL3xwa}gYN8hi{c1>RLwcqY?CdFc+?1@$bDF>OYU%TcLH zIOFZ)2IRLYd`| zPhItB-~#lP?#Cm}H!$TezF{@O$aZJXTM6tv)&H}=a;YUCLw)6G)KwdkTp*`SA>aF$dPZ=vsj%LpU zc!~IL_0LVh`HgarU6mO| z^}wc0<_oKf)0QWjw(#)#O?wHp38>NH%({^_oJzst-JVgI5vx5F_~gNS6X0BP)`GgKrZ*y; zuBzcTT?}2wyITC#p<{qS_8^h#yp3ugV|D>n0euunpiW93583d8?hNzvuKG7iWSWm< zIfLBJy)MyHxZ6t$o3yAI!xfHhiHbtqj3B&z)fHcx6!1srWbfV!Eo+ITYc}&&gx;MU|>pEmpoB~%v zNU{9V4AD&OH4!UlAaq>hVR84K&v+pPw+UGT_F!5ucH@boz{*9FB z?o6g!p*jEQp)T_?78y}tE|5@~t|K5wn3S5K2Kyv;6`iQmwHiWU809b%Ee}D-W8xJ!l^Iv4l zK>U|ml1~2)K zQT`n7v%!`{7N&j6*loWQ?qGrzt=LRjjiCzWtX>QnCSfR^?jX6GasBN+ zc1);naSS9FK?#!CVrj4777Q6juOQExrdjN*;Bu>d_ozeJPiLEFMbaR=@yoLTn^O3UHQ+ME+BzT;i^1Boo;nYd zrZbusjwY7>;|KyXm|Gg*3~6a!S&J|NXF=y7 z^iH2Ag+!!|ig~O(XU8O@l69t|!fEMV%d{ov=B-s4OB=n%{BKv&xeZl*AIFbXXb~;v zhCI^Z28Y0NE z{HVrcakFJr@R? z%7=k=d@LA$rJVgs-u(>RdB1D?^R#Rt-@L3Z7o<8^t*CJo_lGj|0Bq~*8sw^3s%YMy z1qx19#wEn7RmA{4y@?6~C*|ksyB-mPrrA{$n41;@Ug+FB{vx{!t@Zm%iywnCy~c~b z-1HouEC!#_Z5Bj}f@20UkzrpgrV|m7sW>Z>&_Wbm<_zNqq0BMEx@$O^pX`Yrd9a-6 zqcALa0Xhl$Sj}YelA^Ij5<^Pzgh8o4nv!#=I)gv04G0awnTun@Koypi(9$_kyzX%H zzoiy`BBi_z2*|^jjc1(&gJ3DaOQ91b@l}9ojpI)!lXXcXFA*!y(pMuG70@9j6Ea*_ zpXe<>-p_PbeV{h^dCc%&96ro4XZ@4moo@Mek_K>znL3m-Qy1;I!q6zUijnA@`(4E0W3#bNuuZw^8@T2v zJdaPDr!UeKn7g}ZRd`0g;bdJ;7W$rqfBhWGw|IeeKSKYJHy&k4cE zE};(5lRonKa~@g^A@pH$3eDFptkN`uAhaG@OBSF8$qjJoi#u0$e}2YcO1iB$Usc*% z7UBJwGMSj@E`8MWft1xt0sFVu$umdk9cefOb}Rx4z~}yIv;l>!wt(Ow*DVa`vs%31+j8mETjw+h1 zO7b4Z99*J#-kH_~4NHPeok{k5KfgA1TYIQ-WqGJfL~ zR?o3(&gxZze7%>q)cHs3SCq&a6cl4eT1z<(C~5I$xU#83K1|L5x)}ZmO9g46>Cf!@(fSJ&8IUIP{x81q|7&vlgOju1 z0GODXadMlpnQ{UE+$i1pomQ41_;&AJBl;VHRk>3+mWLk0ZAN`WHy?LVfOr z$&N=`4*rtGn6t|LbE47y$bV2VgQH1wu>pXpR=jY-vwwB*Ah>a6*g3=gf*gmDM*5;W zi%H7r_c4P-A3PtA84yM;$&-yhUch#hID2h(I5AF(fCqBmwfKhvul+wAcs~FgcnALJ zz`NoY9jG(#9zjZoMp9`SX>Mv^E=C#G8yrcDDH3ATwV+r|(ld~D?MyxVq&2~Ag_VDl z5Ggx>3yxsaNeWi(SYMZLg)2lVXJ;Rjz6wf6m&dErf@Xs-r zeIbUVFB5^|T4x%Q;w0cV_Exx~)ria2j7WHesc2=9PF7DEO;!qvJ-(5FeRlEINV1nY z%MM9?$Vl=eYvf2`w%{j|1=eipDV?;!VU@uh(rTk9*pQE3&F6YGK2G{Z{z4?l zVe`<{kiU$VLb9}mS>}_6Q)K!+S(@usok(GMh%#5lX;esHLY{oR^DX7Iyk$gg-&skp zbt6%4C7iV}d5X-m9pSY)5E-i${!Oobqt}=C3jg=IsCD51i^Xn%Dw6ZW*5yXUAPesgUv>#kMMp@nFJXSK)>ANJdyh^Nolr#wzCc%gNb{nV(22xx!m95I>bm6!$b>z| zc-t*@DH$TWbRxDHWEX|nDA)9KIzaWG)00BnUw(1}-SYuP`l`EP=%iFU&&fWi1S`ceFTzIERp=Y4##8-CB- z%wxIY{QYbnJJ`m`lF~gE&&l}*X-AoxEGYKmYsGb0GH*KJB>frZC4>Ueshx7A`Hx+) zSQzJ9LzKzj3txE9dE~>RWu1;HfI*+wXWMdhy^)!eW+D&uA&`rJ6zo5VPLMGeM5-l6Xjn zdoGiK!OP;;_M(w?8kK4{J8B5@m#eOCy>?-Hk4H?ys%^Szs)%b{*9q`mv>#S%X@B`y zW#G`3LX%_``}TE-FT@Fd;zPTQ*Lhk<8B3NZZ?~m+Yt91h^AF##&@&k6kJ@$6sO5C z&KYqUj@;of#MDL6d>yMo92=D8nlG46t*9+-mN`@WQ0=Z*`xCj7w&bKE`BUY`wch)N zR=bNwS5vuH_!3X28fjy?*oq|B9)^oxe*BT9PBa87`8k=Y`Z3({m8lgq<#SShfmO5a zqt||II+@#^A#YJ!sx(bwMMN<9-8J~KiyEwcJ`~^-Axm7e&AZ+tAE1QH*7qyEVqV6Q zL(?Ytn`ndSc=(p|H$pkFblJ}tZPBjNtU#w1+pv}cJPp3WPdw4ZDn+t2tzx(#joL=@ zgQmHbiY0IZ{tDcqv|c$(NrL;6gbnL8f(nP5ToC$TpXRp z9k0L-a06$$vfzTjYw?MPR%(Wx+J+&0ck)p#i#}YCmc(_!EQ%ST237jKHz;VS7R;2u zuWH=n^-BVS1B2s767@z~3jR$A>wbQB6T5xXDzfRp9Gw+K0;NI_cpx#@@WSUlC=yEK zY=C75WtbNf$s81nw`f?4I8eDKvc5(Tq z;u>3#EGcMY((k{t1N?1jWa9>Q7@4qhFmtn;vU0JRasW90BH;-N0K$Kt&y+bt{Z~5x z@;}9=mj81=6C^&x!Q^z-!IvwP>zfKR(j$QrvP$g60<{C+f!YCR`5}Sr0PMx$@C*Y~ zWTufs4V$MB)zi4tkr?90@(B>MNp)_3k+S@tLd$ZOF-B;vG-qX+*oguZI$QF6YTJh; zo}8e}R=((Au-qHo-g*k6PhW@*w=u{sJPfPbKsAVgSXbcq>A2$~b8&t#SM@7&;bDsLFlR+)8wb(yA@Dj(mLSq^|A*>_loBhh(G5?Tbn)mrBEG5OepARe|`# zY;Tcqbh>>;FqxWUk`N&kY+H%Qix+cDN+7JXA5CMbDDzeI`$}zdxn8gjhBlTnEvJGs z(`$aHlr4=~;R|-|xq6ESw@=VL1obU-a79<*m=eVm+jg`Tc^J!7I@KO4!R+(i`Mq%6 zNXg?D7ZOmCP(~k!f)cjPOQ+tp=VY=5Mt6aa+(MbQEztBL#X>N8ww$m%1fc_w?AT1Cmq zD7!|O50ut`WTVU%&4=@PQi?!sYcAJc{el}0jQc;kMt4Kamxv`2MPg4rj7}8M_a&b* z8AFF)ceN8xXThh)GMTiz(cqrWf7&Xg+2g*b3t8P)W@gkdjHFFTQ}GX#h!~1iiC~64 zyK5gpeCA!8b+v6eQdB`{y)ouR3ZjXW?4`*GL(7NjAuKj7C@=fS^j>*Nx9Z8)y=mpE z0WN!+B_U$aiy-8Wu_B1VK(0fjf!S^k0^}Ym=J#Al)IZ|WO{0TMAZ4&NenbB@U;*lC zIstVxd;ieYOshIAL5m_LO#ta?VkA*u45cXgfZ!Y^spdp-aidM#_Je!$mk{ zy;gUpQV{>w<64sN>jJ9QDy2Tut1_?-O%RrTRnuGNnH&j>*j^p!R#Btf}1 z2>rq#7oVc{T^t){_Zx4&9hhW zB;?34QH5@&d!s16WP}^WGm+?crEslhBA_b^50SKekw-^Z!Ro^KaKLy9u`$s~HD3ml@FWhy%c40u&hhb1%!k*^~b!risCf zhVdU_nt}fi)1*?+{fC&Q509?uF7gD=-72cl*ve^)Nt%&ol4$HWU$1;9%|rHfUu{5i zO4mu2c(ii{9A81p)tJ?^-Oj4a@92afQV8d85t;OOCwSV=B;Ot1g=lf(Pm3C>g1PXw zS(2AVG$h9@mDS^L!zQrL7StK2ZS2&>h+D;HquUAr7-A zZh?CUTwJRCFznS4^PD4u8`gnS(B%@G;+tGKS9mJ`&8id%OZZx=detseL1fKL8#$*lzvUovn2vb?hGT`d+{E4v;!uXmXA z?g9pQUY0^Rg#yE=06Tr@r&tI_{<+zR6n1K^%D7)VtWI5G zJ6)d4a#!2^ORXMZiTdJ6e3fPaq^up58Km-oQ%GqEn*l0{#|h< z9nJPQa3#}xFoV(*gKgzL)j8rAB!`2gSUv(2n6ugi#2w;#G;QeOqAS*)tml$ni#L5z zu&rPy_91XX0J4`9goB^q+a+JJAu|OCsz6eKA0vxR=_N3i8yT_i3boL_Is>Hw=jW{K zW_$R1gnK07W!(b;N#FI=i%EpfOU|5(Dhvc%X$H5}wc2rp&>>BJoPgjC{n(xzBoF;= zq@tsy{HGn?x$3w(@3x&qv420muy`9-pIaQo`8JB>2f`}1g2iNqpqc=KApJ04`CPM- zCbSOAL9KuZvPgQ9_W5HMJ?Y0|bmcs>9hq+Dk2W}vet;wYiMd2nrk=&H3hFvHh6w?8 za`AgI&&-w4a0RvxFTZ$dj>v`iEq}A`If&20C`>x%!XjDHL7uWvL6u^jJ`HnqK=WoZ zbND6s2`W&BS;ywbY-bfOmzf3MIw5{PlJBDVf$gWq$d$h+Iqk+;VyGF#3+`)@#e0kG z;$fpXq>MWPwXCjdnpI8*)3Iu5FlDQ;?Ha#&n75Ws@QQoX;pk76hy#c_J#(0=xrqxp zQzQL&xm-wr7GW7xXK6<%sX6|mhHhxDv986)aNSZxX&zK?8C1*3PqO?h^1jmNtVuN* zr@S9L?=pC&3d@{!eMrSD5IS&h5zPMeG3B1ReyGLzU4oL`S3*^uu`Rs@QNj4sbV+u9 zP5IdOvc1;v^go2;+$)xZUxsrZ{&etUjIQSzBY=S&di+1^L~a&NHdYH3pcXloDGz`Z zxD(m`a`1oxfB*^x!vE|?`SrDW{aDJo}{{>8Jgioj*^L=VDcNC-6_?$cqXG@j|z(Vx_K29%`{VqcGE)> z5lN%KC@A%i*q3Uh8c(ye1f8)7->f~KEzPsNXnqWz?y~e9mJl%%?Pp)HUjW2`=?}(l z(pRb_G`DR(NbP;G7jgA4;rO8l2i?(ceUEP*4}(1r>IAycNJhg1L#8Cx_YS!(ux$Ot zJlM0bf5paR!#fA=>onSVE30o{Jz&(CQptLB<$k7q_nSo$H^MX%13JIcEZS1F_Q#EH z@f|`CVU-rw8Sy*wI6Rzq`$xB2r`O~1XUU_t6n^iY3+t;bAEdk89im_zFffFCDpr$+ z%nu#-<1bwjiHhETAW~=$bw6Z9yk|hY zF)#XB^ci94>S8T%Pvjkg8LFg1A$M%z;lbMAu}@|7vw`c=lTC3CF`Lz9h1+`Ru-T{4 zVDpsWclMzV)N+EYvYiyO(aeI6#|O@hV;B|{?Cd|3 z6*`l7bVyh=Zq1zLW_+Pa%0rPl#J*Dsb+ol=>PM^39-t3?bf9q^o?O zm&}s=Xl(hpXtA`tXKsYQiK(Ebw9IQ$;ibD{grnaeV&JwX+)*su0&W#xLTi0VQ-c_T z96H%Y3$+lzR-fA5tG_sYTry*Mh6Q1>YLFPDG<(uL*Kw25=R2IeWLx2;`<-al_9A6c zCTWQLhj-46N29h?DdKLGhT<3d?eM5WRkRC7r_s_Ga1KA1;>3+%u_N{K@7x`UJX#iq zFWyP86h!Sfg?5~eT-50i_flVZ$`H?btW$MM`>l+&-IDVxor|g|+z|9RD3!jnY)h20 z#{G)i4~#G_k!xv6x~g!!s$b2- zDS&rXgQ$8IlB_mn=(TT8<(x9`Bju^(3rlPJixpQfdkXx1gBSKIF^f7yYHaJC$eGrY zx`-XYZqH}Hx1knx=X6|+58WPCKIiwrs&QK=(Iyo2jTpaKWD}*X-E+@ATpAii3U@ngD+)ZNz=m-``%rnRR@-cY?Df*hx)WEIiCRq-2ox{B-f_sH|yq@@)6< z{O3Le_GZj@!;!!}xOT2Jz{~jRhkfo1Ebcq8wXrj+v`%MUMCT%JB_$?7RNp{XnekL(Aw0YVw|P= zFdyQB1MEz2>WJIx=x5Xvb#C|R_ny<^ z+;@zgA8U--^UGRmuRZ58pWj=C1*w`5%sA;I{R?X&PTmm)oUMX0i$q=0)Z3=ETfB)?@o@8#x`OG7jEq9;s1e`w*STu6E-hwa_(x(N&MJXF??| zyRm;8ay)BXw&k=gYCoh{7@lGCLHXMRx7CI^caAlQMn|?Sj;$UX8Bb16K~+g~io>q2 zG)0!t2|(Y!;UZWQ*k@5Us8th;BGYF~tJjcy8y>i46WG`6mhG^MSHWbE)#H4eai-ii z(U#83eu1Q{GTbk9*bWw#g?b9L>i1pddXMSDNmd4!{h6VeNw7ZVgvAT<-p7pX`x(Lc zM@IkKdOcTlmf7nlUpM7fgIimCiE1S|F)?GnDs4l1`RLk;Pb8K%$DK7;Q4B;@7ubU9 zIRcDnwVjys;_0fkYzBTA(xa}=5y!{hhlh6dloKqT_TK|n*RYOJo+=c@$u=hh=awt^4NF!Fr*Rhz)&YP9A01>=iT4DnB9nkP!_U$gc!>LB`G#zrJYPICO6di}1SQOL9a z`-TneHw!&Us<2k5tij;9Vn(OldJQ8miVUuHzERVBE7=5&>syehSzoC$v?>S=HU#Pp zs&D&d1hyn2LsSn`5V!{SP+3ac;9<~&?hqQL8{E9xgJ^aF>^*zC2E%lS@R3MApI|vO zST=%J;cqM;YH4L+8-c;jckzcC)fhImWo}w5T*G16Qjlj3eA-}>v|SAfXCD2ubjyi~ z66o%B`SAM}ZSkf;Y~!Qhr}?8KcCo|rx4#q$3q#ys#({mmChC9IJeittm;hC%Ku7}{ z&`^rQn9a--@b8)@&=WubdKxJH=R&LVhvumr>%bp1GRIrmUO-G`NjDC#4E7|&X&sR> z7(g1vqN~eF-Bb*`pfZ_r<8>TB;^C=G-%4lVI1irVA#+0t`aa2H+_uxrqW0I^^Bf_S z+NiV>A_AU~a!nvA1nY-Cm>ZY0)Ak1mj*z}(voOI(Sd5hflpFCmGSleoF5{#v4`V(W zk$yB1`dt(QEg$5!+UNoBNEu<7c}>{E$s-QWLFf9eR{F^}$DSK!Xz?jzS5h#?2VR-u z>sV`#dM?VhC3Aaso6?c3l@om+|CQwycZGp1SpV9!f>GpIzqX&~YHG%VF-YhMbsXyA{jR0b*2 zbVzgHG<1CjhWM~x|M1Dkq1qmM$=nM|qhjDt=1uX-BGtnpZTs3$qX&hg>VmMCP-_s$ z`k`)?^D1BNNx$D&YvxHQk9qr2fHmsm=PfTf$h7XLy<=;0^J>VczN$tb{>()@gVDPq zNr0Wc)c*13Ebi6M=i%0T&FeA#cp-5(~i z$zxh#cNF<_#$^ui2z;y=*G1N*iNE7;rYd!!hYRb#GV_6Pd!of=ElmYswOzN2G5;pW zv&HfkrI>e;!06FBz?K@G0(-ro*nAsN*fbg>gAHNR1;Ho1s6hygyr8rO*tAQB#wT};jBnj zSTYwer@^GZ7Js)z8z*ul7D`*EuriRbz_Q~eI0>aTzP&wKH2C~@m@T<-<-Y0R2tDW+ z@qQGQ3Z3LT5C7YL8sW&vtErxv@s;v{_8f)7eN{^Xn5;ZY81OEBg^btBLuJUwv2 zY7@yydzumvqIRx1zXj;=TFp7+B0m3~X1H>LzA`h@zSwJdpZ{RIh{|w|7y45xpFZ)| zw{F(Z8l!?EF(^MRj`*a-PI?76RSbk!HKCJnbrKF9W#9At%qp7Z<6~;ev@opl8n7=$ z)kBDVud>C#tb}1&2V$2mxkSIpYRzv>5Uzi+@?`SBcz#$Fj9!5G5a#D!T_Z&puz&pX ztG$3bo&aH#t{t9mctkzmAkABJB0s-|;=qfQbe`Q`#{=+C`zlxA8DYs2k*6HmEQK z@-Aauzz*(;Ugi37jZXh%b+%!>+a|94?fF}dtDk%z32wj`UOt{xl%qK1ot9tU{6+L z>y*r8td_!aXXL7RBT7gWaS&K}W6s!tL5#A}uUALe4JMNp%L$ycSZ&BRJTFzLFW0ck za=H!F>W{j`)U5HY*)~U)*t(A&9D0qr5sZ&{cU&4Uys?OVVm32rttd{)T};isr`P24 zHW1i>7UkF>bM4t6Wf*a0m}hRBY7&EfM!_JZh5TCZl(NbO3$HPbTXEih7&-7sW`X^J zY-R}Rg;V&(!AW$@xerXV&th$oigU>Mn@~hN6EzS*+wT9>clc_;^;5VqfkeQd(L- ze*EjS=qMb#NA<=dqafbSoMDj|wWdi-^qAxpdH0VxZI7 z@_+k&Qo07^#2VeXDz1TRmpT=IB&!o)$EEO%Y}YKFnN>uM($Cwhh}yO%3>v|ft?}8} z*q(|cA!CegBHyd{fPUYJLUDH5j9pqsDGy1QqaZ98pVh`LzHYTL8bDa=nnZ?>LaHdq zvU8QRgJJfIAh~Y$is!%`(FEK`=g2^&@vA}}xk#d&j|MywH4Wu`oEENz0}ZdhegpZm zX1zL+KIT(XB)P&v1S`ZgWLH_JHV(M5Ozi!Eg3Z1_xk_3IEs9QsgTbxCO&3Mde;gC!BsL% z4A@(+Di{sLb-QxunrE~wNj1u9!z|m`Do?wlmC*2-9RdnsW8pvI{c;rz8phg&<+Hxy zrK&D1ibrdQJ>;M^sb!x)S{wNe*HdEb8Pb@*pKaOre)CZHS*!uRcZgj+ zBm?GB#{;D+Ndi+13L*hoyA6(VRDPVnSGhOB53CUn zTin8hAxxI6I~t?D8LS%3bPn57iM_8Rp$E9D8nmCD95~4k#rAg_`WOp;WZ65sq39XZ z(lP%swEFq=@%!==cO^=^PX4%R6gb5%AW?`WymI3)Zj7F(b0< z%@y6wdJDDlBK#M>^rA|pTkvU#@@Z`(u+N`055`!L!gwY@BaPPM_nb6!PG@Wp5uqSOn$>(-gO%^fD)Rm1=!`QG)mq-<}6w2hL{()uvV zC-glY;)aFvCCDq5^gu45DvIu;y`}U*#w&cHWDaJe4kY6&gzm&3e%(+kXiR_hVA$sN zO&56Yf?a;^Pnua(i>%!RA8i88MUkusXVNnXxw>RU9%dD?klW!9nPwOyJxDIx5QJ{h zyYxLNO?~Ywu@0RR4A?ZOkftW=7AB?uR+hin zm4Fg}0+b9C|8pzQ)&*KIVE7SLy%ED6|BjbVsB~Ii%A*c!vc|*{{hE!E;A;0XUn(ju zo(niZQNNQl{@J>NwO9Dq(;) zJsdJnRzO*ylk7fi=Oji>zxn+M0(zsE@D6-3)5>i35rdG^@5eAG5rdbVd61pi zbO#=)W2O!eC5=QHoDf2a&O@j#THXsD)V4Ziqr0U1p0N@96`a{Txov>OO;8!u%n-b! zKXc_JiEy|g#lQb);+$m1Q@?T*?^Dx-1_Cc^_OmCn8IP)0O_Y~HLl95U84HgC((j_I zQoV0Vqmha;&N?sdh3k`qZGJ7j>9*7-{^%s(As^Yizf)w*8Z+G5nefF-n~#9eL2a3Z zhSa!xe4`}Zqx>yUrOpr`_-CbzX6j&X&Dp{M?58{R@MJXRh`uEizOlZ~-C?&ph&_~=xE6FU( z{J!3j<3LP^N#~y9rj}Jy2(MX_;4>}(Pf%m*EQZyF;jF7Ehe{o13im`bVI+|XW=3PY zmHtXm<=<-;Ru+}aQxNk4@bv^&6UDeWl3v`O4GJ$zHl+}|+N3qqJ(AdVU9`lA?h&&= zQz*i+>A)bVHK?Y*`)}Nx_XTS zW5?e#HLtuIQdK*K8orOAH9Ov~WK+&C#`C%Pi<~_FfY{_z`La|AG_kyyOf^dLa(*j- z3`s|(WPzrrrr9#C_*2=FHCG?JX1_s60j?z_LS=%wN#U$!kZhv$qFoMA9A zep3&I1$QC5@u$8q$}=$dVuXbzk2iWTPJATVirbYIATX$mQ(7k$QHth8m9A<$ z#ZPsqfA+5)YBL{%9_g>Um|iN37tmlxEeKPW?uuHflX)8=7+J6rD#=FE5hXN|aTuiz z8f4USd}EMxcM9+oakCo9(mf>b!L=D5ymz|rrTyewG>fgUqT*rf5_<%DRUr_!JXA&2HlLf$L&J1AT0&)mVf$|#ezs+ZY5`Y4f3>1H!NuwIF zAD5XC+ff$$nIpm5T>Z!u(r*^bup{cU<{?`U`3E_^6{(Ud#xEC$zdn)kq6mHmNVOQ~ zNRkVx>_|q869J_xkJ7==HNte8Y|P<@0bTp!GzRzXGK_9q3K&n| z;JJ|P>5Uy+!g0P2I|PDMVNZl#A>+Vv(T(9(96+x9DInBVWTl z%qp{uxUW`muUuZT%&9g}QLg0e>X8;fWiH}U#roMzy1}_Cg+8_Qe4UqX$1zvMveWWv zdkdxjP4+R@*zbG93s=fn)8?2yNnv^ii(Q}43g?sX)kI8OkZ!2J+ZSvq6(!K62Z`vqG{@o_KNWoI zTO?QLB38yRqrhX1|7G2#^reHZA3vBHqaX)h0*A5*O*zVg8zDn~ zTQ`c(M``+lk=L9SlIABaWrmyMdm9)$&MBLD@9Gx@3|ndaG8wQ8&|@#ZVM`!s6NhRElf5oat83Khpzlm3INp#T~iq(_oq% z5rR%Cscn5FYHI%T&ay^G@pHEoGn`yvgNZy{kf5*YQ-lpAk6#cYD|M zGmZJ9Pu}uGFx1cd>c`vOr{?_MqlGzuhya!?p`N}{sAEJFI5$i6hL|!vw>#qykWre~ z{aek?D7Wfx9dEMj_>k}os+atMzGXXmi7MuZQjeo&^@tW5?H9!t?bp9ds#YO7q_6=c zJOckg-uaJJ2X0O?PEIaX0EdY&D<`ul2Y}i1Z^K-m1fT#V1I3?v88mDC|1lSUMU4;1 zt6Zg2KboOAyknJ5Wcj`^Y-E-Ouugmvz!O0a&vjQVY+cw-e{!m@zjF38*1nSrU>l6{ zHD63g$Zx!Qfz%MvhFckd15Sjfc_r_@<{I_=h(iz*XQ5i4LU+y*9col_qM->VFT2nb zQwulvDMG3Ob}#zz1j_II@gZNmt|pTba`O$nOpX<9G!+YcE|_9Jct5Z7kXVN5kOAPw zk2;;O?3QKw83*jz7RynnF25{rZ3~rv?Kn=P!bv*}@$E@ROt~D5D>3vGnm+P}84>h8 z4?ggUi8z^pN&9Jq?USMu=*IPgIy5+2oS${8lqQ#CMl{GEpmbE;*kx&7**kq%nTmZT zI9F0#bf?;#qF-X1AtaNGA|C9O@VT#Ya@$CgCH3ZMkjttU9z;jhJkMwihG&qv4Q#6~ z;>~Q4s_4?2Sz*PJF7R{^a}*%^0B8`i3}_!vq=cH|Vy!5Kpy7n*A~kO7S|YOehrY82 z6+>F8Og9vbV%#glp8jiYxq8igZ?@d#DZRG090Gw(it-t2rlW2`GuAtnlVb^Zo-CwTA$6UN^&)wFfSn0f^21wT*Vl`mTUq44aCDX2d0qrO?G zvNR+=CJX+3k3UF?#bEU>fhVqaW>}yB&_jS!6DaTu%jW&EJt)3Oe&iYO4UYq+;7Z0a zq@o!JOt({C1NRtrTdw<@FLf|=5@mG-R=k1N){9BJKkxN?%3>W$9U zYScLPSP{~1MUY+6Y)@PMDkL|L#|Ugnt5Rv52EBz&2>tB&=yV=q+htSBwt8RQG8w6g zs@xeCRxI%oMHV87eHtzPH(W9&;!W93$B@#7k7duj7~4`6h64%k#iNmEr&!+M83Kjv z!9~-V9AIU08fS%K&NdeCSn0rA{=&Z39XmVN?XrzarDTPEl7jNtn2_xo%ss*PyiWpd z{qtA2Cd))ipWmh{3(U3Iw3L|r-m1#tE)!N=Zh0IAeZ{rEe2t3}y@UM zH-L{lR5otoB4JRAcS$3!P$^LQOIAn8o}01|DuoE>-;Z&dg&cF}+@N|a8{R!Klz65G z;3tGsBt&K$%%RQZdF0^oQ%(8J+DvfSjs#FIlQ1SYZL`% z3h4QIyD$}{xBHBYyxQ#9`YEX$iZKsCpI4tdeS^FEK;mb!ctlD7A5!-(9diXZ=}ojo zwI8`~vb6wbyIe7a!M3;@{USWpf@%vmV@yi1p!lVn)nqt}6pWp?l=LeX8hUdGz@dbs zau~*cF~tHEI^~gEx$r%_gSsx23%}jPD1>Gh7w6<%3MilUfy44|K2$C9e~Er7M^7c0 zITde9v{aJLQjUm5DLqGA(6`7K5-}fEN%JJfE#sp~49&kxR1p5&j?cp+La)(+VFa!> zo?wVC4`hlp)y+05i}&BhYF*m|W6J`WV(LN{wAar0s})+%bQbv&W@^IR=JKH`pH#du zz{JT`MBDKFU-y7`_2CE(W@3>wkWPK-@@cq&%Fxz|vmZ}J-c+WA<9 zroX$O>Rh*15Y#K34s#CbIcR;~Wqfw@oYAhl4oybd01g*wNU!{IAd0SEJlq|hEfRf) z&*n#Pp1ppCdXAFn(!zQg-_v*D!BVsmRyVR|Gdi@z>iJ-Yu>~}+bY8+<)Yt|x#VT`c zs-cYKzJ>8JxWxI%!S^Sm6>w9tn)mkh4D1*!1Bwh$>L*zp5iS)+Jyc)|*3^SOl-gNy zDKXfb%JKA^1yK}$c3XGXsNTbXNW0d0{Nt7br_uVV%V%F*GwWzo;W6#pX7t2g1^$GjgnldspWy$AH8!AS^vEJHW{$ z@e?P>kwi<#YA?3zNgNds5SDH)xl;N}(uwO-5ukJ7JDSg&yu{glm*5ZnrZ2|K5uRJpmM;r-9sj;K;B%8cH)m>Zu@hLgXa_%edSwJ3JFbH4E0t1 z|3H@;{(vs4E`gxSF>f1`XH_X5>E?SmLIEC5Ee|bGw~B>V?r4$rv<*e*4p>NMCf}S} zlxEdSOhD9S#$oPX#!fcO=eXkr_+e$Em@Su`*~|)`&XDGpyx@zT&<*QaqPSa6>DKq@ zO7685M5|XCXdJ2^n=e)?@apM&_483KDN)w3%BpqBRmTR=72;wN6_4?W^N+}~m&oms zs*z`DsRZ1*m^L{iU-`r%o@Q8l{qe#BMt(#V%E)xLN#qrFJ#{ZUlyIc!A?$A|ZT1Ty z&P#rG`nf(A)5Cpv-O&QQeCL`5v{v!OyN~L*$8JwNO`R{62|M#LObPxu@WI0n=FET( z_od*FFgyTx3^$82J-_FyXo8hftM9qd3~lWC_`zw>NWq=;m)}RW*{2gx!S(nRW!FeY z^SWx>&LB8vA!p|g@f{UQ^ahu3$aB|(VS{DM192xhS}9-rm(wUa z&?$w4mg2#;A=`Gkctz`s-$5R*qhT9*5=zab(+T}3yP-9uhDoqgReJU7qQCl`gu6ZU zjrq9{h)hh!s;qLmcB-aUAdobH+RwBG*Bj2(Lkm*i z`SRonOWrx-3gJ3LK|tj1uWe7vCCc?E7$!jDc`lcPXD1*WBppr33?EE55vGLJwNoPr z)PK3aC{s6J1y@RKwZ_%y93nrtGq(hG;l;-3o=ElRS)`DBHeg0G8IcU9<}l5 z4xKnpRl*Ch;ubYZnhW@|()JXy-hPN4FFA2t0fy8Nki^_=^%n2=L=LSF^THzO0k)u4 z7~`0$GPuX%ZD$ROm1?c4G6u8XOD=bJt#shVhcR-%^s!0N|Mh6(={&E&Q>5M2r{c-^ z+1W0x^jzTGzn=lyJMgPQz+G$lAF34p>lyH8Kh=zb8DI<)t8lP#u(JRiAG z00k%+DE>SmRy9|FE>fuez)1*_2+G@hSrHM~L(@aTk~&?@i9GA0AZcVr%adR3OH&bV zzV6+U0-6z4RHsnCe6!9y_O}mTc!4n6a4TpRvrOzgxnZ$%;E1?~kQT&B>UKC=7v)sM z!b^tyupe~Gb}{I{@t?zs(TNY-WPH?GmgZCZ`}Y}sZ=d?~ zsVj(dviE-*Gu?Q-{HR2>Jxnnp?WS$F8G6~~o z-RwHeMW2S7JdO-`wv0I9sTHjgQJ`l?9Yxgz!2IO#a`SBtIph~yQx+E0Tbb{4dE zg<-)#sQEIp!J+iKXnH+)`Vwh5=&~7Kxs~R7_Bulr>09kcnPTwXwQk`~o4531A$2x? z8g*E;Fo@(!v`^Pqbk_e$`sI8>H^?CkI-)i-K7lWUwE<&q^iGmR=X$_4a0@+Fio2D8 zHuO+S44;bU-8RPiz{8mbA2&a%1U*(8oO#szbX$~p8^);{R7Y$1P8+8tgy>Xt-o5Bp zZK8(kG!gmRpQB2Zk@%x!IfW{%?mN!}oV-6QuzsCHB}2CYvdxLg)Z{crQ(5*rEp5^) ziAjG{*J#$LRynEKxzejuE6MCIGs!y{l)28m%5luS7fLX|f>7Np*PCA2n1C}yz18LH zi(KUdl__-LeY5Xi419>_p3lSc7DbC)7K<-4o7R7GIBf{UD5R)u`+%v@;1iIV`BswA zOPl`0C*Ol3-6C#~oxq-%lhiVmvN1zlxr-IE*BLiUsg|^<3}z!&ER+fH- z`4y!OvxY~ekAKmZZLZI8Py)AD1O{-6{evm>KkjEv7H%^OHf~OHpyv!b5CmatV)3^@ zR8Rs?fRcgY&;5L=wW_%M=YGEIj>m+CU6ZJTsby`3wx6OT#NVI7#pk`2v=(|RoAhCR4rE z?VQ+WGrnMl1R7;gOZkA)U=1(y1*3^`T~mqKh$^G>90E^5buz&&{;^a{g@0{`ku(?k%)>8c`z;|#qHuNh#Bfgn!rbWS0I3^&n zf0+567lz_INz5i)_cW0{q#FS(AX!)UtPBh|)wI}dq-SA`Ot5MVzEABYt0)KvKM`)* zfrJN^&ZB-9<;VF}4yT*X>hV(w<*HNd5~d#ovm-=3^Z-5(?@ocw zCqPs{g_86hyOq%ugx6Fz@-uu;6q0Jt_MGd@JmrAEht-X6>Cj`NVD*P3d$(|S35)Aq zsGvF{B9fv%eArIHlLTR>fZvCQ1)W<26ylK4jy?@-A2e3BZt#lI>WJ5Km?Z(Q9D|QsT(&LrW8By2Bt{IutHxFm2nEYlOSbPW=IolJ(d>iW?I#mP9&->oce5Ej zGy%}bsq3cWHeB=lY|JfU;y;(|&$3@*PN_lB=0?qK2NtKZi_dcgr4=c#(_JxzANjN{ zqT!44;!&K;mro{|`lXo?p!&Rv>eLZVZ#b+6^A~x~DpEg4d*}t;`0j_ecWRH{Yf+rW zGv59XPLG--@n|9>&`gNPe7stx#4JRMz7i9>IU8BDIegpc`zocIZJ1G3r2S46tZO)F zPJ@Rc@{_%gJS?xTu+^mN2-kgcIT!;iF*CzHbo7#j?%FD_Eb|Es>Jo=5_$FD?vn zSWnTuwQ&TKqe|KrDgf(?nNLp9NPLC{T1hY3b5hl^^iDUzTn(yY9)lr;UvPUZoGCPv~^ax@aqq_ zm!4tl{?Jv7XNCsA_iUPBXTy?WM7k#gekm!);kOkMwyh&XTv>I$bYDXdUB7m zVNUr08@cV$2*3EZGS`V>pz@3o;iZU01PgpSAXe-W$q-EQK857o#ApVEAq58+AIc&4s5JcHG3*gbnCUBy00&_aK(WUFH@tb*@s-YEDC z{{l%agS=N10c3L$iycp8#_pBv!2KfTAD_%GiZA@w=sSY;0a98^Yo1;hQtbdJT*Ie2 z%Kxp*L%}`s@;x-}*#{eUkoc&)iK}vD#Sv z68pJUr~FPg?<1DL+w*&o{>l}iE^NHZ=gFiO-Z>|}0Af!uWD;KOOB<9CIV z=P6ttk*Ws5*GVDz8K7CrMWXRy!(l~o=YlUF!>9o0$zq*4(TAxTba=M3{QW;&?_gtu z<)ipZw;wY7?YtMd9F~!ySMtat)T9=$Fq%#T=xGB~-fI(@m${ z^&5`e2_zMkQlw!|+Kj=O^R?JlE!`~{skJiLSLC)``&d$xoPyd=BU5tT(2b`1K5LKE zbwWgp*5oRF^lXy$jF?2(pffB6Df5cxQzKAdgS%?tThD_-hq$IZhR+1gOrX=hD;2}) zPX|9vgbBArs(gSWohgY@t&?k8X{!KAR_5yI3PdTw^n1m2Ku21W;5 zGHmlqf32X#BFD`U#F5`(_{__>P?nMd_bV!FteS8mmZ+1_YBtcfSm7zdDBZ>nwU(W% zok`44+P&VKIZ?({TK)!)2kMLsy>RDbL|Hvz6!%m<)}GImqPK7P{%cy!X}>N$WtHl0 zH}GUC#CC@&J*u@8`vVF%(YoulcCWhAQ=!aE%A=qx<^qd@5j!%O`f8>b#?ID*d%V8b zHGua}J<~FbAGw|4&SR6Qks=4U#-f{$ddHbh5`4*b;#fO;)BuA>YxGmhg^{nX>Mmw< z^#q->mAqNz9~u?iqv^Z?55V}X6d9L1IyFFlLcb=Yu)|v^BOJF2mH4G=Is)E2MK69} zkVpTae0Zon%*4Eg@^eLXRg%m&F@pMeKCyS{Oi zVI`URI5m)WE2_9x(SW*+n%*ahFr45KAEsWGFk&Vsb#e%)pd)s1o%axck%gWC0Z!w=;TMnsj zU0uH_u)1-`xSB)+6C_GaAk1EXV~WbvN$UIFKZ;^Nn7bqK#*P$;5Mns>CnA<~rP)Bd z^84Yw;`{!>wz15X8w|w`ny{sMdqQ1}{lQa$oBk9mNClx{f^({VaA3(T+qS2zP!X79c|Aer10tC#z|52(6{LVJ)E|CJz zrVzqApBS$Bo^0JbaT3%4CnZw(jwEptKz>Vjdn{S-avP(}Se4{ksDc3f`gI<;S@=ic z#!(^CbMt;S+;b`f0pexDUVXr+M_X5JGtzo~@iymn&Ci?rB1Tijc zQS{~?VGg{&CF%qelC8m#gOl9Ifr=m*eeiuFC3@(*u@PaP`r)IDE7 z*eR$#uv3h=>A199UU|*ECwh)SG%z8dlga?0MEjlRV17Z~0jS1eI6@0;FLbI0Y5@Tp zlzu0^67{@^wL*1o_s=1jCl8KXe9;2Y-t2&%6OI^B8kvo8uk};8T^m)8V*zWs{V70J zJAl1OGUwASw*vrCp+XJ5%djSg0jIM}%$^jom z8I0C!`-bgQ(h(@cXxv<=1> z=wmknw4dNB5uMAFUs@JVdxki8+n$?n|G-We4*Y?gx`$y*(N1w6+BA76#RZ)8%$d8? z?SZgU0@l`-oasy~r;&EKCr{=7RkaTs>d8Q-P+X^i!m((!MJ|y`QF^@);9lTBTAB|! ztVLWAxe~3;zz8h%m^JPz(Zz+<3&7cZxFj`onQ!yiL zp^C!eNdxD0Y0N9(V<%(;6kCf=q5LqK-tUm^gsoZi2*}P|+wZ`&jq6VbaXXONJ{bMEan?R82AX$WG|b`)gq;D$nGo3NpaJOwuIu zJEA7exvo_t2U|E}e>w3eP1e=1e z7%~xI0q&>(J)D-hoTStdm5~A4#LxIQO3{Gpwb1h~d$ksDDv?x=cxr_EWcx3(9?O3AXp(vI1vVnE9zF|NlrvsNsaKz)$jaS6%zD7z z3U%d2YWAw~jGkYOwaK<=+V+p!^u9gC*Ffx(kp(@YK}uf?{$bV=9|JV&(aDn3NqGd{qo%| zgYqC}2%vx^J_*Gn$$_AYK@IFv{c8DMlZfMiTTU4Y>0z0UApJ%()MM)Z`z|d<%V&O( z;pBG9yn3Nv#+_+os>`qnfuVPIZ5g{+sW2bu>1v!2Aei3MQZq;CrTZK5iB$y8WZ1Lr zqt8_~jV=)8NI!|5xc@JZaca$^_rbnu@O-M4T%3@Uvu%QkX!x~$%k)5l=+0AX&K_6@ zH>Pb{5M$-3QzOZp{_^;WWXIj1XyXVSHbngf=W+sn;E$iXxgOSONXdg;Do^@>jqviP zoQs#moC3)$c8@Q1Gy*LOXXERTctseT5=wo=u826SasrT{2R^wT+?e{QwkW*!T&qU< zA*;sgeC(D3G5!r`&1cW-SzJH836Lkdy^A__PN&m$rmGFl=`xHi0b8%@p-)(f79C$- zGO=+sNFQ09;-XKbv(*(Af?G{%V86fGKQuob^f zBx{cu1FEA;zDjfq>W>C7Bd^_JXLhs|)M%}ICG&Lr>#4ux>{ z=UO;3SEC6`>O4)5WO z(30f6Hw9Qs`Wk|u$DwhdGUXU^kDgyc(BLJ;`{{Kqk3rO9)Vkc(nx^?5kvux;p-~!_ z+O8Y(`6QJJ+s~UZBt8%04jEWijLrD>6Ob9K&NnZAX-Joh(xh<$FJ$8Xp$zuFZuI|d zMlo}mvH>`ZO*ojDSy;K4IZQcC{x;kPN&pH_GEn?^4*azY29(*=0%dmpRR)v)qYMU= z*>M16c5Ak<(m-&pe8!bYmJ1MRQa^P4m;!WBG>;cnIFTJ0OQ7A&KWEwi$7T}##4Qi` zolo7M+vUyR%4A|NKPz5qqPGy<*-&UGq`NTzQ%%|60YyzCSpQN4P3QB)zv=9xkegjm zDRM7^d%qE5hfW*Ci#atWCg{y^E8mrY2WvDUi+Z%^Zi94oR6w1bLl(Hc1$@`#U|Q(( zfeA=wcR`vgR=yL*s1_O_eNh~O@#SML1Y{1GT*0I~NN4v0sI$}mUWW!n_u)Emm2&Hn zpIqkbHk<)mQf2>P)nqQSf+Bz7S`&jOjzJny8(zhtCapWx3NO1QRXs!*=rngJp#_{K zln)$bc_>7=1rWS`US?jx~Y{Yq@BoY-@Gd)4lxt!>TceHGrp0oltPrlRUG&v@HBLH^lW9J zrkT3=#6(-QRmV<+NRIwslBN@?B5Cd=)RB|1W$j17ZGPNA@XYS#(7SnjeA%(|bi_4= zpM+nQwT?efM>x$}+z=G8_CaqaxJd*01RO&?+!jrkoz$uG9b90+nD=7(Hq8s?x1PiO z`=jd!Hiwger1Z(YFACpO|1PzI1WD~W6mJE)9~bxjQVEN~&iqgXEKY5+0aw;P^kDvR z8M6T_I4w9VSWTJPf$$S%b{1~-zfGfn5`Y4f3>1GZ<5Qjgg69fVwQ%!YIVtws1>DV>#82Z@p8W?-Y z>mkA1-*0Oc8Jv7EUzduYdT|H|EQBHFrh9d}9yH#4ncf&r&Y0)pGwLly1K-9Cf-@Hx zyOt7y%oetn`4s*_h6^hPVZ^>{m#V>#X-mu9Uuty=79-5CYUM>xdAb-q>&%-pTXL`C z(9N377f-X;P7_GJI%L~o?#{4mAFyk4!= z_XO}U$Ne0n|GtIofP_=LQGIBJC>B{@Lblsz7nAXwo1Yh$8LK%ghn$q%? z*9i2h4C6Inh#g*&Hh1PFd?M?|C`OnA=Tft5@Au}#R_gNg{1^yd)xlk(Li3AVy;Ah@ zWbhn0y8=Y$Y@GI-5A1$^Qzn9kb6I5h zmjqS@y2Ez*T>F_r&hor&q^g~0U<$t=MI?Qf#-Wq$m``>$UhryjYVDfNXc-kmhK4c3 z4YW~X>nE=I3Y9s4oiGE(I+`I96871|d4)!3iuN+VETPfa{jjaty0UJc5?GA3G@oc* z1$eI(%+}(yS^S*#WBsnLYV&;&(545Oyq2V5UXjeL$$qb{tu>GCR+&eyMXRvyR z+)Blc*Z!4uz|yql+rfPvr75wCCGtRUpJ7yjmc#5Ck; z=iEELJ7;dqsrqjJ$*x*mMfLlxUfqu{x4}Mwvp{Do{Y-2m)XS-oQ#N)v?gPxg;)nkr zfr5?=foeNR5u7GeAHyQee(VE~K%c9}ru0MVIxfwRG6mClYmT#D9pC@04I*EM8%qIn zCL#Y}2=wXjyCXBHcNhmB=w94Y}BQ6%TcNNNs=i1ObKZG ziM;>}TBxEO>TT~dJN4@$0Y@9LGIbF@-tCO83`uyt?&ld!!i>T1-{J?KJ~t+V3LfGN zy-{<+$?eENOrU&=4%}%pQ;_z}zb#leS=hj-ku-%%C>)I}WOtNc)bRXii69+sl^Iaw zg>je%U#ksJTc@z&QMa`Z!UU+T&(EKTVWjeYXxyKJW)fRt_MP{8pmlU8jL@ltpC6~q z9SIAt91VdlysWsT1o#$a`pperdS1jf+2OwDt7!= z0CY7;|L6~~_3*DuZ=3NNbA7bk_9yOIo{+<#(=A8hs zb;qhN6&kA2eg5XZ%+02`T!^*(G0tz)p#(wRZ#scdgeJzpeU)rC*9|NsOuO=|}-z zbf5WAXl}B5t7rS)C=L5jm~0IIBJMcV|Dn&~0?_IhnGCsDS&dB$SXdYt84dsDN&rj% z3}7-~{CQ5!zSzj`h#~*hEqyoGyH8Yujn3o*+2DZffW>G|oGL3mRi!xx54PhDDacXx4_|9NoHMb`hU2q6+ya+jnbQi*og^b2|mwOK-N z83nFD!7%4c@N<;BR6kEkvn9N_UR_QP>t_U*@L1df1dVZ4H2ae4SKiR4h9z-}4!n3&4fY`i=S>+d zZOAQ#xrC-t57xV_ojcEMXMEM0R?EH&BC$pjAs*=~S)m5K*BN&FQq0w=f{l>wj0H+s z!A#(^(0i7eA#vGJ<)NDLHy#mPvF*hq@|dQwQ~QrL5yVd`L6 z!y#ZKch|nmOV%QgKzqh@ccW}nwnXu&Se0XmiZD)&KF=I%ah}*hbkQaA#pX_sS)rP7 zBwPzLLDjC?RzHE76QoRu>qkF7_N>(9M7Qh>jZ}J3i%~3SHd8W~T`Qnj+1#1CJ%%nj`$s_T zh3q9LxXe&u^EJSP??JaeTz6V}O~;*wCcHUbEAyWm&>+iUvsjGYn{+I5ldVeh;cW2&D3lX8!g)() z2ewCboM*XFyV#i%W9U~@Rygxag%Rp%v|v#qaew2$MiqO6h3DK({*jkNM`b#$^+OSd zPoSeqQ8;@XFQGZRV_#LSlhGR{Iq7Ae$(Wzg__XZ%Y~+XOHGi+8BVSh`Y%a%eG9)Vzoo zJ4yqE4F&Oa)1C!+luv9QDRL?7klMho+-)k#y-#%$I>;doXN|h;;rRo|@5Eyb!O0qu zRAgAQr0&Z=An4|9kYluYq4S1`NQrWZ`#acPDm3t$sjl)no8mfuc8mFR7lvGfIwiFkX070cn=|TrD zb^@(4XQP7)Fil=wm(b;~`JblAbmwmX)8spsqL)r*ju3k(TF1vr#yfLF1JUlfZAxK9 z0spYHz*N;&4h&e~Q|m{6^Fhn3Zn}aYw&gOFv!lBoRG$N!#kcV*aE4o%3B#`x*mqW0 z-scdDYO_&E=v1Reo5Jk__XH9$N>bhZpy`yWCWKq^AsnX05DBHx=f^Z<#Fx|qHZUYlQ}RvyrOoyx08?qSX1sT{pdML zAHDNE5`l9)Zd`gTp=VJ0`qyf&tm!9^1I+%(0G^5ezb7-sMy8CW2F6UBCWZjF76W#6 zK<)oKDGZnZ7{Fw}_@pLc9q-15suB4Pj18~Bo(^~9Jc?5;tF6t9P z_PM20vD5BBk6OGA77uQ??%x1Lhz6Z#>-d<9yv*Y*iE*5DHbhnabOOF{!k`2=uFrPTmZejm9< z7*>wRi>@E&DG!*PVsW4+-$HPsWdG-Y((&^~!EoC-*K#Xo9-UeHWx1|3f}EaByGk8e zo5@^ki+nr$muyW*RnxmO-ou4iutj6knoSW;=Fu&zECqT@mwSV}2{PnK zu~;7mB*INA%rmJ;e^zzRXi+Afi|d-9%c9-*eYhJV)`S<^5!I+xIY#<{0!0ElP>L<9 zG0xZQm$M`$5*#nlf$11P11-ug8}D(Wn(5}Ok-p8f@VSZ@PmlGgj1c3H*7{4F6Q8?8 zIjEj9LM{2iWg}tE2#n{lB#tzph@zIngToD3b|V*voZxG*B<-uXc^w#1rvMcMKNu!c zDAvBbA9m51k<)`{$m3Gtp*HjLz8dJQVr{gKOowKzjSXGHRV>LzcZXV2R z``AHHxz&FV^T%F=sDv@#hE(LHr*{tqm#HGmnAKhVdYu?)##I^s#QZ1`hGxJ&OL%-q z)}~TOwLW*M_?U3y2CFdsH(rswgAptv#!6aRocY91FEY8o6%50$I7ttnyvAA5&5@(|w?Yp?zMxoh6l^p%Y?R zOVBfNZgFHHAI1yW5WnJiJ+W=j$|YYNEv|a2US%n6)llj9;k}dSo)XXVR;aZ) zw#tg&YO$;LLGti`x8^zfx&Ghxgw-oPK5Kvjhfn;^d^ST2M6G-#l*$P zZ1Pt=8}JFh06q;Ee;(hpR9T>(^dEdS==?(qqZ{dhh9S4M2*Os$^a4S}TSkC$C9EbZ zxyO$l()W&nO7e9lXDRs77ML3$shcqT&go=8vu}JaVz$uizof;i6vQKL`&W82Nd5=pyOqW2@-i0m0I9emV% z8uxos0TVDhnVVE4MU_FEDO?;Ah`q(o=CYM}yO-LS_InV^x?5TE9>{B+SsrplQPI-Z0VQ@li)_rjH(~>-W@Bf z@)N(VW&~C++s-dj^vUg|}qHj6w;! zb96~Uq&I@gG~xYq2oc{H^i04Dz~Ns!ni{R zAwgX1Kz0+TJsW!{qeQA0dB0+Km2`yDJ==d~caV<7iFr$9E;a7~5bHKSeA{l!-y|ba zk3#LOm9gwzBw<9|5(%)uC4Jh{(602xJEh0}g}gJZfScG?LZE=BHB4$5o=f&AJ;aBf z27#+CXBgZ#^%Ds_swHzNd7%hvQErjE6dB&rB6*OpKCDT`JZ!fEzl0I)=yL(}r`8 z^ay#u!^9JprpV55nI>PvpmP~k%aMNYECW=i_L(M z$<)~BZ&Ns60$}_nkPS38Gyr5%Cz-(fFObb%?0>Yx%J_elSSLUAL2&5&xwyh{_E=Hm zWE>w-XYyu-Thcda$ZDm*cj*J;nMrm~m5_zZx9Fj(?br)~y9++-Kg%r$*`l3L6U|ip zVTr{Z`D#A(02xajh)l+iIN!FS>stflyrEv`P3(FZzKv2v)5$({yYUu!GQQ8j7c~(X(Zg#-ed1*sbc0Q$?1_5< zu}c|}+3oQj;u=v){^|CKfu!jrm*CQOd9LA;6{sWZ-~~~V2_C};ntFBSH(rdyJ@n8`7~hycpw{^uo<&({CjH*OaKgEGGP4qZf#Wk)4@=`R;|3t^@XckB?&I=W{=rzGFv3ToB11;e@`sjbb*X~w9SJib>Ty|j`m z1Oucz-~pg-gQ$^+|ExLStCkBOpo|g%I_h1NRUv@EoARC|uXk6JXSAbGZ4kCjJ+$(5 zg*qoVt%rQ^gV+5}m*drW!nyA${pc2xT+!qnQ^_CRz{jCD;5NZJg!QLABO>;B6mxkD-A4pyCIoVU-R`7Yd@)buh3z0n++{N3?VA;* znSzi&HGne!$lW9!fq`U@?|VjZDN{XcgxnToua{4L6w~}F5Tc*hPsJT2C)&Zhtu<&J zW9f6r_jXGlGZ{(Mqdwt&!cqP#osn(x`@>)BSzcJ-M>e3u;{L-D<)7=B*@VNCg@v8N zm>qD5vv9H)GXHG}4@>|IU@~C*SYB^I#Ztoxgm|kgg}4xQ9kgS) zfzCUl_SoSMjW9}w1j=7YW{7E4k~TXy;x?MWVITgAgi>@uMT`MJi8&O|L$8(-Sf{DT zqF&yFZZg3-#v0i)%f`)%97BUfmK~?f%`}d#|)lsl0xuH8GbcczVLhV^T z(mf%V7HSPCBFf-DRe#5{DS`OpQK^wC8SeP=aWK|v0B52JT)Ii~&E&hBmrXnpea)bj zH-l>CU||&Lv5o38WW1n3eMy(*0S1#+cP4bZjZ$;^8eyc%($U=HU5PiuxbZ9Hy7!N@ z&K5qqk=wMD?=Z=I8*@3S>tA)))bZpncXqexQ6YW%p0?|M4$n`wZ%92*mL+Lz7N_v8 zO6p=Ry#Ot1kJAEamBkv|+_Ldc(;&}Igj~Ns+LFA{Ea}4bjLQO{#CQNGF=nMHWqSI0 zASwpc5H;QR7VbpYQ*YZMF@OLFiMBrbf*4pSv+8FhgA+I6M|fi?un9I(f10I1ze9b? zOi0Ha>P_WX+Xk#?)&m*kUj&kR&BZMbjU+>OnsvZcN_1YgrdUK<=49^v8k2)pZ89a) z;F{{eTM#wR8Sy=u(WvYOue%w*z&65A?@m6T6z>4F26Ev<8*{YaKB`>&F1zRNyA(oQ zvLHCXdIJf7ko>2~$Uhzz10zF5CKfhELnd}kCRTvYGpE7d7>K|GzyKx##-GRKOhXZ% zpo;86GzCyl^^`G|N-{3}s?%!Qr$nw50MauB^^JSU+C-7eg35Nw_t!?_2CGsX>QWLZ zSFN(sNWxLuj`;doF{s%8v2jJg> z`+woY_UYiPaF+sX(WaVl_RP z4<ey$FS@5ro~VF}5KM^m5u)d5ksVy}Rpe65H| z#lWq{G^0B^cJ*s935#T*?wnV7{-SN0wK84Imj|tfQ7>_bo>F^=6rwJ5mF$L3^UVr3 zq^1~8+-_i}n7i!Sl7-BMqSO_YZ}SxU?1CW_nSDfTDRkgFKHxH}0cok5D&4IfjzbJ8 zZ$C@Fpl(Y-YiS)THgsSeB(=v+vbSixzige$uhHDZ*Q!iwL47jCCmed$4XTX0 zGsJ}HwW#7_^vNsbUKkv_IOq!Ji#^Ubi4br3Ns&M+{*2nAN*~!}2M`+As2*6|+idbx!Erfl4165W2a{J3MYmy25k z`5lQe!bwMi$3v#>n0S44D$24}RmF*y#yV3QH^>B6+#R%-GoYbIOw)f`0q#vsb!gcB zC93jOMaBHvN2BWgHMDXQkqZ7*%0U?ec+J;M{Vrl<1x7lvG0vcM<^t z5N{RYCbAv@A`oWwO9~ki{zNBnS8!$vWtm}^!Fe^*c#($cp|44Ilg9|Oxuv9e%htj} zjmafS?P?Dv)zWi3+J}feh?!f+!UDI%w$vahcm?+wwn@Y zA}(iDZM5M7PGPKOrgc^!cZDBtk|94tF?_gIOaw3U z%TqiJVaMhB@o0Ph#S^jCh-^p}-TQ3O`E59YkIK!3#MVb-nQwY8r&+k<>iXZ{5c&kU z-d%v(Vu9@ca5b57nX&`u(Ttpc-Gs3*!0>^c>u*;RFaa=t$$;_yt|rYjTY$K8CsB4-#1 zq{$6ei7dz4#~q}!qWAt)CYjjZax+62p{F|eTRrezsGw|=i-kdPBplkz7G4JAoKYj1 zMq&8h)*$y8Efk<(_6#?Wp;C-cSxr-9<9x+HqwPL4{9;`WSqgi=jgRp`l|-5XFE}*t z1=yPEFH_#~P98b8zS#<+qGDd58^<^Z%S;S3FELryTQqs{t)R}n*}jl#>V(ZDt+9+J zE!DSnn3m6+yQUo-tJhi<2@Lv)8_^$4=yE^!@$q9StJN>DothSJ)bXs@7SA*&!$xOV z9fN$&*qv3bFt>ITn{YF%fhI!};U)9(!za2;{I#K+6EPR!w4X$VxMWd#8OK}mn&^Z; zq1XNWXPi}bz15d2R#GCv%MNGCk>zS^>b!F|dzu~wDpX^ENfFq{y-kH1r5WoHTGDn3 z<>Ov)Y_%E5B#=^~uC<*Ne-_G7> z?o(L9eTq2UX8gv7+0sjWn4bA70v@#g3jX(S4UOGY85gm-12PX+rm&B*&enni-?c>4 z&KB`i8p>ToN#(9GM%z;MLphOV{w>e0yg~KC9R@Lb;br^b2CX(rt_P2EinKj7-4wt6 z#!!#M%iBIjQ($asF7sB{9y~M_^vJG1EP2ClIuG=x!so%wQ`>TLTIKOCGpFv!EANQv zXZtgqx!*~T^FH2pf@<5klA4fpzyHpkNU?{`P>*j4;Q6tGvBTVkMxzb0j#2qCr%0G+JOELwziR2U3aYvoR5Gq za2A9xkW5|fFLM&3Hkl{b1_VaSG|UoXIpXKB_`dx)1}I-CryRy(+;tv_2X zKp^2e%`fi2kSd6#et3(j_N9Va!Q1U&e}+`bjoqk9QVd?q*_K8?>;w} z9%n#eNs+uC8PZh=i&wYvv#)V!c{Sv~?JGk#XRAHUT0#G+(jysbSpY&`wc z@rcG0-%}W4k4lv?lalM}!h zg@^W=a`%>hUW%@T?EmugVx?~j``uA8Rx*4|9q1^tGhfx~sM_?k$%UlXj-yQ+&`GKOIHH(MSl z-Ib+)leG-teUj_&a*kYHt*)&dZCMYpBJ}EXbpVgzyqAxhN@j-LxOWKxy80@VYEzfQ zq%m>NwJ6Q8Me=9#tjBVE67l)94Trl0Yn%M;h=>iVE69w|xO+GXq`X^a%wNKvQLy^r z)I5dwxW=vpt`3g=?K;H}O!n>s%(b)rgX$Z*G2j#4h=Y+0AcANN_^LMs*j)d0N)CJi zFn~`3#-I1)UaI6*JP!0Bfa)6obnYQdTr>QSRm&C_5A*Fo7yrCN|1rGq0ds2jQcAJS z3*Bf6274ANtrUMxv~^*n_lq;-<)u*!~OKl z))d3c1A1Fb-{Qs2_0VEb8*8jpQsc!>+>3+s$?e4(alRq|4vOD{!5+YrN8R&n>}@x+d+|v@O~>#`#E~H9>S2bUVr=o0{mjVG{`J*; zMM&zU>uFeX^}v3C>k<0yN4vL2x=82of~O_(IH9<bJWqD)F1W zfRymLakdxt4WtN9-Ph2cQ@K_OCb&{HL)BW)_c{Ld-Nvl-S}NrO2$d?Gl@5#PM=5_C zC^x?ko|52$>RGt^*v0tL^7t;JaE6eH)kQh44#^IyiJ|u{WZtMD?|^y75Epmw?*5J; zN~2MdM_FMdBV-}|KA6TMfE6RkaN8U#%myi9b@UxFw_(%p5TJbUnVb(Pyp!JNGl$ud zJ)Fo%TG=u><|<7z1cmK~KresnpN6BkI=QYotANRQE=?|YV$R;>CIx!kbRlAIReE6(2j1!|p)gz*1DI@;p8S`y5dpHd8laq(S$FO`#jfq{NF* z53@cW92nVmM(en=z4}4owN&dDChO0Ba|oHnn2#Q_3>#$qa*{t?BDUT(M%hz45Bk}H z)10CfpIbQ2f^}KEut&TKp*-cg5{*pFkJejkC4^roVl&<7dnM0rf%zh9bx19i)-<1e102sGb&1ohe61o*?( zUy|X|shAF-I2%^qOjNM$iGsum1^H?lA++QgN3jvVZ1!->l7G24$hDigf~CtRdOFWP zMFgi-QNrmh#PY*|M@jiS=I!nfFkf^hYpyO&YX9pbm_9)hgqsP5mm5Y_fR-7iWwFS5 z*~^LZg~*qn7l}w^a%|;V2ClLU;$1D<6p496-~S8^z{wfi3qL8c z14}$0&VY~vPxdOx2x3^Z8d(~GrC-B|hLF_G)8B#}Zc*U26~k5xVtEJ|2AyFtgGGbv zz02&rTBV(5;=NaF;qHTDl+HIu86fF2_s|VJC%@6Pw1dPUmPjF9l_XRTRVD1Kfm{+-w$pKk7_W}vO4RjO?Yh!Iy*=)J8Ik_%Q(OCPclQ3MVprFUM z0nR?*CAPh6(0&IrbuCKRkLGEOMisJ->te~#+Lu-m<0F!1FLSq=Hs&zdC^;6%1-gMV zhCR=j%Wp^YSi~mfVp=&c44*+a44UwaN>WHiPY1HlYh}Pk#-<;3)V=rT6u(9%_d>Vk z0Z?LJd7-Svl@D{*^VW(gMip&}zL(ByuSXkc#Nj>8hy51+ASdGoNvkNhvNC#O$zoAt z_3kCD;|1{v4&;Ig{sbr`wfgMvq}f>~RitfTnTkp2gi=A2f>~Xer1mU#5%3~m9wXyw zSx9JG*Hn1EXBJc0K4TkM|1n)|&P96PqUV$(*}MPRu=EzXP@ZxUOER=s+Oqhw3f44Z zmcNW&A@>ZXeBe%*dsp~uVK0PgLK))(du?>-LOoB+wW#&8pEVy#?YWp^4_s1HMEjiZ zI1F;^ib;*h;8)KGq}FyGTHmTJl)NV;m)E(L;~A!vl@nBclJ~(~`(`d>t%%Ux2-oUO zIX>5ii)pc9P!`F%1Cqv{?g2C{9Ax-lZ$weE-;&kduD?fgN-8cqGx!>ZLX~&@^)S7N zub~(K>ia*Tt^WBiaj}~iaj+T~aWES*F&mj01AJ@#eaQabXe(f{zZ|Cj6>W6}B)I(x zZ3Xrhv=vNvK85PWW`^VB+vPxeR<>r+n`%D}dVgmPK;}tG+f5fVCbk~7S!*hVrAO&# zu;P*s{9|aPwi`{VBd({4@RofEaLQgt@jdbTIvEDr2!kdK44uE{B0DCRI*PWBRIHJz)dUs{>QFiaS>ozx-=YHARN9Dk*oa3(rf5Z4$Bo$DDQU75I z|BnR^(A{QXH|1buVq*koiy9jkumgDA|9Z91TRMKVm6SyOBLT3`fysdJ=i6iAzW`T% zPT?Owzk(IOl%mZHZW=5H?lkvrE+=^l)0Dh>Hzg#pH!Q2+hPU@~arplBI(58ua6<;) zq7q@|9@w%#HvKS~L7F%%K3bT^oyDA27>5=Xo{{HCCaRKx$J!Ha3eJ?HTu>U1Td@%Y z11ST0J1i6Z)PnApnuF`S8MA8DF z!Oc{;6oIDkD}lhZb#2Fu)%<&23x>0&{ns-bwPmyNvmYy&$2|F`^k4^dtf{r=%nacG zb2obv5YCoqnmLnCR66L$5pz`^K7lVd?qP+7_xUD)shl)XGPe|ikC!KWXWCAFDn|vc z=B`#>K7(a!-B+WP4Z)x*t~jbl;-~45G*C5a3-!S8k@XD(s&FSNRz>&z5Q}Inq10%w z)M%0Y<~Xt^CXpMLQK;1&Z=(xP;a1mMxy{GIzMOAKE?VE7&OK~u!u8HiQ`ovL=~&uF zVA2ZWL2=WfuxDvo!?~!NDbGGB5fN#bc$94q^=T9F^xe$pTWqwv1%r9z)BEuU9Zf*npUl;cK zJ4QFaw3vRf4G4NCJJLh~B|XANeFORe2Z;W9P{4a6wkH9#TLJffXtUTkIE~mjIXRfw zn2eYV7#TS@{_Yk8OaKgEGGP39PzKbrfWkNbT2~QjZYQ#05&HAV7zI|EPqSWaau!#n z;+Zvpq0hea^H`YMuEB!d?`Mp;M!$LU|Lpq>@D9HqPwfL;5l`Y%r%e{GO7BHr%nG!_ zOoXO?QsMfe%c=)}jhu=(Q4*U~dU`Qp9dn)56HQeVvsyS*FjF!wWen2%?Zl%mh<}Va z!$*57s7+pi${Z0#N+64FnV+H{k)ek$RfssyOUn@4>%%WQ6))u1qJ;=?-sfWATbXH~4%M{7K8?|d0AG1MIlYju7Hu@yDuR+}w z@~Y#fVS8;k_SpbJw%#Sfd?xZozO*>~BO9`#i_(h^ySExo1AMlUz6Dl6RgY%va0sB! z+5+}j5rw)_L0AFZ94WRjObV%az&=YKQmK5Z#Dvp}%~+QJzR8UQ;MhGpkCor;BZkz9 zq{XCkRt$4=yZKUzqjn3~i3nyb-P=!oq)!2B?x}UAYr~(Wvm&6YOp*;UCftoDT_8b@ z!pgx@6HQ~pny#5m&p(QVIZmOTqG_4|BO7o>P`@quxxUidtY(v*c{z8c@=IxQdX-J- z!Sm6M#sxg#&gp1T-?Gcds}3X2unATzuNEzsFi!l)jOaATdB8Fa##}IKSTQk-ap`$O z@Jx5J<@#4zHq~Z*OC^*Ue6*8{)~q%6oJlkmDC3hJNyaBOwD#d?_K^-0Lpi^I(;59S zt}X&{BGwMA6oHv8^t>n2Kl`jB)ZaV9Y&xmqwSJMe>r+@(n3?>=b95B~^c=S22 zWD^5;?q)mQlf!*2h7F%%s2YEA_C&6yW61e+42=JXFP!r#8SAYUK7DRY>WY8yEdRHm zM>$(1bOz*y57#pPhvQ{r$j-*jWXNV{#LURSX>7vD%=I@g4=@2RfXRUI=kYqr_=A$| zcaeGIyJ^QgF_0^v$#9^yk{L}Um;c3*J`?Cw-Y5h^?sNrwRmmg-la4bf5QpVy=^5=q<&>8li8>~)S7t<{+LS1FlKMIu7 z3+Pc35Gvtp3JDnX#+8rg7Y^?)Q|(p>{t_MZns@4^#y04D8GPJN$eO!D9*VgX9}gI1 z`nadrTRyqMVShkQsQ#({9~-l>U7!Xn5kAecgxF)PfKZG9$g4g$rM#=tu*y z;&NJhB~4XU7}ea~BUmMSr>icr>a_?@***~D%9YTkv`MVC4;P*`1<$3z9V&a|791T< zP#m-S&CFyq8o~NmyO68sEvGW{rfhPy64+Sf!xl;F^OhI^qSM8qSC|al3G9t1mqm)d z_v6FerkC#Hd`1;<84S{H7Zq+5gY769SuF1~L}r3ZRy+mQszSdMx`w2Ow+JZm2PbmrG$`kLbU&_^2lneB*;jVsMN!1?ixma_fW!HV>*vpV~^2yJl z#gxvSKq}u>>V;)erO30yLZQu*!cb;lAo8NuO>PaePzX7ok_Okg#NV>$l^Y*CaC0Uy z1;zN%;)U)Pp8OKTt?0|mOBa{Teq|+(%I0g|pV%Br10DGtW#4TZV5u9a%gvq#kzc|& ztE+&MJo}oFr8wSyzn4b=MwO8e83g8&(jMA4{e7X0LXFk)l9?&8<9bN7cb?o6}4T9fFJxihRVV829suXhY)pqkWeKt&8 zO8siZv0vfdhE}$616F&x_Du3~i>Cf1G3t%DOMx+|M*Hf+iTOjn82xWbz1(n_01i(i z1p;RC-$(+C;{o)pkxt?G@1OJNXJNLs>6_|fn>-o~x$9qtuNQR+w!S8v4vqj^?@7)I z;AZk~t{{5&NwyeTGcGd+Dd`ot^I5jH+td8CE90-8CU&?!ZDQIxDH{)9-BFwuU==yI z-Uj#Y#L#821W#$r)acgju-78S1**e7BN&{Yat{)q^yG6nyejYwxtH0z+pm|R9u)mr za!eT;qFh|l{k^~JORwM^WOZs3@=Eoa_Z{x9t*Aj-#5@<+EX*80*BFk!?OTBffB{Sfj6dI%|3ii642(djQo5a{Vkvte)3u{>FJMC`p!9Wf8ARMx-Somf< z)hGooKwfncicQA@CK{ZAP&L*a6qY`*O4?iwW3S~$L0$i8`~mC?eh^l((Za*=mxbHf z3`>t_7RG!KsFcVd^4k$=XtR21L@F(*9+Nrc8D03C-0wb!pk{cL&aAiThb`Y;buvJ8 z3Zw#e;&>2>wye=Z0A6?d^1UI~pN+m-4)(v#3c`vnkU|c}q zDAp*U=xNH55%Pg5I!rDsf;Ld7#^@o0+#h{Yg5K%Mn<}%8*Vqj17NuRG^T4(FIIi}? zWPMCPQQ4}mqQY3yI|!h`(+20vS@|kt`_N2bodLiCMmVh*73Y2H5lFYF;0kdDRSQ0p zKAc7Bu0x;7o_nfpMK7?{Stgs#NDkG*98d&)m=`n<5bl&&m z{kzXeSf79amG6eO)=JYs&8DA^&kq|YJ_@Aipul+kU2WqOE^3G-a8Vc+WXxG&r5D~< zVspc;J49rKwed&O~D50`v5OGm_&z0y$MZT5J)^R z&j0vM7uwcWE%2UbQm=>G77&%iH)&d)*feo7(AxuGankia4X$9PDHOIKqz@ER&UQI( zP2^2edbC}_utz|zAfq*vdz~d9-5HiA*XTPkQ$|X%5REe@b)00x4-4rhwy2UIvl|{ z`lQz`{gG8c?KWw&8m&Jxw+{z&_l}xiaX}Y+ZM`t?6Ojv=l-?d@H})BL(Hw!ZG#b zK>pg+adN;kLV%ShL7%EZ%3wV3kqU~u*o@>!dLzeeDP5sh^`7C7v+DPEHI=`9JM`;bP45TU}I2jK0jRM9&lp-!5S7Z)SBEX-v$Uc8ftK3q}os z2Q0(x0Ds?YX5~BxuvDhqxz@I@!NDtFiuy7rX;Bgf=h;xBglo&$<833vX(nQVz#Y{J z_+b}7BT0qmN!gpl5xT_U7YZ?#*@pM|f;-U68p&3;r6%zK(rs4Z8xm#*mHn+xrv42% zqz%+tcw42{=Z%g%91f8^j9r^AN{QxX5F;b{A!+?1FGBz`r1qcm%dmUR5B^{in)Eu+ zOW~vO$b2gPc?q2M*{#fvovP2X60Jl;FPFd94l(wJU4IF+r!RIwh;4ZNn@^HxT_05- z;Ph)?{PPFo|9Y4F_Zp0m)zFxgnahNggAu@|<}x-mGWgpd6PN%Pz+}Mq^Qr;(ssJ2d z|L{oy$>n3;B;O6}bRH>E9h;3&NiQo!Levh>3P`nCE>H#R!H{u*(;Vo1hRRr;DOy+6ZMk8L z=hjH{frBCot^?C^c81xQ52M>w(6*PNU1}QZU|^BZORe&29)w1$7U!70ZRku>pMiLf zBz6y}#=?H`wb-F=_>?qNwcsh+WEa-yv({1W3jwW=dYa}zW&SDx`n>qjUoZ)tD5nKe8_2DRbm zJvx%mldE8Az@T!VeTsg>{S{Z50Z^bilmTQgP+OA2ii}^SsY`0-zK``s9DS5}4QkK1+rsCTwh`0J(BDfYUq6-^k>^ z1i%0$1IC|M0&tm^Cy4I-b^2X!QPxe7U$n5gHQjob&Fe)b zNNIqP8Xj<$C-5_K?9#PG5C!C9!CY*+l6l{)Z2$>XicneP4xQ8kE z#e#$B0CfRp9b@Qto&xfysCJ~|IMYZahAD*<75M@5fgs)g$J|>*)se>l-Aq{4P{!FAK74mfDfGdJU5BW zeXxtL4K?>DtCj0qvhSzcQ0p0Qz(6kw@IBuM*pgu!?&JRU=o z`&uDu41(}GcTjarw9gbBHNG_t#O}J_2|2~CBPJ7KjX!e4Df}X$nz{^)8xutwi++&p`<09BYPKov$}Y@m!uT2T8Pm!IHEO`!c zVG}2x2Jh>-c|*HZC{WA{>45ZwK2@riKlO#1ZzOO&wDS8D%69fIN%nkeHVn}!8t2q6 z;OK~F}r;NvByHO#eU=f%7sj@)mz z=i}(UZxzB-)YvaR|4kG|^KFbj^!YbYSm~wGKSf~y08!ZTA4Fk@BGSBkfK?~=zbtV; z9udHX%mgqm<=|#EH|GEtF8wL@9M}L@z-GYueTo0uRWRr$g=RF!gW_Yhf$}Q7mR2l6(rf3?Jyasu)WY9a`wO;sV zx*xON_HCc?i!j^|L;_<-#Zl!WQb=MVHet4FD6ERd|AAM_*7ynl>{zP}xGLT=Wy6Q8 z3W7FDmw-V7wrEal`OAgZ^qFGlOnW+iiZqoh3tR*Tg^Jez`3BrcwK?9Z`ic4^Qg&s~ zlZPQ*QhhS1-l7K?mLO=lX`R+jusP{b0%Q)$lLOUcH-SKzLR6iUsE?3R-elRd2+^&m z9o3y=Y==r;)z?rMWc6BQ>Up37+ltc5`iPx7cQxx>@Ml*IO7I7`DU&c>y)%6P%bCnL z%?-V%f;dRLuWy|0wHgkR6ffgen%xR=$Qc^2oE6h(eIFy1?+7eH$Y7H^CYXzNB~jDtQ&mhvh}1V-;m%sZYPOdMRndh& zzE``Ona#*E;}35d>$*cOd-cY~FVCmkwKoJpa9t-DJ1l1W5_2tRg>s1y#s=VxR4rqP&!v|dOB)eZKV0DH34HEsAr!_l=DLbbbAm5S=V6DduK-)~2|CE0Y zYyd1^GhqF`l>dN4FSTDwZaM_9lX{pg;qc4*I_IkWBUu9Srf16YpPqUgOfHiX1wzD6 zxnGEgAVltEQZQHv@*z!ZW9O`3D9<6}rIl4AqtSHb<;BG#h?+M}`t?7;#$!@O;SDE( z(WW*8ppRA-g?yy0avNua;L3DWuE4+fh(zZ{j!kX=JVu0sey)B^U3c4h*H{P2u}-QigmfUGtBrA<@U(X9+N}Sj(PWgn-EshYO)LfMf}g zXSLswC6MQhztR1cETPMnG7e0ZI7Nh}nQZCeZFcN@T8RM4!N|v1a&YZ}-HGgqE8IQ4 zFnq&MmtUq>kTfq`x?Kaa$h%ggVG(5(vvAAxLk&jlTZs8!eB8bW_ZXPVADt3*`BamT zhdRN++P)&A1fH@NbKyu*C5a!gY8)HxkkTXo{!m94?VI)n(JHS`1IU%IbNdF!mC!Q^ z7$puK2>oNOL@i0cfF|JHVTA%%wtrz<{MUPghlhg;kSk%q!^395W68q|2!;J4TLaht zSiok$`nNp-n5Qr!bR+)^M2Q9MG7s1}A<8&b{v_5(g~N;>K*O0=p+>Ki+*Bs<`b5E} zXg_2~B;9I&rbi*9x+5hU;Qs_gx}A4!$via3!D^{0xwX{j2hahdI=doH*5`G$rd(x2^LLVGyX^cO2qeR$Mq`cj%mN$Wd%-NM}rI zop$24&O zdmOKzLPM$F>~XNSB@3YogCOrETOO-yz2_?sF7oZDh(o@Fc6`XhB43pyniwZP(+$^7 zhV-j!t(hLm|DolRJfxh872>zjy<^7FZIFyspfSf1*)tZc!jDQsowNq}C`?1SiQ(VT zgKA|tOoEj>5&V%9q8Bh-M2e@BbvU;S?-cvl#5Jm$Zl16lg;*qc=gjt5j!hDNER1%( zI-fqUY!py%%Mw=gpS_`Pwk zvvaa>bD41i4R!vcj0QFU7O)wxe&6LMI;(C=+$e!PSx?0L`M&b8h=ZBkEhDS?%}Xl1bSI-V8^Gjkl2n!L*j(k)x+;HLF((ZpHZD9zPUU^su}~KriW5 znPb@}^_{i#W`-;X6K;X^q%|@B%8?Eu2SQ7eiF^vo=>h=w2p7 z4Xq{WC6jb7DpFAEQg-D*jd=~#ZiUswDQI@k3ZB0CuW1g2YO_22FB11GO^1MmbeC8X15HhoQO@!LUNUEBABY|VrRMzW6XdczMD?mo9e>D#SE5>A(o8i zh}tZHuIe_#vF5n=mQ>CGB4T(XIj&|;qqDmugFfr*lTz{c+;;#)Rmkof*$f|xh~km? zmLt(1HPS`uIp5BGp=HQxT+pNzd}EegJoipHaMZQ!F9QWSk#-VT7N)U2XaJgm^Q&kzZ zRT`b48tj$>MMg-@wp)>;xkG}uNQPo=F zqKe7|HB?LmUp}&Vq8Bc2dSmuXLwH4|%e#6?vW%e4RITd#HZ%v8A~cs$waP%_Ju;&Q zd=!B<4ARly{6Gv97r$4K^IZ^}sg=a_0}zl5&zbDBsgyRbfF|xz9sSuZZePgjDfnOR zDQ6(Z{gaX4_fQRTg$apMhDnBK4_9OYSg(Z6`OA0CG)@>xQ5OzXxxPD6&U3u`A8Dq^ z;FvloJJWmGk_Pl+#Js_F32*%g`00pi*PFnx2e47M&B;usDPx0FH^ab5YBjxUOgkNd zT2;n$E6fMn6KQMv)uO-vo{yz;#uV%NDqCW(!ZH?J*|>Wbzs9QdbsP6COIzrAD~|#0 z>W~Nv^i`%*c-+L{jT6#UWoVJmESG}4UsOM;*}&n0y>w$6FPM6Ntf_NBp-0Rs$4cYD zBg3mI(K7!;)h0POsj)voUeem}6Pg&YyfQj573E>__6t!C8&w)Ns|U7g$Khb6kF?Q- z>kw0^|ACNxEzC}J4n1boIYkp_&B!Y_eQeaB-OiJGg)L6rn80~M1$5A8FLne8W>qEn z#;_QFz^5(=G8tN%tp4UUwW4!!nvv^e*l4g?m}-guEj#_x^+$92rL+8Y8K#-%NY;wg znI+4f^)rv-T1P$4GofZD+vOTn7;1h&#putLB3~+a&c4!1If!uy>5NSYuKv26T4>=@ zmq+5d_tuU)wr__!g0){`y9{@B;04Uvm1C1a) z{-SMpNYAWp1As;&t%~3nB1nF*_K>aC%I@DK>esu-^+tRa-WB!^CK?y)WNi+-5pz%s z83n%5j#2fnJ3`{KdFLx=(mLeqH)Tam)g$Re%_{7gT8n0tG1^-eWGlaU!Z=x$HZ-_4 z(e+tknc$oDds=8{Rl?oa+ody`sj*TviG|uMdtKTKnLBV!$L}j-u}L6GZ+)T?$DH#d z?Y3>TbGs`0;D_9T%+eWxX3BoF7cjT%z-NhnS1fzh&k?^0`KeI17R|?15-FW2O$mq@ zxu-YkQb%1WXUwA!8tHAncMDBNhL*dXXn7y_gjlQ|vQJVoGtU zs)kYLl0}vMOV7499cXL}ugEF3UMW&k5F&Zrev@$Be{9!vTmJVI}5AZ13`F zucVy$lz{J3k>WaHguzL$lP@u^y=S0dB!tArf^3R$Qz{)sG_C@p`2L>u2X=&M102g| z1KyCn$nYZ9kNnyy!j5@ZOXzFwQ;WB0RC3cIaN4~{KPRcCLan2kmMVuN3gT^77y^DL zNQc_jS2k;D6r4(9iEl6j{A>aE8802`bWKrqjDgy#mH}oz_HG78%3%8w`=yDE^`0>E z9`}tVieEorNx~q_>BfGk3WC17ho;_X7=&?<7GkN_xf~Ld%cIK z`AwsI6E<~2(X}#4iRcT(#N2Dk3YC>Ffe7J>Lpkl#ec$g)=TJ#!PZi6uhQsnDbd;C5%-23Db9c%=kJ`TU&iZnKmtD$Q zh1cdR<**#9uYn{~H=gSDs>&aHw~zaEjceN1<`X?3GFf+fzic{~UQ0=-7D)+nEYV6~ z={4z`b?FZuH$x?=aiff>`x2d5#+9q#p;x9@F9`KUC<>hoNa}m?0wnd_uDJ`fo*Dv^ z`k)GcNqsDUq`vfjCiSuWE2*ywQ3y@J`kSd&&`z_Y4rZf3%j+HtJTuV+JGdEGFEnaSZc+cyZ2Vkv&KEafI@ zok;4Jj`aP~wLr3wY}w7swKVrEp1xO~12E9a$6gd`0BVoOuB20ac7c2dCL*NC;V;8Q z?f0DAfofTgO#Zf;lU?2g# z7y*RvU6#_@PVC9ouWoM~H z!=BS@9+|;K#f%3rd}CdCu_C0(_plX1x5M&s%-BtTvNZ%%j*yhd4||vq7zf)JPckQ< zc*}tYJA;hd;}QPVnpIiB?Y9n_jJPwGx)c zD)!0V`)tcimi1P_?nt)|i z-uU?zUC+ANwq*e>vn(?sc?zj1TMIR?IK?bvK;n_wnE1@jI1fik^q2$=G0RsrI>wo( zpnTXzA+XkVqr?e)7zz?023RNB=rT~INxCEEM@W7PVu`2RavO;snf|fC_eY{|dg|zu z533HtL02KvvhvvMrbM{|?fFvCa1dCB8;`!VdElU5`xdGfGc;z$KFVTFWs06~Cd;Xg zp`ja5NR7y`T_%rJgHfC#2x`>TY)IvAW%z|iD3@TR608LRt`h~b4RtrAn*V;C&?wY4Hnm6k%Wt3VLt6&?qxEPdC(k2Xw5J5k1fzo!lSvwFia-FQC_T!0QAxh^NW^3#eb{Pt56|sBsy@IA~N`w>^D%z-1*rM`7eI=BL@t!{g*ztk6j z((~?`SeMGF`34s$B(3Obu9y{COkB*r8J;!&nZHHHd8)kf^Hi+r4TyUikqj$UUc7n? z?GDlEhqFPCNA^^{09pZBf-ToQ)jBb{QjJx3%ua2EbUb4lado3HgHlnCWygZ!pgRiz z5O*YTybw)*JA()bar8ar1=vVpRp~)0ew~%-CjNBt!Gandq-ct!%yaERJ5A3`Q$yvl z{~ncq$cKW_Ld7v>-r6JH+SSuG!aFHZ&XyC+N@ZnK;_|QhO(ceMxk6^?p{;T`1)B3# z8MQV~RzH>q>8K*{pZPzDd2)V12HYSXCX2k0J_b%fBZt2@&5Kw&CEjV^ZxmLs1VCwN zUKpBW8kueRMgiD=bdzM83MDg&1J_bicE}p0q+U+zG!EiktlAtrc0G-Gn(B1q2W9wF zY+*fD4jbsaLfUZ37E6pUx^3;ojjQmep}p09#Y-O=e{5f=xveC(W%o|TqdC6|h$-}_ z%#|?zuwe&I=L_Js$MR2F17HJS{g)}~s?*Xx zs3N2>R5#(2NW`Fz?TwMPc}tk;HrbEH$?)xL0GILR=B>bjJQSD*9O4iMro{VGAX8*@ z(cAZJl6f4tKc^odCnJI_(72M@y@J`4*7 zZJjTLO{&qE(#&Z~Iflw|OoxjnB-JPF6|>?M^CAjE4xdWkDIIP)(nEP2XFUko7LIQD zvaU5`mSKvH{o%}6(|}`CgH+)bU&XN#E4rz#8EPkJ95t40^QWz8a|f-uUGidE7Yuj7 zb@exgtZ{-0;*7WMCe2aF{!$RNWtnnpVvm^MM)q?}X+>YrF2`h@OVg?B_5N*)DrIPC zUrlug3VMhw!b%)F*i^4u@wLE+3`x{pqr8OOoaJtVD8z>l5mT1z#&F!uWCa|OzL%?d zK0{+{OwuCiy*`^a@eZ0TE(?QXM;d>2niQiRV2sM+SN(ru)Ov07Y3p z4V58+S4QfH3vI7laUbYGYEfEP>cNaoI~UUke&JtijtC?mlPonMLa9_OMS7H0Ps~p_g=2Gv=RJOgNCx} zmt#7b|E?OLDxQO~TLl|DU+5n05?X$H2LeHz)ufJdIceikVDoE|VXU^hON_LKpp^Lc z(OYhrifoedsMIZ%3OxdgG}KC55t&t%&3T=ZpXOvlmA+&M^6uP@76NXY3{OnDc7I{MX*2HUD+M#A%(Jx(`W1j|B51ZwFbySA}3 zV2WBr>q%9`yZ~o}(FUBN`W&_crl?7gz$t3D1g#{}!`=7E(fenBKYzD0V`_|E31^P<{7Bs(+ z#@tG$uurq^#Noa-H5{Ms2HrtTNonvQ{?|Yi2 z{GabdROXb%FHAz_{3UL95`K2qb~;0YMhDrVA1n7q4RJ)uU*k*mYuZk_BgfHtx{sR_ zt3|==Zt)>U0?eom-)DZK`IVALP5?Hq;Go2IeXXakRlx^DV`OpV=YI#!Q=6K2rwI z^feo9(n_UKF%sf};`k}bl>_<-6FiThdzg|uo*Uzv=nQtTU86l9ML^cEH_66S^scEw zEnNZK4Owg>U4(U&3jsrAr~r`?u_`WXF~deYxS_Ov&TM{}JxmrsilPiDH@Iz0Q8a?U z?LdQYnEuD|mtv`Y~>urDjZr38k!6Y`L z26+s(L#IDl&F(K_*nHE6J%3223ouU$odw(T;kFPUaHYr%+GLNgaPX!*3wzCg$>Z?` zH)Zl(Bj_s#_NRUfl)Z*{Mzl6O@8n6YgY++Mj|9`)^SZdPy-?M!;{}Tec5oX%picQ& zz#&7fiH+kwoXQ3R!s5&&T!&6)bxk$Qw5tiK@Q#ejM9H5b4leNXL^g4By(wH^+pmva z;{-9}pTTz7kiZBG->oYlEk@8fgBHnEu!11dU^=vc63s=_)^OX2##xbl+Ld~3kJ7Z* z>gMt4a7=fUQPnAvtyH~X*Xd+oHvRILW zlEBoZu;}sP7Z{|AtCrGat)xM7#LyKSkx`nf#$&@yJDG>s&WfQLTI6Xp`jDS%PmBJD z$}LAF-E4vyMk9<0Oy1~-8+jjIXpOo@17GwW(#CxF7V|EX!BbAI{eGi%u(h}rE*cB^ z7W6|Z=dR^cs~?}5@-NH%NH3nusECbGuk_fWXvRF*6r9$@&zA-FY;S)!1G4H~bCLl! z?x4Tp6#Ug0V8IH2Q`rEBsRgTvg&81>jG6UM_Z?sZU;&!}>-RI@Pn?31X67|0X>?WU zvbes1X6PXvN~nca`^fJ_uXlv|s!P+hdNvf7X!|SA4_6ISBUi76C}G6(W5%Kbvn1oW zv$v^<7(^m8h*a6mmZ=(M*eo2RcbX%PHjX2iR1s|bgz{0KHL+qnEEy{+3BS%ct^m7ZD0nQ?XtK4_}&GqfqG+UFBAM1>9qzk0FZaC|r7D-lOdY5^lmlsb4 zW;pq}oI;5RLTXhA-MiV)WdLsjxIURu zha2mL**2JJFvNk_nt#lbvHI!nZ22?*D&zV=E3(BPu)xgv@?{yfC^;re4BqtWE9*c@ z-L^qZnK9a$KSUPY>^D7lgpQwiC|jv$@kh5f51+uwLzp@}_Moqd@!_Q}*|2s=Hum6D}UpKN+3?8vqN~ z3|PPKkpE8tSzdN6kU-WBp*8r|1Tr#NQnA}oi*nVyt?zec+F&L;&P)Tp*@}PA-V=hA z(4}KDG+JFqeJUZZS)zd7e0XM+g z^5V`7o1q|(n3l5UM-2T-0vY5N>C*o~Alue1`<*~$_6Gu4=YJ5$L@2%)*40B+B&G5Y z*^V#GmQw8dyrPMbH&UTW!N*^!v#a5tIgq<+wLxD3-~l({k~Lz;WEpdI74UPw}dceKP#JPyJG|fbz%sA zSh~65L=fIz4)2kCh>)&>kMX-xY0Yle@sLG??S`GgFMU%Ydr&UuenTo+M4oXpuC{WT zu}}HV*lj>h@C@$pQ-p8bXE_3=ioMOG^PVqauiVT_Uwx^0jnOaUq&VEbT5Yo0Z#xBf z!nAy$p2UrR=!04R7rFc{9)!hT4DQ=H7K9&5)d(PdXqzS$BfAKm+P<83C+HvGk$sO7 z8$&_wfMw7ooXzMX_FSDdxQ|nMzsb2SN?Z@xvsQAP1VPL|+$EP|Pb0mkM`uKBol#Wz z%*!X}F-Yw;o-UMtb-n1}92kH>OGzmzt4O~ak50}bgtP`7@#8^qfd{J~`yFzNFA>00 zQLJm7lWAh{;;N?;%amVm58leNuD`qGoKM~8%JV?s@}Q`5-7e4gmUZhwZeTkH`{R1+ zsvL{*2E_xrOFEG!ba*6| z%+GarKE!*!@QU*io<+DB(&oGwl*9YO@cIDBv4WKJ7t0&JXr7~xe9Kf=j5jN`m$VUe zc?MjfBRR#kz*tuH7^<9p{4&75?R1gRHbpeiRNF?FWJ_xerP#rc)_-DPHy~^dx#lG} zJ2bx3z0hyK@pd%z4pdKVHwJqbl1Alj-N4912#Jdg$r7TfJE>E8#T9~R6=K3KZiZ)Y zqhoWPl)z16A#qw4?xG4;!$2C!UN&P^0DyWPdOy-I>__0mTy?j8O-17c{Qb+Vj?J)( z4UK6qs;SK;!oUMv9WXd%CbS?!l7|t|ERJ=K6-k(+4Nr8sNb+N*_|c18$VoMhJLF@0 zC*Onh%f;D1J6q}}Vb9rQntIQ4lW1tG3K{pc^$5|rZE#&EuFIK7mqOa4l@WeEOnsA2 zk&1;eGVUw;g1BFfQi(8Oncf*F_h!nDm#SfG7rkM8qu@Pzs(#lz6Ibou6o47msmSC` ze1kWg7QZo_R@Yf2EoCl-p5pj@ag%`Qx8#_r>Mue5)&}vuK6XgBJdYQDFq`OiNBjZg z>fim%OYgrP6~CiCtXym?Tr8$699*U*9Dp=u3+_MB=ztA?^5)xMlY|&$9KKMNqB;k0X^{T?%)HTN`Uv=*kTz zpXeH4#p;QRwxL+Aj!Z;G;yAkwo4 z`4(4{WZB!ZZAjb}GGWfVxn(w@*;y) z-E72)W@=h{CJqnA9f@=dHI$_|DS?*XXmHZ_BYh71Wyxxk5{tLz1t3+?Mx^B=GZ)MJ zbNP(B(Oe(_(U$A4xkt1@Vr5OkUT{&LWx`u=6u*eVaL>b4I@aL5jax7GEnA zl{o(pj)b@g#g-0O;=zA&^ZCmq&d$aRh}K|b2e2nBc(~2Enb~>%#32JV02Z(ruzr78 zPH0U5?TWg|FM#P9j1B}#s&H+f-^1pjZOoiAJ)LtG1_8!iC(3Y#Z-UD*viQ0V@8ah4 zx4sy?K0hp;?cSV|!1OC+n=|)qdZSnlO8dtv0}{%^ATSkZR75`{MMq^8LNj=EGA~$% zp-aFPLs3ZwV~lF|pzh8o_syWs^H^qt;LG#S%tiaC#KNr)e}mNv@QkP4C_DAoc6@7| z<@;d9jb9Sl{ysgOO4XWpHoJ>A7*k;R!lj%oN>S-II(44ooPqZvkWSs{;-~L#B|Mbn z!U&&2tDvw)sS>!0tBwUl%|!>fOLfM#_yt7!lLxFJX?vbb54$|U%&|}vnOpgb*enzs_~Wx)yK~59{I*yd*VML zWb(tU<4+tFXB)3onOJaAGD4!;k%sFsXFGz(ae4#dH4OdjQjlxw`|$S-GkreTMHbI4 zSzjY!fSxwe7&=|WXCn63zX2Bywz;9V@7=5JMcdeCAyf>sc-85^$azA8nQc z#r~(US8a9<2lWTo%X=NUcW=E9XtRUEoTJ@BvUj{ySb8W_nf&o-!`>YQ7_rQ=3U12g zqluS8FFVG|>=j1HWizbK$RkSMJXK-J1l2<^tL?3EjKA4U$n!RJK~r`t3yH|op3E0{ zEU)f!vOiwDfSJTEj%&l0T#2JglvZy$(3TaVE&a$0_CQ%`mJ$W+TRILyCx>8D=ad@7 zM#Vw(s~Lugh|jGld>fic;Z~p}cJe=swT@3psm^2PV79HrJA*2=Z8rOfI4J&8(7Vx! zW=fT$x%xf`DK!0~YRI@TvcD zmzV(j9l2Pzc}xI)3+&t+%mDA9KPkk34S)q~2CUzA$%*c&8UPRd2h*}U=LnuV`f8O6 zY1E*+S=rdQmXHX;S8R?h{oRQ0=y^{8#d4p_a~e}JUq3kacU!Hc7n{2bj)b09Q=GlC z72IBwEGI-alCY_DO*+OE&>}%*yC_0Qo)h@7qJdE^#jY3ST&>57p?bAGun0^jK?~8^ zBQs=p`L0pIJy5d9IdmA`Ub@!#`l>YNn$qh`-=&Voh(dXC?8Ot^@(;R>A7^YdPi*nY zPzzjZ)M5mxKzXi73Qo%AlT710JJsx3J61K#n6e2+7JbScG>+yyYvx;zCM4TzhMI(S z?KxhVLHzhoWV@H*hfW*bLAh2~E;Ce{adqA(HqF~|o+#3jDxal(?oFlQxW;f~=XW#B z+3ejNUXZ%JAjHh5kSY$92_^=upScS0+7TrI9Wmi?k(Ob;zTc_1MEbbitMaPiW|ZPK zSWffCPHB$yRa?VrsI%q!bw;$)XOE+5kDS3loYL&|bhOVF6m8RIRzI%>6_q9xPpt)McABcSLc<+Ce$9at<5_Cq=XO<0 zN_xR5JvxXz|TsN{YyD zB3&28fWbyCE;FmQJ?rQ;X5bShnS~TbT+m1C^MMIrgUGde3_h#X*MnWw8H?JZQS)H& zSoz?rW!iTNSzJV`H3&ChceK^J#rZ(fslvx(kl@YyHu%Qel1W>y;OI%E zs4sWWEh~|hEJi^1m?=V^-tLP5P9`ZMdXj#-65^-uO??^_9Ar$AFCo*c?LAei%o5WvxKt9@ePLZ{}CrW=b zm0+d|DwXa|?&^0AjEg=ZNmuc`)dVk}kmGJ(C+ra0ye@ZKj?pJyIaN2gtU%%b4m#US-Tr#ArPp^jeSY3g38R;pB zwTxid*vdcYt!X4YMFsDd82(JNZ|(4VqhzR>B1F}B@zBtxR|X?e`ZU{b+@;;_>zGFm6Ql%QsySCeA@P6&4xbl2{FrVcVDH6a#ZCG2= z?I$*{y^(tLdHjQ6wrQ$5DJS4-Mf`vH`ZwcbVKL?A;^1auHvxdZtfm~S?0+P|02=@c z*bG>|ANv0mqzC-^hiOYpyynm=mC57fST!uGWIadK$Bnh8R?r20{U<_f0o-$~{l`ZgF!-xnO75am3u|ixsLLD&F#)wT8uD>Ide>PZtz;3K68) z5h^GNAYV9UueVj8$?NrSia(!ta!rQnu1C)nKxTfT$bAExeE%Lwg4qp=d5g7J-GJ!E;tNO|c|VQG1$Rsu@UCmW7yPA&_2)Zm-lQ z>&b_)p%~)ikU_$*zZhvx+$2a$|l5X%VIVc~^OCt*!=e5s` z)WtjojS#0Ke03_7vOM`6>w5xXl+@C~wky*RsL!7?X`uRB%0CJegf?~Y3gIOj%DRaM z;aAAV;qLagmm#20V0*AA)THnV6dHXW-*GYg2$nLj&KpSH!+Csvb9B+O1aGJFg8&O7 zwqTupj5EIxy0$fxGJuBm9ZEwS!7vrLfdzcrI_NT;uL$I&(ir(w*bsYpd)l<+zZQZHuo-|@X)A#_uDPze~!Dt{Zb|< z0Rt)@jQ`=&1%PXq0`ILHK(j=13&3~2`JYG(zy`nqHUrl0tN29wA90WXcr$342%n?` z<$D{0L5of0661WC?O`a3(eHj2PxdejGC?=VpT6tT%J!~r`n7GtfA)V?E~<*(4flDuR>D*&Y0Gk}-Fx5sWf!>ZIQCYCF}hPRl5OST zzW8~D!CDy-(eNgRg>(Dzg$sfO4}#@)C}0m#^dM9s@p#$$MSD6KU=z@aRx;`46mm1j zsOUa@SA3A1okQ58E;dgZtu|xR2!doNkku6M%h+HD zECiEKvY_)MuuuF7IL_U3DL%D6%ljc8SznyO9#UFwZ=kTNF#VQNh^=TS{8KKUi~780x*PT-4NibO z5Hu^}*->#Pu0#QiX+3{^J#}_|s@1!f2jZ(5)Km^JGMc;0_`uwLW|Fu?p+8v?KU92+ z(~!{vl)LBn9FM@An=r2N*Kkg8RP`hwO{m*P8CD?fkmz z<2zNIhtSOmQ69nm3^U2uw;J_#SE`qVnbc7tvF{S>@nL@~tv6QecHs4;;8PmY5#>C6 zu*WY4WJK#nf;kB9n#8PBRQo9`9SM$>)9avWE{bx)ZvD`+to-JV;DinNv&{Vi>z3!t z1|vJmE~bUSAnV)*!cQ)Jd*+H*Lt)+-{Jw6PjS&oCYG> zbR_K4ix@{eT>VaCmG(GwUioz!r55^L?vX&U-74KTA$*23f+>U)0VC?c3=VbL^xW(Z zXz$+m4V(-jY+Ro^`JKBBEL`krQ>Z z^MCPXc~Y45M+67Yr6{19+aUmxae4AY2{m}?leb2iEuo$-Qq*go{rAcEE>XE2?xTVi|}iTQRZ#^ zcDf{)85As>RX>y~(UzKJ#f5GT1T+Ac=wgUH{!Z9LTG4IShA|pn*-&2OVYfTZBu8+m zx%(TGz8_}9TU@$7%+)cT9v3k-yw9{`sJLwfX{;XQI0zOGCH+ZT-;ByV3!iANyHz?E!8#^&=b#fhC;KhHKG27Sf}Ft;Ykh%iBd zG>cbrf|OCRfdo7yn&|lp`=yJGwpHA&qO^EK%siwXM!{8gcsl%Ib)e z8j%z6V2yHz@M;>R1gsZz6jdmuEn41PTha89R{=vP@x!kHABf53YhDd%Iz&=tcQ6U+ z8JB`5^Yd0UAAO3?4Vo-lGo@g={7L4&QgaoHuev)sMmd$APOGjo*d6)08auImWEzNk z5cK^b9M0)hU`&i(u$AAPEhZTgaF6_-?{#v_axkDX!QW99 z%>LUE@vqr5vpEX~JK)vM!pddJVb0A3z`OoLTlyDe;lJ1*tOIFF0H5)|sA8Ef%`Q2u z$`_o%*@?U?h`?Cf+?^$ym7k4-vXPHHXU7z!h&8QglD39hes=@=Q&#J{H}}I=&q}J*D z)O}k(M47lxBQ}}2@tb9>Wk56WhbZ@wLOt%9XbvD*72T~M5XrPaJs|c%*|cFvBwA{TSbtoLd2cuK%2$p z$V)E@9k=q zlAO-h#&f)z1};7QEpYa<^39cvuYNGIkDvqMt0pD+zn_x}LOdI^Ud-i?e@*c13P;<^9C8KcK?KXFO zasbYha;E8y39`gdV$7waT0|GEu&CSv!2|fv8T3FAHYsuu$@K}x6Pb>Xv+^`D6xTp6 zaq;wBf4qO1eGo9Gh2%<}-56RRC2Lq6c8AC0m&Cwkub2t@FR$QjK7dx|P?|ElcF9n0 zSud}(cR+5w9itwD#UMKmC9Z%3)eoJifoIs8122$o{O7cS^tZW97%;vp!f4!lHhl{} zEm893No9l8g;LH}X~iSNeGjv-Imk~)eSuHYhT}**-~9P&!8LCu0a~47MW9v(={Kzo zDL|{E`A@A5+izMOwcx9~I6;`~@7a{j$OjiVlp3~dyd8i*~2*p3OIy(YLu_ZrB?G;C=J;@nOFD?BlIi=XkmptVa-B|g) zTf5R92_Y%Dd_DpIIK|EwaUT1{7hV|rzTDi@SAbxaNO1&c!=ptI8rFqmaQtNIVl zP8QxJn{0q(C-iqyiobdfu$q|ynK{gWTy%DBfOQ$W1@oW$41o=R1#AYa-`Dtm5_1e; zP(<;*4|(LUSE^N)EswElKrwEN8k^^^+oZh-;)|k1ee_hLHavEleBoYzGMt=37v9;olVBQFYl= z;FB)=6+zic!J9OK(P6V}lSjxt3wC!@#X|P~*n7*UI@6r35@BF%B-1?P~kXd6;HRoIPlstMAq^-e(7`%JVx+;$!KE3uN@l>u9OX~0&L#8Nq2}!* ziX4s7nR<>$FYg2)WuiZBx{Oxn8QvDPwTW}2*(1D%d%9$tH;dAj=qfef5>(s(KTq?^ zN_@h`MaZ~iIEghAuzcG~SWwJHt3q>9f^YMkMcKh0ihO`A60LjEB8Ze&%ad#6a#_wr ze!nqOLFo{K5-K^hCZ@_#5yPy^ESvxf2dr1agm&_rj+RmV^<=2(M@TSXhb!cZsjCwG zs0P1i_uct;tA8@Ex?iaEE`JiS-4`oJrgBsUG4AayJB#+@@gSb;R}%*U zAD=3|D(c)7A8A>5Sy?B%>~N3%ZB4723Js#C8V@Jn;u1G>FK15MXJ)on|I51ZKMhyv z4J))-0t+4_)IhKLyXwl{xiAMSaJrJon90D9g~`wuND2(#{7Y{cNC8Md%0TkF3!i96 zIRXc{J6wxi{d!%}B4lDc)C_DYGwZXKY79NM51qU|4<&{MlBSBsKXR0H+iF;RkMcxPZTt8g;1;zmX+2UOzwZ2ggTZCJt z+?TtM8qQMuR45#qlpu~Mo zJvfPss@MNS1e_5uGU3$~j?VJ22a_XYFuu+$x*f~1ITBsO!7=%O<=)5c8rTw@%5ew9!bzrN)p@1EK9A-7*2?{WmHWLUSI$Y)@Di)xki8rBLjy)jM7xs3(2XZsF+_|#4r&20=|id}gxq#?isyB{B8za8c+;9yA0Q;>n^{|!1t zTVZ&~kj&R$vHwN6#l>Xpyb-MKNZk_AWu?pFFotrkme~l=h^Kq_ zicUhRYGJ30(`w`+gHT4{K&4=2Vb;|N4Wrbmh=HZdjjBI?*?A=ESDDDW&^1&S4GIRZ znwXv@k$D+TlehhTT7Ge-sb`fFE{(AT?BCH5-WsS->tJa%SWYRDjldg3Iqb=4T{Po0 zCrLNGi)aK9u;KWl^s3TGobSu%&M0T-8@JUz9gkYw7qWGZfulTO7hO;+s1wS@H zdgyB>b1QZgZLG3izT#{i6`9<6+~Hh>lggt*BCYDMT5USSi9!YS@oC(rw}7gIlvpSZ zhIq>RG*Wy1<&!-A89e{`zADEmJkc|!$XyyQdXtcmF03eGEF~r0%^^`9k2>c7;dNDX z%E9^_Sf(u+YWvF?F~MxQ9=dbqV2yyCZ->}BN{+vJv^~O28jxj(_Te!+BP!l(GS%`$ zXqQ>sIGFeKJF{+-;$vMegwP)O&@J^iA1u5>C(UK~2q)#a;XfAFD@wU|Gs1>$<9&ix zrt^pz=VNhZls~cJxjgjH8WLaFh<_TeDlDhy-p!2m96^d7fj*~=M~2b_FH3fc5GQr~ zNx(yA)Cd3eXRP(7#k!|rCY$u2c_FzEz1Yu{_j`A4RUN;C79(${!4L7fhdHJ3H>${c z)hwsqJnh7rnQ-4savioIRJ@u%GtmTB$ciZ5kOdENcRSMyTOP?L&}pF>_>&v)R=rqxHHN0Nid7be=}oB7aNrzU%ZC`l zxuTZn-j+Cgl+My+B1?J4uS~Frh#68WxiDLQ)4ta7eMGOtAi5#Z(SQWoH&)K<{n?r7 zviFKEgYhAIma)4VG$zI)|L_pX#mV*-Z`zEkU>14pZxjW8%3|k4%Hlw^?n27{#nZ3P zXuxg^EV3|hFdA^O0lxtpY=6mOK?*?fZwl+`N^8JDdVS^)QFzsBMC8rs zP*6_3{M>$cP2h&Y1W!EAW2DqGlwiqz?vagqerxEkkPZ<++7`lj<$(zk=ul%5?$w8O z?s*#;1V)6G4Y@0{!qNaKbJlOkHY~OtQSjImpvXE^K~g_JW>}!P;|Cr&-6bs!(Lo98*v=@5a?h_Od2FKJ%9m$Ow1_Y5AON`Rcft$E;?!DMe8wQm zk}T!mU2ym;p__dWY>xCr;v;k})UU z2@bb?$M4u3^#s6w8>kD3D8%;Tnk~?&Ln|gq%f3tBMNOIjjlhF%G+NS8;R1JMM$h3? z$whWJUUXLpsz%8uZtOXL7<$fSzZe~LUfBQVi6K9UApm>+vb6Yc2uKZ2O46`Jk--k6 zhUXL0l2nNp-CJ&jbC$+6nYZqs+KHB#3V%rZXm$oAc_a*aW z3=YL~5pgPU(@if-W?7zCY@-nApr8b$X-Zpg6Kv(1lbV=L)PbRFn&i`rw(oECR4W=( zV`iaME2Pr+>lAdnkZm{kH%Jn!m)n^>{eYZK_?U=tLD0|=f+5que8!-2QhP+@^iwvV znOYFX)zXKd&pz=h*4p>l%9{B@MOYg!EO)mSTt9u{f^$Kr$ON=E)-qwMf` z_ms6bavJoz$u5G2{J z_K-_SUL8pX?-E|cGDwD)vk&Fjnd8TGc$`OcmwTU=3I_-+#$-9=YP^LPZNBAqzt zvM?Xk3I_FbET^vQaT#kGmR7(TKR=5YRnVUNSb!6C=KZSOM4MLOs>13`TDoi;YRSD6 zdXPyJSO{c)Ha`r+cG5n3BHf<2^83X7#XUDfZYrH(uKA%J|01 z3!gj2_d0-i{MeH*oxHgnKOA>gVl+Zr*74SdP(AM!@Hz29TE2FAm5kXczdk zrRvnmp2Ma>9gfAYqVMbSj=Zy-vC)ow1nU&b_Kik_>r*x75w?$?gU)p62rX}Zo`~H7 z!_^p8=}Box9N`0(w#xKRQWNjDVD_~&bdaueBS+~RpU3G_&0zD6nzQmby~?dT(r#Yf z-})`isH>5yivcLuyAIO5Adk$S2sU-P#@xF->tD%uTfRmk>nT^#5U<6!G`InwUkOGi^l!4^` z#QSRh1zr9=ami{vx~du+31d8*p0SKvpYw87cL_PeddOv_5_UdA>8jg# zx$fPv1e&;nfHg_p=75-it}jf$n&c58 zxM942bZSiJrGzk4ZmheQn|}{@Borwc<1CQ7&Df-q4KunUUNm|NN7-!SSP$jev(lQI zu3pTBt81S(2W99JrF z5*5^0tE<`*f#E_6;<;AX=(ka2!C_7`YUi7BKd)!)v_=`;A_VgHV(fvB4ktJ#Rj^Ba zt6vziV~U*R5mJv7_?$9@Sh@jUeaO;Loqr%(@t0`|5207b%73Tm_P^BBn?X*a)33-MiL;+`a>wNCh1Usw*oyP(klH) z{eGquXB1o4OY=937VgnHt39cMIAxe;+CTi2y5sCCAvs-)fSG z&mXZoBs-u}lea77cBLe;$xriRKC$U^wEJ|>?3d|UJA^nQg;F8u+I#jL=k@yu;w}HEA6GO61oALA_BAl$YMWkW2uezh24PRL1RQx!0? zycLb0r3CL-QYV}hKOYj_gnL6$-Yt$P4$fwFCjKr4*TRQTH;-{xw#!1ba;|}*A#Hx{ z=%M6;2OOFDD>iljZ0%_Jh^}=Adz_C5ZK5xwtVIHg@SRJa*~NmSiaS3AO1Rq>9N}h{ z{HCOSjYs^q4Ft_3-Ew~xHj}N8 zYmLMmYI6>JiHy0!;zh!0`{K8?DK?9r_(&(+CA{x%(#dhXKP{(bA5V`Ov6dZ+Tstt^ zzs#BT_ayJQR~su}ne#UGdtI2S?0zgy{}ivB&b%b?_1R1DK}2DpMi=iwK7=&;{neb@ zFPs5JbypmYOtBBDN_!rs>Gw!><=-Ge08N+#WIfht&GPij-Y-707kcXRJG(hU$BL_5 zfcHX46jXJ!YO@Vu>f2pkuXodfMGgfk>z3X&M$B%q zxU#JmUF8fVT|SxEm){*$i5!+$JhRv;4;<|nsB64V7dOqbuU~S_?T=r+J6eghX}t4j z-#m`MuOmtvPoHM)Qr$m^%75^x*~8(Mj=1|SjMjK;+P^GtXlP86pIj zk0Vth^bQcIG@(eoLN4Y>a(^r@avtYuPcs%bsgwMCWUFKuG#v=3GDd6AvQPi8<301b zSje!G#0UmKV=yNVTva9+P&)u&L&6`-pR+s?;hu16z~PG-<@+V++lPVS+^V0=`$64? zT2kPC=rldj>OWW5DY>BD%QY}Q=%P+Uq^RoI@ZvB4?5eFt>PVBcA(*IXbE;ooK)^Zx!Np5XDpp7Xm=P?-LYF*qY_ z=_I6laXkwGxN7T1biBY!A3TU-u=SK+=JM!hkHXKmi=vX`G!APbu~2_HcaCLc7LaTvvTR4tuO6>_sS{br_`tEsK$z< z+pdIHem47w0o4#^dxT%jlPbY1p9!w2T@&w{E*_F$68dl$bExAmIsdWx9kJJqjd`e# zIVx$Iv?KuXvw*Iu>t*?(hA zzBjv|HBxtUIUk)~70U`9bK<*}7)r-4u)mmIHCAUQ^SvtO(>?9+EoZPi9@n-WY=%%o zqihhIk*vgbD~MEu{q$mGzCJ+>c;G>jR+i|Z;XM2bSqwMWI{tMNIrw?m;9+`UYmTZZ z`_ql6SP5&x0u8h>3zeUt;Oc=B|1bB5#4abr=?1B7i)BQ! z=3;8?D&u9fA8i*PKlu(;%scQ0N{%3%&uB0TuTea;FOR)Lc+D9rO#kU$fUZx4qbA9T zfeG0vb>o@2^ls$EZgF15)0BQ%P0+FC5bFn}Xk}Y{Cr9l`?hQ($!Fqz}gc)7UrD8xR z8g$oETSDjJ(rNBRri>NGaO`DC9)F-Cn4m^KT!++!XZzGE|HWYE0YahR)*d>)W8^oI zxpiEXGv2rBLi4ZJXb0oUu5_`yZ&VmbR(WnGy8+pq;~$}YZ)~0w1{XX3G(edTfrF?H zECRs6{e8~rOgdTK($n~OWj)Rm?O9=WwxI1U0T2D7mS-1{c#bX+)Y^3<5)1y zG!(FU2;B(A)UmQ-8)44fnv|fNg*9l0x*Qjp2Q6Yef=rJonhvKvFQh_!O=XbwU0!wG z`jEE!0q1Ekh${`!Cwi672I}~Gw^NgpYZVUFAWwiCic-`b&ReK*$x>3NYYfyf>aXhE zz8JY(OWpoNVI~E6Og#J!8e|m+(^+di-u|3s(bOaS>EKn8KVqp-j5#Kv?yF1~8=f(l zD#I*cmk|>ONxm(87%?EX*nnC3V?<@xaSdBSpe0pZvVt*Q}b(@>H}ITE+@U(<%cJ+Jx2; zWX2**%3%U)5D#)8`%dmlCFlK3&-RQ8nGtz|@tgg<0=PPu08H!+n0;H?#LhxF`n8rt zljr=_cJ)8cyazJWd29nyhY5=Rg`=CW7&Dp}Gjaln!Zn$jnEp~e1}OjuNEt|e zcl47qDMuhx*dUN=+I5OCGfT0{wr!9S;FR`>P|oAvig?Gl97(*AT#Gx?>sAs64#&>U z;sVbhbXs!d)xtLpY}9w7Q)uXpI0M&h>F&#y)C9-#p|%puWI!uMCnkp%9j2-M0tLfA@`ZCu0qDu^7@(|eZ{iZj16U5wOxx7$eWV9!S`$4 z`*_HKrY5jJT}4ZO5jK|nXv@I`GU{D*3pd@N7!ISdYgQ01&M-pP4)+f!#tZkL$+SYrXAcvZ+`h7OQhUHOr(VI<+1SE z)@Cw)ughBGUw~|lUKqQ~K9Q;+N4(40$>ppZN7X?QDp>q57*!r_yh{WfP z_S%9~bVX^2v;o(-V3w6N!f}=fHCt8`raI2@98M#s>v$`#TRhP3y^!TbSsDPM0go={ z&Knzwnamb>B%FNv0uOrNa~p#m^aP*Xxd@U3(}*nSwr4xm=3}k-<{(G2jAGyn!>%!*hqhxF}a+M_01fo@^*2Yi5yE48C#bJE# zs$VbZiZnt_Qfh2NYNYTNZZv*JU38)?xk@m53sV*uHNxoos65hNzr&aHgZ^@VVMgTy5-l0@&24aOpvA!Dlq^% zWi@!6gFC=w)TSQ)MAmlds54=g&+YAH+RWO|>oM8RRqN7Dzx5+ljmd;PW-3yVut)}9 z>z}mvA3Fe(%SLl9r#<;i*zi&CTjfjj+~fa#Z!;a~R9fE0iP zqzoj#zc}McGE#kvsO^X^A&O8RENACi!^Qen!}B7r&tr;atyyIxndeoOUv1)S+Oqu_ z-Y*HIyI<}d%Um{eVnc2D=|d;5euL|QsA0wqH2MW2sFIT($5QcSgvp?k{DbIlez1+W ztkO8{797R2JWV7!!+spur?_wSN=o*H$eXnUmCs%zVX#-heJa4A0YBPnP3ebqPyv4LX}hh`VO~hzul+gG^I3&fR*E zn4%^w$dj2q zC>rA`!wQSkXE}HW+ObMDoPZ3rx=b+TO*qQCPj75Kr)l&?<7utRGnyQBRK&hhuE1Rr zdSMwXj2oKPp0Fz@Vf809>Xv7sy({LP#tdA}sr6h)xY4sU9CeM9?wBcjuJfPU7%u9H zYBHn3tiDFJkAQx8pyK0M8~!=oy?Vp;XHJMK1g=CjV7&C7hF1PII5T1AG%+w@Hvu;L z8?pfRwJ?L)ivKHe`+fPvKZjO8%KqR%e{KgMCm|}RTBej4nJYQGVU|f`O8!ebNbxtj zN#5HX0`6Z9-p1-TVtz_PG2VvDB?&>z=g&9`{OaIqqi}oD)xsVr#xMDL?o~yI9|h2; zmZ;E~vxT~wm7U>-!^q#?E(#}vPN*}W4f{O`+3sFHw=T?jTQ#L+1g2y4?px57v;I?(rpi3U0}Q+)lD7t!7BWNN;~N}J@cw!CQ7g0ODgg}&N=B_DZtiSKqWiyxNQAT4Ivpl4Jje~&U5F>^8k2da#Xnb?hh%Z3d&fPnEIQ6|s{AOW2QlHcFCAF1m=lnJ$K1NJA7 zph#aXQ%3PgktqGWHe^2^NQGiTMr0#j~x}&hP9y zG2F#`?$1Nsr$5c5QIyZ^ISKH`Ln!M!`nlJB``!sP^WIe*jHg0hvw>sD9G`^}{ zQtxWA2T^YFZXpt7y3(luv9iR}vf(psY939RGt8_Jk9z}Qtty@Pjyh?q2^5&46y~%) zT$`nVc3b7#c$@a9ocyY}%gkIi9Y(DZb+@OAaq)K*6_8Pk##t+QWFJ_!Z;!?EQ7e?)H{5ua83b#yUi~7azwtIX;Jq5gEV+! zp$K%eln}y?p<0_?+PwpspUP+(MMAb`1dKb8o8q%r=S@^TVv6-wy;kzpTQ`ltj(pAH zz_;CmOxT#AyyR-Oi{JAsg^+&N*xdf1+51}WN-A5hpf~_>N2ph#S>2Y`3H{Am8Kj(p zK%wW_7QS=T#Njvb(e!uTO}dZwNu#L^^{i=$ijcjmumx7pqvsKJ_os#5NHWbE%LY$p{beDK}HO%)~Ll@--Qy36PZrP6IU-QGktPkOTiGxEr zyGLg!EtwlQ63p!}3lNXqKg8kjtu+^_3m5Qo&EbRZeFd^Kv(35*H<@s~e~aiJ?{5bw z?l_DlR&>za(*gVb)9`cvdKh)edovm}S)2te_!7_1UrcD`*&)IY3_cT$fRh}Yf__27 zC@4Eoidvi>wXgwhemD&2?9Cpr?U5?I9%|^}iW4!SVZp*Nv!rLEX}dV$8Le1zCD~TU zTjreKRU>7w);h#^-iPNYLy-u@CPCSYIA~sBq4rCO2?UGiOGdJ>%#g|;^~IBBZFx7W zQ6KGJf|XIBi4z)efBfEuv5M>^sAp(cTY%f|FCP%dUu3J>lTTfo9m4O*UpzP8cKTo@ zj}T~ISlAb5FlsF((QVc!GyLZOQtdMaCEM@V(=7;y0SP`~hBH);DPP2HsNCQ9h$1 z44?x?S)LPsP1&+7s(d%+DcIWO6$KCxPR1sPxdu47o>GhBMUAGb{XDc|javx@yWB`6 zAvJdV4|SHAF7q~7odC;RzN(La=8l8#?bX*mEkwHsFaqQQqbF$~e*Je%Yyb9*`X>s) z%)$=D$=LwL#w?5m9EOG*Oh$j9Ap|J^2}l`8et*Kom4;<|fuS1NIf_DGP2Zs)oyYra zRVe>(#O+Pa_<@+ESYC5Pl~=-5^;QQk_%MRFR1Vw5eK&8PJ@=O&6Pn#QB2S-iwF4#+ zruW40&|iu7r6uSwkW$8m)04Jq^DN`0#O*~n1!XZY6?2EBnm30Ei4iNM($>ZO5)kDJ zu#x;@lw15Nc3ibw1stm@JfF9!UA>*(OrhkX8RpxpRnY{^RTkw|(Cg(S*0in5o_MR- zPPt_d90%zy-O>DV4~O}Qf^Rl#C{6D$Pb{AAi4{UW~`h6acJCjcDMxnWcrY=B6 zvd<(pX{OSLs2yCWy<%FiNb4K^U7=q)eQynd@gx}FC&i*b=Ex5wD~M{^xsuQDGUNIs z>(0pAldN>>I$y_bQ)&T$$e(##2hGP9W$6Tjmmjr;75iS5`~yuMs@PHjzJ}aqg0c4E zmj5coTLYgj^tWYeW-H0L{+`H9$~&yc3XQ~_y3B`K6H~%#fp&|y$kWTFF8Vw!;nxrr4OTKYBy@>BZobG zvle^o>0D9f{J!`oYX`~cSe>BD4kyGgWmAup5SGQawh&WVIW7Dq4;;E;?$Yh2RenRb ziOjEZ|BkaqnG6W^0!6?4Ty8??fMrHF(cX?Y6uc3PFym4j3|}f5d$(T0O%1E^8W~=x z_JwY8HoGQLXUtxvF!Tly782A0=ggFz-gRR zdbrM~heTeVhj8cqXXeS(y^5!@b885X34!@6Ad0-zAF8>vI?u-Rz-6uk(kWddZ0043 zMR4)#`bDGN=5C9qI=<7kvfO&rQH_zm(|4&c;9p`hX~F~uZGUn!7t}prGC}t>j4lZS z--R?sXZcs_;g_qUy1j2k3Ap<;Q2FG1Oy*9dM~PS)wI-e_kE1zNzC{5{KY`u4^BGMY zd8N@k_se^K3eHyblCl3g@bBMxv7sRoGaECDfiW993yT38qX{GH{{sFck>s(_A22rZXGz1 zofH#`{xx+c1zi-~W`MjY3zz00GD96coH~krjHHP=A8o@G5J*bw6hO-A+ zew597wlPgj>EWQA%hS&xretTy9&#~)7>@S?!q2{&Kcc_6R0Pioj7YEnb~s-kI-B%$ zp^rU^cFtz?M?2s_G}+#A;2(h5?_fP_2S*WtD7C-$Iq{H*{+!$|W~$>O>p_~PI; zkp%JzF@@#~%`$3V1JsC5XNksn)&AeqUDpip0^Z||YeD-$O^z*GJ&)Yx=2>pPL(O?H zi77wJnB_E@&uo2kcn2R-TU|*}3?Cf?+k`szm?AHYX1r&uof4+{NMANKDr;{bpPqlTtN|cvef_&iXSYi8)B%*X}CDp|4+(y0tbNZ3l%a{9BGEXz7^=sD#)7ak7 zs>7H_-DT`5f7#^j^EuaCI=dz#>z-mNeO-QM-t~u7$!>NhO(T!Kj8DUcFTtW3%I|M{ zlHLZc=vfby$IPEC4y|+4D{I75Y*FoB`0TCj$4eJfP~n^OrxkN&g?Y;K z!2G+F`0ulMHbzE6LsnoAYz$xl4%vZ9gMdF~^Pm$z0y+&Ozh9KUWb@tycZGcH>aBWa z>GaE=^_L(!jT~br0`k&fL|$%VleW3kp`pZ);1A;?x!-*}6+1s2n%wYBHm)PmXs@*d zcxH~Pl31-QMg-LmS`TX&X=Q6ljDZx^(5Wdf2Q-a0hzp3 z_MWU zS(Tk=dEBndOUk-!;IEOdkl)=luqcp5i8ky#T$ zjuUNuZ}i~T>!fzuJtpBM555aneLyd?$%?;$KR6^WCi+3s=O45H4`os`Xe?+N!j*hfly;*6YGZnNiT6f9tb^^FU`1*cFW%`un63I#+v&Xf`mM7N`3p>PDO7(+zjsavC^0-~hJ zObHaiNqlhOq%7UKL(HV}7Wf$6urs^~XQFrPz7QlCfWiU`aNUakS_k~`XeqKu_mKjG zd@%VjGZ6+DbLqS_;Eyvgyg_8LBaXF16a*vHIP7i)rSh4HCkv~F+s$jG-h658_9}^| z3_k6gzD27sZB27Ga9S>tb-BKo>z9WwPqXRQwx!AT`Ch*$9oFP*Os6CHq|SzIwFsvP z_y$ige$2d8bttD`L;@6spIP4iBae>--5jB zJQJr8iy?5stAQ~qr#^=PkmZm0FY}ZCcXczs?+0)?Ji&cKeM9!SkI{Lx@?I%0*6sELUsOQ?4h(b{TrA99_QJXnI-d+;~U8_Lu7s<+Y9 z4=WJEvPkx3 zp1V=%Yo;tk3o2g06p5ihCrEYuZ1av64fdAs2d8Jd(}0pa;`B30MenQmr&-1?xbNZ2 zI(>0OHPy9-EAgi3&HFKz7 z9wa9lac~l4=J}{#=0$t-kuYoahko$@_QuU%x3Duq_&Yg&Y!p~yH-%k!Eie3x&JyL9 zB)$f_eVz2{=%X8x=Rctj={6stK!AYQe?TAp*3tFZjG38%bs(xknLnYn~D5yH5lsWoGWeD>BREB_w+i!!y|56!p_lvm(B9%b& zK@fyKR07cltbdO_Aj*cgQ;<`|Rj+BHDHw1W{)Rq4pH5x3w=T?kzb{S$ zq7PSQJpRPu2ESmzIN@@MdfmimQoef7u0+6K)~inD$JRx#)26X^*C9M~oN?GA7^O-= zBg3AOrv%Ol;2^_3mwZIV|1a>t(04;|yPrPV@7RPa()w82LR~CuD+DKk20?h2M$*Oon&{zeH?#Tt%N~TG68mpSra4cipoL7>B!p9ML%Ycv_{#{^=JB4wk4Xdf?ty+7M8O5iJzUjW#AJZkkt|h z#?%vE^CSgA7b1B{#?^<(nge!u#F|DDdA!>zJfj>1Y65ZAtKpO`%Cmn#d}YjvI`=}J zaM^qM%3De~E=i&eLtwrNf**o`@I!6hJF^s5<}yg9L5;AZXDrh|o0o-W{Og{rLEmoK zmrsu7)~i{)ao`X40EP*;x4*#;b>>c$M{mN;VwaOFd=VZVOu29Z2I@A`_rBdysCd6+_|RDO z#|nAzeYjyI(2Mu~LsItlUaSuaGz|=Z8JPhyBO|8~n=#X$lQNJ3kbsnddl zI~dY;>MR?IXv-`y&MtL+&ODkjN67J+hx4>T196?}-P;P-^&{*^nyI!D=4YaXnvbmV zN`zc^NV4H6JuiiD{3$h*^<#yX>Is3DT_>c&(#Hx&6Z^6XKU@(E&J(nSDG}(XL!1Xu z#uQ^*rp8o$c@mp67M+>4pe&cDdx-l%r;Dh1lTFM}SDwwS?_UakPFQGFjicnjg0dlA z%QBSg52t0Z-5-;#=d)GE*1550*M_gV$CFYWQIYx)k)1v{(yU%#q4NbRv-?`~CiuYQ zIT^(;L9(9=btps7FHF!B)gLuw*qddWJd#+Inj7a8rL4Qf(z3ySdGnNiexaoBA+t?e zfK8E`sltPsxWU;XHtJfcMXJ)WJ#*8>-ksR$I03#2I*X{1Vm{b1pb1h@v-qvKSV&`O z6ULe;pnd~vRGGgil&a)ISWehIAc{|Ez|1S8Lr423p&fX>IqZp~TbX;4XeHLBZ;O|= z>78I6zMhArK(%SXc%rMZdg)#gT~l}C`tb42{JQI@#qbnX@(4i&?=zzH!%9V>l~8lg zBBX_8@s|fgJWKVOgUxXZi3Wky&GC!te z&Uz@;OHC1GQIk-j36yuIOe z@0#E{HN$C`( z4cK53#3kAEK<^12wO1x8mI?=G`lW;js|#u{;fBPlPW*U)GfGmJ1%|$7QN&gY;`L6fXUkt|cR6%ey^Sh$)ET z>b`6XJIJ{?ypH+Jl_Gy8%}+MbS2-5rTkmSm0F?>Cey2XcN-~8s)Pi`@n8iVEu5XRy zQy^*EOy$f`ZjhtA7Ke7ZwO2mU>AlFZzj@ik#P5B)X?TG8qswfLqV<0QmY%ABy@|B{ zcH+ap*4ENm-@(%H!|#9ky-Ni2zd!;y0VKb_qLFbeHtUS2BA$>humX06p^wZA>yL>vS%Y&xwPeC>ud zs2-rw&-+6D-F)^N<3cjk@ zqBAC~B{KrE7sS@o@dsdlxlmT$hP7>mEX31@4;^dhgY2S~E%uh-#NC|wb$j6)!gyUr z61=ecS4J5CORj)yYjfGNJoGo*AIZhT~5$pwm>0gfcbCDp}FDcSfp%cCB( z#n=;1UcE_v=tIuRf+Ci2ooF-4)6jfJ|?@{SzR~;Ue zwNVF8MazKi3CEoqi7BHC#3WBJN>yA%7)vS~=ESY7q&|l^7g=S;R!#nO4u$owfFeFk z=SMOYzz^eqpP|Rz(jhs>k>bcV&KV`v%PO9D!&{-``>y$7%D79jH4M(Pk(+g)@LA2AIsDeAOXBA*ECBS~%qbbUsJYIU zx@E?FrHpY(jzhM=GsRVNk2~S=?hp9Z|$=A0bNA+`VdO+wn+c6^=w{nZYx{fP`8KpN5fa3@pt(E4X^e;Fgyn+8U}vR4S{PDfWWIU zD8{IlJdwycpah58qZAT~rg`iP&a~ZDbj6Sko_IO)EfOqb@^`Y%X0Ipmkpu zrl-?0hBEc9Hh^hh-hDtIfrh78mMpP`HW{ro$|xwel>8>ZV`b>5?+kx-E1w(PfrU;! zc%UC*LiLNS6~h6)fZ43le;?Y8Z{iZZGv&(!Nw0lc7Hr83-#XWIh;JK$pSwUBqNdPc zFOTN?5Wf`-%YcRNVE1ogN~YtB9D6ymX(7K~q<*e8Jszm9{5d!h7jrrSvOg}+{&O~z zn4-|qMTfNGMYyu}KUjAFuQm;tMI4@2**94$(ep3+4RKI{t!TV99d37K9q98GJ6~=g z>70(a7**KR-w+T9c+>-VTXh#L8qQsXAWk|Yx@_`^9mk@(k<)jEy188~U`9HdmBw<* zSEXoj>T!sa*g7LRC1HcwP0wn0)R25Er$^3OtzCX2Smanc!W?}h>@Gg;)X2gJ`sE8DASIn?{W>@3R6NPZ# zV3opc!YW={%G|RzVcon=QX^iNW4PWAQKbZ7vbyrETj>bGWc*w!j-0^ryN%qQP2CtG zw(F^Z`k}0>X!OGGfN0^)&pQZ9w>ZO$EnDf96(MH#U0s}Y+WE!uQHGhAruPFVt_m5$FsbPy^Ep@BVXMu-vqGh_l1VMkt6D* zoL;EvcH^$@t*#_gT4e#m+~G?L%e^YFFGgzY?`&0zuCPmRT48<>Y(SA+Iuir`9;A6W z<HxN@AP0bcAc8U+oUkCIQujP=HRM2| zo06J_q@Rtz(?l2MQd79=l&i&>lVH)~h}hU6d+utwWFe`QD_~y|a3QOGQc0{xG&HjkXMNs)Y&#(l$yn97~$KeUb$t0l?61~gco0`ZH4Ck5Q-rT+J2ZRo?W@Mw*-{H$($+?gRTRocoE5Nt z)T)(HR8|6Ap&1tXTGJ~8A>cLg>1#;{dsO7l!+TPNqs&Y3t2dk`-5rDC!NdO_Wp5o9 zRnYy9-^&7vbg6)(0+NE#u)vZENC-$ugVHV~A+dy%giGjV3_Ip@yK5S>?!dIZOj5Qg!6r}MyHtQ>t>-*MoL(%Iet zuirhg`NnoV-o^K+Zh=F{TMGm3oVo7ToXYVNTXQ~>FV-qYkCI)Pr21L&sCEmNSIx#% zOGlJ=C1}S@g4a8S4;~X!{>7#k7!o6Q`jPD-VMuC|E)yLflWJ_8r`mY!bchXoig2c% z^w~wZ1(Y-JWcbGMie=D9+>nfkz=!rt%pVJn?K<}M1^$Pr#}=i^?T6_r!~a1Ngq~wI zdKWRdk6BAAB*@EejyV~f_rE3K0`VeTpkIW`lJKu5!C6o?Mg`9%GehXK2R>XD^F=A^!~nJ@(l!A)JgR z&9k0cUZb7jJdCc22ss^xpiyCbuQ!9CF#|B6=LWv|dt8a>cYX?F3^0n=wJR>#U1K0o zGoke&VzKnKEs|!A^C^6tX4SeCV|Ym9k-L%j;!Q^%57Vt?H$gh(1=;6mhSs)IjnMrU z7zyxwE$5+CANU|5Y{SBRQo~4pz5i4n^$}7>`C?pNv*X0jN6X|ax$bIP6%_8#!s1S=%0D=H4*%zRvu{mwjBhZV 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�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

8(bjZk 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�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

)kqiy748PI?Hha{^P~~*q3RCo{^r)^Lha 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

<)vVRp+<-tCu8(?$dh7wG5rs#hL(FTg+=v<~w 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%0AEx9saU8dN3%fm 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

Dnp}2IUb&3IvcaIW2xa$ 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

FRJ|8Z~|SE@%BZ^diNb#JSki5714_Yx$mhK{ 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

Co5O)TT4jW} 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

bMdR)W2hf*8d-Z``q1wD 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 OR}3r^$OCQg+kXMa*5mI0 diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json index 1f1f69400a..926074bcce 100644 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json +++ b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json @@ -17,9 +17,9 @@ "Languages": "cs-CZ;da-DK;de-AT;de-CH;de-DE;en-AU;en-CA;en-GB;en-NZ;es-ES;es-MX;fi-FI;fr-BE;fr-CA;fr-CH;fr-FR;is-IS;it-CH;it-IT;nb-NO;nl-BE;nl-NL;sv-SE", "CopyOption": "UsePlaceholders" }, - { - "SourceFile": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Subscription Billing app\\SubscriptionBillingApp.en-US.resx", - "OutputPath": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Subscription Billing app\\SubscriptionBillingApp.{Lang}.resx", + { + "SourceFile": "src\\Apps\\W1\\Subscription Billing\\Power BI Files\\Translations\\SubscriptionBillingApp.en-US.resx", + "OutputPath": "src\\Apps\\W1\\Subscription Billing\\Power BI Files\\Translations\\SubscriptionBillingApp.{Lang}.resx", "Languages": "cs-CZ;da-DK;de-AT;de-CH;de-DE;en-AU;en-CA;en-GB;en-NZ;es-ES;es-MX;fi-FI;fr-BE;fr-CA;fr-CH;fr-FR;is-IS;it-CH;it-IT;nb-NO;nl-BE;nl-NL;sv-SE", "CopyOption": "UsePlaceholders" }, diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.cs-CZ.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.cs-CZ.resx deleted file mode 100644 index 5c3356652b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.cs-CZ.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Sady dimenzí - table [table.Name] - - - Globální dimenze 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globální dimenze 2 - table [Dimension Sets] column [Global Dimension 2] - - - Zkratka dimenze 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Zkratka dimenze 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Zkratka dimenze 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Zkratka dimenze 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Zkratka dimenze 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Zkratka dimenze 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Dodavatelé - table [table.Name] - - - Číslo dodavatele - table [Vendors] column [Vendor No.] - - - Jméno dodavatele - table [Vendors] column [Vendor Name] - - - Adresa - table [Vendors] column [Address] - - - Adresa 2 - table [Vendors] column [Address 2] - - - Město - table [Vendors] column [City] - - - Poštovní směrovací číslo - table [Vendors] column [Post Code] - - - Stát - table [Vendors] column [State] - - - Kód země/oblasti - table [Vendors] column [Country/Region Code] - - - Účto skupina dodavatele - table [Vendors] column [Vendor Posting Group] - - - Číslo a jméno dodavatele - table [Vendors] column [Vendor No. & Name] - - - Zákazníci - table [table.Name] - - - Číslo zákazníka - table [Customers] column [Customer No.] - - - Jméno zákazníka - table [Customers] column [Customer Name] - - - Adresa - table [Customers] column [Address] - - - Adresa 2 - table [Customers] column [Address 2] - - - Město - table [Customers] column [City] - - - Poštovní směrovací číslo - table [Customers] column [Post Code] - - - Stát - table [Customers] column [State] - - - Kód země/oblasti - table [Customers] column [Country/Region Code] - - - Účto skupina zákazníka - table [Customers] column [Customer Posting Group] - - - Cenová skupina zákazníka - table [Customers] column [Customer Price Group] - - - Skupina slev zákazníka - table [Customers] column [Customer Discount Group] - - - Číslo a jméno zákazníka - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Den v týdnu - table [Date] column [Week Day] - - - Typ dne - table [Date] column [Day Type] - - - Kalendářní rok - table [Date] column [Calendar Year] - - - - Kalendářní kvartál - table [Date] column [Calendar Quarter] - - - Rok kalendářního kvartálu - table [Date] column [Calendar Quarter Year] - - - Kalendářní měsíc - table [Date] column [Calendar Month] - - - Kalendářní měsíc v roce - table [Date] column [Calendar Month Year] - - - Kalendářní týden - table [Date] column [Calendar Week] - - - Kalendářní týden a rok - table [Date] column [Calendar Week Year] - - - Relativní pozice kalendářního týdne - table [Date] column [Calendar RelativeWeekPos] - - - Relativní pozice kalendářního měsíce - table [Date] column [Calendar RelativeMonthPos] - - - Relativní pozice kalendářního kvartálu - table [Date] column [Calendar RelativeQuarterPos] - - - Relativní pozice kalendářního roku - table [Date] column [Calendar RelativeYearPos] - - - Začátek kalendářního měsíce - table [Date] column [Calendar StartOfMonth] - - - Konec kalendářního měsíce - table [Date] column [Calendar EndOfMonth] - - - Začátek kalendářního kvartálu - table [Date] column [Calendar StartOfQuarter] - - - Konec kalendářního kvartálu - table [Date] column [Calendar EndOfQuarter] - - - Začátek kalendářního roku - table [Date] column [Calendar StartOfYear] - - - Konec kalendářního roku - table [Date] column [Calendar EndOfYear] - - - Kalendářní dny v měsíci - table [Date] column [Calendar MonthDays] - - - Dny kalendářního kvartálu - table [Date] column [Calendar QuarterDays] - - - Dny kalendářního roku - table [Date] column [Calendar YearDays] - - - Číslo dne v kalendářním měsíci - table [Date] column [Calendar DayOfMonthNumber] - - - Číslo dne v kalendářním kvartálu - table [Date] column [Calendar DayOfQuarterNumber] - - - Číslo dne v kalendářním roce - table [Date] column [Calendar DayOfYearNumber] - - - Datum v předchozím kalendářním týdnu - table [Date] column [Calendar DatePreviousWeek] - - - Datum v předchozím kalendářním měsíci - table [Date] column [Calendar DatePreviousMonth] - - - Datum v předchozím kalendářním kvartálu - table [Date] column [Calendar DatePreviousQuarter] - - - Datum v předchozím kalendářním roce - table [Date] column [Calendar DatePreviousYear] - - - Fiskální rok - table [Date] column [Fiscal Year] - - - Fiskální kvartál - table [Date] column [Fiscal Quarter] - - - FIskální rok kvartálu - table [Date] column [Fiscal Quarter Year] - - - Fiskální měsíc - table [Date] column [Fiscal Month] - - - FIskální rok měsíce - table [Date] column [Fiscal Month Year] - - - Fiskální týden - table [Date] column [Fiscal Week] - - - Fiskální týden a rok - table [Date] column [Fiscal Week Year] - - - Relativní pozice fiskálního týdne - table [Date] column [Fiscal RelativeWeekPos] - - - Relativní pozice fiskálního měsíce - table [Date] column [Fiscal RelativeMonthPos] - - - Relativní pozice fiskálního kvartálu - table [Date] column [Fiscal RelativeQuarterPos] - - - Relativní pozice fiskálního roku - table [Date] column [Fiscal RelativeYearPos] - - - Začátek fiskálního měsíce - table [Date] column [Fiscal StartOfMonth] - - - Konec fiskálního měsíce - table [Date] column [Fiscal EndOfMonth] - - - Začátek fiskálního kvartálu - table [Date] column [Fiscal StartOfQuarter] - - - Konec fiskálního kvartálu - table [Date] column [Fiscal EndOfQuarter] - - - Začátek fiskálního roku - table [Date] column [Fiscal StartOfYear] - - - Konec fiskálního roku - table [Date] column [Fiscal EndOfYear] - - - Dny fiskálního měsíce - table [Date] column [Fiscal MonthDays] - - - Dny fiskálního kvartálu - table [Date] column [Fiscal QuarterDays] - - - Dny fiskálního roku - table [Date] column [Fiscal YearDays] - - - Číslo dne ve fiskálním měsíci - table [Date] column [Fiscal DayOfMonthNumber] - - - Číslo dne ve fiskálním kvartálu - table [Date] column [Fiscal DayOfQuarterNumber] - - - Číslo dne ve fiskálním roce - table [Date] column [Fiscal DayOfYearNumber] - - - Datum v předchozím fiskálním týdnu - table [Date] column [Fiscal DatePreviousWeek] - - - Datum v předchozím fiskálním měsíci - table [Date] column [Fiscal DatePreviousMonth] - - - Datum v předchozím fiskálním kvartálu - table [Date] column [Fiscal DatePreviousQuarter] - - - Datum v předchozím fiskálním roce - table [Date] column [Fiscal DatePreviousYear] - - - Rok FT - table [Date] column [FW Year] - - - Kvartál FT - table [Date] column [FW Quarter] - - - Rok kvartálu FT - table [Date] column [FW Quarter Year] - - - Měsíc FT - table [Date] column [FW Month] - - - Rok měsíce FT - table [Date] column [FW Month Year] - - - Týden FT - table [Date] column [FW Week] - - - Období FT - table [Date] column [FW Period] - - - Týden a rok FT - table [Date] column [FW Week Year] - - - Začátek týdne FT - table [Date] column [FW StartOfWeek] - - - Konec týdne FT - table [Date] column [FW EndOfWeek] - - - Relativní pozice týdne FT - table [Date] column [FW RelativeWeekPos] - - - Relativní pozice měsíce FT - table [Date] column [FW RelativeMonthPos] - - - Relativní pozice kvartálu FT - table [Date] column [FW RelativeQuarterPos] - - - Relativní pozice roku FT - table [Date] column [FW RelativeYearPos] - - - Začátek měsíce FT - table [Date] column [FW StartOfMonth] - - - Konec měsíce FT - table [Date] column [FW EndOfMonth] - - - Začátek kvartálu FT - table [Date] column [FW StartOfQuarter] - - - Konec kvartálu FT - table [Date] column [FW EndOfQuarter] - - - Začátek roku FT - table [Date] column [FW StartOfYear] - - - Konec roku FT - table [Date] column [FW EndOfYear] - - - Dny v měsíci FT - table [Date] column [FW MonthDays] - - - Dny kvartálu FT - table [Date] column [FW QuarterDays] - - - Dny roku FT - table [Date] column [FW YearDays] - - - Číslo dne v měsíci FT - table [Date] column [FW DayOfMonthNumber] - - - Číslo dne v kvartálu FT - table [Date] column [FW DayOfQuarterNumber] - - - Číslo dne v roce FT - table [Date] column [FW DayOfYearNumber] - - - Datum v předchozím týdnu FT - table [Date] column [FW DatePreviousWeek] - - - Datum v předchozím měsíci FT - table [Date] column [FW DatePreviousMonth] - - - Datum v předchozím kvartálu FT - table [Date] column [FW DatePreviousQuarter] - - - Datum v předchozím roce FT - table [Date] column [FW DatePreviousYear] - - - Relativní den - table [Date] column [Relative Day] - - - Pořadové číslo dne 365 - table [Date] column [Sequential365DayNumber] - - - Časová rozlišení rozsahu dat - table [Date] column [Data Range Deferrals] - - - Počet dnů - table [Date] measure [No. of Days] - - - Fiskální rok-kvartál-měsíc-týden - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - FIskální rok kvartálu - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiskální týden a rok - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalendářní rok-kvartál-měsíc-týden - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Rok kalendářního kvartálu - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalendářní týden a rok - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Rok-kvartál-měsíc-týden FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Rok kvartálu FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Rok měsíce FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiskální rok-měsíc - table [Date] hierarchy [Fiscal Year-Month] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiskální rok-měsíc-týden - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiskální týden a rok - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalendářní rok-měsíc - table [Date] hierarchy [Calendar Year-Month] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalendářní rok-měsíc-týden - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalendářní týden a rok - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Rok-měsíc-týden FT - table [Date] hierarchy [FW Year-Month-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Rok měsíce FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Rok-kvartál-týden FT - table [Date] hierarchy [FW Year-Quarter-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Rok kvartálu FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Rok-týden FT - table [Date] hierarchy [FW Year-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - PŘIPOJENÍ DAT - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Stažení řešení Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Konfigurace Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - POUŽÍVÁNÍ, ÚPRAVA A TVORBA VLASTNÍCH SESTAV - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance obsahují řadu předpřipravených sestav, které vám pomohou okamžitě zobrazit vaše data. Tyto sestavy můžete upravovat nebo si vytvořit vlastní sestavu od základu. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - POMOC A PODPORA - table [Localized Labels] measure [HELP AND SUPPORT] - - - Nápovědu a podporu k nové sestavě naleznete v dokumentaci k přehledu Analytics. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - pro Business Central - table [Localized Labels] measure [for Business Central] - - - Naposledy aktualizováno - table [Localized Labels] measure [Last Refreshed] - - - Název společnosti - table [Localized Labels] measure [Company Name] - - - Položky analýzy ke dni - table [Localized Labels] measure [Analysis Entries as of] - - - Prognóza fakturace podle fakturačního období, zákazníka a č. smlouvy - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Prognóza fakturace podle kalendářního roku a měsíce - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Plán fakturace - table [Localized Labels] measure [Billing Schedule] - - - Změna měsíčního periodického výnosu podle roku a měsíce - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktuální rozsah dat: - table [Localized Labels] measure [Current Date Range:] - - - Časová rozlišení zákaznické smlouvy - table [Localized Labels] measure [Customer Contract Deferrals] - - - Řádky zákaznické smlouvy - table [Localized Labels] measure [Customer Contract Lines] - - - Časová rozlišení zákazníka - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analýza měsíčních periodických výnosů - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Měsíční periodické výnosy a měsíční periodické výnosy PR podle kalendářního měsíce - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Měsíční periodické výnosy a meziroční růst podle kalendářního roku a měsíce - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Měsíční periodické výnosy podle zákazníka - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Měsíční periodické výnosy podle prodejce - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Měsíční periodické výnosy podle kalendářního roku a měsíce - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Měsíční periodické výnosy podle zboží - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Měsíční periodické výnosy podle kategorie zboží - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Odchod zákazníků a downgrade měsíčních periodických výnosů podle zákaznické smlouvy - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Noví zákazníci a upgrade měsíčních periodických výnosů podle zákaznické smlouvy - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Měsíční prognóza výnosů a nákladů podle kalendářního roku a měsíce - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Prognóza měsíčních výnosů a nákladů podle prodejce, zákazníka a č. smlouvy - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Uvolněná a časové rozlišená částka podle kalendářního roku a měsíce - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analýza výnosů - table [Localized Labels] measure [Revenue Analysis] - - - Výnosy podle zákazníka - table [Localized Labels] measure [Revenue by Customer] - - - Výnosy podle zboží - table [Localized Labels] measure [Revenue by Item] - - - Výnosy podle prodejce - table [Localized Labels] measure [Revenue by Salesperson] - - - Vývoj výnosů - table [Localized Labels] measure [Revenue Development] - - - Prognóza výnosů - table [Localized Labels] measure [Sales and Cost Forecast] - - - Meziroční růst výnosů - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analýza Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Přehled Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 předních zákazníků podle měsíčního periodického výnosu - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 nejlepších prodejců podle měsíčních periodických nákladů - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analýza celkové hodnoty smlouvy - table [Localized Labels] measure [Total Contract Value Analysis] - - - Celková hodnota smlouvy a PR celkové hodnoty smlouvy podle kalendářního měsíce - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Celková hodnota smlouvy a meziroční růst podle kalendářního roku a měsíce - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Celková hodnota smlouvy podle kalendářního roku a měsíce - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Meziroční růst celkové hodnoty smlouvy - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Časová rozlišení dodavatelské smlouvy - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Časová rozlišení dodavatele - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Tlačítko zpět - table [Localized Labels] measure [Back button] - - - Měsíční periodické výnosy, Měsíční periodické náklady, Měsíční čistý zisk, Aktivní zákazníci, Celková hodnota smlouvy, Změna měsíčních periodických výnosů - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analýza ztráty zákazníků - table [Localized Labels] measure [Churn Analysis] - - - Prům. měsíční míra úbytku (%) podle roku a měsíce - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objekt servisu - table [table.Name] - - - Číslo objektu servisu - table [Subscription] column [Subscription No.] - - - Kód zásilky - table [Subscription] column [Package Code] - - - Popis objektu servisu - table [Subscription] column [Subscription Desc.] - - - Datum analýzy - table [Subscription] column [Analysis Date] - - - Popisy čísla odběru - table [Subscription] column [Subscription No. Desc.] - - - Časová rozlišení dodavatelské smlouvy - table [table.Name] - - - Typ dokladu - table [Vendor Contract Deferrals] column [Document Type] - - - Číslo dokladu - table [Vendor Contract Deferrals] column [Document No.] - - - Zúčtovací datum - table [Vendor Contract Deferrals] column [Posting Date] - - - Zúčtovací datum dokladu - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Vydat zúčtovací datum - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Číslo věcné položky - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Sleva - table [Vendor Contract Deferrals] column [Discount] - - - Číslo řádku dokladu - table [Vendor Contract Deferrals] column [Document Line No.] - - - Řádek zákaznické smlouvy - table [table.Name] - - - Číslo řádku závazku - table [Customer Contract Line] column [Subscription Line No.] - - - Šablona - table [Customer Contract Line] column [Template] - - - Popis řádku zákaznické smlouvy - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Počáteční datum servisu - table [Customer Contract Line] column [Subscription Start Date] - - - Koncové datum služby - table [Customer Contract Line] column [Subscription End Date] - - - Další datum fakturace - table [Customer Contract Line] column [Next Billing Date] - - - Základní fakturační období - table [Customer Contract Line] column [Billing Base Period] - - - Číslo fakturovaného zboží - table [Customer Contract Line] column [Invoicing Item No.] - - - Číslo řádku zákaznické smlouvy - table [Customer Contract Line] column [Customer Contract Line No.] - - - Výpovědní lhůta - table [Customer Contract Line] column [Notice Period] - - - Počáteční termín - table [Customer Contract Line] column [Initial Term] - - - Termín rozšíření - table [Customer Contract Line] column [Extension Term] - - - Fakturační rytmus - table [Customer Contract Line] column [Billing Rhythm] - - - Storno možné do - table [Customer Contract Line] column [Cancellation Possible Until] - - - Termín do - table [Customer Contract Line] column [Term Until] - - - Termín obnovení - table [Customer Contract Line] column [Renewal Term] - - - Aktivní řádek - table [Customer Contract Line] column [Line Active] - - - Zbývající termín - table [Customer Contract Line] column [Remaining Term] - - - Měsíce fakturačního rytmu - table [Customer Contract Line] column [Billing Rhythm Months] - - - Číslo zákaznické smlouvy - table [Customer Contract Line] column [Customer Contract No.] - - - Je fakturace založená na využití - table [Customer Contract Line] column [Is Usage Based Billing] - - - Typ původu - table [Customer Contract Line] column [Source Type] - - - Číslo původu - table [Customer Contract Line] column [Source No.] - - - Řádek dodavatelské smlouvy - table [table.Name] - - - Číslo řádku závazku - table [Vendor Contract Line] column [Subscription Line No.] - - - Šablona - table [Vendor Contract Line] column [Template] - - - Popis řádku dodavatelské smlouvy - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Počáteční datum servisu - table [Vendor Contract Line] column [Subscription Start Date] - - - Koncové datum služby - table [Vendor Contract Line] column [Subscription End Date] - - - Další datum fakturace - table [Vendor Contract Line] column [Next Billing Date] - - - Číslo řádku dodavatelské smlouvy - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Výpovědní lhůta - table [Vendor Contract Line] column [Notice Period] - - - Počáteční termín - table [Vendor Contract Line] column [Initial Term] - - - Termín rozšíření - table [Vendor Contract Line] column [Extension Term] - - - Fakturační rytmus - table [Vendor Contract Line] column [Billing Rhythm] - - - Storno možné do - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Termín do - table [Vendor Contract Line] column [Term Until] - - - Termín obnovení - table [Vendor Contract Line] column [Renewal Term] - - - Aktivní řádek - table [Vendor Contract Line] column [Line Active] - - - Zbývající termín - table [Vendor Contract Line] column [Remaining Term] - - - Měsíce fakturačního rytmu - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Číslo dodavatelské smlouvy - table [Vendor Contract Line] column [Vendor Contract No.] - - - Je nejnovější verze - table [Vendor Contract Line] column [Is Latest Version] - - - Je fakturace založená na využití - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Typ původu - table [Vendor Contract Line] column [Source Type] - - - Číslo původu - table [Vendor Contract Line] column [Source No.] - - - Časová rozlišení zákaznické smlouvy - table [table.Name] - - - Typ dokladu - table [Customer Contract Deferrals] column [Document Type] - - - Číslo dokladu - table [Customer Contract Deferrals] column [Document No.] - - - Zúčtovací datum - table [Customer Contract Deferrals] column [Posting Date] - - - Číslo řádku dokladu - table [Customer Contract Deferrals] column [Document Line No.] - - - Zúčtovací datum dokladu - table [Customer Contract Deferrals] column [Document Posting Date] - - - Vydat zúčtovací datum - table [Customer Contract Deferrals] column [Release Posting Date] - - - Číslo věcné položky - table [Customer Contract Deferrals] column [G LEntry No.] - - - Zákaznická smlouva - table [table.Name] - - - Číslo zákaznické smlouvy - table [Customer Contract] column [Customer Contract No.] - - - Typ zákaznické smlouvy - table [Customer Contract] column [Customer Contract Type] - - - Popis zákaznické smlouvy - table [Customer Contract] column [Customer Contract Description] - - - Popis čísla zákaznické smlouvy - table [Customer Contract] column [Customer Contract No. Desc.] - - - Dodavatelská smlouva - table [table.Name] - - - Číslo dodavatelské smlouvy - table [Vendor Contract] column [Vendor Contract No.] - - - Typ dodavatelské smlouvy - table [Vendor Contract] column [Vendor Contract Type] - - - Popis dodavatelské smlouvy - table [Vendor Contract] column [Vendor Contract Description] - - - Popis čísla dodavatelské smlouvy - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Manipulace FZNV - table [table.Name] - - - Považovat FZNV za konstantní - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Je vydáno - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Zboží - table [table.Name] - - - Číslo zboží - table [Item] column [Item No.] - - - Název zboží - table [Item] column [Item Name] - - - Účto skupina zboží - table [Item] column [Inventory Posting Group] - - - Základní měrná jednotka - table [Item] column [Base Unit of Measure] - - - Číslo a popis zboží - table [Item] column [Item No. & Description] - - - Datum analýzy - table [table.Name] - - - Je počáteční verze - table [Analysis Date] column [Is Initial Version] - - - Je aktuální verze - table [Analysis Date] column [Is Current Version] - - - Skupina výpočtu – časová analýza pro kalendář (fiskální) - table [table.Name] - - - Perspektiva - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - MPV - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MPN - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Časová rozlišení zákazníka - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Časová rozlišení dodavatele - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ZZP - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - CHS - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prognóza prodeje - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MPN PR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MPN Δ vs. PR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Odchod zákazníků – měsíční periodické výnosy - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MPV PR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nové měsíční periodické výnosy - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Měsíční periodické výnosy Δ vs. PR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMPV - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMPV (%) MPV - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMPV PR - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMPV Δ vs. PR - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Celková změna MPV - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - CHS PR - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - CHS Δ vs. PR - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Poslední aktualizace položek analýzy - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Poslední aktualizace sémantického modelu - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Prostředí parametrů - table [Subscription Billing KPIs] measure [Param Environment] - - - Společnost parametrů - table [Subscription Billing KPIs] measure [Param Company] - - - Upgrade – měsíční periodické výnosy - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Změna měsíčních periodických výnosů FZNV - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Měna pro hlášení - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktivní zákazníci - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktivní zákazníci PR - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktivní zákazníci Δ vs. PR - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prognóza fakturace zákazníka - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prognóza fakturace dodavatele - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prognóza nákladů - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Downgrade – měsíční periodické výnosy - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Zvolený rozsah dat - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Prům. měsíční míra úbytku (%) - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Měsíční prům. míra downgradu (%) - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Downgrade a odchod zákazníků – měsíční periodické výnosy - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Prodejce - table [table.Name] - - - Kód prodejce - table [Salesperson] column [Salesperson Code] - - - Jméno prodejce - table [Salesperson] column [Salesperson Name] - - - Změny zákaznické smlouvy - table [table.Name] - - - Klíč řádku zákaznické smlouvy - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Typ změny - table [Customer Contract Changes] column [Change Type] - - - Delta MPV - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.da-DK.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.da-DK.resx deleted file mode 100644 index 1f677fe26a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.da-DK.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensionsgrupper - table [table.Name] - - - Global dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Genvejsdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Genvejsdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Genvejsdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Genvejsdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Genvejsdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Genvejsdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Leverandører - table [table.Name] - - - Kreditornr. - table [Vendors] column [Vendor No.] - - - Kreditornavn - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - By - table [Vendors] column [City] - - - Postnr. - table [Vendors] column [Post Code] - - - Stat - table [Vendors] column [State] - - - Kode for land/område og region - table [Vendors] column [Country/Region Code] - - - Kreditorbogføringsgruppe - table [Vendors] column [Vendor Posting Group] - - - Kreditornummer og -navn - table [Vendors] column [Vendor No. & Name] - - - Debitorer - table [table.Name] - - - Debitornr. - table [Customers] column [Customer No.] - - - Debitornavn - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - By - table [Customers] column [City] - - - Postnr. - table [Customers] column [Post Code] - - - Stat - table [Customers] column [State] - - - Kode for land/område og region - table [Customers] column [Country/Region Code] - - - Debitorbogføringsgruppe - table [Customers] column [Customer Posting Group] - - - Debitorprisgruppe - table [Customers] column [Customer Price Group] - - - Debitorrabatgruppe - table [Customers] column [Customer Discount Group] - - - Debitornr. og -navn - table [Customers] column [Customer No. & Name] - - - Dato - table [table.Name] - - - Ugedag - table [Date] column [Week Day] - - - Dagtype - table [Date] column [Day Type] - - - Kalender År - table [Date] column [Calendar Year] - - - - Kalenderkvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalendermåned - table [Date] column [Calendar Month] - - - Kalender Måned År - table [Date] column [Calendar Month Year] - - - Kalenderuge - table [Date] column [Calendar Week] - - - Kalender Uge år - table [Date] column [Calendar Week Year] - - - Kalender RelativUgePosition - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativMånedsPosition - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativKvartalsPosition - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativÅrsPosition - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMåned - table [Date] column [Calendar StartOfMonth] - - - Kalender SlutPåMåned - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - Kalender SlutPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender SlutPåÅr - table [Date] column [Calendar EndOfYear] - - - Kalender MånedDage - table [Date] column [Calendar MonthDays] - - - Kalender KvartalsDage - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDage - table [Date] column [Calendar YearDays] - - - Kalender NummerPåDagIMåned - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender NummerPåDagIKvartal - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender NummerPåDagIÅr - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatoForrigeUge - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatoForrigeMåned - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatoForrigeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatoForrigeÅr - table [Date] column [Calendar DatePreviousYear] - - - Regnskabsår - table [Date] column [Fiscal Year] - - - Regnskabskvartal - table [Date] column [Fiscal Quarter] - - - Regnskab Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Regnskabsmåned - table [Date] column [Fiscal Month] - - - Regnskab Måned År - table [Date] column [Fiscal Month Year] - - - Regnskabsuge - table [Date] column [Fiscal Week] - - - Regnskab Uge År - table [Date] column [Fiscal Week Year] - - - Regnskab RelativUgePosition - table [Date] column [Fiscal RelativeWeekPos] - - - Regnskab RelativMånedsPosition - table [Date] column [Fiscal RelativeMonthPos] - - - Regnskab RelativKvartalsPosition - table [Date] column [Fiscal RelativeQuarterPos] - - - Regnskab RelativÅrsPosition - table [Date] column [Fiscal RelativeYearPos] - - - Regnskab StartPåMåned - table [Date] column [Fiscal StartOfMonth] - - - Regnskab SlutPåMåned - table [Date] column [Fiscal EndOfMonth] - - - Regnskab StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Regnskab SlutPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Regnskab StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Regnskab SlutPåÅr - table [Date] column [Fiscal EndOfYear] - - - Regnskab MånedsDage - table [Date] column [Fiscal MonthDays] - - - Regnskab KvartalsDage - table [Date] column [Fiscal QuarterDays] - - - Regnskabsår Dage - table [Date] column [Fiscal YearDays] - - - Regnskab NummerPåDagIMåned - table [Date] column [Fiscal DayOfMonthNumber] - - - Regnskab NummerPåDagIKvartal - table [Date] column [Fiscal DayOfQuarterNumber] - - - Regnskab NummerPåDagiÅr - table [Date] column [Fiscal DayOfYearNumber] - - - Regnskab DatoForrigeUge - table [Date] column [Fiscal DatePreviousWeek] - - - Regnskab DatoForrigeMåned - table [Date] column [Fiscal DatePreviousMonth] - - - Regnskab DatoForrigeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Regnskab DatoForrigeÅr - table [Date] column [Fiscal DatePreviousYear] - - - RU År - table [Date] column [FW Year] - - - RU Kvartal - table [Date] column [FW Quarter] - - - RU Kvartal År - table [Date] column [FW Quarter Year] - - - RU Måned - table [Date] column [FW Month] - - - RU Måned år - table [Date] column [FW Month Year] - - - RU Uge - table [Date] column [FW Week] - - - RU Periode - table [Date] column [FW Period] - - - RU Uge År - table [Date] column [FW Week Year] - - - RU StartPåUge - table [Date] column [FW StartOfWeek] - - - RU SlutPåUge - table [Date] column [FW EndOfWeek] - - - RU RelativUgesPosition - table [Date] column [FW RelativeWeekPos] - - - RU RelativMånedsPosition - table [Date] column [FW RelativeMonthPos] - - - RU RelativKvartalsPosition - table [Date] column [FW RelativeQuarterPos] - - - RU RelativÅrsPosition - table [Date] column [FW RelativeYearPos] - - - RU StartPåMåned - table [Date] column [FW StartOfMonth] - - - RU SlutPåMåned - table [Date] column [FW EndOfMonth] - - - RU StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - RU SlutPåKvartal - table [Date] column [FW EndOfQuarter] - - - RU StartPåÅr - table [Date] column [FW StartOfYear] - - - RU SlutPåÅr - table [Date] column [FW EndOfYear] - - - RU MånedDage - table [Date] column [FW MonthDays] - - - RU KvartalDage - table [Date] column [FW QuarterDays] - - - RU ÅrDage - table [Date] column [FW YearDays] - - - RU NummerPåDagIMåned - table [Date] column [FW DayOfMonthNumber] - - - RU NummerPåDagIKvartal - table [Date] column [FW DayOfQuarterNumber] - - - RU NummerPåDagiÅr - table [Date] column [FW DayOfYearNumber] - - - RU DatoForrigeUge - table [Date] column [FW DatePreviousWeek] - - - RU DatoForrigeMåned - table [Date] column [FW DatePreviousMonth] - - - RU DatoForrigeKvartal - table [Date] column [FW DatePreviousQuarter] - - - RU DatoForrigeÅr - table [Date] column [FW DatePreviousYear] - - - Relativ dag - table [Date] column [Relative Day] - - - Fortløbende 365-dagsnummer - table [Date] column [Sequential365DayNumber] - - - Udsættelser af dataområde - table [Date] column [Data Range Deferrals] - - - Antal dage - table [Date] measure [No. of Days] - - - Regnskab År-Kvartal-Måned-Uge - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Regnskab Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Regnskab Uge År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender År-Kvartal-Måned-Uge - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Uge år - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - RU År-Kvartal-Måned-Uge - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - RU År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - RU Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - RU Måned år - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Regnskab År-Måned - table [Date] hierarchy [Fiscal Year-Month] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Regnskabsår-Måned-Uge - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Regnskab Uge År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender År-måned - table [Date] hierarchy [Calendar Year-Month] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender År-måned-uge - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Uge år - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - RU År-Måned-Uge - table [Date] hierarchy [FW Year-Month-Week] - - - RU År - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - RU Måned år - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - RU År-Kvartal-Uge - table [Date] hierarchy [FW Year-Quarter-Week] - - - RU År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - RU Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - RU År-Uge - table [Date] hierarchy [FW Year-Week] - - - RU År - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - FORBIND DINE DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Konfigurer Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - BRUG, REDIGER OG OPRET DINE EGNE RAPPORTER - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finans indeholder en række færdigbyggede rapporter, der hjælper dig med at få vist dine data med det samme. Du kan redigere disse rapporter eller oprette din egen rapport fra bunden. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HJÆLP OG SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Du kan få hjælp og support til din nye rapport i dokumentationen til analyseoversigten. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - til Business Central - table [Localized Labels] measure [for Business Central] - - - Sidst opdateret - table [Localized Labels] measure [Last Refreshed] - - - Virksomhedsnavn - table [Localized Labels] measure [Company Name] - - - Analyseposter fra og med - table [Localized Labels] measure [Analysis Entries as of] - - - Faktureringsprognose efter faktureringsperiode, debitor og kontraktnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Faktureringsprognose efter kalenderår og måned - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Faktureringsskema - table [Localized Labels] measure [Billing Schedule] - - - Ændring af månedlig tilbagevendende omsætning efter kalenderår og måned - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktuelt datointerval: - table [Localized Labels] measure [Current Date Range:] - - - Periodiseringer af debitorkontrakt - table [Localized Labels] measure [Customer Contract Deferrals] - - - Debitorkontraktlinjer - table [Localized Labels] measure [Customer Contract Lines] - - - Debitorperiodiseringer - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Månedlig tilbagevendende indtægtsanalyse - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Månedlige tilbagevendende indtægter og månedlige tilbagevendende indtægter FÅ efter kalendermåned - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Månedlig tilbagevendende omsætning og vækst fra år til år efter kalenderår og måned - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Månedlig tilbagevendende indtægt efter debitor - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Månedlig tilbagevendende indtægt efter sælger - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Månedlig tilbagevendende omsætning efter kalenderår og måned - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Månedlig tilbagevendende indtægt efter vare - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Månedlig tilbagevendende indtægt efter kategori - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Månedlig tilbagevendende indtægtsafgang og nedgradering efter debitorkontrakt - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Månedlig tilbagevendende indtægter Nye og opgradering efter debitorkontrakt - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Månedlig omsætning og omkostningsprognose efter kalenderår og måned - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Månedlig omsætning og omkostningsprognose efter sælger, debitor og kontraktnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Frigivne og udskudte beløb efter kalenderår og måned - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Omsætningsanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Omsætning pr. debitor - table [Localized Labels] measure [Revenue by Customer] - - - Omsætning pr. vare - table [Localized Labels] measure [Revenue by Item] - - - Omsætning pr. sælger - table [Localized Labels] measure [Revenue by Salesperson] - - - Omsætningsudvikling - table [Localized Labels] measure [Revenue Development] - - - Indtægtsprognose - table [Localized Labels] measure [Sales and Cost Forecast] - - - Omsætning fra år til år vækst - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse af Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Oversigt over Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 debitorer efter månedlig tilbagevendende indtægt - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 kreditorer efter månedlige tilbagevendende omkostninger - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse af samlet kontraktværdi - table [Localized Labels] measure [Total Contract Value Analysis] - - - Samlet kontraktværdi og samlet kontraktværdi FÅ efter kalendermåned - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Samlet kontraktværdi og vækst fra år til år efter kalenderår og måned - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Samlet kontraktværdi efter kalenderår og måned - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Samlet kontraktværdi Vækst fra år til år - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Periodiseringer af kreditorkontrakt - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Kreditorperiodiseringer - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Knappen Tilbage - table [Localized Labels] measure [Back button] - - - Månedlig tilbagevendende omsætning, Månedlig tilbagevendende omkostning, Månedlig nettofortjeneste, Aktive debitorer, Samlet kontraktværdi, Ændring i månedlig tilbagevendende omsætning - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analyse af debitorafgang - table [Localized Labels] measure [Churn Analysis] - - - Gennemsnitlig månedlig afgangsrateprocent efter år og måned - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektnr. - table [Subscription] column [Subscription No.] - - - Pakkekode - table [Subscription] column [Package Code] - - - Beskrivelse af serviceobjekt - table [Subscription] column [Subscription Desc.] - - - Analysedato - table [Subscription] column [Analysis Date] - - - Beskrivelse af abonnementsnr. - table [Subscription] column [Subscription No. Desc.] - - - Periodiseringer af kreditorkontrakt - table [table.Name] - - - Dokumenttype - table [Vendor Contract Deferrals] column [Document Type] - - - Dokumentnr. - table [Vendor Contract Deferrals] column [Document No.] - - - Bogføringsdato - table [Vendor Contract Deferrals] column [Posting Date] - - - Dokumentbogføringsdato - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Frigiv bogføringsdato - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Finansløbenr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabat - table [Vendor Contract Deferrals] column [Discount] - - - Dokumentlinjenr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Debitorkontraktlinje - table [table.Name] - - - Tilsagnslinjenr. - table [Customer Contract Line] column [Subscription Line No.] - - - Skabelon - table [Customer Contract Line] column [Template] - - - Beskrivelse af debitorkontraktlinje - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Startdato for service - table [Customer Contract Line] column [Subscription Start Date] - - - Slutdato for service - table [Customer Contract Line] column [Subscription End Date] - - - Næste faktureringsdato - table [Customer Contract Line] column [Next Billing Date] - - - Basisperiode for fakturering - table [Customer Contract Line] column [Billing Base Period] - - - Fakturerer varenr. - table [Customer Contract Line] column [Invoicing Item No.] - - - Debitorkontraktlinjenr. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Meddelelsesperiode - table [Customer Contract Line] column [Notice Period] - - - Indledende periode - table [Customer Contract Line] column [Initial Term] - - - Udvidelsesvilkår - table [Customer Contract Line] column [Extension Term] - - - Faktureringsrytme - table [Customer Contract Line] column [Billing Rhythm] - - - Annullering mulig indtil - table [Customer Contract Line] column [Cancellation Possible Until] - - - Periode indtil - table [Customer Contract Line] column [Term Until] - - - Fornyelsesperiode - table [Customer Contract Line] column [Renewal Term] - - - Aktiv linje - table [Customer Contract Line] column [Line Active] - - - Resterende periode - table [Customer Contract Line] column [Remaining Term] - - - Faktureringsrytmemåneder - table [Customer Contract Line] column [Billing Rhythm Months] - - - Debitorkontraktnr. - table [Customer Contract Line] column [Customer Contract No.] - - - Er Brugsbaseret fakturering - table [Customer Contract Line] column [Is Usage Based Billing] - - - Kildetype - table [Customer Contract Line] column [Source Type] - - - Kildenr. - table [Customer Contract Line] column [Source No.] - - - Kreditorkontraktlinje - table [table.Name] - - - Tilsagnslinjenr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Skabelon - table [Vendor Contract Line] column [Template] - - - Beskrivelse af kreditorkontraktlinje - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Startdato for service - table [Vendor Contract Line] column [Subscription Start Date] - - - Slutdato for service - table [Vendor Contract Line] column [Subscription End Date] - - - Næste faktureringsdato - table [Vendor Contract Line] column [Next Billing Date] - - - Kreditorkontraktlinjenr. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Meddelelsesperiode - table [Vendor Contract Line] column [Notice Period] - - - Indledende periode - table [Vendor Contract Line] column [Initial Term] - - - Udvidelsesvilkår - table [Vendor Contract Line] column [Extension Term] - - - Faktureringsrytme - table [Vendor Contract Line] column [Billing Rhythm] - - - Annullering mulig indtil - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Periode indtil - table [Vendor Contract Line] column [Term Until] - - - Fornyelsesperiode - table [Vendor Contract Line] column [Renewal Term] - - - Aktiv linje - table [Vendor Contract Line] column [Line Active] - - - Resterende periode - table [Vendor Contract Line] column [Remaining Term] - - - Faktureringsrytmemåneder - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Kreditorkontraktnr. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Er Seneste Version - table [Vendor Contract Line] column [Is Latest Version] - - - Er Brugsbaseret fakturering - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Kildetype - table [Vendor Contract Line] column [Source Type] - - - Kildenr. - table [Vendor Contract Line] column [Source No.] - - - Periodiseringer af debitorkontrakt - table [table.Name] - - - Dokumenttype - table [Customer Contract Deferrals] column [Document Type] - - - Dokumentnr. - table [Customer Contract Deferrals] column [Document No.] - - - Bogføringsdato - table [Customer Contract Deferrals] column [Posting Date] - - - Dokumentlinjenr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Dokumentbogføringsdato - table [Customer Contract Deferrals] column [Document Posting Date] - - - Frigiv bogføringsdato - table [Customer Contract Deferrals] column [Release Posting Date] - - - Finansløbenr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Debitorkontrakt - table [table.Name] - - - Debitorkontraktnr. - table [Customer Contract] column [Customer Contract No.] - - - Debitorkontraktlinjetype - table [Customer Contract] column [Customer Contract Type] - - - Beskrivelse af debitorkontrakt - table [Customer Contract] column [Customer Contract Description] - - - Beskrivelse af debitorkontraktnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Kreditorkontrakt - table [table.Name] - - - Kreditorkontraktnr. - table [Vendor Contract] column [Vendor Contract No.] - - - Kreditorkontrakttype - table [Vendor Contract] column [Vendor Contract Type] - - - Beskrivelse af kreditorkontrakt - table [Vendor Contract] column [Vendor Contract Description] - - - Beskrivelse af kreditorkontraktnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - FBF-håndtering - table [table.Name] - - - Behandl FBF som konstant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Er Frigivet - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Vare - table [table.Name] - - - Varenr. - table [Item] column [Item No.] - - - Varenavn - table [Item] column [Item Name] - - - Lagerbogføringsgruppe - table [Item] column [Inventory Posting Group] - - - Basisenhed - table [Item] column [Base Unit of Measure] - - - Varenummer og -beskrivelse - table [Item] column [Item No. & Description] - - - Analysedato - table [table.Name] - - - Er Første version - table [Analysis Date] column [Is Initial Version] - - - Er Aktuel version - table [Analysis Date] column [Is Current Version] - - - Beregningsgruppe – Tidsintelligens til kalender (regnskab) - table [table.Name] - - - Perspektiv - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI'er til Subscription Billing - table [table.Name] - - - MTI - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MTO - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Debitorperiodiseringer - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Kreditorperiodiseringer - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - KA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - SKV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prognosesalg - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MTO FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MTO Δ vs. FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Månedlig tilbagevendende indtægtsafgang - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MTI FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Månedlig tilbagevendende ny indtægt - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Månedlig tilbagevendende indtægt Δ vs. FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMTI - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMTI-% af MTI - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMTI FÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMTI Δ vs. FÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MTI samlet ændring - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - SKV FÅ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - SKV Δ vs. FÅ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Sidste opdatering af analyseposter - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Sidste opdatering af semantisk model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param-miljø - table [Subscription Billing KPIs] measure [Param Environment] - - - Param-virksomhed - table [Subscription Billing KPIs] measure [Param Company] - - - Månedlig tilbagevendende indtægtsopgradering - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Månedlig tilbagevendende indtægtsændring FBF - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Rapporteringsvaluta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktive debitorer - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktive debitorer FÅ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktive debitorer Δ vs. FÅ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Debitorfaktureringsprognose - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Kreditorfaktureringsprognose - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Budgetomkostninger - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Månedlig tilbagevendende indtægtsnedgradering - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Valgt datointerval - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Gennemsnitlig månedlig afgangsrateprocent - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Gennemsnitlig månedlig nedgraderingsrateprocent - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Månedlig tilbagevendende indtægtsnedgradering og afgang - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Sælger - table [table.Name] - - - Sælgerkode - table [Salesperson] column [Salesperson Code] - - - Sælgernavn - table [Salesperson] column [Salesperson Name] - - - Ændringer i debitorkontrakt - table [table.Name] - - - Debitorkontraktlinjenøgle - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Dato - table [Customer Contract Changes] column [Date] - - - Ændringstype - table [Customer Contract Changes] column [Change Type] - - - MTI Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-AT.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-AT.resx deleted file mode 100644 index f71aa260c1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-AT.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Kreditoren - table [table.Name] - - - Kreditornr. - table [Vendors] column [Vendor No.] - - - Kreditorenname - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ort - table [Vendors] column [City] - - - PLZ-Code - table [Vendors] column [Post Code] - - - Bundesland - table [Vendors] column [State] - - - Länder-/Regionscode - table [Vendors] column [Country/Region Code] - - - Kreditorenbuchungsgruppe - table [Vendors] column [Vendor Posting Group] - - - Kreditornr. und -name - table [Vendors] column [Vendor No. & Name] - - - Debitoren - table [table.Name] - - - Debitorennummer - table [Customers] column [Customer No.] - - - Debitorname - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ort - table [Customers] column [City] - - - PLZ-Code - table [Customers] column [Post Code] - - - Bundesland - table [Customers] column [State] - - - Länder-/Regionscode - table [Customers] column [Country/Region Code] - - - Debitorenbuchungsgruppe - table [Customers] column [Customer Posting Group] - - - Debitorenpreisgruppe - table [Customers] column [Customer Price Group] - - - Debitorenrabattgruppe - table [Customers] column [Customer Discount Group] - - - Debitorennr. und -name - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Fortlaufend 365 TagNummer - table [Date] column [Sequential365DayNumber] - - - Datenbereichsabgrenzungen - table [Date] column [Data Range Deferrals] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - MIT EIGENEN DATEN VERBINDEN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Finance Connector for Power BI herunterladen - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Dynamics 365 Business Central konfigurieren - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HILFE UND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - für Business Central - table [Localized Labels] measure [for Business Central] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Analyseposten zum - table [Localized Labels] measure [Analysis Entries as of] - - - Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Abrechnungsplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Abrechnungszeitplan - table [Localized Labels] measure [Billing Schedule] - - - Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktueller Datumsbereich: - table [Localized Labels] measure [Current Date Range:] - - - Abgrenzungen von Debitorenverträgen - table [Localized Labels] measure [Customer Contract Deferrals] - - - Debitorenvertragszeilen - table [Localized Labels] measure [Customer Contract Lines] - - - Debitorenabgrenzungen - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. wiederkehrende Umsatzanalyse - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. wiederkehrende Umsätze nach Debitor - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. wiederkehrende Umsätze nach Verkäufer - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. wiederkehrende Umsätze nach Artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. wiederkehrende Umsätze nach Kategorie - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Umsatzanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Umsatz nach Debitor - table [Localized Labels] measure [Revenue by Customer] - - - Umsatz nach Artikel - table [Localized Labels] measure [Revenue by Item] - - - Umsatz nach Verkäufer - table [Localized Labels] measure [Revenue by Salesperson] - - - Umsatzentwicklung - table [Localized Labels] measure [Revenue Development] - - - Umsatzplanung - table [Localized Labels] measure [Sales and Cost Forecast] - - - Umsatzwachstum im Vergleich zum Vorjahr - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing-Analyse - table [Localized Labels] measure [Subscription Billing Analysis] - - - Übersicht über Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top-5-Kreditoren nach mon. wiederkehrenden Kosten - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Gesamtvertragswertanalyse - table [Localized Labels] measure [Total Contract Value Analysis] - - - Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Gesamtvertragswert nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Kreditorenvertragsabgrenzungen - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Kreditorenabgrenzungen - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Schaltfläche „Zurück“ - table [Localized Labels] measure [Back button] - - - Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Abwanderungsanalyse - table [Localized Labels] measure [Churn Analysis] - - - Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektnr. - table [Subscription] column [Subscription No.] - - - Paketcode - table [Subscription] column [Package Code] - - - Serviceobjektbeschreibung - table [Subscription] column [Subscription Desc.] - - - Analysedatum - table [Subscription] column [Analysis Date] - - - Beschreibung Abonnement-Nr. - table [Subscription] column [Subscription No. Desc.] - - - Kreditorenvertragsabgrenzungen - table [table.Name] - - - Belegtyp - table [Vendor Contract Deferrals] column [Document Type] - - - Belegnummer - table [Vendor Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Belegbuchungsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabatt - table [Vendor Contract Deferrals] column [Discount] - - - Belegzeilennr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Debitorenvertragszeilen - table [table.Name] - - - Zusagezeilennr. - table [Customer Contract Line] column [Subscription Line No.] - - - Vorlage - table [Customer Contract Line] column [Template] - - - Debitorenvertragszeilen-Beschreibung - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Servicestartdatum - table [Customer Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Customer Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Abrechnungsbasiszeitraum - table [Customer Contract Line] column [Billing Base Period] - - - Rechnungsartikelnr. - table [Customer Contract Line] column [Invoicing Item No.] - - - Debitorenvertragszeilennr. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Kündigungsfrist - table [Customer Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Customer Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Customer Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Customer Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Customer Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Customer Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Customer Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Customer Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Customer Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Customer Contract Line] column [Billing Rhythm Months] - - - Debitorenvertragsnr. - table [Customer Contract Line] column [Customer Contract No.] - - - Ist nutzungsbasierte Abrechnung - table [Customer Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Customer Contract Line] column [Source Type] - - - Herkunftsnr. - table [Customer Contract Line] column [Source No.] - - - Kreditorenvertragszeile - table [table.Name] - - - Zusagezeilennr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Vorlage - table [Vendor Contract Line] column [Template] - - - Kreditorenvertragszeilen-Beschreibung - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Servicestartdatum - table [Vendor Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Vendor Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Kreditorenvertragszeilennr. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Kündigungsfrist - table [Vendor Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Vendor Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Vendor Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Vendor Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Vendor Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Vendor Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Vendor Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Vendor Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Kreditorenvertragsnr. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Ist neueste Version - table [Vendor Contract Line] column [Is Latest Version] - - - Ist nutzungsbasierte Abrechnung - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Vendor Contract Line] column [Source Type] - - - Herkunftsnr. - table [Vendor Contract Line] column [Source No.] - - - Abgrenzungen von Debitorenverträgen - table [table.Name] - - - Belegtyp - table [Customer Contract Deferrals] column [Document Type] - - - Belegnummer - table [Customer Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Belegzeilennr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Belegbuchungsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Customer Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Debitorenvertrag - table [table.Name] - - - Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No.] - - - Debitorenvertragstyp - table [Customer Contract] column [Customer Contract Type] - - - Debitorenvertragsbeschreibung - table [Customer Contract] column [Customer Contract Description] - - - Beschreibung der Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Kreditorenvertrag - table [table.Name] - - - Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No.] - - - Kreditorenvertragstyp - table [Vendor Contract] column [Vendor Contract Type] - - - Kreditorenvertragsbeschreibung - table [Vendor Contract] column [Vendor Contract Description] - - - Beschreibung der Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - NBA-Verarbeitung - table [table.Name] - - - NBA als Konstante behandeln - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Ist freigegeben - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnr. - table [Item] column [Item No.] - - - Artikelname - table [Item] column [Item Name] - - - Lagerbuchungsgruppe - table [Item] column [Inventory Posting Group] - - - Basiseinheit - table [Item] column [Base Unit of Measure] - - - Artikelnr. und -Beschreibung - table [Item] column [Item No. & Description] - - - Analysedatum - table [table.Name] - - - Ist ursprüngliche Version - table [Analysis Date] column [Is Initial Version] - - - Ist aktuelle Version - table [Analysis Date] column [Is Current Version] - - - Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - table [table.Name] - - - Perspektive - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing-KPIs - table [table.Name] - - - MWU - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MWK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Debitorenabgrenzungen - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Kreditorenabgrenzungen - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - DBUCH - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - GVW - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Planungsverkäufe - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MWK VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MWK Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. wiederkehrende Umsätze Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MWU VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. wiederkehrende Umsätze Neu - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. wiederkehrende Umsätze Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMWU - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMWU % der MWU - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMWU VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMWU Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MWU-Gesamtveränderung - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - GVW VJ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - GVW Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Letzte Aktualisierung Analyseposten - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Letzte Aktualisierung des semantischen Modells - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parameterumgebung - table [Subscription Billing KPIs] measure [Param Environment] - - - Paramater Mandant - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. wiederkehrende Umsätze Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. wiederkehrende Umsätze NBA-Änderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Berichtswährung - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktive Debitoren - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktive Debitoren VJ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktive Debitoren Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Debitorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Kreditorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Geplante Kosten - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. wiederkehrende Umsätze Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Ausgewählter Datumsbereich - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Durchschn. mon. Abwanderungsrate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Durchschn. mon. Downgraderate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Verkäufer - table [table.Name] - - - Verkäufercode - table [Salesperson] column [Salesperson Code] - - - Verkäufername - table [Salesperson] column [Salesperson Name] - - - Änderungen des Debitorenvertrags - table [table.Name] - - - Debitorenvertragszeilen-Schlüssel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Typ ändern - table [Customer Contract Changes] column [Change Type] - - - MWU-Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-CH.resx deleted file mode 100644 index 45a7b5ac99..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-CH.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dimensionscode 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dimensionscode 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dimensionscode 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dimensionscode 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dimensionscode 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dimensionscode 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Kreditoren - table [table.Name] - - - Kreditornr. - table [Vendors] column [Vendor No.] - - - Kreditorenname - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ort - table [Vendors] column [City] - - - PLZ - table [Vendors] column [Post Code] - - - Bundesland - table [Vendors] column [State] - - - Länder-/Regionscode - table [Vendors] column [Country/Region Code] - - - Kreditorenbuchungsgruppe - table [Vendors] column [Vendor Posting Group] - - - Kreditornr. und -name - table [Vendors] column [Vendor No. & Name] - - - Debitoren - table [table.Name] - - - Debitorennummer - table [Customers] column [Customer No.] - - - Debitorname - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ort - table [Customers] column [City] - - - PLZ - table [Customers] column [Post Code] - - - Bundesland - table [Customers] column [State] - - - Länder-/Regionscode - table [Customers] column [Country/Region Code] - - - Debitorenbuchungsgruppe - table [Customers] column [Customer Posting Group] - - - Debitorenpreisgruppe - table [Customers] column [Customer Price Group] - - - Debitorenrabattgruppe - table [Customers] column [Customer Discount Group] - - - Debitorennr. und -name - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Fortlaufend 365 TagNummer - table [Date] column [Sequential365DayNumber] - - - Datenbereichsabgrenzungen - table [Date] column [Data Range Deferrals] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - MIT EIGENEN DATEN VERBINDEN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Finance Connector for Power BI herunterladen - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Dynamics 365 Business Central konfigurieren - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HILFE UND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - für Business Central - table [Localized Labels] measure [for Business Central] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Analyseposten zum - table [Localized Labels] measure [Analysis Entries as of] - - - Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Abrechnungsplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Abrechnungszeitplan - table [Localized Labels] measure [Billing Schedule] - - - Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktueller Datumsbereich: - table [Localized Labels] measure [Current Date Range:] - - - Abgrenzungen von Debitorenverträgen - table [Localized Labels] measure [Customer Contract Deferrals] - - - Debitorenvertragszeilen - table [Localized Labels] measure [Customer Contract Lines] - - - Debitorenabgrenzungen - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. wiederkehrende Umsatzanalyse - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. wiederkehrende Umsätze nach Debitor - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. wiederkehrende Umsätze nach Verkäufer - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. wiederkehrende Umsätze nach Artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. wiederkehrende Umsätze nach Kategorie - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Umsatzanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Umsatz nach Debitor - table [Localized Labels] measure [Revenue by Customer] - - - Umsatz nach Artikel - table [Localized Labels] measure [Revenue by Item] - - - Umsatz nach Verkäufer - table [Localized Labels] measure [Revenue by Salesperson] - - - Umsatzentwicklung - table [Localized Labels] measure [Revenue Development] - - - Umsatzplanung - table [Localized Labels] measure [Sales and Cost Forecast] - - - Umsatzwachstum im Vergleich zum Vorjahr - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing-Analyse - table [Localized Labels] measure [Subscription Billing Analysis] - - - Übersicht über Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top-5-Kreditoren nach mon. wiederkehrenden Kosten - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Gesamtvertragswertanalyse - table [Localized Labels] measure [Total Contract Value Analysis] - - - Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Gesamtvertragswert nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Kreditorenvertragsabgrenzungen - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Kreditorenabgrenzungen - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Schaltfläche „Zurück“ - table [Localized Labels] measure [Back button] - - - Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Abwanderungsanalyse - table [Localized Labels] measure [Churn Analysis] - - - Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektnr. - table [Subscription] column [Subscription No.] - - - Paketcode - table [Subscription] column [Package Code] - - - Serviceobjektbeschreibung - table [Subscription] column [Subscription Desc.] - - - Analysedatum - table [Subscription] column [Analysis Date] - - - Beschreibung Abonnement-Nr. - table [Subscription] column [Subscription No. Desc.] - - - Kreditorenvertragsabgrenzungen - table [table.Name] - - - Belegtyp - table [Vendor Contract Deferrals] column [Document Type] - - - Belegnummer - table [Vendor Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Belegbuchungsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabatt - table [Vendor Contract Deferrals] column [Discount] - - - Belegzeilennr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Debitorenvertragszeilen - table [table.Name] - - - Zusagezeilennr. - table [Customer Contract Line] column [Subscription Line No.] - - - Vorlage - table [Customer Contract Line] column [Template] - - - Debitorenvertragszeilen-Beschreibung - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Servicestartdatum - table [Customer Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Customer Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Abrechnungsbasiszeitraum - table [Customer Contract Line] column [Billing Base Period] - - - Rechnungsartikelnr. - table [Customer Contract Line] column [Invoicing Item No.] - - - Debitorenvertragszeilennr. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Kündigungsfrist - table [Customer Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Customer Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Customer Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Customer Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Customer Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Customer Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Customer Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Customer Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Customer Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Customer Contract Line] column [Billing Rhythm Months] - - - Debitorenvertragsnr. - table [Customer Contract Line] column [Customer Contract No.] - - - Ist nutzungsbasierte Abrechnung - table [Customer Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Customer Contract Line] column [Source Type] - - - Herkunftsnr. - table [Customer Contract Line] column [Source No.] - - - Kreditorenvertragszeile - table [table.Name] - - - Zusagezeilennr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Vorlage - table [Vendor Contract Line] column [Template] - - - Kreditorenvertragszeilen-Beschreibung - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Servicestartdatum - table [Vendor Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Vendor Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Kreditorenvertragszeilennr. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Kündigungsfrist - table [Vendor Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Vendor Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Vendor Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Vendor Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Vendor Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Vendor Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Vendor Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Vendor Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Kreditorenvertragsnr. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Ist neueste Version - table [Vendor Contract Line] column [Is Latest Version] - - - Ist nutzungsbasierte Abrechnung - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Vendor Contract Line] column [Source Type] - - - Herkunftsnr. - table [Vendor Contract Line] column [Source No.] - - - Abgrenzungen von Debitorenverträgen - table [table.Name] - - - Belegtyp - table [Customer Contract Deferrals] column [Document Type] - - - Belegnummer - table [Customer Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Belegzeilennr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Belegbuchungsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Customer Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Debitorenvertrag - table [table.Name] - - - Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No.] - - - Debitorenvertragstyp - table [Customer Contract] column [Customer Contract Type] - - - Debitorenvertragsbeschreibung - table [Customer Contract] column [Customer Contract Description] - - - Beschreibung der Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Kreditorenvertrag - table [table.Name] - - - Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No.] - - - Kreditorenvertragstyp - table [Vendor Contract] column [Vendor Contract Type] - - - Kreditorenvertragsbeschreibung - table [Vendor Contract] column [Vendor Contract Description] - - - Beschreibung der Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - NBA-Verarbeitung - table [table.Name] - - - NBA als Konstante behandeln - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Ist freigegeben - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnr. - table [Item] column [Item No.] - - - Artikelname - table [Item] column [Item Name] - - - Lagerbuchungsgruppe - table [Item] column [Inventory Posting Group] - - - Basiseinheit - table [Item] column [Base Unit of Measure] - - - Artikelnr. und -Beschreibung - table [Item] column [Item No. & Description] - - - Analysedatum - table [table.Name] - - - Ist ursprüngliche Version - table [Analysis Date] column [Is Initial Version] - - - Ist aktuelle Version - table [Analysis Date] column [Is Current Version] - - - Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - table [table.Name] - - - Perspektive - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing-KPIs - table [table.Name] - - - MWU - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MWK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Debitorenabgrenzungen - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Kreditorenabgrenzungen - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - DBUCH - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - GVW - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Planungsverkäufe - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MWK VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MWK Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. wiederkehrende Umsätze Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MWU VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. wiederkehrende Umsätze Neu - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. wiederkehrende Umsätze Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMWU - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMWU % der MWU - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMWU VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMWU Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MWU-Gesamtveränderung - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - GVW VJ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - GVW Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Letzte Aktualisierung Analyseposten - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Letzte Aktualisierung des semantischen Modells - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parameterumgebung - table [Subscription Billing KPIs] measure [Param Environment] - - - Paramater Mandant - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. wiederkehrende Umsätze Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. wiederkehrende Umsätze NBA-Änderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Berichtswährung - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktive Debitoren - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktive Debitoren VJ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktive Debitoren Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Debitorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Kreditorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Geplante Kosten - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. wiederkehrende Umsätze Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Ausgewählter Datumsbereich - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Durchschn. mon. Abwanderungsrate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Durchschn. mon. Downgraderate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Verkäufer - table [table.Name] - - - Verkäufercode - table [Salesperson] column [Salesperson Code] - - - Verkäufername - table [Salesperson] column [Salesperson Name] - - - Änderungen des Debitorenvertrags - table [table.Name] - - - Debitorenvertragszeilen-Schlüssel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Typ ändern - table [Customer Contract Changes] column [Change Type] - - - MWU-Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-DE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-DE.resx deleted file mode 100644 index f71aa260c1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.de-DE.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Kreditoren - table [table.Name] - - - Kreditornr. - table [Vendors] column [Vendor No.] - - - Kreditorenname - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ort - table [Vendors] column [City] - - - PLZ-Code - table [Vendors] column [Post Code] - - - Bundesland - table [Vendors] column [State] - - - Länder-/Regionscode - table [Vendors] column [Country/Region Code] - - - Kreditorenbuchungsgruppe - table [Vendors] column [Vendor Posting Group] - - - Kreditornr. und -name - table [Vendors] column [Vendor No. & Name] - - - Debitoren - table [table.Name] - - - Debitorennummer - table [Customers] column [Customer No.] - - - Debitorname - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ort - table [Customers] column [City] - - - PLZ-Code - table [Customers] column [Post Code] - - - Bundesland - table [Customers] column [State] - - - Länder-/Regionscode - table [Customers] column [Country/Region Code] - - - Debitorenbuchungsgruppe - table [Customers] column [Customer Posting Group] - - - Debitorenpreisgruppe - table [Customers] column [Customer Price Group] - - - Debitorenrabattgruppe - table [Customers] column [Customer Discount Group] - - - Debitorennr. und -name - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Fortlaufend 365 TagNummer - table [Date] column [Sequential365DayNumber] - - - Datenbereichsabgrenzungen - table [Date] column [Data Range Deferrals] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - MIT EIGENEN DATEN VERBINDEN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Finance Connector for Power BI herunterladen - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Dynamics 365 Business Central konfigurieren - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - EIGENE BERICHTE VERWENDEN, BEARBEITEN UND ERSTELLEN - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finanzen enthält eine Vielzahl vordefinierter Berichte, mit denen Sie Ihre Daten unmittelbar ansehen können. Sie können diese Berichte bearbeiten oder Ihren eigenen Bericht von Grund auf neu erstellen. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HILFE UND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Hilfe und Unterstützung für Ihren neuen Bericht finden Sie in der Dokumentation Analysen – Übersicht. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - für Business Central - table [Localized Labels] measure [for Business Central] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Analyseposten zum - table [Localized Labels] measure [Analysis Entries as of] - - - Abrechnungsplanung nach Abrechnungsperiode, Debitor und Vertragsnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Abrechnungsplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Abrechnungszeitplan - table [Localized Labels] measure [Billing Schedule] - - - Änderung dermon. wiederkehrenden Umsätze nach Jahr und Monat - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktueller Datumsbereich: - table [Localized Labels] measure [Current Date Range:] - - - Abgrenzungen von Debitorenverträgen - table [Localized Labels] measure [Customer Contract Deferrals] - - - Debitorenvertragszeilen - table [Localized Labels] measure [Customer Contract Lines] - - - Debitorenabgrenzungen - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. wiederkehrende Umsatzanalyse - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. wiederkehrende Umsätze und monatlich wiederkehrende Umsätze VJ nach Kalendermonat - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. wiederkehrende Umsätze und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. wiederkehrende Umsätze nach Debitor - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. wiederkehrende Umsätze nach Verkäufer - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. wiederkehrende Umsätze nach Kalenderjahr und Monat - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. wiederkehrende Umsätze nach Artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. wiederkehrende Umsätze nach Kategorie - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. wiederkehrende Umsatzabwanderung und Downgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. wiederkehrende Neuumsätze und Upgrade nach Debitorenvertrag - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monatliche Umsatz- und Kostenplanung nach Kalenderjahr und Monat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monatliche Umsatz- und Kostenplanung nach Verkäufer, Debitor und Vertragsnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Freigegebener und abgegrenzter Betrag nach Kalenderjahr und Monat - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Umsatzanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Umsatz nach Debitor - table [Localized Labels] measure [Revenue by Customer] - - - Umsatz nach Artikel - table [Localized Labels] measure [Revenue by Item] - - - Umsatz nach Verkäufer - table [Localized Labels] measure [Revenue by Salesperson] - - - Umsatzentwicklung - table [Localized Labels] measure [Revenue Development] - - - Umsatzplanung - table [Localized Labels] measure [Sales and Cost Forecast] - - - Umsatzwachstum im Vergleich zum Vorjahr - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing-Analyse - table [Localized Labels] measure [Subscription Billing Analysis] - - - Übersicht über Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top-5-Debitoren nach mon. wiederkehrenden Umsätzen - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top-5-Kreditoren nach mon. wiederkehrenden Kosten - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Gesamtvertragswertanalyse - table [Localized Labels] measure [Total Contract Value Analysis] - - - Gesamtvertragswert und Gesamtvertragswert VJ nach Kalendermonat - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Gesamtvertragswert und Wachstum gegenüber dem Vorjahr nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Gesamtvertragswert nach Kalenderjahr und Monat - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Wachstum des Gesamtvertragswerts gegenüber dem Vorjahr - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Kreditorenvertragsabgrenzungen - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Kreditorenabgrenzungen - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Schaltfläche „Zurück“ - table [Localized Labels] measure [Back button] - - - Mon. wiederkehrende Umsätze, Monatlich wiederkehrende Kosten, monatlicher Nettogewinn, aktive Debitoren, Gesamtvertragswert, Veränderung der monatlich wiederkehrenden Umsätze - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Abwanderungsanalyse - table [Localized Labels] measure [Churn Analysis] - - - Durchschn. mon. Abwanderungsrate % nach Jahr und Monat - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektnr. - table [Subscription] column [Subscription No.] - - - Paketcode - table [Subscription] column [Package Code] - - - Serviceobjektbeschreibung - table [Subscription] column [Subscription Desc.] - - - Analysedatum - table [Subscription] column [Analysis Date] - - - Beschreibung Abonnement-Nr. - table [Subscription] column [Subscription No. Desc.] - - - Kreditorenvertragsabgrenzungen - table [table.Name] - - - Belegtyp - table [Vendor Contract Deferrals] column [Document Type] - - - Belegnummer - table [Vendor Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Belegbuchungsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabatt - table [Vendor Contract Deferrals] column [Discount] - - - Belegzeilennr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Debitorenvertragszeilen - table [table.Name] - - - Zusagezeilennr. - table [Customer Contract Line] column [Subscription Line No.] - - - Vorlage - table [Customer Contract Line] column [Template] - - - Debitorenvertragszeilen-Beschreibung - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Servicestartdatum - table [Customer Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Customer Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Abrechnungsbasiszeitraum - table [Customer Contract Line] column [Billing Base Period] - - - Rechnungsartikelnr. - table [Customer Contract Line] column [Invoicing Item No.] - - - Debitorenvertragszeilennr. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Kündigungsfrist - table [Customer Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Customer Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Customer Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Customer Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Customer Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Customer Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Customer Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Customer Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Customer Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Customer Contract Line] column [Billing Rhythm Months] - - - Debitorenvertragsnr. - table [Customer Contract Line] column [Customer Contract No.] - - - Ist nutzungsbasierte Abrechnung - table [Customer Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Customer Contract Line] column [Source Type] - - - Herkunftsnr. - table [Customer Contract Line] column [Source No.] - - - Kreditorenvertragszeile - table [table.Name] - - - Zusagezeilennr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Vorlage - table [Vendor Contract Line] column [Template] - - - Kreditorenvertragszeilen-Beschreibung - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Servicestartdatum - table [Vendor Contract Line] column [Subscription Start Date] - - - Serviceenddatum - table [Vendor Contract Line] column [Subscription End Date] - - - Nächstes Abrechnungsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Kreditorenvertragszeilennr. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Kündigungsfrist - table [Vendor Contract Line] column [Notice Period] - - - Anfangslaufzeit - table [Vendor Contract Line] column [Initial Term] - - - Erweiterungsbedingung - table [Vendor Contract Line] column [Extension Term] - - - Abrechnungsrhythmus - table [Vendor Contract Line] column [Billing Rhythm] - - - Stornierung möglich bis - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Laufzeit bis - table [Vendor Contract Line] column [Term Until] - - - Verlängerungszeitraum - table [Vendor Contract Line] column [Renewal Term] - - - Zeile aktiv - table [Vendor Contract Line] column [Line Active] - - - Verbleibende Bedingung - table [Vendor Contract Line] column [Remaining Term] - - - Abrechnungsrhythmus (Monate) - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Kreditorenvertragsnr. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Ist neueste Version - table [Vendor Contract Line] column [Is Latest Version] - - - Ist nutzungsbasierte Abrechnung - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Herkunftsart - table [Vendor Contract Line] column [Source Type] - - - Herkunftsnr. - table [Vendor Contract Line] column [Source No.] - - - Abgrenzungen von Debitorenverträgen - table [table.Name] - - - Belegtyp - table [Customer Contract Deferrals] column [Document Type] - - - Belegnummer - table [Customer Contract Deferrals] column [Document No.] - - - Buchungsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Belegzeilennr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Belegbuchungsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Buchungsdatum freigeben - table [Customer Contract Deferrals] column [Release Posting Date] - - - Sachposten-Nr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Debitorenvertrag - table [table.Name] - - - Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No.] - - - Debitorenvertragstyp - table [Customer Contract] column [Customer Contract Type] - - - Debitorenvertragsbeschreibung - table [Customer Contract] column [Customer Contract Description] - - - Beschreibung der Debitorenvertragsnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Kreditorenvertrag - table [table.Name] - - - Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No.] - - - Kreditorenvertragstyp - table [Vendor Contract] column [Vendor Contract Type] - - - Kreditorenvertragsbeschreibung - table [Vendor Contract] column [Vendor Contract Description] - - - Beschreibung der Kreditorenvertragsnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - NBA-Verarbeitung - table [table.Name] - - - NBA als Konstante behandeln - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Ist freigegeben - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnr. - table [Item] column [Item No.] - - - Artikelname - table [Item] column [Item Name] - - - Lagerbuchungsgruppe - table [Item] column [Inventory Posting Group] - - - Basiseinheit - table [Item] column [Base Unit of Measure] - - - Artikelnr. und -Beschreibung - table [Item] column [Item No. & Description] - - - Analysedatum - table [table.Name] - - - Ist ursprüngliche Version - table [Analysis Date] column [Is Initial Version] - - - Ist aktuelle Version - table [Analysis Date] column [Is Current Version] - - - Berech. Gruppe – Zeitinformationen für Kalender (Geschäftlich) - table [table.Name] - - - Perspektive - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing-KPIs - table [table.Name] - - - MWU - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MWK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Debitorenabgrenzungen - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Kreditorenabgrenzungen - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - DBUCH - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - GVW - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Planungsverkäufe - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MWK VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MWK Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. wiederkehrende Umsätze Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MWU VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. wiederkehrende Umsätze Neu - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. wiederkehrende Umsätze Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMWU - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMWU % der MWU - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMWU VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMWU Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MWU-Gesamtveränderung - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - GVW VJ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - GVW Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Letzte Aktualisierung Analyseposten - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Letzte Aktualisierung des semantischen Modells - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parameterumgebung - table [Subscription Billing KPIs] measure [Param Environment] - - - Paramater Mandant - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. wiederkehrende Umsätze Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. wiederkehrende Umsätze NBA-Änderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Berichtswährung - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktive Debitoren - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktive Debitoren VJ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktive Debitoren Δ gegenüber VJ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Debitorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Kreditorenabrechnungsplanung - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Geplante Kosten - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. wiederkehrende Umsätze Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Ausgewählter Datumsbereich - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Durchschn. mon. Abwanderungsrate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Durchschn. mon. Downgraderate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. wiederkehrende Umsätze Downgrade und Abwanderung - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Verkäufer - table [table.Name] - - - Verkäufercode - table [Salesperson] column [Salesperson Code] - - - Verkäufername - table [Salesperson] column [Salesperson Name] - - - Änderungen des Debitorenvertrags - table [table.Name] - - - Debitorenvertragszeilen-Schlüssel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Typ ändern - table [Customer Contract Changes] column [Change Type] - - - MWU-Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-AU.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-AU.resx deleted file mode 100644 index fcfc43d268..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-AU.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Vendors - table [table.Name] - - - Vendor No. - table [Vendors] column [Vendor No.] - - - Vendor Name - table [Vendors] column [Vendor Name] - - - Address - table [Vendors] column [Address] - - - Address 2 - table [Vendors] column [Address 2] - - - City - table [Vendors] column [City] - - - Postcode - table [Vendors] column [Post Code] - - - State - table [Vendors] column [State] - - - Country/Region Code - table [Vendors] column [Country/Region Code] - - - Vendor Posting Group - table [Vendors] column [Vendor Posting Group] - - - Vendor No. & Name - table [Vendors] column [Vendor No. & Name] - - - Customers - table [table.Name] - - - Customer No. - table [Customers] column [Customer No.] - - - Customer Name - table [Customers] column [Customer Name] - - - Address - table [Customers] column [Address] - - - Address 2 - table [Customers] column [Address 2] - - - City - table [Customers] column [City] - - - Postcode - table [Customers] column [Post Code] - - - State - table [Customers] column [State] - - - Country/Region Code - table [Customers] column [Country/Region Code] - - - Customer Posting Group - table [Customers] column [Customer Posting Group] - - - Customer Price Group - table [Customers] column [Customer Price Group] - - - Customer Discount Group - table [Customers] column [Customer Discount Group] - - - Customer No. & Name - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - Sequential 365 DayNumber - table [Date] column [Sequential365DayNumber] - - - Data Range Deferrals - table [Date] column [Data Range Deferrals] - - - No. of Days - table [Date] measure [No. of Days] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECT YOUR DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download the Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configure Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USE, EDIT AND BUILD YOUR OWN REPORTS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP AND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - For help and support with your new report please visit the Analytics overview documentation. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Analysis Entries as of - table [Localized Labels] measure [Analysis Entries as of] - - - Billing Forecast by Billing Period, Customer and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Billing Forecast by Calendar Year and Month - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Billing Schedule - table [Localized Labels] measure [Billing Schedule] - - - Change of Mon. Recurring Revenue by Year and Month - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Current Date Range: - table [Localized Labels] measure [Current Date Range:] - - - Customer Contract Deferrals - table [Localized Labels] measure [Customer Contract Deferrals] - - - Customer Contract Lines - table [Localized Labels] measure [Customer Contract Lines] - - - Customer Deferrals - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. Recurring Revenue Analysis - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. Recurring Revenue by Customer - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. Recurring Revenue by Salesperson - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. Recurring Revenue by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. Recurring Revenue by Item - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. Recurring Revenue by Item Category - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. Recurring Revenue Churn and Downgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. Recurring Revenue New and Upgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monthly Revenue and Cost Forecast by Calendar Year and Month - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Released and Deferred Amount by Calendar Year and Month - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Revenue Analysis - table [Localized Labels] measure [Revenue Analysis] - - - Revenue by Customer - table [Localized Labels] measure [Revenue by Customer] - - - Revenue by Item - table [Localized Labels] measure [Revenue by Item] - - - Revenue by Salesperson - table [Localized Labels] measure [Revenue by Salesperson] - - - Revenue Development - table [Localized Labels] measure [Revenue Development] - - - Revenue Forecast - table [Localized Labels] measure [Sales and Cost Forecast] - - - Revenue Year-Over-Year Growth - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing Analysis - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing Overview - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 Customers by Mon. Recurring Revenue - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 Vendors by Mon. Recurring Cost - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Total Contract Value Analysis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total Contract Value and Total Contract Value PY by Calendar Month - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total Contract Value by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total Contract Value Year-Over-Year Growth - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Vendor Contract Deferrals - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Vendor Deferrals - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Back button - table [Localized Labels] measure [Back button] - - - Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Churn Analysis - table [Localized Labels] measure [Churn Analysis] - - - Avg. Mon. Churn Rate % by Year and Month - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Service Object - table [table.Name] - - - Service Object No. - table [Subscription] column [Subscription No.] - - - Package Code - table [Subscription] column [Package Code] - - - Service Object Desc. - table [Subscription] column [Subscription Desc.] - - - Analysis Date - table [Subscription] column [Analysis Date] - - - Subscription No. Desc. - table [Subscription] column [Subscription No. Desc.] - - - Vendor Contract Deferrals - table [table.Name] - - - Document Type - table [Vendor Contract Deferrals] column [Document Type] - - - Document No. - table [Vendor Contract Deferrals] column [Document No.] - - - Posting Date - table [Vendor Contract Deferrals] column [Posting Date] - - - Document Posting Date - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Vendor Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Discount - table [Vendor Contract Deferrals] column [Discount] - - - Document Line No. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Customer Contract Line - table [table.Name] - - - Commitment Line No. - table [Customer Contract Line] column [Subscription Line No.] - - - Template - table [Customer Contract Line] column [Template] - - - Customer Contract Line Desc. - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Service Start Date - table [Customer Contract Line] column [Subscription Start Date] - - - Service End Date - table [Customer Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Customer Contract Line] column [Next Billing Date] - - - Billing Base Period - table [Customer Contract Line] column [Billing Base Period] - - - Invoicing Item No. - table [Customer Contract Line] column [Invoicing Item No.] - - - Customer Contract Line No. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Notice Period - table [Customer Contract Line] column [Notice Period] - - - Initial Term - table [Customer Contract Line] column [Initial Term] - - - Extension Term - table [Customer Contract Line] column [Extension Term] - - - Billing Rhythm - table [Customer Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Customer Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Customer Contract Line] column [Term Until] - - - Renewal Term - table [Customer Contract Line] column [Renewal Term] - - - Line Active - table [Customer Contract Line] column [Line Active] - - - Remaining Term - table [Customer Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Customer Contract Line] column [Billing Rhythm Months] - - - Customer Contract No. - table [Customer Contract Line] column [Customer Contract No.] - - - Is Usage Based Billing - table [Customer Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Customer Contract Line] column [Source Type] - - - Source No. - table [Customer Contract Line] column [Source No.] - - - Vendor Contract Line - table [table.Name] - - - Commitment Line No. - table [Vendor Contract Line] column [Subscription Line No.] - - - Template - table [Vendor Contract Line] column [Template] - - - Vendor Contract Line Desc. - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Service Start Date - table [Vendor Contract Line] column [Subscription Start Date] - - - Service End Date - table [Vendor Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Vendor Contract Line] column [Next Billing Date] - - - Vendor Contract Line No. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Notice Period - table [Vendor Contract Line] column [Notice Period] - - - Initial Term - table [Vendor Contract Line] column [Initial Term] - - - Extension Term - table [Vendor Contract Line] column [Extension Term] - - - Billing Rhythm - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Vendor Contract Line] column [Term Until] - - - Renewal Term - table [Vendor Contract Line] column [Renewal Term] - - - Line Active - table [Vendor Contract Line] column [Line Active] - - - Remaining Term - table [Vendor Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Vendor Contract No. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is Latest Version - table [Vendor Contract Line] column [Is Latest Version] - - - Is Usage Based Billing - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Vendor Contract Line] column [Source Type] - - - Source No. - table [Vendor Contract Line] column [Source No.] - - - Customer Contract Deferrals - table [table.Name] - - - Document Type - table [Customer Contract Deferrals] column [Document Type] - - - Document No. - table [Customer Contract Deferrals] column [Document No.] - - - Posting Date - table [Customer Contract Deferrals] column [Posting Date] - - - Document Line No. - table [Customer Contract Deferrals] column [Document Line No.] - - - Document Posting Date - table [Customer Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Customer Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Customer Contract - table [table.Name] - - - Customer Contract No. - table [Customer Contract] column [Customer Contract No.] - - - Customer Contract Type - table [Customer Contract] column [Customer Contract Type] - - - Customer Contract Description - table [Customer Contract] column [Customer Contract Description] - - - Customer Contract No. Desc. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Vendor Contract - table [table.Name] - - - Vendor Contract No. - table [Vendor Contract] column [Vendor Contract No.] - - - Vendor Contract Type - table [Vendor Contract] column [Vendor Contract Type] - - - Vendor Contract Description - table [Vendor Contract] column [Vendor Contract Description] - - - Vendor Contract No. Desc. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - UBB handling - table [table.Name] - - - Treat UBB as constant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is Released - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Item - table [table.Name] - - - Item No. - table [Item] column [Item No.] - - - Item Name - table [Item] column [Item Name] - - - Inventory Posting Group - table [Item] column [Inventory Posting Group] - - - Base Unit of Measure - table [Item] column [Base Unit of Measure] - - - Item No. & Description - table [Item] column [Item No. & Description] - - - Analysis Date - table [table.Name] - - - Is Initial Version - table [Analysis Date] column [Is Initial Version] - - - Is Current Version - table [Analysis Date] column [Is Current Version] - - - Calc. Group - Time Intelligence for Calendar (Fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing KPIs - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Customer Deferrals - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Vendor Deferrals - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Forecast Sales - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MRC Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. Recurring Revenue Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. Recurring Revenue New - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. Recurring Revenue Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMRP % of MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMRP Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MRR overall change - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCV Δ vs. PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Last Update Analysis Entries - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Last Update Semantic Model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param Environment - table [Subscription Billing KPIs] measure [Param Environment] - - - Param Company - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. Recurring Revenue Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. Recurring Revenue Change UBB - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Reporting Currency - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Active Customers - table [Subscription Billing KPIs] measure [Active Customers] - - - Active Customers PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Active Customers Δ vs. PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Customer Billing Forecast - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Vendor Billing Forecast - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Forecast Costs - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. Recurring Revenue Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Selected Date Range - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Avg. Mon. Churn Rate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mon. Avg. Downgrade Rate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. Recurring Revenue Downgrade & Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Salesperson - table [table.Name] - - - Salesperson Code - table [Salesperson] column [Salesperson Code] - - - Salesperson Name - table [Salesperson] column [Salesperson Name] - - - Customer Contract Changes - table [table.Name] - - - Customer Contract Line Key - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Change Type - table [Customer Contract Changes] column [Change Type] - - - MRR Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-CA.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-CA.resx deleted file mode 100644 index 859af58a16..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-CA.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Vendors - table [table.Name] - - - Vendor No. - table [Vendors] column [Vendor No.] - - - Vendor Name - table [Vendors] column [Vendor Name] - - - Address - table [Vendors] column [Address] - - - Address 2 - table [Vendors] column [Address 2] - - - City - table [Vendors] column [City] - - - Postal/ZIP Code - table [Vendors] column [Post Code] - - - Province/State - table [Vendors] column [State] - - - Country/Region Code - table [Vendors] column [Country/Region Code] - - - Vendor Posting Group - table [Vendors] column [Vendor Posting Group] - - - Vendor No. & Name - table [Vendors] column [Vendor No. & Name] - - - Customers - table [table.Name] - - - Customer No. - table [Customers] column [Customer No.] - - - Customer Name - table [Customers] column [Customer Name] - - - Address - table [Customers] column [Address] - - - Address 2 - table [Customers] column [Address 2] - - - City - table [Customers] column [City] - - - Postal/ZIP Code - table [Customers] column [Post Code] - - - Province/State - table [Customers] column [State] - - - Country/Region Code - table [Customers] column [Country/Region Code] - - - Customer Posting Group - table [Customers] column [Customer Posting Group] - - - Customer Price Group - table [Customers] column [Customer Price Group] - - - Customer Discount Group - table [Customers] column [Customer Discount Group] - - - Customer No. & Name - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - Sequential 365 DayNumber - table [Date] column [Sequential365DayNumber] - - - Data Range Deferrals - table [Date] column [Data Range Deferrals] - - - No. of Days - table [Date] measure [No. of Days] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECT YOUR DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download the Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configure Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USE, EDIT AND BUILD YOUR OWN REPORTS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP AND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - For help and support with your new report please visit the Analytics overview documentation. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Analysis Entries as of - table [Localized Labels] measure [Analysis Entries as of] - - - Billing Forecast by Billing Period, Customer and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Billing Forecast by Calendar Year and Month - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Billing Schedule - table [Localized Labels] measure [Billing Schedule] - - - Change of Mon. Recurring Revenue by Year and Month - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Current Date Range: - table [Localized Labels] measure [Current Date Range:] - - - Customer Contract Deferrals - table [Localized Labels] measure [Customer Contract Deferrals] - - - Customer Contract Lines - table [Localized Labels] measure [Customer Contract Lines] - - - Customer Deferrals - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. Recurring Revenue Analysis - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. Recurring Revenue by Customer - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. Recurring Revenue by Salesperson - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. Recurring Revenue by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. Recurring Revenue by Item - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. Recurring Revenue by Item Category - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. Recurring Revenue Churn and Downgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. Recurring Revenue New and Upgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monthly Revenue and Cost Forecast by Calendar Year and Month - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Released and Deferred Amount by Calendar Year and Month - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Revenue Analysis - table [Localized Labels] measure [Revenue Analysis] - - - Revenue by Customer - table [Localized Labels] measure [Revenue by Customer] - - - Revenue by Item - table [Localized Labels] measure [Revenue by Item] - - - Revenue by Salesperson - table [Localized Labels] measure [Revenue by Salesperson] - - - Revenue Development - table [Localized Labels] measure [Revenue Development] - - - Revenue Forecast - table [Localized Labels] measure [Sales and Cost Forecast] - - - Revenue Year-Over-Year Growth - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing Analysis - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing Overview - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 Customers by Mon. Recurring Revenue - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 Vendors by Mon. Recurring Cost - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Total Contract Value Analysis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total Contract Value and Total Contract Value PY by Calendar Month - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total Contract Value by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total Contract Value Year-Over-Year Growth - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Vendor Contract Deferrals - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Vendor Deferrals - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Back button - table [Localized Labels] measure [Back button] - - - Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Churn Analysis - table [Localized Labels] measure [Churn Analysis] - - - Avg. Mon. Churn Rate % by Year and Month - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Service Object - table [table.Name] - - - Service Object No. - table [Subscription] column [Subscription No.] - - - Package Code - table [Subscription] column [Package Code] - - - Service Object Desc. - table [Subscription] column [Subscription Desc.] - - - Analysis Date - table [Subscription] column [Analysis Date] - - - Subscription No. Desc. - table [Subscription] column [Subscription No. Desc.] - - - Vendor Contract Deferrals - table [table.Name] - - - Document Type - table [Vendor Contract Deferrals] column [Document Type] - - - Document No. - table [Vendor Contract Deferrals] column [Document No.] - - - Posting Date - table [Vendor Contract Deferrals] column [Posting Date] - - - Document Posting Date - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Vendor Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Discount - table [Vendor Contract Deferrals] column [Discount] - - - Document Line No. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Customer Contract Line - table [table.Name] - - - Commitment Line No. - table [Customer Contract Line] column [Subscription Line No.] - - - Template - table [Customer Contract Line] column [Template] - - - Customer Contract Line Desc. - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Service Start Date - table [Customer Contract Line] column [Subscription Start Date] - - - Service End Date - table [Customer Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Customer Contract Line] column [Next Billing Date] - - - Billing Base Period - table [Customer Contract Line] column [Billing Base Period] - - - Invoicing Item No. - table [Customer Contract Line] column [Invoicing Item No.] - - - Customer Contract Line No. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Notice Period - table [Customer Contract Line] column [Notice Period] - - - Initial Term - table [Customer Contract Line] column [Initial Term] - - - Extension Term - table [Customer Contract Line] column [Extension Term] - - - Billing Rhythm - table [Customer Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Customer Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Customer Contract Line] column [Term Until] - - - Renewal Term - table [Customer Contract Line] column [Renewal Term] - - - Line Active - table [Customer Contract Line] column [Line Active] - - - Remaining Term - table [Customer Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Customer Contract Line] column [Billing Rhythm Months] - - - Customer Contract No. - table [Customer Contract Line] column [Customer Contract No.] - - - Is Usage Based Billing - table [Customer Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Customer Contract Line] column [Source Type] - - - Source No. - table [Customer Contract Line] column [Source No.] - - - Vendor Contract Line - table [table.Name] - - - Commitment Line No. - table [Vendor Contract Line] column [Subscription Line No.] - - - Template - table [Vendor Contract Line] column [Template] - - - Vendor Contract Line Desc. - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Service Start Date - table [Vendor Contract Line] column [Subscription Start Date] - - - Service End Date - table [Vendor Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Vendor Contract Line] column [Next Billing Date] - - - Vendor Contract Line No. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Notice Period - table [Vendor Contract Line] column [Notice Period] - - - Initial Term - table [Vendor Contract Line] column [Initial Term] - - - Extension Term - table [Vendor Contract Line] column [Extension Term] - - - Billing Rhythm - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Vendor Contract Line] column [Term Until] - - - Renewal Term - table [Vendor Contract Line] column [Renewal Term] - - - Line Active - table [Vendor Contract Line] column [Line Active] - - - Remaining Term - table [Vendor Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Vendor Contract No. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is Latest Version - table [Vendor Contract Line] column [Is Latest Version] - - - Is Usage Based Billing - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Vendor Contract Line] column [Source Type] - - - Source No. - table [Vendor Contract Line] column [Source No.] - - - Customer Contract Deferrals - table [table.Name] - - - Document Type - table [Customer Contract Deferrals] column [Document Type] - - - Document No. - table [Customer Contract Deferrals] column [Document No.] - - - Posting Date - table [Customer Contract Deferrals] column [Posting Date] - - - Document Line No. - table [Customer Contract Deferrals] column [Document Line No.] - - - Document Posting Date - table [Customer Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Customer Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Customer Contract - table [table.Name] - - - Customer Contract No. - table [Customer Contract] column [Customer Contract No.] - - - Customer Contract Type - table [Customer Contract] column [Customer Contract Type] - - - Customer Contract Description - table [Customer Contract] column [Customer Contract Description] - - - Customer Contract No. Desc. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Vendor Contract - table [table.Name] - - - Vendor Contract No. - table [Vendor Contract] column [Vendor Contract No.] - - - Vendor Contract Type - table [Vendor Contract] column [Vendor Contract Type] - - - Vendor Contract Description - table [Vendor Contract] column [Vendor Contract Description] - - - Vendor Contract No. Desc. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - UBB handling - table [table.Name] - - - Treat UBB as constant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is Released - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Item - table [table.Name] - - - Item No. - table [Item] column [Item No.] - - - Item Name - table [Item] column [Item Name] - - - Inventory Posting Group - table [Item] column [Inventory Posting Group] - - - Base Unit of Measure - table [Item] column [Base Unit of Measure] - - - Item No. & Description - table [Item] column [Item No. & Description] - - - Analysis Date - table [table.Name] - - - Is Initial Version - table [Analysis Date] column [Is Initial Version] - - - Is Current Version - table [Analysis Date] column [Is Current Version] - - - Calc. Group - Time Intelligence for Calendar (Fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing KPIs - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Customer Deferrals - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Vendor Deferrals - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Forecast Sales - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MRC Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. Recurring Revenue Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. Recurring Revenue New - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. Recurring Revenue Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMRP % of MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMRP Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MRR overall change - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCV Δ vs. PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Last Update Analysis Entries - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Last Update Semantic Model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param Environment - table [Subscription Billing KPIs] measure [Param Environment] - - - Param Company - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. Recurring Revenue Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. Recurring Revenue Change UBB - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Reporting Currency - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Active Customers - table [Subscription Billing KPIs] measure [Active Customers] - - - Active Customers PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Active Customers Δ vs. PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Customer Billing Forecast - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Vendor Billing Forecast - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Forecast Costs - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. Recurring Revenue Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Selected Date Range - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Avg. Mon. Churn Rate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mon. Avg. Downgrade Rate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. Recurring Revenue Downgrade & Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Salesperson - table [table.Name] - - - Salesperson Code - table [Salesperson] column [Salesperson Code] - - - Salesperson Name - table [Salesperson] column [Salesperson Name] - - - Customer Contract Changes - table [table.Name] - - - Customer Contract Line Key - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Change Type - table [Customer Contract Changes] column [Change Type] - - - MRR Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-GB.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-GB.resx deleted file mode 100644 index f8a946c9d3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-GB.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Vendors - table [table.Name] - - - Vendor No. - table [Vendors] column [Vendor No.] - - - Vendor Name - table [Vendors] column [Vendor Name] - - - Address - table [Vendors] column [Address] - - - Address 2 - table [Vendors] column [Address 2] - - - City - table [Vendors] column [City] - - - Postcode - table [Vendors] column [Post Code] - - - County - table [Vendors] column [State] - - - Country/Region Code - table [Vendors] column [Country/Region Code] - - - Vendor Posting Group - table [Vendors] column [Vendor Posting Group] - - - Vendor No. & Name - table [Vendors] column [Vendor No. & Name] - - - Customers - table [table.Name] - - - Customer No. - table [Customers] column [Customer No.] - - - Customer Name - table [Customers] column [Customer Name] - - - Address - table [Customers] column [Address] - - - Address 2 - table [Customers] column [Address 2] - - - City - table [Customers] column [City] - - - Postcode - table [Customers] column [Post Code] - - - County - table [Customers] column [State] - - - Country/Region Code - table [Customers] column [Country/Region Code] - - - Customer Posting Group - table [Customers] column [Customer Posting Group] - - - Customer Price Group - table [Customers] column [Customer Price Group] - - - Customer Discount Group - table [Customers] column [Customer Discount Group] - - - Customer No. & Name - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - Sequential 365 DayNumber - table [Date] column [Sequential365DayNumber] - - - Data Range Deferrals - table [Date] column [Data Range Deferrals] - - - No. of Days - table [Date] measure [No. of Days] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECT YOUR DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download the Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configure Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USE, EDIT AND BUILD YOUR OWN REPORTS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP AND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - For help and support with your new report please visit the Analytics overview documentation. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Analysis Entries as of - table [Localized Labels] measure [Analysis Entries as of] - - - Billing Forecast by Billing Period, Customer and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Billing Forecast by Calendar Year and Month - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Billing Schedule - table [Localized Labels] measure [Billing Schedule] - - - Change of Mon. Recurring Revenue by Year and Month - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Current Date Range: - table [Localized Labels] measure [Current Date Range:] - - - Customer Contract Deferrals - table [Localized Labels] measure [Customer Contract Deferrals] - - - Customer Contract Lines - table [Localized Labels] measure [Customer Contract Lines] - - - Customer Deferrals - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. Recurring Revenue Analysis - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. Recurring Revenue by Customer - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. Recurring Revenue by Salesperson - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. Recurring Revenue by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. Recurring Revenue by Item - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. Recurring Revenue by Item Category - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. Recurring Revenue Churn and Downgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. Recurring Revenue New and Upgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monthly Revenue and Cost Forecast by Calendar Year and Month - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Released and Deferred Amount by Calendar Year and Month - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Revenue Analysis - table [Localized Labels] measure [Revenue Analysis] - - - Revenue by Customer - table [Localized Labels] measure [Revenue by Customer] - - - Revenue by Item - table [Localized Labels] measure [Revenue by Item] - - - Revenue by Salesperson - table [Localized Labels] measure [Revenue by Salesperson] - - - Revenue Development - table [Localized Labels] measure [Revenue Development] - - - Revenue Forecast - table [Localized Labels] measure [Sales and Cost Forecast] - - - Revenue Year-Over-Year Growth - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing Analysis - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing Overview - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 Customers by Mon. Recurring Revenue - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 Vendors by Mon. Recurring Cost - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Total Contract Value Analysis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total Contract Value and Total Contract Value PY by Calendar Month - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total Contract Value by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total Contract Value Year-Over-Year Growth - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Vendor Contract Deferrals - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Vendor Deferrals - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Back button - table [Localized Labels] measure [Back button] - - - Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Churn Analysis - table [Localized Labels] measure [Churn Analysis] - - - Avg. Mon. Churn Rate % by Year and Month - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Service Object - table [table.Name] - - - Service Object No. - table [Subscription] column [Subscription No.] - - - Package Code - table [Subscription] column [Package Code] - - - Service Object Desc. - table [Subscription] column [Subscription Desc.] - - - Analysis Date - table [Subscription] column [Analysis Date] - - - Subscription No. Desc. - table [Subscription] column [Subscription No. Desc.] - - - Vendor Contract Deferrals - table [table.Name] - - - Document Type - table [Vendor Contract Deferrals] column [Document Type] - - - Document No. - table [Vendor Contract Deferrals] column [Document No.] - - - Posting Date - table [Vendor Contract Deferrals] column [Posting Date] - - - Document Posting Date - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Vendor Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Discount - table [Vendor Contract Deferrals] column [Discount] - - - Document Line No. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Customer Contract Line - table [table.Name] - - - Commitment Line No. - table [Customer Contract Line] column [Subscription Line No.] - - - Template - table [Customer Contract Line] column [Template] - - - Customer Contract Line Desc. - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Service Start Date - table [Customer Contract Line] column [Subscription Start Date] - - - Service End Date - table [Customer Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Customer Contract Line] column [Next Billing Date] - - - Billing Base Period - table [Customer Contract Line] column [Billing Base Period] - - - Invoicing Item No. - table [Customer Contract Line] column [Invoicing Item No.] - - - Customer Contract Line No. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Notice Period - table [Customer Contract Line] column [Notice Period] - - - Initial Term - table [Customer Contract Line] column [Initial Term] - - - Extension Term - table [Customer Contract Line] column [Extension Term] - - - Billing Rhythm - table [Customer Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Customer Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Customer Contract Line] column [Term Until] - - - Renewal Term - table [Customer Contract Line] column [Renewal Term] - - - Line Active - table [Customer Contract Line] column [Line Active] - - - Remaining Term - table [Customer Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Customer Contract Line] column [Billing Rhythm Months] - - - Customer Contract No. - table [Customer Contract Line] column [Customer Contract No.] - - - Is Usage Based Billing - table [Customer Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Customer Contract Line] column [Source Type] - - - Source No. - table [Customer Contract Line] column [Source No.] - - - Vendor Contract Line - table [table.Name] - - - Commitment Line No. - table [Vendor Contract Line] column [Subscription Line No.] - - - Template - table [Vendor Contract Line] column [Template] - - - Vendor Contract Line Desc. - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Service Start Date - table [Vendor Contract Line] column [Subscription Start Date] - - - Service End Date - table [Vendor Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Vendor Contract Line] column [Next Billing Date] - - - Vendor Contract Line No. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Notice Period - table [Vendor Contract Line] column [Notice Period] - - - Initial Term - table [Vendor Contract Line] column [Initial Term] - - - Extension Term - table [Vendor Contract Line] column [Extension Term] - - - Billing Rhythm - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Vendor Contract Line] column [Term Until] - - - Renewal Term - table [Vendor Contract Line] column [Renewal Term] - - - Line Active - table [Vendor Contract Line] column [Line Active] - - - Remaining Term - table [Vendor Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Vendor Contract No. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is Latest Version - table [Vendor Contract Line] column [Is Latest Version] - - - Is Usage Based Billing - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Vendor Contract Line] column [Source Type] - - - Source No. - table [Vendor Contract Line] column [Source No.] - - - Customer Contract Deferrals - table [table.Name] - - - Document Type - table [Customer Contract Deferrals] column [Document Type] - - - Document No. - table [Customer Contract Deferrals] column [Document No.] - - - Posting Date - table [Customer Contract Deferrals] column [Posting Date] - - - Document Line No. - table [Customer Contract Deferrals] column [Document Line No.] - - - Document Posting Date - table [Customer Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Customer Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Customer Contract - table [table.Name] - - - Customer Contract No. - table [Customer Contract] column [Customer Contract No.] - - - Customer Contract Type - table [Customer Contract] column [Customer Contract Type] - - - Customer Contract Description - table [Customer Contract] column [Customer Contract Description] - - - Customer Contract No. Desc. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Vendor Contract - table [table.Name] - - - Vendor Contract No. - table [Vendor Contract] column [Vendor Contract No.] - - - Vendor Contract Type - table [Vendor Contract] column [Vendor Contract Type] - - - Vendor Contract Description - table [Vendor Contract] column [Vendor Contract Description] - - - Vendor Contract No. Desc. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - UBB handling - table [table.Name] - - - Treat UBB as constant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is Released - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Item - table [table.Name] - - - Item No. - table [Item] column [Item No.] - - - Item Name - table [Item] column [Item Name] - - - Inventory Posting Group - table [Item] column [Inventory Posting Group] - - - Base Unit of Measure - table [Item] column [Base Unit of Measure] - - - Item No. & Description - table [Item] column [Item No. & Description] - - - Analysis Date - table [table.Name] - - - Is Initial Version - table [Analysis Date] column [Is Initial Version] - - - Is Current Version - table [Analysis Date] column [Is Current Version] - - - Calc. Group - Time Intelligence for Calendar (Fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing KPIs - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Customer Deferrals - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Vendor Deferrals - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Forecast Sales - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MRC Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. Recurring Revenue Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. Recurring Revenue New - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. Recurring Revenue Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMRP % of MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMRP Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MRR overall change - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCV Δ vs. PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Last Update Analysis Entries - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Last Update Semantic Model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param Environment - table [Subscription Billing KPIs] measure [Param Environment] - - - Param Company - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. Recurring Revenue Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. Recurring Revenue Change UBB - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Reporting Currency - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Active Customers - table [Subscription Billing KPIs] measure [Active Customers] - - - Active Customers PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Active Customers Δ vs. PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Customer Billing Forecast - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Vendor Billing Forecast - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Forecast Costs - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. Recurring Revenue Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Selected Date Range - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Avg. Mon. Churn Rate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mon. Avg. Downgrade Rate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. Recurring Revenue Downgrade & Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Salesperson - table [table.Name] - - - Salesperson Code - table [Salesperson] column [Salesperson Code] - - - Salesperson Name - table [Salesperson] column [Salesperson Name] - - - Customer Contract Changes - table [table.Name] - - - Customer Contract Line Key - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Change Type - table [Customer Contract Changes] column [Change Type] - - - MRR Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-NZ.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-NZ.resx deleted file mode 100644 index fcfc43d268..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-NZ.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Vendors - table [table.Name] - - - Vendor No. - table [Vendors] column [Vendor No.] - - - Vendor Name - table [Vendors] column [Vendor Name] - - - Address - table [Vendors] column [Address] - - - Address 2 - table [Vendors] column [Address 2] - - - City - table [Vendors] column [City] - - - Postcode - table [Vendors] column [Post Code] - - - State - table [Vendors] column [State] - - - Country/Region Code - table [Vendors] column [Country/Region Code] - - - Vendor Posting Group - table [Vendors] column [Vendor Posting Group] - - - Vendor No. & Name - table [Vendors] column [Vendor No. & Name] - - - Customers - table [table.Name] - - - Customer No. - table [Customers] column [Customer No.] - - - Customer Name - table [Customers] column [Customer Name] - - - Address - table [Customers] column [Address] - - - Address 2 - table [Customers] column [Address 2] - - - City - table [Customers] column [City] - - - Postcode - table [Customers] column [Post Code] - - - State - table [Customers] column [State] - - - Country/Region Code - table [Customers] column [Country/Region Code] - - - Customer Posting Group - table [Customers] column [Customer Posting Group] - - - Customer Price Group - table [Customers] column [Customer Price Group] - - - Customer Discount Group - table [Customers] column [Customer Discount Group] - - - Customer No. & Name - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - Sequential 365 DayNumber - table [Date] column [Sequential365DayNumber] - - - Data Range Deferrals - table [Date] column [Data Range Deferrals] - - - No. of Days - table [Date] measure [No. of Days] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECT YOUR DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download the Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configure Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USE, EDIT AND BUILD YOUR OWN REPORTS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP AND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - For help and support with your new report please visit the Analytics overview documentation. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Analysis Entries as of - table [Localized Labels] measure [Analysis Entries as of] - - - Billing Forecast by Billing Period, Customer and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Billing Forecast by Calendar Year and Month - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Billing Schedule - table [Localized Labels] measure [Billing Schedule] - - - Change of Mon. Recurring Revenue by Year and Month - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Current Date Range: - table [Localized Labels] measure [Current Date Range:] - - - Customer Contract Deferrals - table [Localized Labels] measure [Customer Contract Deferrals] - - - Customer Contract Lines - table [Localized Labels] measure [Customer Contract Lines] - - - Customer Deferrals - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. Recurring Revenue Analysis - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. Recurring Revenue by Customer - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. Recurring Revenue by Salesperson - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. Recurring Revenue by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. Recurring Revenue by Item - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. Recurring Revenue by Item Category - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. Recurring Revenue Churn and Downgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. Recurring Revenue New and Upgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monthly Revenue and Cost Forecast by Calendar Year and Month - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Released and Deferred Amount by Calendar Year and Month - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Revenue Analysis - table [Localized Labels] measure [Revenue Analysis] - - - Revenue by Customer - table [Localized Labels] measure [Revenue by Customer] - - - Revenue by Item - table [Localized Labels] measure [Revenue by Item] - - - Revenue by Salesperson - table [Localized Labels] measure [Revenue by Salesperson] - - - Revenue Development - table [Localized Labels] measure [Revenue Development] - - - Revenue Forecast - table [Localized Labels] measure [Sales and Cost Forecast] - - - Revenue Year-Over-Year Growth - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing Analysis - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing Overview - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 Customers by Mon. Recurring Revenue - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 Vendors by Mon. Recurring Cost - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Total Contract Value Analysis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total Contract Value and Total Contract Value PY by Calendar Month - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total Contract Value by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total Contract Value Year-Over-Year Growth - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Vendor Contract Deferrals - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Vendor Deferrals - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Back button - table [Localized Labels] measure [Back button] - - - Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Churn Analysis - table [Localized Labels] measure [Churn Analysis] - - - Avg. Mon. Churn Rate % by Year and Month - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Service Object - table [table.Name] - - - Service Object No. - table [Subscription] column [Subscription No.] - - - Package Code - table [Subscription] column [Package Code] - - - Service Object Desc. - table [Subscription] column [Subscription Desc.] - - - Analysis Date - table [Subscription] column [Analysis Date] - - - Subscription No. Desc. - table [Subscription] column [Subscription No. Desc.] - - - Vendor Contract Deferrals - table [table.Name] - - - Document Type - table [Vendor Contract Deferrals] column [Document Type] - - - Document No. - table [Vendor Contract Deferrals] column [Document No.] - - - Posting Date - table [Vendor Contract Deferrals] column [Posting Date] - - - Document Posting Date - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Vendor Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Discount - table [Vendor Contract Deferrals] column [Discount] - - - Document Line No. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Customer Contract Line - table [table.Name] - - - Commitment Line No. - table [Customer Contract Line] column [Subscription Line No.] - - - Template - table [Customer Contract Line] column [Template] - - - Customer Contract Line Desc. - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Service Start Date - table [Customer Contract Line] column [Subscription Start Date] - - - Service End Date - table [Customer Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Customer Contract Line] column [Next Billing Date] - - - Billing Base Period - table [Customer Contract Line] column [Billing Base Period] - - - Invoicing Item No. - table [Customer Contract Line] column [Invoicing Item No.] - - - Customer Contract Line No. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Notice Period - table [Customer Contract Line] column [Notice Period] - - - Initial Term - table [Customer Contract Line] column [Initial Term] - - - Extension Term - table [Customer Contract Line] column [Extension Term] - - - Billing Rhythm - table [Customer Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Customer Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Customer Contract Line] column [Term Until] - - - Renewal Term - table [Customer Contract Line] column [Renewal Term] - - - Line Active - table [Customer Contract Line] column [Line Active] - - - Remaining Term - table [Customer Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Customer Contract Line] column [Billing Rhythm Months] - - - Customer Contract No. - table [Customer Contract Line] column [Customer Contract No.] - - - Is Usage Based Billing - table [Customer Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Customer Contract Line] column [Source Type] - - - Source No. - table [Customer Contract Line] column [Source No.] - - - Vendor Contract Line - table [table.Name] - - - Commitment Line No. - table [Vendor Contract Line] column [Subscription Line No.] - - - Template - table [Vendor Contract Line] column [Template] - - - Vendor Contract Line Desc. - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Service Start Date - table [Vendor Contract Line] column [Subscription Start Date] - - - Service End Date - table [Vendor Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Vendor Contract Line] column [Next Billing Date] - - - Vendor Contract Line No. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Notice Period - table [Vendor Contract Line] column [Notice Period] - - - Initial Term - table [Vendor Contract Line] column [Initial Term] - - - Extension Term - table [Vendor Contract Line] column [Extension Term] - - - Billing Rhythm - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Vendor Contract Line] column [Term Until] - - - Renewal Term - table [Vendor Contract Line] column [Renewal Term] - - - Line Active - table [Vendor Contract Line] column [Line Active] - - - Remaining Term - table [Vendor Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Vendor Contract No. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is Latest Version - table [Vendor Contract Line] column [Is Latest Version] - - - Is Usage Based Billing - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Vendor Contract Line] column [Source Type] - - - Source No. - table [Vendor Contract Line] column [Source No.] - - - Customer Contract Deferrals - table [table.Name] - - - Document Type - table [Customer Contract Deferrals] column [Document Type] - - - Document No. - table [Customer Contract Deferrals] column [Document No.] - - - Posting Date - table [Customer Contract Deferrals] column [Posting Date] - - - Document Line No. - table [Customer Contract Deferrals] column [Document Line No.] - - - Document Posting Date - table [Customer Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Customer Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Customer Contract - table [table.Name] - - - Customer Contract No. - table [Customer Contract] column [Customer Contract No.] - - - Customer Contract Type - table [Customer Contract] column [Customer Contract Type] - - - Customer Contract Description - table [Customer Contract] column [Customer Contract Description] - - - Customer Contract No. Desc. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Vendor Contract - table [table.Name] - - - Vendor Contract No. - table [Vendor Contract] column [Vendor Contract No.] - - - Vendor Contract Type - table [Vendor Contract] column [Vendor Contract Type] - - - Vendor Contract Description - table [Vendor Contract] column [Vendor Contract Description] - - - Vendor Contract No. Desc. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - UBB handling - table [table.Name] - - - Treat UBB as constant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is Released - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Item - table [table.Name] - - - Item No. - table [Item] column [Item No.] - - - Item Name - table [Item] column [Item Name] - - - Inventory Posting Group - table [Item] column [Inventory Posting Group] - - - Base Unit of Measure - table [Item] column [Base Unit of Measure] - - - Item No. & Description - table [Item] column [Item No. & Description] - - - Analysis Date - table [table.Name] - - - Is Initial Version - table [Analysis Date] column [Is Initial Version] - - - Is Current Version - table [Analysis Date] column [Is Current Version] - - - Calc. Group - Time Intelligence for Calendar (Fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing KPIs - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Customer Deferrals - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Vendor Deferrals - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Forecast Sales - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MRC Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. Recurring Revenue Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. Recurring Revenue New - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. Recurring Revenue Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMRP % of MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMRP Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MRR overall change - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCV Δ vs. PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Last Update Analysis Entries - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Last Update Semantic Model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param Environment - table [Subscription Billing KPIs] measure [Param Environment] - - - Param Company - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. Recurring Revenue Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. Recurring Revenue Change UBB - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Reporting Currency - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Active Customers - table [Subscription Billing KPIs] measure [Active Customers] - - - Active Customers PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Active Customers Δ vs. PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Customer Billing Forecast - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Vendor Billing Forecast - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Forecast Costs - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. Recurring Revenue Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Selected Date Range - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Avg. Mon. Churn Rate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mon. Avg. Downgrade Rate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. Recurring Revenue Downgrade & Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Salesperson - table [table.Name] - - - Salesperson Code - table [Salesperson] column [Salesperson Code] - - - Salesperson Name - table [Salesperson] column [Salesperson Name] - - - Customer Contract Changes - table [table.Name] - - - Customer Contract Line Key - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Change Type - table [Customer Contract Changes] column [Change Type] - - - MRR Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-US.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-US.resx deleted file mode 100644 index 345750299a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.en-US.resx +++ /dev/null @@ -1,1682 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Vendors - table [table.Name] - - - Vendor No. - table [Vendors] column [Vendor No.] - - - Vendor Name - table [Vendors] column [Vendor Name] - - - Address - table [Vendors] column [Address] - - - Address 2 - table [Vendors] column [Address 2] - - - City - table [Vendors] column [City] - - - Post Code - table [Vendors] column [Post Code] - - - State - table [Vendors] column [State] - - - Country/Region Code - table [Vendors] column [Country/Region Code] - - - Vendor Posting Group - table [Vendors] column [Vendor Posting Group] - - - Vendor No. & Name - table [Vendors] column [Vendor No. & Name] - - - Customers - table [table.Name] - - - Customer No. - table [Customers] column [Customer No.] - - - Customer Name - table [Customers] column [Customer Name] - - - Address - table [Customers] column [Address] - - - Address 2 - table [Customers] column [Address 2] - - - City - table [Customers] column [City] - - - Post Code - table [Customers] column [Post Code] - - - State - table [Customers] column [State] - - - Country/Region Code - table [Customers] column [Country/Region Code] - - - Customer Posting Group - table [Customers] column [Customer Posting Group] - - - Customer Price Group - table [Customers] column [Customer Price Group] - - - Customer Discount Group - table [Customers] column [Customer Discount Group] - - - Customer No. & Name - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - Sequential 365 DayNumber - table [Date] column [Sequential365DayNumber] - - - Data Range Deferrals - table [Date] column [Data Range Deferrals] - - - No. of Days - table [Date] measure [No. of Days] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECT YOUR DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Download the Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configure Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USE, EDIT AND BUILD YOUR OWN REPORTS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP AND SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - For help and support with your new report please visit the Analytics overview documentation. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Analysis Entries as of - table [Localized Labels] measure [Analysis Entries as of] - - - Billing Forecast by Billing Period, Customer and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Billing Forecast by Calendar Year and Month - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Billing Schedule - table [Localized Labels] measure [Billing Schedule] - - - Change of Mon. Recurring Revenue by Year and Month - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Current Date Range: - table [Localized Labels] measure [Current Date Range:] - - - Customer Contract Deferrals - table [Localized Labels] measure [Customer Contract Deferrals] - - - Customer Contract Lines - table [Localized Labels] measure [Customer Contract Lines] - - - Customer Deferrals - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mon. Recurring Revenue Analysis - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mon. Recurring Revenue and Mon. Recurring Revenue PY by Calendar Month - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mon. Recurring Revenue and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mon. Recurring Revenue by Customer - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mon. Recurring Revenue by Salesperson - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mon. Recurring Revenue by Calendar Year and Month - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mon. Recurring Revenue by Item - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mon. Recurring Revenue by Item Category - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mon. Recurring Revenue Churn and Downgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mon. Recurring Revenue New and Upgrade by Customer Contract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Monthly Revenue and Cost Forecast by Calendar Year and Month - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Monthly Revenue and Cost Forecast by Salesperson, Customer and Contract No. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Released and Deferred Amount by Calendar Year and Month - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Revenue Analysis - table [Localized Labels] measure [Revenue Analysis] - - - Revenue by Customer - table [Localized Labels] measure [Revenue by Customer] - - - Revenue by Item - table [Localized Labels] measure [Revenue by Item] - - - Revenue by Salesperson - table [Localized Labels] measure [Revenue by Salesperson] - - - Revenue Development - table [Localized Labels] measure [Revenue Development] - - - Revenue Forecast - table [Localized Labels] measure [Sales and Cost Forecast] - - - Revenue Year-Over-Year Growth - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing Analysis - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing Overview - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 Customers by Mon. Recurring Revenue - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 Vendors by Mon. Recurring Cost - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Total Contract Value Analysis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total Contract Value and Total Contract Value PY by Calendar Month - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total Contract Value and Year-Over-Year Growth by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total Contract Value by Calendar Year and Month - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total Contract Value Year-Over-Year Growth - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Vendor Contract Deferrals - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Vendor Deferrals - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Back button - table [Localized Labels] measure [Back button] - - - Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Churn Analysis - table [Localized Labels] measure [Churn Analysis] - - - Avg. Mon. Churn Rate % by Year and Month - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Service Object - table [table.Name] - - - Service Object No. - table [Subscription] column [Subscription No.] - - - Package Code - table [Subscription] column [Package Code] - - - Service Object Desc. - table [Subscription] column [Subscription Desc.] - - - Analysis Date - table [Subscription] column [Analysis Date] - - - Subscription No. Desc. - table [Subscription] column [Subscription No. Desc.] - - - Vendor Contract Deferrals - table [table.Name] - - - Document Type - table [Vendor Contract Deferrals] column [Document Type] - - - Document No. - table [Vendor Contract Deferrals] column [Document No.] - - - Posting Date - table [Vendor Contract Deferrals] column [Posting Date] - - - Document Posting Date - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Vendor Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Discount - table [Vendor Contract Deferrals] column [Discount] - - - Document Line No. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Customer Contract Line - table [table.Name] - - - Commitment Line No. - table [Customer Contract Line] column [Subscription Line No.] - - - Template - table [Customer Contract Line] column [Template] - - - Customer Contract Line Desc. - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Service Start Date - table [Customer Contract Line] column [Subscription Start Date] - - - Service End Date - table [Customer Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Customer Contract Line] column [Next Billing Date] - - - Billing Base Period - table [Customer Contract Line] column [Billing Base Period] - - - Invoicing Item No. - table [Customer Contract Line] column [Invoicing Item No.] - - - Customer Contract Line No. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Notice Period - table [Customer Contract Line] column [Notice Period] - - - Initial Term - table [Customer Contract Line] column [Initial Term] - - - Extension Term - table [Customer Contract Line] column [Extension Term] - - - Billing Rhythm - table [Customer Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Customer Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Customer Contract Line] column [Term Until] - - - Renewal Term - table [Customer Contract Line] column [Renewal Term] - - - Line Active - table [Customer Contract Line] column [Line Active] - - - Remaining Term - table [Customer Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Customer Contract Line] column [Billing Rhythm Months] - - - Customer Contract No. - table [Customer Contract Line] column [Customer Contract No.] - - - Is Usage Based Billing - table [Customer Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Customer Contract Line] column [Source Type] - - - Source No. - table [Customer Contract Line] column [Source No.] - - - Vendor Contract Line - table [table.Name] - - - Commitment Line No. - table [Vendor Contract Line] column [Subscription Line No.] - - - Template - table [Vendor Contract Line] column [Template] - - - Vendor Contract Line Desc. - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Service Start Date - table [Vendor Contract Line] column [Subscription Start Date] - - - Service End Date - table [Vendor Contract Line] column [Subscription End Date] - - - Next Billing Date - table [Vendor Contract Line] column [Next Billing Date] - - - Vendor Contract Line No. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Notice Period - table [Vendor Contract Line] column [Notice Period] - - - Initial Term - table [Vendor Contract Line] column [Initial Term] - - - Extension Term - table [Vendor Contract Line] column [Extension Term] - - - Billing Rhythm - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancellation Possible Until - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Term Until - table [Vendor Contract Line] column [Term Until] - - - Renewal Term - table [Vendor Contract Line] column [Renewal Term] - - - Line Active - table [Vendor Contract Line] column [Line Active] - - - Remaining Term - table [Vendor Contract Line] column [Remaining Term] - - - Billing Rhythm Months - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Vendor Contract No. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is Latest Version - table [Vendor Contract Line] column [Is Latest Version] - - - Is Usage Based Billing - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Source Type - table [Vendor Contract Line] column [Source Type] - - - Source No. - table [Vendor Contract Line] column [Source No.] - - - Customer Contract Deferrals - table [table.Name] - - - Document Type - table [Customer Contract Deferrals] column [Document Type] - - - Document No. - table [Customer Contract Deferrals] column [Document No.] - - - Posting Date - table [Customer Contract Deferrals] column [Posting Date] - - - Document Line No. - table [Customer Contract Deferrals] column [Document Line No.] - - - Document Posting Date - table [Customer Contract Deferrals] column [Document Posting Date] - - - Release Posting Date - table [Customer Contract Deferrals] column [Release Posting Date] - - - G LEntry No. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Customer Contract - table [table.Name] - - - Customer Contract No. - table [Customer Contract] column [Customer Contract No.] - - - Customer Contract Type - table [Customer Contract] column [Customer Contract Type] - - - Customer Contract Description - table [Customer Contract] column [Customer Contract Description] - - - Customer Contract No. Desc. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Vendor Contract - table [table.Name] - - - Vendor Contract No. - table [Vendor Contract] column [Vendor Contract No.] - - - Vendor Contract Type - table [Vendor Contract] column [Vendor Contract Type] - - - Vendor Contract Description - table [Vendor Contract] column [Vendor Contract Description] - - - Vendor Contract No. Desc. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - UBB handling - table [table.Name] - - - Treat UBB as constant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is Released - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Item - table [table.Name] - - - Item No. - table [Item] column [Item No.] - - - Item Name - table [Item] column [Item Name] - - - Inventory Posting Group - table [Item] column [Inventory Posting Group] - - - Base Unit of Measure - table [Item] column [Base Unit of Measure] - - - Item No. & Description - table [Item] column [Item No. & Description] - - - Analysis Date - table [table.Name] - - - Is Initial Version - table [Analysis Date] column [Is Initial Version] - - - Is Current Version - table [Analysis Date] column [Is Current Version] - - - Calc. Group - Time Intelligence for Calendar (Fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing KPIs - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Customer Deferrals - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Vendor Deferrals - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Forecast Sales - table [Subscription Billing KPIs] measure [Forecast Sales] - - - - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MRC Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mon. Recurring Revenue Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mon. Recurring Revenue New - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mon. Recurring Revenue Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMRP % of MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMRP Δ vs. PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - MRR overall change - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCV Δ vs. PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Last Update Analysis Entries - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Last Update Semantic Model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param Environment - table [Subscription Billing KPIs] measure [Param Environment] - - - Param Company - table [Subscription Billing KPIs] measure [Param Company] - - - Mon. Recurring Revenue Upgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mon. Recurring Revenue Change UBB - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Reporting Currency - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Active Customers - table [Subscription Billing KPIs] measure [Active Customers] - - - - table [Subscription Billing KPIs] measure [Active Customers] - - - Active Customers PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Active Customers Δ vs. PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Customer Billing Forecast - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Vendor Billing Forecast - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Forecast Costs - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mon. Recurring Revenue Downgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Selected Date Range - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Avg. Mon. Churn Rate % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mon. Avg. Downgrade Rate % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mon. Recurring Revenue Downgrade & Churn - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Salesperson - table [table.Name] - - - Salesperson Code - table [Salesperson] column [Salesperson Code] - - - Salesperson Name - table [Salesperson] column [Salesperson Name] - - - Customer Contract Changes - table [table.Name] - - - Customer Contract Line Key - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Change Type - table [Customer Contract Changes] column [Change Type] - - - MRR Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-ES.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-ES.resx deleted file mode 100644 index f71e72b16b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-ES.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Grupos de dimensiones - table [table.Name] - - - Dimensión global 1 - table [Dimension Sets] column [Global Dimension 1] - - - Dimensión global 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dim. acceso dir. 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dim. acceso dir. 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dim. acceso dir. 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dim. acceso dir. 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dim. acceso dir. 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dim. acceso dir. 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Proveedores - table [table.Name] - - - N.º proveedor - table [Vendors] column [Vendor No.] - - - Nombre de proveedor - table [Vendors] column [Vendor Name] - - - Dirección - table [Vendors] column [Address] - - - Dirección 2 - table [Vendors] column [Address 2] - - - Ciudad - table [Vendors] column [City] - - - Código postal - table [Vendors] column [Post Code] - - - Provincia - table [Vendors] column [State] - - - Código de país o región - table [Vendors] column [Country/Region Code] - - - Grupo contable proveedor - table [Vendors] column [Vendor Posting Group] - - - N.º y nombre de proveedor - table [Vendors] column [Vendor No. & Name] - - - Clientes - table [table.Name] - - - N.º de cliente - table [Customers] column [Customer No.] - - - Nombre de cliente - table [Customers] column [Customer Name] - - - Dirección - table [Customers] column [Address] - - - Dirección 2 - table [Customers] column [Address 2] - - - Ciudad - table [Customers] column [City] - - - Código postal - table [Customers] column [Post Code] - - - Provincia - table [Customers] column [State] - - - Código de país o región - table [Customers] column [Country/Region Code] - - - Grupo contable cliente - table [Customers] column [Customer Posting Group] - - - Grupo de precio de cliente - table [Customers] column [Customer Price Group] - - - Grupo de descuento de cliente - table [Customers] column [Customer Discount Group] - - - Nombre y n.º de cliente - table [Customers] column [Customer No. & Name] - - - Fecha - table [table.Name] - - - Día de la semana - table [Date] column [Week Day] - - - Tipo de pago - table [Date] column [Day Type] - - - Año natural - table [Date] column [Calendar Year] - - - - Trimestre natural - table [Date] column [Calendar Quarter] - - - Trimestre año natural - table [Date] column [Calendar Quarter Year] - - - Mes natural - table [Date] column [Calendar Month] - - - Mes año natural - table [Date] column [Calendar Month Year] - - - Semana natural - table [Date] column [Calendar Week] - - - Semana año natural - table [Date] column [Calendar Week Year] - - - PosSemanaRelativa natural - table [Date] column [Calendar RelativeWeekPos] - - - PosMesRelativa natural - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativa natural - table [Date] column [Calendar RelativeQuarterPos] - - - PosAñoRelativa natural - table [Date] column [Calendar RelativeYearPos] - - - InicioDeMes natural - table [Date] column [Calendar StartOfMonth] - - - FinDeMes natural - table [Date] column [Calendar EndOfMonth] - - - InicioDeTrimestre natural - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre natural - table [Date] column [Calendar EndOfQuarter] - - - InicioDeAño natural - table [Date] column [Calendar StartOfYear] - - - FinDeAño natural - table [Date] column [Calendar EndOfYear] - - - DíasMes natural - table [Date] column [Calendar MonthDays] - - - TrimestreDías natural - table [Date] column [Calendar QuarterDays] - - - AñoDías natural - table [Date] column [Calendar YearDays] - - - NúmeroDeDíaDeMes natural - table [Date] column [Calendar DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre natural - table [Date] column [Calendar DayOfQuarterNumber] - - - NúmeroDeDíaDeAño natural - table [Date] column [Calendar DayOfYearNumber] - - - FechaSemanaAnterior natural - table [Date] column [Calendar DatePreviousWeek] - - - FechaMesAnterior natural - table [Date] column [Calendar DatePreviousMonth] - - - FechaTrimestreAnterior natural - table [Date] column [Calendar DatePreviousQuarter] - - - FechaAñoAnterior natural - table [Date] column [Calendar DatePreviousYear] - - - Ejercicio - table [Date] column [Fiscal Year] - - - Trimestre fiscal - table [Date] column [Fiscal Quarter] - - - Año trimestre fiscal - table [Date] column [Fiscal Quarter Year] - - - Mes fiscal - table [Date] column [Fiscal Month] - - - Mes año fiscal - table [Date] column [Fiscal Month Year] - - - Semana fiscal - table [Date] column [Fiscal Week] - - - Semana año fiscal - table [Date] column [Fiscal Week Year] - - - PosSemanaRelativa fiscal - table [Date] column [Fiscal RelativeWeekPos] - - - PosMesRelativa fiscal - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativa fiscal - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAñoRelativa fiscal - table [Date] column [Fiscal RelativeYearPos] - - - InicioDeMes fiscal - table [Date] column [Fiscal StartOfMonth] - - - FinDeMes fiscal - table [Date] column [Fiscal EndOfMonth] - - - InicioDeTrimestre fiscal - table [Date] column [Fiscal StartOfQuarter] - - - FinDeTrimestre fiscal - table [Date] column [Fiscal EndOfQuarter] - - - InicioDeAño fiscal - table [Date] column [Fiscal StartOfYear] - - - FinDeAño fiscal - table [Date] column [Fiscal EndOfYear] - - - MesDías fiscal - table [Date] column [Fiscal MonthDays] - - - DíasTrimestre fiscal - table [Date] column [Fiscal QuarterDays] - - - AñoDías fiscal - table [Date] column [Fiscal YearDays] - - - NúmeroDeDíaDeMes fiscal - table [Date] column [Fiscal DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre fiscal - table [Date] column [Fiscal DayOfQuarterNumber] - - - NúmeroDíaAño fiscal - table [Date] column [Fiscal DayOfYearNumber] - - - FechaSemanaAnterior fiscal - table [Date] column [Fiscal DatePreviousWeek] - - - FechaMesAnterior fiscal - table [Date] column [Fiscal DatePreviousMonth] - - - FechaTrimestreAnterior fiscal - table [Date] column [Fiscal DatePreviousQuarter] - - - FechaAñoAnterior fiscal - table [Date] column [Fiscal DatePreviousYear] - - - Año SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre año SF - table [Date] column [FW Quarter Year] - - - Mes SF - table [Date] column [FW Month] - - - Mes año SF - table [Date] column [FW Month Year] - - - Semana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Semana año SF - table [Date] column [FW Week Year] - - - InicioDeSemana SF - table [Date] column [FW StartOfWeek] - - - FinDeSemana SF - table [Date] column [FW EndOfWeek] - - - PosSemanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMesRelativa SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativa SF - table [Date] column [FW RelativeQuarterPos] - - - PosAñoRelativa SF - table [Date] column [FW RelativeYearPos] - - - InicioDeMes SF - table [Date] column [FW StartOfMonth] - - - FinDeMes SF - table [Date] column [FW EndOfMonth] - - - InicioDeTrimestre SF - table [Date] column [FW StartOfQuarter] - - - FinDeTrimestre SF - table [Date] column [FW EndOfQuarter] - - - InicioDeAño SF - table [Date] column [FW StartOfYear] - - - FinDeAño SF - table [Date] column [FW EndOfYear] - - - MesDías FS - table [Date] column [FW MonthDays] - - - DíasTrimestre SF - table [Date] column [FW QuarterDays] - - - DíasAño SF - table [Date] column [FW YearDays] - - - NúmeroDeDíaDeMes SF - table [Date] column [FW DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NúmerDeDíaDeAño SF - table [Date] column [FW DayOfYearNumber] - - - FechaSemanaAnterior SF - table [Date] column [FW DatePreviousWeek] - - - FechaMesAnterior SF - table [Date] column [FW DatePreviousMonth] - - - FechaTrimestreAnterior SF - table [Date] column [FW DatePreviousQuarter] - - - Fecha AñoAnterior SF - table [Date] column [FW DatePreviousYear] - - - Día relativo - table [Date] column [Relative Day] - - - NúmeroDía 365 secuencial - table [Date] column [Sequential365DayNumber] - - - Fraccionamientos intervalo datos - table [Date] column [Data Range Deferrals] - - - N.º días - table [Date] measure [No. of Days] - - - Año-Trimestre-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Año trimestre fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Año-Trimestre-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Año-Trimestre-Mes-Semana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Año-mes fiscal - table [Date] hierarchy [Fiscal Year-Month] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Año-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Año-mes natural - table [Date] hierarchy [Calendar Year-Month] - - - Año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Año-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Año-Mes-Semana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Año-Trimestre-Semana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Semana-Año SF - table [Date] hierarchy [FW Year-Week] - - - Año SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONECTAR LOS DATOS - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Descargar Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurar Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USAR, EDITAR Y CREAR SUS PROPIOS INFORMES - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AYUDA Y SOPORTE - table [Localized Labels] measure [HELP AND SUPPORT] - - - Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - para Business Central - table [Localized Labels] measure [for Business Central] - - - Última actualización - table [Localized Labels] measure [Last Refreshed] - - - Nombre empresa - table [Localized Labels] measure [Company Name] - - - Movimientos de análisis a partir de - table [Localized Labels] measure [Analysis Entries as of] - - - Previsión de facturación por periodo de facturación, cliente y n.º contrato - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Previsión de facturación por mes y año naturales - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Programación de facturación - table [Localized Labels] measure [Billing Schedule] - - - Cambio de ingresos periódicos mensuales por mes y año - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Intervalo de fechas actual: - table [Localized Labels] measure [Current Date Range:] - - - Fraccionamientos de contratos de clientes - table [Localized Labels] measure [Customer Contract Deferrals] - - - Líneas de contrato de cliente - table [Localized Labels] measure [Customer Contract Lines] - - - Fraccionamientos de clientes - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Análisis de ingresos periódicos mensuales - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Ingresos periódicos mensuales por cliente - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Ingresos periódicos mensuales por vendedor - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Ingresos periódicos mensuales por mes y año naturales - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Ingresos periódicos mensuales por producto - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Ingresos periódicos mensuales por categoría de producto - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Previsión mensual de ingresos y costes por mes y año natural - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Previsión mensual de ingresos y costes por vendedor, cliente y n.º contrato - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Importe liberado y fraccionado por mes y año naturales - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Análisis de ingresos - table [Localized Labels] measure [Revenue Analysis] - - - Ingresos por cliente - table [Localized Labels] measure [Revenue by Customer] - - - Ingresos por producto - table [Localized Labels] measure [Revenue by Item] - - - Ingresos por vendedor - table [Localized Labels] measure [Revenue by Salesperson] - - - Desarrollo de ingresos - table [Localized Labels] measure [Revenue Development] - - - Previsión de ingresos - table [Localized Labels] measure [Sales and Cost Forecast] - - - Crecimiento interanual de los ingresos - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Análisis Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Información general Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Los 5 clientes principales por Ingresos periódicos mensuales - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Los 5 principales proveedores por coste periódico mensual - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Análisis del valor total del contrato - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valor total del contrato y valor total del contrato AA por mes natural - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valor total del contrato y crecimiento interanual por mes y año naturales - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valor total de contrato por mes y año naturales - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Crecimiento interanual del valor total del contrato - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Fraccionamientos de contrato de proveedor - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Fraccionamientos de proveedores - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Botón Atrás - table [Localized Labels] measure [Back button] - - - Ingresos periódicos mensuales, Coste periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Análisis de abandono - table [Localized Labels] measure [Churn Analysis] - - - % tasa de abandono men. medio por año y mes - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objeto de servicio - table [table.Name] - - - N.º de objeto de servicio - table [Subscription] column [Subscription No.] - - - Código de paquete - table [Subscription] column [Package Code] - - - Des. objeto de servicio - table [Subscription] column [Subscription Desc.] - - - Fecha de análisis - table [Subscription] column [Analysis Date] - - - Desc. n.º suscripción - table [Subscription] column [Subscription No. Desc.] - - - Fraccionamientos de contrato de proveedor - table [table.Name] - - - Tipo de documento - table [Vendor Contract Deferrals] column [Document Type] - - - N.º de documento - table [Vendor Contract Deferrals] column [Document No.] - - - Fecha reg. - table [Vendor Contract Deferrals] column [Posting Date] - - - Fecha de registro de documento - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Fecha de registro de versión - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N.º mov. contabilidad - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Descuento - table [Vendor Contract Deferrals] column [Discount] - - - N.º lín. documento - table [Vendor Contract Deferrals] column [Document Line No.] - - - Línea de contrato de cliente - table [table.Name] - - - N.º de línea de compromiso - table [Customer Contract Line] column [Subscription Line No.] - - - Plantilla - table [Customer Contract Line] column [Template] - - - Desc. de línea de contrato de cliente - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Fecha de inicio del servicio - table [Customer Contract Line] column [Subscription Start Date] - - - Fecha de finalización del servicio - table [Customer Contract Line] column [Subscription End Date] - - - Próxima fecha de facturación - table [Customer Contract Line] column [Next Billing Date] - - - Periodo base de facturación - table [Customer Contract Line] column [Billing Base Period] - - - N.º de producto de facturación - table [Customer Contract Line] column [Invoicing Item No.] - - - N.º de línea de contrato de cliente - table [Customer Contract Line] column [Customer Contract Line No.] - - - Periodo de preaviso - table [Customer Contract Line] column [Notice Period] - - - Plazo inicial - table [Customer Contract Line] column [Initial Term] - - - Plazo de extensión - table [Customer Contract Line] column [Extension Term] - - - Ritmo de facturación - table [Customer Contract Line] column [Billing Rhythm] - - - Cancelación posible hasta - table [Customer Contract Line] column [Cancellation Possible Until] - - - Plazo hasta - table [Customer Contract Line] column [Term Until] - - - Plazo de renovación - table [Customer Contract Line] column [Renewal Term] - - - Línea activa - table [Customer Contract Line] column [Line Active] - - - Plazo restante - table [Customer Contract Line] column [Remaining Term] - - - Meses ritmo facturación - table [Customer Contract Line] column [Billing Rhythm Months] - - - N.º de contrato del cliente - table [Customer Contract Line] column [Customer Contract No.] - - - Es facturación basada en el uso - table [Customer Contract Line] column [Is Usage Based Billing] - - - Tipo procedencia mov. - table [Customer Contract Line] column [Source Type] - - - Cód. procedencia mov. - table [Customer Contract Line] column [Source No.] - - - Línea de contrato de proveedor - table [table.Name] - - - N.º de línea de compromiso - table [Vendor Contract Line] column [Subscription Line No.] - - - Plantilla - table [Vendor Contract Line] column [Template] - - - Desc. de línea de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Fecha de inicio del servicio - table [Vendor Contract Line] column [Subscription Start Date] - - - Fecha de finalización del servicio - table [Vendor Contract Line] column [Subscription End Date] - - - Próxima fecha de facturación - table [Vendor Contract Line] column [Next Billing Date] - - - N.º de línea de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Periodo de preaviso - table [Vendor Contract Line] column [Notice Period] - - - Plazo inicial - table [Vendor Contract Line] column [Initial Term] - - - Plazo de extensión - table [Vendor Contract Line] column [Extension Term] - - - Ritmo de facturación - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancelación posible hasta - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Plazo hasta - table [Vendor Contract Line] column [Term Until] - - - Plazo de renovación - table [Vendor Contract Line] column [Renewal Term] - - - Línea activa - table [Vendor Contract Line] column [Line Active] - - - Plazo restante - table [Vendor Contract Line] column [Remaining Term] - - - Meses ritmo facturación - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N.º de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract No.] - - - Es la versión más reciente - table [Vendor Contract Line] column [Is Latest Version] - - - Es facturación basada en el uso - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Tipo procedencia mov. - table [Vendor Contract Line] column [Source Type] - - - Cód. procedencia mov. - table [Vendor Contract Line] column [Source No.] - - - Fraccionamientos de contratos de clientes - table [table.Name] - - - Tipo de documento - table [Customer Contract Deferrals] column [Document Type] - - - N.º de documento - table [Customer Contract Deferrals] column [Document No.] - - - Fecha reg. - table [Customer Contract Deferrals] column [Posting Date] - - - N.º lín. documento - table [Customer Contract Deferrals] column [Document Line No.] - - - Fecha de registro de documento - table [Customer Contract Deferrals] column [Document Posting Date] - - - Fecha de registro de versión - table [Customer Contract Deferrals] column [Release Posting Date] - - - N.º mov. contabilidad - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrato del cliente - table [table.Name] - - - N.º de contrato del cliente - table [Customer Contract] column [Customer Contract No.] - - - Tipo de contrato de cliente - table [Customer Contract] column [Customer Contract Type] - - - Descripción de contrato de cliente - table [Customer Contract] column [Customer Contract Description] - - - Desc. de n.º de contrato de cliente - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrato de proveedor - table [table.Name] - - - N.º de contrato de proveedor - table [Vendor Contract] column [Vendor Contract No.] - - - Tipo de contrato de proveedor - table [Vendor Contract] column [Vendor Contract Type] - - - Descripción de contrato de proveedor - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. de n.º de contrato de proveedor - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Manipulación de UBB - table [table.Name] - - - Tratar UBB como constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Es lanzado - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Producto - table [table.Name] - - - N.º producto - table [Item] column [Item No.] - - - Nombre del producto - table [Item] column [Item Name] - - - Grupo contable inventario - table [Item] column [Inventory Posting Group] - - - Unidad medida base - table [Item] column [Base Unit of Measure] - - - N.º y descripción del artículo - table [Item] column [Item No. & Description] - - - Fecha de análisis - table [table.Name] - - - Es versión inicial - table [Analysis Date] column [Is Initial Version] - - - Es la versión actual - table [Analysis Date] column [Is Current Version] - - - Grupo de calc.: inteligencia de tiempo para calendario (fiscal) - table [table.Name] - - - Perspectiva - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - IPM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CPM - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Fraccionamientos de clientes - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Fraccionamientos de proveedores - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RCO - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VCT - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Ventas previstas - table [Subscription Billing KPIs] measure [Forecast Sales] - - - AA CPM - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CPM Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Abandono de ingresos periódicos mensuales - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - AA IPM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nuevos ingresos periódicos mensuales - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Ingresos periódicos mensuales Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NIPM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NIPM de IPM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - AA NIPM - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NIPM Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Cambio general de IPM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - AA VCT - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VCT Δ frente a AA - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Movimientos de análisis de última actualización - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Modelo semántico de última actualización - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Entorno parám - table [Subscription Billing KPIs] measure [Param Environment] - - - Empresa parám - table [Subscription Billing KPIs] measure [Param Company] - - - Actualización de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Cambio de ingresos periódicos mensuales FBU - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Divisa de notificación - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clientes activos - table [Subscription Billing KPIs] measure [Active Customers] - - - Clientes activos AA - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clientes activos Δ frente a AA - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Previsión de facturación de cliente - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Previsión de facturación de proveedor - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Costes previstos - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rebaja de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Intervalo de fechas seleccionado - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % tasa de abandono men. medio - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % tasa rebaja medio men. - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Abandono y rebaja de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Vendedor - table [table.Name] - - - Cód. vendedor - table [Salesperson] column [Salesperson Code] - - - Nombre vendedor - table [Salesperson] column [Salesperson Name] - - - Cambios de contrato de cliente - table [table.Name] - - - Clave de línea de contrato de cliente - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Fecha - table [Customer Contract Changes] column [Date] - - - Tipo de cambio - table [Customer Contract Changes] column [Change Type] - - - MRR delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-MX.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-MX.resx deleted file mode 100644 index a2a6abc092..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.es-MX.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Grupos de dimensiones - table [table.Name] - - - Dimensión global 1 - table [Dimension Sets] column [Global Dimension 1] - - - Dimensión global 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dim. acceso dir. 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dim. acceso dir. 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dim. acceso dir. 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dim. acceso dir. 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dim. acceso dir. 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dim. acceso dir. 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Proveedores - table [table.Name] - - - N.º proveedor - table [Vendors] column [Vendor No.] - - - Nombre de proveedor - table [Vendors] column [Vendor Name] - - - Dirección - table [Vendors] column [Address] - - - Dirección 2 - table [Vendors] column [Address 2] - - - Municipio/Ciudad - table [Vendors] column [City] - - - Código postal - table [Vendors] column [Post Code] - - - Provincia - table [Vendors] column [State] - - - Código de país o región - table [Vendors] column [Country/Region Code] - - - Grupo contable proveedor - table [Vendors] column [Vendor Posting Group] - - - N.º y nombre de proveedor - table [Vendors] column [Vendor No. & Name] - - - Clientes - table [table.Name] - - - N.º de cliente - table [Customers] column [Customer No.] - - - Nombre de cliente - table [Customers] column [Customer Name] - - - Dirección - table [Customers] column [Address] - - - Dirección 2 - table [Customers] column [Address 2] - - - Municipio/Ciudad - table [Customers] column [City] - - - Código postal - table [Customers] column [Post Code] - - - Provincia - table [Customers] column [State] - - - Código de país o región - table [Customers] column [Country/Region Code] - - - Grupo contable cliente - table [Customers] column [Customer Posting Group] - - - Grupo de precio de cliente - table [Customers] column [Customer Price Group] - - - Grupo de descuento de cliente - table [Customers] column [Customer Discount Group] - - - Nombre y n.º de cliente - table [Customers] column [Customer No. & Name] - - - Fecha - table [table.Name] - - - Día de la semana - table [Date] column [Week Day] - - - Tipo de pago - table [Date] column [Day Type] - - - Año natural - table [Date] column [Calendar Year] - - - - Trimestre natural - table [Date] column [Calendar Quarter] - - - Trimestre año natural - table [Date] column [Calendar Quarter Year] - - - Mes natural - table [Date] column [Calendar Month] - - - Mes año natural - table [Date] column [Calendar Month Year] - - - Semana natural - table [Date] column [Calendar Week] - - - Semana año natural - table [Date] column [Calendar Week Year] - - - PosSemanaRelativa natural - table [Date] column [Calendar RelativeWeekPos] - - - PosMesRelativa natural - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativa natural - table [Date] column [Calendar RelativeQuarterPos] - - - PosAñoRelativa natural - table [Date] column [Calendar RelativeYearPos] - - - InicioDeMes natural - table [Date] column [Calendar StartOfMonth] - - - FinDeMes natural - table [Date] column [Calendar EndOfMonth] - - - InicioDeTrimestre natural - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre natural - table [Date] column [Calendar EndOfQuarter] - - - InicioDeAño natural - table [Date] column [Calendar StartOfYear] - - - FinDeAño natural - table [Date] column [Calendar EndOfYear] - - - DíasMes natural - table [Date] column [Calendar MonthDays] - - - TrimestreDías natural - table [Date] column [Calendar QuarterDays] - - - AñoDías natural - table [Date] column [Calendar YearDays] - - - NúmeroDeDíaDeMes natural - table [Date] column [Calendar DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre natural - table [Date] column [Calendar DayOfQuarterNumber] - - - NúmeroDeDíaDeAño natural - table [Date] column [Calendar DayOfYearNumber] - - - FechaSemanaAnterior natural - table [Date] column [Calendar DatePreviousWeek] - - - FechaMesAnterior natural - table [Date] column [Calendar DatePreviousMonth] - - - FechaTrimestreAnterior natural - table [Date] column [Calendar DatePreviousQuarter] - - - FechaAñoAnterior natural - table [Date] column [Calendar DatePreviousYear] - - - Ejercicio - table [Date] column [Fiscal Year] - - - Trimestre fiscal - table [Date] column [Fiscal Quarter] - - - Año trimestre fiscal - table [Date] column [Fiscal Quarter Year] - - - Mes fiscal - table [Date] column [Fiscal Month] - - - Mes año fiscal - table [Date] column [Fiscal Month Year] - - - Semana fiscal - table [Date] column [Fiscal Week] - - - Semana año fiscal - table [Date] column [Fiscal Week Year] - - - PosSemanaRelativa fiscal - table [Date] column [Fiscal RelativeWeekPos] - - - PosMesRelativa fiscal - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativa fiscal - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAñoRelativa fiscal - table [Date] column [Fiscal RelativeYearPos] - - - InicioDeMes fiscal - table [Date] column [Fiscal StartOfMonth] - - - FinDeMes fiscal - table [Date] column [Fiscal EndOfMonth] - - - InicioDeTrimestre fiscal - table [Date] column [Fiscal StartOfQuarter] - - - FinDeTrimestre fiscal - table [Date] column [Fiscal EndOfQuarter] - - - InicioDeAño fiscal - table [Date] column [Fiscal StartOfYear] - - - FinDeAño fiscal - table [Date] column [Fiscal EndOfYear] - - - MesDías fiscal - table [Date] column [Fiscal MonthDays] - - - DíasTrimestre fiscal - table [Date] column [Fiscal QuarterDays] - - - AñoDías fiscal - table [Date] column [Fiscal YearDays] - - - NúmeroDeDíaDeMes fiscal - table [Date] column [Fiscal DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre fiscal - table [Date] column [Fiscal DayOfQuarterNumber] - - - NúmeroDíaAño fiscal - table [Date] column [Fiscal DayOfYearNumber] - - - FechaSemanaAnterior fiscal - table [Date] column [Fiscal DatePreviousWeek] - - - FechaMesAnterior fiscal - table [Date] column [Fiscal DatePreviousMonth] - - - FechaTrimestreAnterior fiscal - table [Date] column [Fiscal DatePreviousQuarter] - - - FechaAñoAnterior fiscal - table [Date] column [Fiscal DatePreviousYear] - - - Año SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre año SF - table [Date] column [FW Quarter Year] - - - Mes SF - table [Date] column [FW Month] - - - Mes año SF - table [Date] column [FW Month Year] - - - Semana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Semana año SF - table [Date] column [FW Week Year] - - - InicioDeSemana SF - table [Date] column [FW StartOfWeek] - - - FinDeSemana SF - table [Date] column [FW EndOfWeek] - - - PosSemanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMesRelativa SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativa SF - table [Date] column [FW RelativeQuarterPos] - - - PosAñoRelativa SF - table [Date] column [FW RelativeYearPos] - - - InicioDeMes SF - table [Date] column [FW StartOfMonth] - - - FinDeMes SF - table [Date] column [FW EndOfMonth] - - - InicioDeTrimestre SF - table [Date] column [FW StartOfQuarter] - - - FinDeTrimestre SF - table [Date] column [FW EndOfQuarter] - - - InicioDeAño SF - table [Date] column [FW StartOfYear] - - - FinDeAño SF - table [Date] column [FW EndOfYear] - - - MesDías FS - table [Date] column [FW MonthDays] - - - DíasTrimestre SF - table [Date] column [FW QuarterDays] - - - DíasAño SF - table [Date] column [FW YearDays] - - - NúmeroDeDíaDeMes SF - table [Date] column [FW DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NúmerDeDíaDeAño SF - table [Date] column [FW DayOfYearNumber] - - - FechaSemanaAnterior SF - table [Date] column [FW DatePreviousWeek] - - - FechaMesAnterior SF - table [Date] column [FW DatePreviousMonth] - - - FechaTrimestreAnterior SF - table [Date] column [FW DatePreviousQuarter] - - - Fecha AñoAnterior SF - table [Date] column [FW DatePreviousYear] - - - Día relativo - table [Date] column [Relative Day] - - - NúmeroDía 365 secuencial - table [Date] column [Sequential365DayNumber] - - - Fraccionamientos intervalo datos - table [Date] column [Data Range Deferrals] - - - N.º días - table [Date] measure [No. of Days] - - - Año-Trimestre-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Año trimestre fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Año-Trimestre-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Año-Trimestre-Mes-Semana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Año-mes fiscal - table [Date] hierarchy [Fiscal Year-Month] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Año-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Año-mes natural - table [Date] hierarchy [Calendar Year-Month] - - - Año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Año-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Año-Mes-Semana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Año-Trimestre-Semana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Semana-Año SF - table [Date] hierarchy [FW Year-Week] - - - Año SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONECTAR LOS DATOS - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Descargar Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurar Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USAR, EDITAR Y CREAR SUS PROPIOS INFORMES - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finanzas incluye una variedad de informes prediseñados para ayudarlo a ver sus datos de inmediato. Puede editar estos informes o crear el suyo propio desde cero. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AYUDA Y SOPORTE - table [Localized Labels] measure [HELP AND SUPPORT] - - - Para obtener ayuda y soporte técnico con su nuevo informe, visite la documentación de información general de Analytics. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - para Business Central - table [Localized Labels] measure [for Business Central] - - - Última actualización - table [Localized Labels] measure [Last Refreshed] - - - Nombre empresa - table [Localized Labels] measure [Company Name] - - - Movimientos de análisis a partir de - table [Localized Labels] measure [Analysis Entries as of] - - - Previsión de facturación por periodo de facturación, cliente y n.º contrato - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Previsión de facturación por mes y año naturales - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Programación de facturación - table [Localized Labels] measure [Billing Schedule] - - - Cambio de ingresos periódicos mensuales por mes y año - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Intervalo de fechas actual: - table [Localized Labels] measure [Current Date Range:] - - - Fraccionamientos de contratos de clientes - table [Localized Labels] measure [Customer Contract Deferrals] - - - Líneas de contrato de cliente - table [Localized Labels] measure [Customer Contract Lines] - - - Fraccionamientos de clientes - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Análisis de ingresos periódicos mensuales - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Ingresos periódicos mensuales e ingresos periódicos mensuales AA por mes natural - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Ingresos periódicos mensuales y crecimiento interanual por mes y año naturales - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Ingresos periódicos mensuales por cliente - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Ingresos periódicos mensuales por vendedor - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Ingresos periódicos mensuales por mes y año naturales - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Ingresos periódicos mensuales por producto - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Ingresos periódicos mensuales por categoría de producto - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Abandono y rebaja de ingresos periódicos mensuales por contrato de cliente - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Ingresos periódicos mensuales nuevos y actualizados por contrato de cliente - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Previsión mensual de ingresos y costos por mes y año natural - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Previsión mensual de ingresos y costos por vendedor, cliente y n.º contrato - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Importe liberado y fraccionado por mes y año naturales - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Análisis de ingresos - table [Localized Labels] measure [Revenue Analysis] - - - Ingresos por cliente - table [Localized Labels] measure [Revenue by Customer] - - - Ingresos por producto - table [Localized Labels] measure [Revenue by Item] - - - Ingresos por vendedor - table [Localized Labels] measure [Revenue by Salesperson] - - - Desarrollo de ingresos - table [Localized Labels] measure [Revenue Development] - - - Previsión de ingresos - table [Localized Labels] measure [Sales and Cost Forecast] - - - Crecimiento interanual de los ingresos - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Análisis de Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Información general de Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Los 5 clientes principales por Ingresos periódicos mensuales - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Los 5 principales proveedores por costo periódico mensual - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Análisis del valor total del contrato - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valor total del contrato y valor total del contrato AA por mes natural - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valor total del contrato y crecimiento interanual por mes y año naturales - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valor total de contrato por mes y año naturales - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Crecimiento interanual del valor total del contrato - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Fraccionamientos de contrato de proveedor - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Fraccionamientos de proveedores - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Botón Atrás - table [Localized Labels] measure [Back button] - - - Ingresos periódicos mensuales, Costo periódico mensual, Beneficio neto mensual, Clientes activos, Valor total del contrato, Cambio en los ingresos periódicos mensuales - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Análisis de abandono - table [Localized Labels] measure [Churn Analysis] - - - % tasa de abandono men. medio por año y mes - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objeto de servicio - table [table.Name] - - - N.º de objeto de servicio - table [Subscription] column [Subscription No.] - - - Código de paquete - table [Subscription] column [Package Code] - - - Des. objeto de servicio - table [Subscription] column [Subscription Desc.] - - - Fecha de análisis - table [Subscription] column [Analysis Date] - - - Desc. de n.º suscripción - table [Subscription] column [Subscription No. Desc.] - - - Fraccionamientos de contrato de proveedor - table [table.Name] - - - Tipo de documento - table [Vendor Contract Deferrals] column [Document Type] - - - N.º de documento - table [Vendor Contract Deferrals] column [Document No.] - - - Fecha reg. - table [Vendor Contract Deferrals] column [Posting Date] - - - Fecha de registro de documento - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Fecha de registro de versión - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N.º mov. contabilidad - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Descuento - table [Vendor Contract Deferrals] column [Discount] - - - N.º lín. documento - table [Vendor Contract Deferrals] column [Document Line No.] - - - Línea de contrato de cliente - table [table.Name] - - - N.º de línea de compromiso - table [Customer Contract Line] column [Subscription Line No.] - - - Plantilla - table [Customer Contract Line] column [Template] - - - Desc. de línea de contrato de cliente - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Fecha de inicio del servicio - table [Customer Contract Line] column [Subscription Start Date] - - - Fecha de finalización del servicio - table [Customer Contract Line] column [Subscription End Date] - - - Próxima fecha de facturación - table [Customer Contract Line] column [Next Billing Date] - - - Periodo base de facturación - table [Customer Contract Line] column [Billing Base Period] - - - N.º de producto de facturación - table [Customer Contract Line] column [Invoicing Item No.] - - - N.º de línea de contrato de cliente - table [Customer Contract Line] column [Customer Contract Line No.] - - - Periodo de preaviso - table [Customer Contract Line] column [Notice Period] - - - Plazo inicial - table [Customer Contract Line] column [Initial Term] - - - Plazo de extensión - table [Customer Contract Line] column [Extension Term] - - - Ritmo de facturación - table [Customer Contract Line] column [Billing Rhythm] - - - Cancelación posible hasta - table [Customer Contract Line] column [Cancellation Possible Until] - - - Plazo hasta - table [Customer Contract Line] column [Term Until] - - - Plazo de renovación - table [Customer Contract Line] column [Renewal Term] - - - Línea activa - table [Customer Contract Line] column [Line Active] - - - Plazo restante - table [Customer Contract Line] column [Remaining Term] - - - Meses ritmo facturación - table [Customer Contract Line] column [Billing Rhythm Months] - - - N.º de contrato del cliente - table [Customer Contract Line] column [Customer Contract No.] - - - Es facturación basada en el uso - table [Customer Contract Line] column [Is Usage Based Billing] - - - Tipo procedencia mov. - table [Customer Contract Line] column [Source Type] - - - Cód. procedencia mov. - table [Customer Contract Line] column [Source No.] - - - Línea de contrato de proveedor - table [table.Name] - - - N.º de línea de compromiso - table [Vendor Contract Line] column [Subscription Line No.] - - - Plantilla - table [Vendor Contract Line] column [Template] - - - Desc. de línea de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Fecha de inicio del servicio - table [Vendor Contract Line] column [Subscription Start Date] - - - Fecha de finalización del servicio - table [Vendor Contract Line] column [Subscription End Date] - - - Próxima fecha de facturación - table [Vendor Contract Line] column [Next Billing Date] - - - N.º de línea de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Periodo de preaviso - table [Vendor Contract Line] column [Notice Period] - - - Plazo inicial - table [Vendor Contract Line] column [Initial Term] - - - Plazo de extensión - table [Vendor Contract Line] column [Extension Term] - - - Ritmo de facturación - table [Vendor Contract Line] column [Billing Rhythm] - - - Cancelación posible hasta - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Plazo hasta - table [Vendor Contract Line] column [Term Until] - - - Plazo de renovación - table [Vendor Contract Line] column [Renewal Term] - - - Línea activa - table [Vendor Contract Line] column [Line Active] - - - Plazo restante - table [Vendor Contract Line] column [Remaining Term] - - - Meses ritmo facturación - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N.º de contrato de proveedor - table [Vendor Contract Line] column [Vendor Contract No.] - - - Es la versión más reciente - table [Vendor Contract Line] column [Is Latest Version] - - - Es facturación basada en el uso - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Tipo procedencia mov. - table [Vendor Contract Line] column [Source Type] - - - Cód. procedencia mov. - table [Vendor Contract Line] column [Source No.] - - - Fraccionamientos de contratos de clientes - table [table.Name] - - - Tipo de documento - table [Customer Contract Deferrals] column [Document Type] - - - N.º de documento - table [Customer Contract Deferrals] column [Document No.] - - - Fecha reg. - table [Customer Contract Deferrals] column [Posting Date] - - - N.º lín. documento - table [Customer Contract Deferrals] column [Document Line No.] - - - Fecha de registro de documento - table [Customer Contract Deferrals] column [Document Posting Date] - - - Fecha de registro de versión - table [Customer Contract Deferrals] column [Release Posting Date] - - - N.º mov. contabilidad - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrato del cliente - table [table.Name] - - - N.º de contrato del cliente - table [Customer Contract] column [Customer Contract No.] - - - Tipo de contrato de cliente - table [Customer Contract] column [Customer Contract Type] - - - Descripción de contrato de cliente - table [Customer Contract] column [Customer Contract Description] - - - Desc. de n.º de contrato de cliente - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrato de proveedor - table [table.Name] - - - N.º de contrato de proveedor - table [Vendor Contract] column [Vendor Contract No.] - - - Tipo de contrato de proveedor - table [Vendor Contract] column [Vendor Contract Type] - - - Descripción de contrato de proveedor - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. de n.º de contrato de proveedor - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Manipulación de UBB - table [table.Name] - - - Tratar UBB como constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Es lanzado - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Producto - table [table.Name] - - - N.º producto - table [Item] column [Item No.] - - - Nombre del producto - table [Item] column [Item Name] - - - Grupo contable inventario - table [Item] column [Inventory Posting Group] - - - Unidad medida base - table [Item] column [Base Unit of Measure] - - - N.º y descripción del artículo - table [Item] column [Item No. & Description] - - - Fecha de análisis - table [table.Name] - - - Es versión inicial - table [Analysis Date] column [Is Initial Version] - - - Es la versión actual - table [Analysis Date] column [Is Current Version] - - - Grupo de calc.: inteligencia de tiempo para calendario (fiscal) - table [table.Name] - - - Perspectiva - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI de Subscription Billing - table [table.Name] - - - IPM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CPM - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Fraccionamientos de clientes - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Fraccionamientos de proveedores - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RCO - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VCT - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Ventas previstas - table [Subscription Billing KPIs] measure [Forecast Sales] - - - AA CPM - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CPM Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Abandono de ingresos periódicos mensuales - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - AA IPM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nuevos ingresos periódicos mensuales - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Ingresos periódicos mensuales Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NIPM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NIPM de IPM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - AA NIPM - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NIPM Δ frente a AA - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Cambio general de IPM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - AA VCT - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VCT Δ frente a AA - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Movimientos de análisis de última actualización - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Modelo semántico de última actualización - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Entorno parám - table [Subscription Billing KPIs] measure [Param Environment] - - - Empresa parám - table [Subscription Billing KPIs] measure [Param Company] - - - Actualización de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Cambio de ingresos periódicos mensuales FBU - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Divisa de notificación - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clientes activos - table [Subscription Billing KPIs] measure [Active Customers] - - - Clientes activos AA - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clientes activos Δ frente a AA - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Previsión de facturación de cliente - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Previsión de facturación de proveedor - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Costos esperados - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rebaja de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Intervalo de fechas seleccionado - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % tasa de abandono men. medio - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % tasa rebaja medio men. - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Abandono y rebaja de ingresos periódicos men. - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Vendedor - table [table.Name] - - - Cód. vendedor - table [Salesperson] column [Salesperson Code] - - - Nombre vendedor - table [Salesperson] column [Salesperson Name] - - - Cambios de contrato de cliente - table [table.Name] - - - Clave de línea de contrato de cliente - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Fecha - table [Customer Contract Changes] column [Date] - - - Tipo de cambio - table [Customer Contract Changes] column [Change Type] - - - MRR delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fi-FI.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fi-FI.resx deleted file mode 100644 index 39775614b8..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fi-FI.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensioyhdistelmät - table [table.Name] - - - Yleinen dimensio 1 - table [Dimension Sets] column [Global Dimension 1] - - - Yleinen dimensio 2 - table [Dimension Sets] column [Global Dimension 2] - - - Pikadimensio 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Pikadimensio 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Pikadimensio 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Pikadimensio 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Pikadimensio 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Pikadimensio 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Toimittajat - table [table.Name] - - - Toimittajanro - table [Vendors] column [Vendor No.] - - - Toimittajan nimi - table [Vendors] column [Vendor Name] - - - Osoite - table [Vendors] column [Address] - - - Osoite 2 - table [Vendors] column [Address 2] - - - Kaupunki - table [Vendors] column [City] - - - Postinro - table [Vendors] column [Post Code] - - - Osavaltio - table [Vendors] column [State] - - - Maa- tai aluekoodi - table [Vendors] column [Country/Region Code] - - - Toimittajan kirjausryhmä - table [Vendors] column [Vendor Posting Group] - - - Toimittajan nro ja nimi - table [Vendors] column [Vendor No. & Name] - - - Asiakkaat - table [table.Name] - - - Asiakasnumero - table [Customers] column [Customer No.] - - - Asiakkaan nimi - table [Customers] column [Customer Name] - - - Osoite - table [Customers] column [Address] - - - Osoite 2 - table [Customers] column [Address 2] - - - Kaupunki - table [Customers] column [City] - - - Postinro - table [Customers] column [Post Code] - - - Osavaltio - table [Customers] column [State] - - - Maa- tai aluekoodi - table [Customers] column [Country/Region Code] - - - Asiakkaan kirjausryhmä - table [Customers] column [Customer Posting Group] - - - Asiakkaan hintaryhmä - table [Customers] column [Customer Price Group] - - - Asiakkaan alennusryhmä - table [Customers] column [Customer Discount Group] - - - Asiakkaan nro ja nimi - table [Customers] column [Customer No. & Name] - - - Pvm - table [table.Name] - - - Viikonpäivä - table [Date] column [Week Day] - - - Päivän tyyppi - table [Date] column [Day Type] - - - Kalenterivuosi - table [Date] column [Calendar Year] - - - - Kalenterin vuosineljännes - table [Date] column [Calendar Quarter] - - - Kalenteri – Neljännesvuosi - table [Date] column [Calendar Quarter Year] - - - Kalenterikuukausi - table [Date] column [Calendar Month] - - - Kalenterikuukausi – Vuosi - table [Date] column [Calendar Month Year] - - - Kalenteriviikko - table [Date] column [Calendar Week] - - - Kalenteriviikko – Vuosi - table [Date] column [Calendar Week Year] - - - Kalenteri – SuhteellisenViikonSijainti - table [Date] column [Calendar RelativeWeekPos] - - - Kalenteri – SuhteellisenKuukaudenSijainti - table [Date] column [Calendar RelativeMonthPos] - - - Kalenteri – SuhteellisenVuosineljänneksenSijainti - table [Date] column [Calendar RelativeQuarterPos] - - - Kalenteri – SuhteellisenVuodenSijainti - table [Date] column [Calendar RelativeYearPos] - - - Kalenteri – KuukausiAlkaa - table [Date] column [Calendar StartOfMonth] - - - Kalenteri – KuukausiPäättyy - table [Date] column [Calendar EndOfMonth] - - - Kalenteri – VuosineljännesAlkaa - table [Date] column [Calendar StartOfQuarter] - - - Kalenteri – VuosineljännesPäättyy - table [Date] column [Calendar EndOfQuarter] - - - Kalenteri – VuosiAlkaa - table [Date] column [Calendar StartOfYear] - - - Kalenteri – VuosiPäättyy - table [Date] column [Calendar EndOfYear] - - - Kalenteri – KuukaudenPäivät - table [Date] column [Calendar MonthDays] - - - Kalenteri – VuosineljänneksenPäivät - table [Date] column [Calendar QuarterDays] - - - Kalenteri – VuodenPäivät - table [Date] column [Calendar YearDays] - - - Kalenteri – KuukaudenPäivänNumero - table [Date] column [Calendar DayOfMonthNumber] - - - Kalenteri – VuosineljänneksenPäivänNumero - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalenteri – VuodenPäivänNumero - table [Date] column [Calendar DayOfYearNumber] - - - Kalenteri – PäivämääräEdellinenViikko - table [Date] column [Calendar DatePreviousWeek] - - - Kalenteri – PäivämääräEdellinenKuukausi - table [Date] column [Calendar DatePreviousMonth] - - - Kalenteri – PäivämääräEdellinenVuosineljännes - table [Date] column [Calendar DatePreviousQuarter] - - - Kalenteri – PäivämääräEdellinenVuosi - table [Date] column [Calendar DatePreviousYear] - - - Tilikausi - table [Date] column [Fiscal Year] - - - Kirjanpidon vuosineljännes - table [Date] column [Fiscal Quarter] - - - Kirjanpito – Neljännesvuosi - table [Date] column [Fiscal Quarter Year] - - - Kirjanpitokuukausi - table [Date] column [Fiscal Month] - - - Kirjanpidon kuukausi, vuosi - table [Date] column [Fiscal Month Year] - - - Kirjanpitoviikko - table [Date] column [Fiscal Week] - - - Kirjanpitoviikko, vuosi - table [Date] column [Fiscal Week Year] - - - Kirjanpito – SuhteellisenViikonSijainti - table [Date] column [Fiscal RelativeWeekPos] - - - Kirjanpito – SuhteellisenKuukaudenSijainti - table [Date] column [Fiscal RelativeMonthPos] - - - Kirjanpito – SuhteellisenVuosineljänneksenSijainti - table [Date] column [Fiscal RelativeQuarterPos] - - - Kirjanpito – SuhteellisenVuodenSijainti - table [Date] column [Fiscal RelativeYearPos] - - - Kirjanpito – KuukausiAlkaa - table [Date] column [Fiscal StartOfMonth] - - - Kirjanpito – KuukausiPäättyy - table [Date] column [Fiscal EndOfMonth] - - - Kirjanpito – VuosineljännesAlkaa - table [Date] column [Fiscal StartOfQuarter] - - - Kirjanpito – VuosineljännesPäättyy - table [Date] column [Fiscal EndOfQuarter] - - - Kirjanpito – VuosiAlkaa - table [Date] column [Fiscal StartOfYear] - - - Kirjanpito – VuosiPäättyy - table [Date] column [Fiscal EndOfYear] - - - Kirjanpito – KuukaudenPäivät - table [Date] column [Fiscal MonthDays] - - - Kirjanpito – VuosineljänneksenPäivät - table [Date] column [Fiscal QuarterDays] - - - Kirjanpito – VuodenPäivät - table [Date] column [Fiscal YearDays] - - - Kirjanpito – KuukaudenPäivänNumero - table [Date] column [Fiscal DayOfMonthNumber] - - - Kirjanpito – VuosineljänneksenPäivänNumero - table [Date] column [Fiscal DayOfQuarterNumber] - - - Kirjanpito – VuodenPäivänNumero - table [Date] column [Fiscal DayOfYearNumber] - - - Kirjanpito – PäivämääräEdellinenViikko - table [Date] column [Fiscal DatePreviousWeek] - - - Kirjanpito – PäivämääräEdellinenKuukausi - table [Date] column [Fiscal DatePreviousMonth] - - - Kirjanpito – PäivämääräEdellinenVuosineljännes - table [Date] column [Fiscal DatePreviousQuarter] - - - Kirjanpito – PäivämääräEdellinenVuosi - table [Date] column [Fiscal DatePreviousYear] - - - KV – Vuosi - table [Date] column [FW Year] - - - KV – Vuosineljännes - table [Date] column [FW Quarter] - - - KV – Neljännesvuosi - table [Date] column [FW Quarter Year] - - - KV – Kuukausi - table [Date] column [FW Month] - - - KV – Kuukausi, vuosi - table [Date] column [FW Month Year] - - - KV – Viikko - table [Date] column [FW Week] - - - KV – Kausi - table [Date] column [FW Period] - - - KV – Viikko, vuosi - table [Date] column [FW Week Year] - - - KV – ViikkoAlkaa - table [Date] column [FW StartOfWeek] - - - KV – ViikkoPäättyy - table [Date] column [FW EndOfWeek] - - - KV – SuhteellisenViikonSijainti - table [Date] column [FW RelativeWeekPos] - - - KV – SuhteellisenKuukaudenSijainti - table [Date] column [FW RelativeMonthPos] - - - KV – SuhteellisenVuosineljänneksenSijainti - table [Date] column [FW RelativeQuarterPos] - - - KV – SuhteellisenVuodenSijainti - table [Date] column [FW RelativeYearPos] - - - KV – KuukausiAlkaa - table [Date] column [FW StartOfMonth] - - - KV – KuukausiPäättyy - table [Date] column [FW EndOfMonth] - - - KV – VuosineljännesAlkaa - table [Date] column [FW StartOfQuarter] - - - KV – VuosineljännesPäättyy - table [Date] column [FW EndOfQuarter] - - - KV – VuosiAlkaa - table [Date] column [FW StartOfYear] - - - KV – VuosiPäättyy - table [Date] column [FW EndOfYear] - - - KV – KuukaudenPäivät - table [Date] column [FW MonthDays] - - - KV – VuosineljänneksenPäivät - table [Date] column [FW QuarterDays] - - - KV – VuodenPäivät - table [Date] column [FW YearDays] - - - KV – KuukaudenPäivänNumero - table [Date] column [FW DayOfMonthNumber] - - - KV – VuosineljänneksenPäivänNumero - table [Date] column [FW DayOfQuarterNumber] - - - KV – VuodenPäivänNumero - table [Date] column [FW DayOfYearNumber] - - - KV – PäivämääräEdellinenViikko - table [Date] column [FW DatePreviousWeek] - - - KV – PäivämääräEdellinenKuukausi - table [Date] column [FW DatePreviousMonth] - - - KV – PäivämääräEdellinenVuosineljännes - table [Date] column [FW DatePreviousQuarter] - - - KV – PäivämääräEdellinenVuosi - table [Date] column [FW DatePreviousYear] - - - Suhteellinen päivämäärä - table [Date] column [Relative Day] - - - Järjestys 365 PäiväNumero - table [Date] column [Sequential365DayNumber] - - - Tietovälisiirrot - table [Date] column [Data Range Deferrals] - - - Päivien määrä - table [Date] measure [No. of Days] - - - Kirjanpito – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Kirjanpito – Neljännesvuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Kirjanpitoviikko, vuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalenteri – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalenteri – Neljännesvuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalenteriviikko – Vuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - KV – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - KV – Neljännesvuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - KV – Kuukausi, vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Kirjanpito – Vuosi-Kuukausi - table [Date] hierarchy [Fiscal Year-Month] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Kirjanpito – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Kirjanpitoviikko, vuosi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalenteri – Vuosi-Kuukausi - table [Date] hierarchy [Calendar Year-Month] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalenteri – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalenteriviikko – Vuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - KV – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [FW Year-Month-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - KV – Kuukausi, vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - KV – Vuosi-Vuosineljännes-Viikko - table [Date] hierarchy [FW Year-Quarter-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - KV – Neljännesvuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - KV – Vuosi-Viikko - table [Date] hierarchy [FW Year-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - YHDISTÄ TIETOSI - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Lataa Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Määritä Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - KÄYTÄ, MUOKKAA JA LUO OMIA RAPORTTEJA - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Taloushallinto sisältää erilaisia esimääritettyjä raportteja, joiden avulla voit tarkastella tietoja välittömästi. Voit muokata näitä raportteja tai luoda oman raportin alusta alkaen. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - OHJE JA TUKI - table [Localized Labels] measure [HELP AND SUPPORT] - - - Lisätietoja ja tukea uudelle raportillesi löydät analytiikan yleiskatsauksen dokumentaatiosta. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - Business Centralille - table [Localized Labels] measure [for Business Central] - - - Päivitetty viimeksi - table [Localized Labels] measure [Last Refreshed] - - - Yrityksen nimi - table [Localized Labels] measure [Company Name] - - - Analyysitapahtumat alkaen - table [Localized Labels] measure [Analysis Entries as of] - - - Laskutusennuste laskutuskauden, asiakkaan ja sopimuksen numeron mukaan - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Laskutusennuste kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Laskutusaikataulu - table [Localized Labels] measure [Billing Schedule] - - - Kk:ttain toistuvan tuoton muutos vuosittain ja kuukausittain - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Nykyinen päivämääräalue: - table [Localized Labels] measure [Current Date Range:] - - - Asiakassopimuksen siirrot - table [Localized Labels] measure [Customer Contract Deferrals] - - - Asiakassopimusrivit - table [Localized Labels] measure [Customer Contract Lines] - - - Asiakassiirrot - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Kk:ttain toistuvan tuoton analyysi - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Kk:ttain toistuva tuotto ja Kk:ttain toistuva tuotto EDV kalenterikuukausittain - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Kk:ttain toistuva tuotto ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Kk:ttain toistuva tuotto asiakkaittain - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Kk:ttain toistuva tuotto myyjittäin - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Kk:ttain toistuva tuotto kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Kk:ttain toistuva tuotto nimikkeittäin - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Kk:ttain toistuva tuotto nimikeluokittain - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Kk:ttain toistuvan tuoton Vaihtuvuus ja Palautus asiakassopimuksittain - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Kk:ttain toistuvan tuoton Uusi ja Päivitä asiakassopimuksittain - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Kuukausittainen tuotto- ja kustannusennuste kalenterivuovuosittain ja -kuukausittain - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Kuukausittainen tuotto- ja kustannusennuste myyjän, asiakkaan ja sopimuksen numeron mukaan - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Vapautettu ja siirretty summa kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Tuottoanalyysi - table [Localized Labels] measure [Revenue Analysis] - - - Asiakaskohtainen tuotto - table [Localized Labels] measure [Revenue by Customer] - - - Nimikekohtainen tuotto - table [Localized Labels] measure [Revenue by Item] - - - Myyjäkohtainen tuotto - table [Localized Labels] measure [Revenue by Salesperson] - - - Tuottokehitys - table [Localized Labels] measure [Revenue Development] - - - Tuottoennuste - table [Localized Labels] measure [Sales and Cost Forecast] - - - Tuoton vuosittainen kasvu - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing – Analyysi - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing – Yleiskatsaus - table [Localized Labels] measure [Subscription Billing Overview] - - - Viisi suurinta asiakasta kk:ttain toistuvan tuoton mukaan - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 suurinta toimittajaa kk:ttain toistuvien kustannusten mukaan - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Sopimuksen kokonaisarvon analyysi - table [Localized Labels] measure [Total Contract Value Analysis] - - - Sopimuksen kokonaisarvo ja Sopimuksen kokonaisarvo EDV kalenterikuukausittain - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Sopimuksen kokonaisarvo ja vuosittainen kasvu kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Sopimuksen kokonaisarvo kalenterivuosittain ja -kuukausittain - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Sopimuksen kokonaisarvo – Vuosittainen kasvu - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Toimittajasopimuksen siirrot - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Toimittajasiirrot - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Takaisin-painike - table [Localized Labels] measure [Back button] - - - Kuukausittain toistuva tuotto, Kuukausittainen toistuva kustannus, Kuukausittainen nettotulos, Aktiiviset asiakkaat, Sopimuksen kokonaisarvo, Kuukausittain toistuvan tuoton muutos - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Vaihtuvuusanalyysi - table [Localized Labels] measure [Churn Analysis] - - - Keskim. kk:ttainen vaihtuvuusprosentti % vuosittain ja kuukausittain - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Huoltokohde - table [table.Name] - - - Huoltokohteen nro - table [Subscription] column [Subscription No.] - - - Pakettikoodi - table [Subscription] column [Package Code] - - - Huoltokohteen kuvaus - table [Subscription] column [Subscription Desc.] - - - Analyysin päivämäärä - table [Subscription] column [Analysis Date] - - - Tilausnron kuvaus - table [Subscription] column [Subscription No. Desc.] - - - Toimittajasopimuksen siirrot - table [table.Name] - - - Asiakirjatyyppi - table [Vendor Contract Deferrals] column [Document Type] - - - Asiakirjanumero - table [Vendor Contract Deferrals] column [Document No.] - - - Kirjauspäivämäärä - table [Vendor Contract Deferrals] column [Posting Date] - - - Asiakirjan kirjauspäivämäärä - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Vapautuksen kirjauspäivämäärä - table [Vendor Contract Deferrals] column [Release Posting Date] - - - KP-tapahtuman nro - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Alennus - table [Vendor Contract Deferrals] column [Discount] - - - Asiakirjan rivinro - table [Vendor Contract Deferrals] column [Document Line No.] - - - Asiakassopimusrivi - table [table.Name] - - - Sitoumusrivin nro - table [Customer Contract Line] column [Subscription Line No.] - - - Malli - table [Customer Contract Line] column [Template] - - - Asiakassopimusrivin kuvaus - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Huollon alkamispäivä - table [Customer Contract Line] column [Subscription Start Date] - - - Huollon päättymispäivä - table [Customer Contract Line] column [Subscription End Date] - - - Seuraava laskutuspäivämäärä - table [Customer Contract Line] column [Next Billing Date] - - - Laskutuksen peruskausi - table [Customer Contract Line] column [Billing Base Period] - - - Laskutusnimikkeen nro - table [Customer Contract Line] column [Invoicing Item No.] - - - Asiakassopimusrivin nro - table [Customer Contract Line] column [Customer Contract Line No.] - - - Irtisanomisaika - table [Customer Contract Line] column [Notice Period] - - - Alkuperäinen kausi - table [Customer Contract Line] column [Initial Term] - - - Jatkokausi - table [Customer Contract Line] column [Extension Term] - - - Laskutusrytmi - table [Customer Contract Line] column [Billing Rhythm] - - - Peruutus mahdollista tähän asti - table [Customer Contract Line] column [Cancellation Possible Until] - - - Kauden kesto - table [Customer Contract Line] column [Term Until] - - - Uusimiskausi - table [Customer Contract Line] column [Renewal Term] - - - Rivi aktiivinen - table [Customer Contract Line] column [Line Active] - - - Jäljellä oleva kausi - table [Customer Contract Line] column [Remaining Term] - - - Laskutusrytmin kuukaudet - table [Customer Contract Line] column [Billing Rhythm Months] - - - Asiakassopimuksen nro - table [Customer Contract Line] column [Customer Contract No.] - - - On käyttöperusteinen laskutus - table [Customer Contract Line] column [Is Usage Based Billing] - - - Lähdetyyppi - table [Customer Contract Line] column [Source Type] - - - Lähdenro - table [Customer Contract Line] column [Source No.] - - - Toimittajasopimusrivi - table [table.Name] - - - Sitoumusrivin nro - table [Vendor Contract Line] column [Subscription Line No.] - - - Malli - table [Vendor Contract Line] column [Template] - - - Toimittajasopimusrivin kuvaus - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Huollon alkamispäivä - table [Vendor Contract Line] column [Subscription Start Date] - - - Huollon päättymispäivä - table [Vendor Contract Line] column [Subscription End Date] - - - Seuraava laskutuspäivämäärä - table [Vendor Contract Line] column [Next Billing Date] - - - Toimittajasopimusrivin nro - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Irtisanomisaika - table [Vendor Contract Line] column [Notice Period] - - - Alkuperäinen kausi - table [Vendor Contract Line] column [Initial Term] - - - Jatkokausi - table [Vendor Contract Line] column [Extension Term] - - - Laskutusrytmi - table [Vendor Contract Line] column [Billing Rhythm] - - - Peruutus mahdollista tähän asti - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Kauden kesto - table [Vendor Contract Line] column [Term Until] - - - Uusimiskausi - table [Vendor Contract Line] column [Renewal Term] - - - Rivi aktiivinen - table [Vendor Contract Line] column [Line Active] - - - Jäljellä oleva kausi - table [Vendor Contract Line] column [Remaining Term] - - - Laskutusrytmin kuukaudet - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Toimittajasopimuksen nro - table [Vendor Contract Line] column [Vendor Contract No.] - - - On viimeisin versio - table [Vendor Contract Line] column [Is Latest Version] - - - On käyttöperusteinen laskutus - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Lähdetyyppi - table [Vendor Contract Line] column [Source Type] - - - Lähdenro - table [Vendor Contract Line] column [Source No.] - - - Asiakassopimuksen siirrot - table [table.Name] - - - Asiakirjatyyppi - table [Customer Contract Deferrals] column [Document Type] - - - Asiakirjanumero - table [Customer Contract Deferrals] column [Document No.] - - - Kirjauspäivämäärä - table [Customer Contract Deferrals] column [Posting Date] - - - Asiakirjan rivinro - table [Customer Contract Deferrals] column [Document Line No.] - - - Asiakirjan kirjauspäivämäärä - table [Customer Contract Deferrals] column [Document Posting Date] - - - Vapautuksen kirjauspäivämäärä - table [Customer Contract Deferrals] column [Release Posting Date] - - - KP-tapahtuman nro - table [Customer Contract Deferrals] column [G LEntry No.] - - - Asiakassopimus - table [table.Name] - - - Asiakassopimuksen nro - table [Customer Contract] column [Customer Contract No.] - - - Asiakassopimuksen tyyppi - table [Customer Contract] column [Customer Contract Type] - - - Asiakassopimuksen kuvaus - table [Customer Contract] column [Customer Contract Description] - - - Asiakassopimuksen nron kuvaus - table [Customer Contract] column [Customer Contract No. Desc.] - - - Toimittajasopimus - table [table.Name] - - - Toimittajasopimuksen nro - table [Vendor Contract] column [Vendor Contract No.] - - - Toimittajasopimuksen tyyppi - table [Vendor Contract] column [Vendor Contract Type] - - - Toimittajasopimuksen kuvaus - table [Vendor Contract] column [Vendor Contract Description] - - - Toimittajasopimuksen nron kuvaus - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - KPL:n käsittely - table [table.Name] - - - Käsittele KPL:ää vakiona - table [UBB handling] column [Treat Usage Based Billing as constant] - - - On vapautettu - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Nimike - table [table.Name] - - - Nimikenumero - table [Item] column [Item No.] - - - Nimikkeen nimi - table [Item] column [Item Name] - - - Varaston kirjausryhmä - table [Item] column [Inventory Posting Group] - - - Perusmittayksikkö - table [Item] column [Base Unit of Measure] - - - Nimikkeen nro ja kuvaus - table [Item] column [Item No. & Description] - - - Analyysin päivämäärä - table [table.Name] - - - On alkuperäinen versio - table [Analysis Date] column [Is Initial Version] - - - On nykyinen versio - table [Analysis Date] column [Is Current Version] - - - Laskettu ryhmä – Kalenterin aikatiedot (kirjanpito) - table [table.Name] - - - Perspektiivi - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing – Tunnusluvut - table [table.Name] - - - KKTT - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - KKTK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Asiakassiirrot - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Toimittajasiirrot - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - VTT - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - SKA - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Ennustemyynti - table [Subscription Billing KPIs] measure [Forecast Sales] - - - KKTK EDV - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - KKTK Δ vrt. EDV - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Kk:ttain toistuva tuotto – Vaihtuvuus - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - KKTT EDV - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Kk:ttain toistuva tuotto – Uusi - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Kk:ttain toistuvan tuoton Δ vrt. EDV - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - KKNVS - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - KKTT:N KKNVS-% - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - KKNVS EDV - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - KKNV Δ vrt. EDV - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - KKTT:n yleinen muutos - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - SKA EDV - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - SKA Δ vrt. EDV - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Viimeisen päivityksen analyysitapahtumat - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Viimeisen päivityksen semanttinen malli - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param – Ympäristö - table [Subscription Billing KPIs] measure [Param Environment] - - - Param – Yritys - table [Subscription Billing KPIs] measure [Param Company] - - - Kk:ttain toistuva tuotto – Päivitys - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Kk:ttain toistuvan tuoton muutos – KPL - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Raportointivaluutta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktiiviset asiakkaat - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktiiviset asiakkaat – EDV - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktiivisten asiakkaiden Δ vrt. EDV - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Asiakkaan laskutusennuste - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Toimittajan laskutusennuste - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Ennustekustannukset - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Kk:ttain toistuva tuotto – Palautus - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Valittu päivämääräalue - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Keskim. kk:ttainen vaihtuvuusprosentti % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Kk:ttainen palautusprosentti % keskimäärin - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Kk:ttain toistuva tuotto – Palautus ja Vaihtuvuus - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Myyjä - table [table.Name] - - - Myyjän koodi - table [Salesperson] column [Salesperson Code] - - - Myyjän nimi - table [Salesperson] column [Salesperson Name] - - - Asiakassopimuksen muutokset - table [table.Name] - - - Asiakassopimusrivin avain - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Pvm - table [Customer Contract Changes] column [Date] - - - Muuta tyyppiä - table [Customer Contract Changes] column [Change Type] - - - KKTT Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-BE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-BE.resx deleted file mode 100644 index 14a94325ea..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-BE.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fournisseurs - table [table.Name] - - - N° fournisseur - table [Vendors] column [Vendor No.] - - - Nom du fournisseur - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ville - table [Vendors] column [City] - - - CP - table [Vendors] column [Post Code] - - - État - table [Vendors] column [State] - - - Code de pays/région - table [Vendors] column [Country/Region Code] - - - Groupe comptabilisation fournisseur - table [Vendors] column [Vendor Posting Group] - - - N° et nom du fournisseur - table [Vendors] column [Vendor No. & Name] - - - Clients - table [table.Name] - - - N° client - table [Customers] column [Customer No.] - - - Nom du client - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ville - table [Customers] column [City] - - - CP - table [Customers] column [Post Code] - - - État - table [Customers] column [State] - - - Code de pays/région - table [Customers] column [Country/Region Code] - - - Groupe comptabilisation client - table [Customers] column [Customer Posting Group] - - - Groupe prix client - table [Customers] column [Customer Price Group] - - - Groupe remises client - table [Customers] column [Customer Discount Group] - - - N° et nom du client - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - NuméroJour séquentiel 365 - table [Date] column [Sequential365DayNumber] - - - Reports de plage de données - table [Date] column [Data Range Deferrals] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECTER VOS DONNÉES - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Téléchargez Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurez Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AIDE ET SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - pour Business Central - table [Localized Labels] measure [for Business Central] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Écritures analyse au - table [Localized Labels] measure [Analysis Entries as of] - - - Prévision de facturation par période de facturation, client et n° contrat - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Prévision de facturation par année civile et par mois - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Échéancier de facturation - table [Localized Labels] measure [Billing Schedule] - - - Modification revenu récurrent mensuel par année et par mois - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Plage de dates actuelle : - table [Localized Labels] measure [Current Date Range:] - - - Reports contrat client - table [Localized Labels] measure [Customer Contract Deferrals] - - - Lignes contrat client - table [Localized Labels] measure [Customer Contract Lines] - - - Reports client - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analyse du revenu récurrent mensuel - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Revenu récurrent mensuel par client - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Revenu récurrent mensuel par vendeur - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Revenu récurrent mensuel par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Catégorie revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Attrition et rétrogradation revenu récurrent mensuel par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Revenu récurrent mensuel nouveau et mis à niveau par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Revenus mensuels et coûts prévus par année civile et par mois - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Revenus mensuels et coûts prévus par vendeur, client et n° contrat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Montant lancé et échelonné par année civile et par mois - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analyse du revenu - table [Localized Labels] measure [Revenue Analysis] - - - Revenu par client - table [Localized Labels] measure [Revenue by Customer] - - - Revenu par article - table [Localized Labels] measure [Revenue by Item] - - - Revenu par vendeur - table [Localized Labels] measure [Revenue by Salesperson] - - - Développement du revenu - table [Localized Labels] measure [Revenue Development] - - - Prévision de revenu - table [Localized Labels] measure [Sales and Cost Forecast] - - - Croissance du revenu d’une année sur l’autre - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Vue d’ensemble de Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 premiers clients par revenu récurrent mensuel - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 premiers fournisseurs par coût mensuel récurrent - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse de la valeur totale du contrat - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valeur totale du contrat et valeur totale du contrat AP par mois civil - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valeur totale du contrat par année civile et par mois - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Croissance de la valeur totale des contrats d’une année à l’autre - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Reports de contrat fournisseur - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Reports fournisseur - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Bouton Retour - table [Localized Labels] measure [Back button] - - - Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analyse de l’attrition - table [Localized Labels] measure [Churn Analysis] - - - % taux d’attrition mensuel moyen par année et par mois - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objet de service - table [table.Name] - - - N° objet de service - table [Subscription] column [Subscription No.] - - - Code package - table [Subscription] column [Package Code] - - - Desc. objet de service - table [Subscription] column [Subscription Desc.] - - - Date d’analyse - table [Subscription] column [Analysis Date] - - - Desc. n° souscription - table [Subscription] column [Subscription No. Desc.] - - - Reports de contrat fournisseur - table [table.Name] - - - Type du document - table [Vendor Contract Deferrals] column [Document Type] - - - N° de document - table [Vendor Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Vendor Contract Deferrals] column [Posting Date] - - - Date comptabilisation document - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Remise - table [Vendor Contract Deferrals] column [Discount] - - - N° ligne document - table [Vendor Contract Deferrals] column [Document Line No.] - - - Ligne contrat client - table [table.Name] - - - N° ligne d’engagement - table [Customer Contract Line] column [Subscription Line No.] - - - Modèle - table [Customer Contract Line] column [Template] - - - Desc. ligne contrat client - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Date de début du service - table [Customer Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Customer Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Customer Contract Line] column [Next Billing Date] - - - Période de base de facturation - table [Customer Contract Line] column [Billing Base Period] - - - N° article de facturation - table [Customer Contract Line] column [Invoicing Item No.] - - - N° ligne contrat client - table [Customer Contract Line] column [Customer Contract Line No.] - - - Période de préavis - table [Customer Contract Line] column [Notice Period] - - - Durée initiale - table [Customer Contract Line] column [Initial Term] - - - Durée d’extension - table [Customer Contract Line] column [Extension Term] - - - Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Customer Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Customer Contract Line] column [Term Until] - - - Période de renouvellement - table [Customer Contract Line] column [Renewal Term] - - - Ligne active - table [Customer Contract Line] column [Line Active] - - - Durée restante - table [Customer Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm Months] - - - N° contrat client - table [Customer Contract Line] column [Customer Contract No.] - - - Est Facturation basée sur l’activité - table [Customer Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Customer Contract Line] column [Source Type] - - - N° origine - table [Customer Contract Line] column [Source No.] - - - Ligne contrat fournisseur - table [table.Name] - - - N° ligne d’engagement - table [Vendor Contract Line] column [Subscription Line No.] - - - Modèle - table [Vendor Contract Line] column [Template] - - - Desc. ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Date de début du service - table [Vendor Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Vendor Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Vendor Contract Line] column [Next Billing Date] - - - N° ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Période de préavis - table [Vendor Contract Line] column [Notice Period] - - - Durée initiale - table [Vendor Contract Line] column [Initial Term] - - - Durée d’extension - table [Vendor Contract Line] column [Extension Term] - - - Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Vendor Contract Line] column [Term Until] - - - Période de renouvellement - table [Vendor Contract Line] column [Renewal Term] - - - Ligne active - table [Vendor Contract Line] column [Line Active] - - - Durée restante - table [Vendor Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N° contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract No.] - - - Version la plus récente - table [Vendor Contract Line] column [Is Latest Version] - - - Est Facturation basée sur l’activité - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Vendor Contract Line] column [Source Type] - - - N° origine - table [Vendor Contract Line] column [Source No.] - - - Reports contrat client - table [table.Name] - - - Type du document - table [Customer Contract Deferrals] column [Document Type] - - - N° de document - table [Customer Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Customer Contract Deferrals] column [Posting Date] - - - N° ligne document - table [Customer Contract Deferrals] column [Document Line No.] - - - Date comptabilisation document - table [Customer Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Customer Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrat client - table [table.Name] - - - N° contrat client - table [Customer Contract] column [Customer Contract No.] - - - Type contrat client - table [Customer Contract] column [Customer Contract Type] - - - Désignation contrat client - table [Customer Contract] column [Customer Contract Description] - - - Desc. n° contrat client - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrat fournisseur - table [table.Name] - - - N° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No.] - - - Type contrat fournisseur - table [Vendor Contract] column [Vendor Contract Type] - - - Désignation contrat fournisseur - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. n° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Traitement FBA - table [table.Name] - - - Traiter FBA comme une constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Est Lancé - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Article - table [table.Name] - - - N° d’article - table [Item] column [Item No.] - - - Nom article - table [Item] column [Item Name] - - - Groupe de report des stocks - table [Item] column [Inventory Posting Group] - - - Unité de base - table [Item] column [Base Unit of Measure] - - - N° et désignation d’article - table [Item] column [Item No. & Description] - - - Date d’analyse - table [table.Name] - - - Version initiale - table [Analysis Date] column [Is Initial Version] - - - Version actuelle - table [Analysis Date] column [Is Current Version] - - - Groupe calc. : intelligence temporelle du calendrier (fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - RRM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CMR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Reports client - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Reports fournisseur - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RPA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VTC - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prévoir ventes - table [Subscription Billing KPIs] measure [Forecast Sales] - - - CMR AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CMR Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - RRM AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nouveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Revenu récurrent mensuel Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NRRM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NRRM du RRM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NRRM AP - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NRRM Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Changement global RRM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - VTC AP - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VTC Δ par rapport à AP - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Dernière mise à jour écritures analyse - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Dernière mise à jour du modèle sémantique - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Environnement param. - table [Subscription Billing KPIs] measure [Param Environment] - - - Société param. - table [Subscription Billing KPIs] measure [Param Company] - - - Mise à niveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - FBA modification du revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Devise de reporting - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clients actifs - table [Subscription Billing KPIs] measure [Active Customers] - - - Clients actifs AP - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clients actifs Δ par rapport à AP - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prévision de facturation client - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prévision de facturation fournisseur - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prévoir les coûts - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rétrogradation revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Plage de dates sélectionnée - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % taux d’attrition mensuel moyen - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % taux de rétrogradation mensuel moyen - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Rétrogradation et attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Vendeur - table [table.Name] - - - Code vendeur - table [Salesperson] column [Salesperson Code] - - - Nom vendeur - table [Salesperson] column [Salesperson Name] - - - Modifications contrat client - table [table.Name] - - - Clé ligne contrat client - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Modifier le type - table [Customer Contract Changes] column [Change Type] - - - Delta RRM - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CA.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CA.resx deleted file mode 100644 index 1e40f66c47..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CA.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ensembles de dimensions - table [table.Name] - - - Dimension principale 1 - table [Dimension Sets] column [Global Dimension 1] - - - Dimension principale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dimension de raccourci 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dimension de raccourci 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dimension de raccourci 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dimension de raccourci 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dimension de raccourci 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dimension de raccourci 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fournisseurs - table [table.Name] - - - N° fournisseur - table [Vendors] column [Vendor No.] - - - Nom du fournisseur - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ville - table [Vendors] column [City] - - - Code postal - table [Vendors] column [Post Code] - - - État - table [Vendors] column [State] - - - Code de pays/région - table [Vendors] column [Country/Region Code] - - - Groupe de comptabilisation du fournisseur - table [Vendors] column [Vendor Posting Group] - - - N° et nom du fournisseur - table [Vendors] column [Vendor No. & Name] - - - Clients - table [table.Name] - - - N° client - table [Customers] column [Customer No.] - - - Nom du client - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ville - table [Customers] column [City] - - - Code postal - table [Customers] column [Post Code] - - - État - table [Customers] column [State] - - - Code de pays/région - table [Customers] column [Country/Region Code] - - - Groupe de comptabilisation du client - table [Customers] column [Customer Posting Group] - - - Groupe prix client - table [Customers] column [Customer Price Group] - - - Groupe de remises client - table [Customers] column [Customer Discount Group] - - - N° et nom du client - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - NuméroJour séquentiel 365 - table [Date] column [Sequential365DayNumber] - - - Reports de plage de données - table [Date] column [Data Range Deferrals] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Exercice-trimestre-mois-semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-mois-semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECTER VOS DONNÉES - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Téléchargez Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurez Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - Utilisez, modifiez et créez vos propres rapports - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - La fonction Finance comprend divers rapports prédéfinis qui vous permettent de visualiser immédiatement vos données. Vous pouvez modifier ces rapports ou créer vos propres rapports à partir de zéro. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AIDE ET SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Pour obtenir de l’aide et de l’assistance concernant votre nouveau rapport, veuillez consulter la documentation relative à la présentation générale des analyses. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - pour Business Central - table [Localized Labels] measure [for Business Central] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Nom de la compagnie - table [Localized Labels] measure [Company Name] - - - Écritures analyse au - table [Localized Labels] measure [Analysis Entries as of] - - - Prévision de facturation par période de facturation, client et n° contrat - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Prévision de facturation par année civile et par mois - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Calendrier de facturation - table [Localized Labels] measure [Billing Schedule] - - - Modification revenu récurrent mensuel par année et par mois - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Plage de dates actuelle : - table [Localized Labels] measure [Current Date Range:] - - - Reports contrat client - table [Localized Labels] measure [Customer Contract Deferrals] - - - Lignes contrat client - table [Localized Labels] measure [Customer Contract Lines] - - - Reports client - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analyse du revenu récurrent mensuel - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Revenu récurrent mensuel par client - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mois Revenus récurrents par représentant - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Revenu récurrent mensuel par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Catégorie revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Attrition et rétrogradation revenu récurrent mensuel par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Revenu récurrent mensuel nouveau et mis à niveau par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Revenus mensuels et coûts prévus par année civile et par mois - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Prévisions mensuelles de revenus et de coûts par représentant, client et numéro de contrat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Montant libéré et différé par année civile et par mois - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analyse du revenu - table [Localized Labels] measure [Revenue Analysis] - - - Revenu par client - table [Localized Labels] measure [Revenue by Customer] - - - Revenu par article - table [Localized Labels] measure [Revenue by Item] - - - Revenus par représentant - table [Localized Labels] measure [Revenue by Salesperson] - - - Développement du revenu - table [Localized Labels] measure [Revenue Development] - - - Prévision de revenu - table [Localized Labels] measure [Sales and Cost Forecast] - - - Croissance du revenu d’une année sur l’autre - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Vue d’ensemble de Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 premiers clients par revenu récurrent mensuel - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 premiers fournisseurs par coût mensuel récurrent - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse de la valeur totale du contrat - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valeur totale du contrat et valeur totale du contrat AP par mois civil - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valeur totale du contrat par année civile et par mois - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Croissance de la valeur totale des contrats d’une année à l’autre - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Reports de contrat fournisseur - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Reports fournisseur - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Bouton Retour - table [Localized Labels] measure [Back button] - - - Revenus mensuels récurrents, coûts mensuels récurrents, bénéfice net mensuel, clients actifs, valeur totale du contrat, variation des revenus mensuels récurrent - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analyse de l’attrition - table [Localized Labels] measure [Churn Analysis] - - - % taux d’attrition mensuel moyen par année et par mois - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objet de service - table [table.Name] - - - N° objet de service - table [Subscription] column [Subscription No.] - - - Code package - table [Subscription] column [Package Code] - - - Desc. objet de service - table [Subscription] column [Subscription Desc.] - - - Date d’analyse - table [Subscription] column [Analysis Date] - - - Desc. n° de souscription - table [Subscription] column [Subscription No. Desc.] - - - Reports de contrat fournisseur - table [table.Name] - - - Type du document - table [Vendor Contract Deferrals] column [Document Type] - - - N° de document - table [Vendor Contract Deferrals] column [Document No.] - - - Date de report - table [Vendor Contract Deferrals] column [Posting Date] - - - Date de report du document - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Date de report de libération - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Remise - table [Vendor Contract Deferrals] column [Discount] - - - N° ligne document - table [Vendor Contract Deferrals] column [Document Line No.] - - - Ligne contrat client - table [table.Name] - - - N° ligne d’engagement - table [Customer Contract Line] column [Subscription Line No.] - - - Modèle - table [Customer Contract Line] column [Template] - - - Desc. ligne contrat client - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Date de début du service - table [Customer Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Customer Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Customer Contract Line] column [Next Billing Date] - - - Période de base de facturation - table [Customer Contract Line] column [Billing Base Period] - - - N° article de facturation - table [Customer Contract Line] column [Invoicing Item No.] - - - N° ligne contrat client - table [Customer Contract Line] column [Customer Contract Line No.] - - - Période de préavis - table [Customer Contract Line] column [Notice Period] - - - Durée initiale - table [Customer Contract Line] column [Initial Term] - - - Durée d’extension - table [Customer Contract Line] column [Extension Term] - - - Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Customer Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Customer Contract Line] column [Term Until] - - - Période de renouvellement - table [Customer Contract Line] column [Renewal Term] - - - Ligne active - table [Customer Contract Line] column [Line Active] - - - Durée restante - table [Customer Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm Months] - - - N° contrat client - table [Customer Contract Line] column [Customer Contract No.] - - - La facturation est-elle basée sur l’utilisation ? - table [Customer Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Customer Contract Line] column [Source Type] - - - N° origine - table [Customer Contract Line] column [Source No.] - - - Ligne contrat fournisseur - table [table.Name] - - - N° ligne d’engagement - table [Vendor Contract Line] column [Subscription Line No.] - - - Modèle - table [Vendor Contract Line] column [Template] - - - Desc. ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Date de début du service - table [Vendor Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Vendor Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Vendor Contract Line] column [Next Billing Date] - - - N° ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Période de préavis - table [Vendor Contract Line] column [Notice Period] - - - Durée initiale - table [Vendor Contract Line] column [Initial Term] - - - Durée d’extension - table [Vendor Contract Line] column [Extension Term] - - - Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Vendor Contract Line] column [Term Until] - - - Période de renouvellement - table [Vendor Contract Line] column [Renewal Term] - - - Ligne active - table [Vendor Contract Line] column [Line Active] - - - Durée restante - table [Vendor Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N° contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract No.] - - - Version la plus récente - table [Vendor Contract Line] column [Is Latest Version] - - - La facturation est-elle basée sur l’utilisation ? - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Vendor Contract Line] column [Source Type] - - - N° origine - table [Vendor Contract Line] column [Source No.] - - - Reports contrat client - table [table.Name] - - - Type du document - table [Customer Contract Deferrals] column [Document Type] - - - N° de document - table [Customer Contract Deferrals] column [Document No.] - - - Date de report - table [Customer Contract Deferrals] column [Posting Date] - - - N° ligne document - table [Customer Contract Deferrals] column [Document Line No.] - - - Date de report du document - table [Customer Contract Deferrals] column [Document Posting Date] - - - Date de report de libération - table [Customer Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrat client - table [table.Name] - - - N° contrat client - table [Customer Contract] column [Customer Contract No.] - - - Type contrat client - table [Customer Contract] column [Customer Contract Type] - - - Description du contrat client - table [Customer Contract] column [Customer Contract Description] - - - Desc. n° contrat client - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrat fournisseur - table [table.Name] - - - N° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No.] - - - Type contrat fournisseur - table [Vendor Contract] column [Vendor Contract Type] - - - Description du contrat fournisseur - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. n° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Traitement FBA - table [table.Name] - - - Traiter FBA comme une constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Est libéré - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Article - table [table.Name] - - - N° d’article - table [Item] column [Item No.] - - - Nom article - table [Item] column [Item Name] - - - Groupe de report d’inventaire - table [Item] column [Inventory Posting Group] - - - Unité de mesure de base - table [Item] column [Base Unit of Measure] - - - Numéro et description de l’article - table [Item] column [Item No. & Description] - - - Date d’analyse - table [table.Name] - - - Version initiale - table [Analysis Date] column [Is Initial Version] - - - Version actuelle - table [Analysis Date] column [Is Current Version] - - - Groupe calc. : intelligence temporelle du calendrier (fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - RRM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CMR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Reports client - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Reports fournisseur - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RPA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VTC - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prévoir ventes - table [Subscription Billing KPIs] measure [Forecast Sales] - - - CMR AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CMR Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - RRM AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nouveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Revenu récurrent mensuel Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NRRM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NRRM du RRM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NRRM AP - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NRRM Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Changement global RRM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - VTC AP - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VTC Δ par rapport à AP - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Dernière mise à jour écritures analyse - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Dernière mise à jour du modèle sémantique - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Environnement param. - table [Subscription Billing KPIs] measure [Param Environment] - - - Paramètres de la compagnie - table [Subscription Billing KPIs] measure [Param Company] - - - Mise à niveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - FBA modification du revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Devise de reporting - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clients actifs - table [Subscription Billing KPIs] measure [Active Customers] - - - Clients actifs AP - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clients actifs Δ par rapport à AP - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prévision de facturation client - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prévision de facturation fournisseur - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prévoir les coûts - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rétrogradation revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Plage de dates sélectionnée - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % taux d’attrition mensuel moyen - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % taux de rétrogradation mensuel moyen - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Rétrogradation et attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Représentant - table [table.Name] - - - Code du représentant - table [Salesperson] column [Salesperson Code] - - - Nom du représentant - table [Salesperson] column [Salesperson Name] - - - Modifications contrat client - table [table.Name] - - - Clé ligne contrat client - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Modifier le type - table [Customer Contract Changes] column [Change Type] - - - Delta RRM - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CH.resx deleted file mode 100644 index 14a94325ea..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-CH.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fournisseurs - table [table.Name] - - - N° fournisseur - table [Vendors] column [Vendor No.] - - - Nom du fournisseur - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ville - table [Vendors] column [City] - - - CP - table [Vendors] column [Post Code] - - - État - table [Vendors] column [State] - - - Code de pays/région - table [Vendors] column [Country/Region Code] - - - Groupe comptabilisation fournisseur - table [Vendors] column [Vendor Posting Group] - - - N° et nom du fournisseur - table [Vendors] column [Vendor No. & Name] - - - Clients - table [table.Name] - - - N° client - table [Customers] column [Customer No.] - - - Nom du client - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ville - table [Customers] column [City] - - - CP - table [Customers] column [Post Code] - - - État - table [Customers] column [State] - - - Code de pays/région - table [Customers] column [Country/Region Code] - - - Groupe comptabilisation client - table [Customers] column [Customer Posting Group] - - - Groupe prix client - table [Customers] column [Customer Price Group] - - - Groupe remises client - table [Customers] column [Customer Discount Group] - - - N° et nom du client - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - NuméroJour séquentiel 365 - table [Date] column [Sequential365DayNumber] - - - Reports de plage de données - table [Date] column [Data Range Deferrals] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECTER VOS DONNÉES - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Téléchargez Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurez Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AIDE ET SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - pour Business Central - table [Localized Labels] measure [for Business Central] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Écritures analyse au - table [Localized Labels] measure [Analysis Entries as of] - - - Prévision de facturation par période de facturation, client et n° contrat - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Prévision de facturation par année civile et par mois - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Échéancier de facturation - table [Localized Labels] measure [Billing Schedule] - - - Modification revenu récurrent mensuel par année et par mois - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Plage de dates actuelle : - table [Localized Labels] measure [Current Date Range:] - - - Reports contrat client - table [Localized Labels] measure [Customer Contract Deferrals] - - - Lignes contrat client - table [Localized Labels] measure [Customer Contract Lines] - - - Reports client - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analyse du revenu récurrent mensuel - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Revenu récurrent mensuel par client - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Revenu récurrent mensuel par vendeur - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Revenu récurrent mensuel par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Catégorie revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Attrition et rétrogradation revenu récurrent mensuel par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Revenu récurrent mensuel nouveau et mis à niveau par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Revenus mensuels et coûts prévus par année civile et par mois - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Revenus mensuels et coûts prévus par vendeur, client et n° contrat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Montant lancé et échelonné par année civile et par mois - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analyse du revenu - table [Localized Labels] measure [Revenue Analysis] - - - Revenu par client - table [Localized Labels] measure [Revenue by Customer] - - - Revenu par article - table [Localized Labels] measure [Revenue by Item] - - - Revenu par vendeur - table [Localized Labels] measure [Revenue by Salesperson] - - - Développement du revenu - table [Localized Labels] measure [Revenue Development] - - - Prévision de revenu - table [Localized Labels] measure [Sales and Cost Forecast] - - - Croissance du revenu d’une année sur l’autre - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Vue d’ensemble de Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 premiers clients par revenu récurrent mensuel - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 premiers fournisseurs par coût mensuel récurrent - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse de la valeur totale du contrat - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valeur totale du contrat et valeur totale du contrat AP par mois civil - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valeur totale du contrat par année civile et par mois - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Croissance de la valeur totale des contrats d’une année à l’autre - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Reports de contrat fournisseur - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Reports fournisseur - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Bouton Retour - table [Localized Labels] measure [Back button] - - - Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analyse de l’attrition - table [Localized Labels] measure [Churn Analysis] - - - % taux d’attrition mensuel moyen par année et par mois - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objet de service - table [table.Name] - - - N° objet de service - table [Subscription] column [Subscription No.] - - - Code package - table [Subscription] column [Package Code] - - - Desc. objet de service - table [Subscription] column [Subscription Desc.] - - - Date d’analyse - table [Subscription] column [Analysis Date] - - - Desc. n° souscription - table [Subscription] column [Subscription No. Desc.] - - - Reports de contrat fournisseur - table [table.Name] - - - Type du document - table [Vendor Contract Deferrals] column [Document Type] - - - N° de document - table [Vendor Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Vendor Contract Deferrals] column [Posting Date] - - - Date comptabilisation document - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Remise - table [Vendor Contract Deferrals] column [Discount] - - - N° ligne document - table [Vendor Contract Deferrals] column [Document Line No.] - - - Ligne contrat client - table [table.Name] - - - N° ligne d’engagement - table [Customer Contract Line] column [Subscription Line No.] - - - Modèle - table [Customer Contract Line] column [Template] - - - Desc. ligne contrat client - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Date de début du service - table [Customer Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Customer Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Customer Contract Line] column [Next Billing Date] - - - Période de base de facturation - table [Customer Contract Line] column [Billing Base Period] - - - N° article de facturation - table [Customer Contract Line] column [Invoicing Item No.] - - - N° ligne contrat client - table [Customer Contract Line] column [Customer Contract Line No.] - - - Période de préavis - table [Customer Contract Line] column [Notice Period] - - - Durée initiale - table [Customer Contract Line] column [Initial Term] - - - Durée d’extension - table [Customer Contract Line] column [Extension Term] - - - Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Customer Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Customer Contract Line] column [Term Until] - - - Période de renouvellement - table [Customer Contract Line] column [Renewal Term] - - - Ligne active - table [Customer Contract Line] column [Line Active] - - - Durée restante - table [Customer Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm Months] - - - N° contrat client - table [Customer Contract Line] column [Customer Contract No.] - - - Est Facturation basée sur l’activité - table [Customer Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Customer Contract Line] column [Source Type] - - - N° origine - table [Customer Contract Line] column [Source No.] - - - Ligne contrat fournisseur - table [table.Name] - - - N° ligne d’engagement - table [Vendor Contract Line] column [Subscription Line No.] - - - Modèle - table [Vendor Contract Line] column [Template] - - - Desc. ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Date de début du service - table [Vendor Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Vendor Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Vendor Contract Line] column [Next Billing Date] - - - N° ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Période de préavis - table [Vendor Contract Line] column [Notice Period] - - - Durée initiale - table [Vendor Contract Line] column [Initial Term] - - - Durée d’extension - table [Vendor Contract Line] column [Extension Term] - - - Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Vendor Contract Line] column [Term Until] - - - Période de renouvellement - table [Vendor Contract Line] column [Renewal Term] - - - Ligne active - table [Vendor Contract Line] column [Line Active] - - - Durée restante - table [Vendor Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N° contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract No.] - - - Version la plus récente - table [Vendor Contract Line] column [Is Latest Version] - - - Est Facturation basée sur l’activité - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Vendor Contract Line] column [Source Type] - - - N° origine - table [Vendor Contract Line] column [Source No.] - - - Reports contrat client - table [table.Name] - - - Type du document - table [Customer Contract Deferrals] column [Document Type] - - - N° de document - table [Customer Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Customer Contract Deferrals] column [Posting Date] - - - N° ligne document - table [Customer Contract Deferrals] column [Document Line No.] - - - Date comptabilisation document - table [Customer Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Customer Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrat client - table [table.Name] - - - N° contrat client - table [Customer Contract] column [Customer Contract No.] - - - Type contrat client - table [Customer Contract] column [Customer Contract Type] - - - Désignation contrat client - table [Customer Contract] column [Customer Contract Description] - - - Desc. n° contrat client - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrat fournisseur - table [table.Name] - - - N° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No.] - - - Type contrat fournisseur - table [Vendor Contract] column [Vendor Contract Type] - - - Désignation contrat fournisseur - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. n° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Traitement FBA - table [table.Name] - - - Traiter FBA comme une constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Est Lancé - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Article - table [table.Name] - - - N° d’article - table [Item] column [Item No.] - - - Nom article - table [Item] column [Item Name] - - - Groupe de report des stocks - table [Item] column [Inventory Posting Group] - - - Unité de base - table [Item] column [Base Unit of Measure] - - - N° et désignation d’article - table [Item] column [Item No. & Description] - - - Date d’analyse - table [table.Name] - - - Version initiale - table [Analysis Date] column [Is Initial Version] - - - Version actuelle - table [Analysis Date] column [Is Current Version] - - - Groupe calc. : intelligence temporelle du calendrier (fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - RRM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CMR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Reports client - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Reports fournisseur - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RPA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VTC - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prévoir ventes - table [Subscription Billing KPIs] measure [Forecast Sales] - - - CMR AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CMR Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - RRM AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nouveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Revenu récurrent mensuel Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NRRM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NRRM du RRM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NRRM AP - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NRRM Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Changement global RRM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - VTC AP - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VTC Δ par rapport à AP - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Dernière mise à jour écritures analyse - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Dernière mise à jour du modèle sémantique - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Environnement param. - table [Subscription Billing KPIs] measure [Param Environment] - - - Société param. - table [Subscription Billing KPIs] measure [Param Company] - - - Mise à niveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - FBA modification du revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Devise de reporting - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clients actifs - table [Subscription Billing KPIs] measure [Active Customers] - - - Clients actifs AP - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clients actifs Δ par rapport à AP - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prévision de facturation client - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prévision de facturation fournisseur - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prévoir les coûts - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rétrogradation revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Plage de dates sélectionnée - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % taux d’attrition mensuel moyen - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % taux de rétrogradation mensuel moyen - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Rétrogradation et attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Vendeur - table [table.Name] - - - Code vendeur - table [Salesperson] column [Salesperson Code] - - - Nom vendeur - table [Salesperson] column [Salesperson Name] - - - Modifications contrat client - table [table.Name] - - - Clé ligne contrat client - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Modifier le type - table [Customer Contract Changes] column [Change Type] - - - Delta RRM - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-FR.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-FR.resx deleted file mode 100644 index 14a94325ea..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.fr-FR.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fournisseurs - table [table.Name] - - - N° fournisseur - table [Vendors] column [Vendor No.] - - - Nom du fournisseur - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Ville - table [Vendors] column [City] - - - CP - table [Vendors] column [Post Code] - - - État - table [Vendors] column [State] - - - Code de pays/région - table [Vendors] column [Country/Region Code] - - - Groupe comptabilisation fournisseur - table [Vendors] column [Vendor Posting Group] - - - N° et nom du fournisseur - table [Vendors] column [Vendor No. & Name] - - - Clients - table [table.Name] - - - N° client - table [Customers] column [Customer No.] - - - Nom du client - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Ville - table [Customers] column [City] - - - CP - table [Customers] column [Post Code] - - - État - table [Customers] column [State] - - - Code de pays/région - table [Customers] column [Country/Region Code] - - - Groupe comptabilisation client - table [Customers] column [Customer Posting Group] - - - Groupe prix client - table [Customers] column [Customer Price Group] - - - Groupe remises client - table [Customers] column [Customer Discount Group] - - - N° et nom du client - table [Customers] column [Customer No. & Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - NuméroJour séquentiel 365 - table [Date] column [Sequential365DayNumber] - - - Reports de plage de données - table [Date] column [Data Range Deferrals] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNECTER VOS DONNÉES - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Téléchargez Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurez Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - UTILISER, MODIFIER ET CRÉER VOS PROPRES ÉTATS - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finance inclut une variété d’états prédéfinis pour vous aider à voir vos données immédiatement. Vous pouvez modifier ces états ou créer votre propre état à partir de zéro. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - AIDE ET SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Pour obtenir de l’aide et de l’assistance concernant votre nouvel état, consultez la documentation de vue d’ensemble de l’analyse. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - pour Business Central - table [Localized Labels] measure [for Business Central] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Écritures analyse au - table [Localized Labels] measure [Analysis Entries as of] - - - Prévision de facturation par période de facturation, client et n° contrat - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Prévision de facturation par année civile et par mois - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Échéancier de facturation - table [Localized Labels] measure [Billing Schedule] - - - Modification revenu récurrent mensuel par année et par mois - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Plage de dates actuelle : - table [Localized Labels] measure [Current Date Range:] - - - Reports contrat client - table [Localized Labels] measure [Customer Contract Deferrals] - - - Lignes contrat client - table [Localized Labels] measure [Customer Contract Lines] - - - Reports client - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analyse du revenu récurrent mensuel - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Revenu récurrent mensuel et revenu récurrent mensuel AP par mois civil - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Revenu récurrent mensuel et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Revenu récurrent mensuel par client - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Revenu récurrent mensuel par vendeur - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Revenu récurrent mensuel par année civile et par mois - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Catégorie revenu récurrent mensuel par article - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Attrition et rétrogradation revenu récurrent mensuel par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Revenu récurrent mensuel nouveau et mis à niveau par contrat client - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Revenus mensuels et coûts prévus par année civile et par mois - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Revenus mensuels et coûts prévus par vendeur, client et n° contrat - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Montant lancé et échelonné par année civile et par mois - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analyse du revenu - table [Localized Labels] measure [Revenue Analysis] - - - Revenu par client - table [Localized Labels] measure [Revenue by Customer] - - - Revenu par article - table [Localized Labels] measure [Revenue by Item] - - - Revenu par vendeur - table [Localized Labels] measure [Revenue by Salesperson] - - - Développement du revenu - table [Localized Labels] measure [Revenue Development] - - - Prévision de revenu - table [Localized Labels] measure [Sales and Cost Forecast] - - - Croissance du revenu d’une année sur l’autre - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Vue d’ensemble de Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 premiers clients par revenu récurrent mensuel - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 premiers fournisseurs par coût mensuel récurrent - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse de la valeur totale du contrat - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valeur totale du contrat et valeur totale du contrat AP par mois civil - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valeur totale des contrats et croissance d’une année à l’autre par année civile et par mois - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valeur totale du contrat par année civile et par mois - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Croissance de la valeur totale des contrats d’une année à l’autre - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Reports de contrat fournisseur - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Reports fournisseur - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Bouton Retour - table [Localized Labels] measure [Back button] - - - Revenu récurrent mensuel, Coût mensuel récurrent, Marge nette par mois, Clients actifs, Valeur totale du contrat, Évolution du revenu mensuel récurrent - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analyse de l’attrition - table [Localized Labels] measure [Churn Analysis] - - - % taux d’attrition mensuel moyen par année et par mois - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Objet de service - table [table.Name] - - - N° objet de service - table [Subscription] column [Subscription No.] - - - Code package - table [Subscription] column [Package Code] - - - Desc. objet de service - table [Subscription] column [Subscription Desc.] - - - Date d’analyse - table [Subscription] column [Analysis Date] - - - Desc. n° souscription - table [Subscription] column [Subscription No. Desc.] - - - Reports de contrat fournisseur - table [table.Name] - - - Type du document - table [Vendor Contract Deferrals] column [Document Type] - - - N° de document - table [Vendor Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Vendor Contract Deferrals] column [Posting Date] - - - Date comptabilisation document - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Vendor Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Remise - table [Vendor Contract Deferrals] column [Discount] - - - N° ligne document - table [Vendor Contract Deferrals] column [Document Line No.] - - - Ligne contrat client - table [table.Name] - - - N° ligne d’engagement - table [Customer Contract Line] column [Subscription Line No.] - - - Modèle - table [Customer Contract Line] column [Template] - - - Desc. ligne contrat client - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Date de début du service - table [Customer Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Customer Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Customer Contract Line] column [Next Billing Date] - - - Période de base de facturation - table [Customer Contract Line] column [Billing Base Period] - - - N° article de facturation - table [Customer Contract Line] column [Invoicing Item No.] - - - N° ligne contrat client - table [Customer Contract Line] column [Customer Contract Line No.] - - - Période de préavis - table [Customer Contract Line] column [Notice Period] - - - Durée initiale - table [Customer Contract Line] column [Initial Term] - - - Durée d’extension - table [Customer Contract Line] column [Extension Term] - - - Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Customer Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Customer Contract Line] column [Term Until] - - - Période de renouvellement - table [Customer Contract Line] column [Renewal Term] - - - Ligne active - table [Customer Contract Line] column [Line Active] - - - Durée restante - table [Customer Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Customer Contract Line] column [Billing Rhythm Months] - - - N° contrat client - table [Customer Contract Line] column [Customer Contract No.] - - - Est Facturation basée sur l’activité - table [Customer Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Customer Contract Line] column [Source Type] - - - N° origine - table [Customer Contract Line] column [Source No.] - - - Ligne contrat fournisseur - table [table.Name] - - - N° ligne d’engagement - table [Vendor Contract Line] column [Subscription Line No.] - - - Modèle - table [Vendor Contract Line] column [Template] - - - Desc. ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Date de début du service - table [Vendor Contract Line] column [Subscription Start Date] - - - Date de fin du service - table [Vendor Contract Line] column [Subscription End Date] - - - Date de la prochaine facturation - table [Vendor Contract Line] column [Next Billing Date] - - - N° ligne contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Période de préavis - table [Vendor Contract Line] column [Notice Period] - - - Durée initiale - table [Vendor Contract Line] column [Initial Term] - - - Durée d’extension - table [Vendor Contract Line] column [Extension Term] - - - Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulation possible jusqu’au - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Durée jusqu’au - table [Vendor Contract Line] column [Term Until] - - - Période de renouvellement - table [Vendor Contract Line] column [Renewal Term] - - - Ligne active - table [Vendor Contract Line] column [Line Active] - - - Durée restante - table [Vendor Contract Line] column [Remaining Term] - - - Mois Rythme de facturation - table [Vendor Contract Line] column [Billing Rhythm Months] - - - N° contrat fournisseur - table [Vendor Contract Line] column [Vendor Contract No.] - - - Version la plus récente - table [Vendor Contract Line] column [Is Latest Version] - - - Est Facturation basée sur l’activité - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Type origine - table [Vendor Contract Line] column [Source Type] - - - N° origine - table [Vendor Contract Line] column [Source No.] - - - Reports contrat client - table [table.Name] - - - Type du document - table [Customer Contract Deferrals] column [Document Type] - - - N° de document - table [Customer Contract Deferrals] column [Document No.] - - - Date comptabilisation - table [Customer Contract Deferrals] column [Posting Date] - - - N° ligne document - table [Customer Contract Deferrals] column [Document Line No.] - - - Date comptabilisation document - table [Customer Contract Deferrals] column [Document Posting Date] - - - Date comptabilisation lancement - table [Customer Contract Deferrals] column [Release Posting Date] - - - N° séquence compta. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contrat client - table [table.Name] - - - N° contrat client - table [Customer Contract] column [Customer Contract No.] - - - Type contrat client - table [Customer Contract] column [Customer Contract Type] - - - Désignation contrat client - table [Customer Contract] column [Customer Contract Description] - - - Desc. n° contrat client - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contrat fournisseur - table [table.Name] - - - N° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No.] - - - Type contrat fournisseur - table [Vendor Contract] column [Vendor Contract Type] - - - Désignation contrat fournisseur - table [Vendor Contract] column [Vendor Contract Description] - - - Desc. n° contrat fournisseur - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Traitement FBA - table [table.Name] - - - Traiter FBA comme une constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Est Lancé - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Article - table [table.Name] - - - N° d’article - table [Item] column [Item No.] - - - Nom article - table [Item] column [Item Name] - - - Groupe de report des stocks - table [Item] column [Inventory Posting Group] - - - Unité de base - table [Item] column [Base Unit of Measure] - - - N° et désignation d’article - table [Item] column [Item No. & Description] - - - Date d’analyse - table [table.Name] - - - Version initiale - table [Analysis Date] column [Is Initial Version] - - - Version actuelle - table [Analysis Date] column [Is Current Version] - - - Groupe calc. : intelligence temporelle du calendrier (fiscal) - table [table.Name] - - - Perspective - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - RRM - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - CMR - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Reports client - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Reports fournisseur - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - RPA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - VTC - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prévoir ventes - table [Subscription Billing KPIs] measure [Forecast Sales] - - - CMR AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - CMR Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - RRM AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nouveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Revenu récurrent mensuel Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NRRM - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NRRM du RRM - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NRRM AP - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NRRM Δ par rapport à AP - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Changement global RRM - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - VTC AP - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - VTC Δ par rapport à AP - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Dernière mise à jour écritures analyse - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Dernière mise à jour du modèle sémantique - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Environnement param. - table [Subscription Billing KPIs] measure [Param Environment] - - - Société param. - table [Subscription Billing KPIs] measure [Param Company] - - - Mise à niveau revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - FBA modification du revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Devise de reporting - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clients actifs - table [Subscription Billing KPIs] measure [Active Customers] - - - Clients actifs AP - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Clients actifs Δ par rapport à AP - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prévision de facturation client - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prévision de facturation fournisseur - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prévoir les coûts - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Rétrogradation revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Plage de dates sélectionnée - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % taux d’attrition mensuel moyen - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % taux de rétrogradation mensuel moyen - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Rétrogradation et attrition revenu récurrent mensuel - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Vendeur - table [table.Name] - - - Code vendeur - table [Salesperson] column [Salesperson Code] - - - Nom vendeur - table [Salesperson] column [Salesperson Name] - - - Modifications contrat client - table [table.Name] - - - Clé ligne contrat client - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Date - table [Customer Contract Changes] column [Date] - - - Modifier le type - table [Customer Contract Changes] column [Change Type] - - - Delta RRM - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.is-IS.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.is-IS.resx deleted file mode 100644 index bfb997fbf4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.is-IS.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Víddasamstæður - table [table.Name] - - - Altæk vídd 1 - table [Dimension Sets] column [Global Dimension 1] - - - Altæk vídd 2 - table [Dimension Sets] column [Global Dimension 2] - - - Flýtivídd 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Flýtivídd 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Flýtivídd 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Flýtivídd 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Flýtivídd 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Flýtivídd 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Lánardrottnar - table [table.Name] - - - Nr. lánardrottins - table [Vendors] column [Vendor No.] - - - Nafn lánardrottins - table [Vendors] column [Vendor Name] - - - Netfang - table [Vendors] column [Address] - - - Aðsetur 2 - table [Vendors] column [Address 2] - - - Borg - table [Vendors] column [City] - - - Póstnúmer - table [Vendors] column [Post Code] - - - Fylki - table [Vendors] column [State] - - - Lands-/svæðiskóði - table [Vendors] column [Country/Region Code] - - - Bókunarflokkur lánardrottins - table [Vendors] column [Vendor Posting Group] - - - Númer og nafn lánardrottins - table [Vendors] column [Vendor No. & Name] - - - Viðskiptavinir - table [table.Name] - - - Nr. viðskiptavinar - table [Customers] column [Customer No.] - - - Nafn viðskiptavinar - table [Customers] column [Customer Name] - - - Netfang - table [Customers] column [Address] - - - Aðsetur 2 - table [Customers] column [Address 2] - - - Borg - table [Customers] column [City] - - - Póstnúmer - table [Customers] column [Post Code] - - - Fylki - table [Customers] column [State] - - - Lands-/svæðiskóði - table [Customers] column [Country/Region Code] - - - Bókunarflokkur viðskiptamanns - table [Customers] column [Customer Posting Group] - - - Verðflokkur viðskiptavinar - table [Customers] column [Customer Price Group] - - - Afsláttarflokkur viðskiptavinar - table [Customers] column [Customer Discount Group] - - - Númer og nafn viðskiptamanns - table [Customers] column [Customer No. & Name] - - - Dagsetning - table [table.Name] - - - Vika Dagur - table [Date] column [Week Day] - - - Dagsgerð - table [Date] column [Day Type] - - - Almanaksár - table [Date] column [Calendar Year] - - - - Dagatal Ársfjórðungur - table [Date] column [Calendar Quarter] - - - Dagatal Ársfjórðungur Ár - table [Date] column [Calendar Quarter Year] - - - Almanaksmánuður - table [Date] column [Calendar Month] - - - Dagatal Mánuður Ár - table [Date] column [Calendar Month Year] - - - Almanaksvika - table [Date] column [Calendar Week] - - - Dagatal Vika Ár - table [Date] column [Calendar Week Year] - - - Dagatal Staða samsvarandi viku - table [Date] column [Calendar RelativeWeekPos] - - - Dagatal Staða samsvarandi mánaðar - table [Date] column [Calendar RelativeMonthPos] - - - Dagatal Staða samsvarandi ársfjórðungs - table [Date] column [Calendar RelativeQuarterPos] - - - Dagatal Staða samsvarandi árs - table [Date] column [Calendar RelativeYearPos] - - - Dagatal Upphaf mánaðar - table [Date] column [Calendar StartOfMonth] - - - Dagatal Mánaðarlok - table [Date] column [Calendar EndOfMonth] - - - Dagatal Upphaf ársfjórðungs - table [Date] column [Calendar StartOfQuarter] - - - Dagatal Ársfjórðungslok - table [Date] column [Calendar EndOfQuarter] - - - Dagatal Upphaf árs - table [Date] column [Calendar StartOfYear] - - - Dagatal Árslok - table [Date] column [Calendar EndOfYear] - - - Dagatal Dagar mánaðar - table [Date] column [Calendar MonthDays] - - - Dagatal Dagar ársfjórðungs - table [Date] column [Calendar QuarterDays] - - - Dagatal Dagar árs - table [Date] column [Calendar YearDays] - - - Dagatal Númer mánaðardags - table [Date] column [Calendar DayOfMonthNumber] - - - Dagatal Númer dags innan ársfjórðungs - table [Date] column [Calendar DayOfQuarterNumber] - - - Dagatal Númer dags innan árs - table [Date] column [Calendar DayOfYearNumber] - - - Dagatal Dagsetning fyrri viku - table [Date] column [Calendar DatePreviousWeek] - - - Dagatal Dagsetning fyrri mánaðar - table [Date] column [Calendar DatePreviousMonth] - - - Dagatal Dagsetning fyrri ársfjórðungs - table [Date] column [Calendar DatePreviousQuarter] - - - Dagatal Dagsetning fyrra árs - table [Date] column [Calendar DatePreviousYear] - - - Fjárhagur Ár - table [Date] column [Fiscal Year] - - - Fjórðungur Ársfjórðungur - table [Date] column [Fiscal Quarter] - - - Fjárhagur Ársfjórðungur og ár - table [Date] column [Fiscal Quarter Year] - - - Fjárhagur Mánuður - table [Date] column [Fiscal Month] - - - Fjárhagur Mánuður og ár - table [Date] column [Fiscal Month Year] - - - Vika fjárhagsárs - table [Date] column [Fiscal Week] - - - Fjárhagur Vika ár - table [Date] column [Fiscal Week Year] - - - Fjárhagur Staða samsvarandi viku - table [Date] column [Fiscal RelativeWeekPos] - - - Fjárhagur Staða samsvarandi mánaðar - table [Date] column [Fiscal RelativeMonthPos] - - - Fjárhagur Staða samsvarandi ársfjórðungs - table [Date] column [Fiscal RelativeQuarterPos] - - - Fjárhagur Staða samsvarandi árs - table [Date] column [Fiscal RelativeYearPos] - - - Fjárhagur Upphaf mánaðar - table [Date] column [Fiscal StartOfMonth] - - - Fjárhagur Mánaðarlok - table [Date] column [Fiscal EndOfMonth] - - - Fjárhagur Upphaf ársfjórðungs - table [Date] column [Fiscal StartOfQuarter] - - - Fjárhagur Ársfjórðungslok - table [Date] column [Fiscal EndOfQuarter] - - - Fjárhagur Upphaf árs - table [Date] column [Fiscal StartOfYear] - - - Fjárhagur Árslok - table [Date] column [Fiscal EndOfYear] - - - Fjárhagur Dagar mánaðar - table [Date] column [Fiscal MonthDays] - - - Fjárhagur Dagar ársfjórðungs - table [Date] column [Fiscal QuarterDays] - - - Fjárhagur Dagar árs - table [Date] column [Fiscal YearDays] - - - Fjárhagur Númer mánaðardags - table [Date] column [Fiscal DayOfMonthNumber] - - - Fjárhagur Númer dags innan ársfjórðungs - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fjárhagur Númer dags innan árs - table [Date] column [Fiscal DayOfYearNumber] - - - Fjárhagur Dagsetning fyrri viku - table [Date] column [Fiscal DatePreviousWeek] - - - Fjárhagur Dagsetning fyrri mánaðar - table [Date] column [Fiscal DatePreviousMonth] - - - Fjárhagur Dagsetning fyrri ársfjórðungs - table [Date] column [Fiscal DatePreviousQuarter] - - - Fjárhagur Dagsetning fyrra árs - table [Date] column [Fiscal DatePreviousYear] - - - Fjárhagsvika Ár - table [Date] column [FW Year] - - - Fjárhagsvika Ársfjórðungur - table [Date] column [FW Quarter] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] column [FW Quarter Year] - - - Fjárhagsvika Mánuður - table [Date] column [FW Month] - - - Fjárhagsvika Mánuður Ár - table [Date] column [FW Month Year] - - - Fjárhagsvika Vika - table [Date] column [FW Week] - - - Fjárhagsvika Tímabil - table [Date] column [FW Period] - - - Fjárhagsvika Vika Ár - table [Date] column [FW Week Year] - - - Fjárhagsvika Upphaf viku - table [Date] column [FW StartOfWeek] - - - Fjárhagsvika Vikulok - table [Date] column [FW EndOfWeek] - - - Fjárhagsvika Staða samsvarandi viku - table [Date] column [FW RelativeWeekPos] - - - Fjárhagsvika Staða samsvarandi mánaðar - table [Date] column [FW RelativeMonthPos] - - - Fjárhagsvika Staða samsvarandi ársfjórðungs - table [Date] column [FW RelativeQuarterPos] - - - Fjárhagsvika Staða samsvarandi árs - table [Date] column [FW RelativeYearPos] - - - Fjárhagsvika Upphaf mánaðar - table [Date] column [FW StartOfMonth] - - - Fjárhagsvika Mánaðarlok - table [Date] column [FW EndOfMonth] - - - Fjárhagsvika Upphaf ársfjórðungs - table [Date] column [FW StartOfQuarter] - - - Fjárhagsvika Ársfjórðungslok - table [Date] column [FW EndOfQuarter] - - - Fjárhagsvika Upphaf árs - table [Date] column [FW StartOfYear] - - - Fjárhagsvika Árslok - table [Date] column [FW EndOfYear] - - - Fjárhagsvika Dagar mánaðar - table [Date] column [FW MonthDays] - - - Fjárhagsvika Dagar ársfjórðungs - table [Date] column [FW QuarterDays] - - - Fjárhagsvika Dagar árs - table [Date] column [FW YearDays] - - - Fjárhagsvika Númer mánaðardags - table [Date] column [FW DayOfMonthNumber] - - - Fjárhagsvika Númer dags innan ársfjórðungs - table [Date] column [FW DayOfQuarterNumber] - - - Fjárhagsvika Númer dags innan árs - table [Date] column [FW DayOfYearNumber] - - - Fjárhagsvika Dagsetning fyrri viku - table [Date] column [FW DatePreviousWeek] - - - Fjárhagsvika Dagsetning fyrri mánaðar - table [Date] column [FW DatePreviousMonth] - - - Fjárhagsvika Dagsetning fyrri ársfjórðungs - table [Date] column [FW DatePreviousQuarter] - - - Fjárhagsvika Dagsetning fyrra árs - table [Date] column [FW DatePreviousYear] - - - Samsvarandi dagur - table [Date] column [Relative Day] - - - 365 daga raðnúmer - table [Date] column [Sequential365DayNumber] - - - Frestun á gagnasviði - table [Date] column [Data Range Deferrals] - - - Fjöldi daga - table [Date] measure [No. of Days] - - - Fjárhagur Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fjárhagur Ársfjórðungur og ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fjárhagur Vika ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Dagatal Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Dagatal Ársfjórðungur Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Dagatal Vika Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Fjárhagsvika Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Fjárhagsvika Mánuður Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fjárhagur Ár-Mánuður - table [Date] hierarchy [Fiscal Year-Month] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fjárhagur Ár-Mánuður-Vika - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fjárhagur Vika ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Dagatal Ár-Mánuður - table [Date] hierarchy [Calendar Year-Month] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Dagatal Ár-Mánuður-Vika - table [Date] hierarchy [Calendar Year-Month-Week] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Dagatal Vika Ár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Fjárhagsvika Ár-Mánuður-Vika - table [Date] hierarchy [FW Year-Month-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Fjárhagsvika Mánuður Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Fjárhagsvika Ár-Ársfjórðungur-Vika - table [Date] hierarchy [FW Year-Quarter-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Fjárhagsvika Ár-Vika - table [Date] hierarchy [FW Year-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - TENGIÐ GÖGN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Sækja Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Grunnstillið Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - NOTIÐ, BREYTIÐ OG BÚIÐ TIL EIGIN SKÝRSLUR - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Fjármál bjóða upp á innbyggðar skýrslur til að skoða gögn samstundis. Hægt er að breyta skýrslunum eða búa til eigin skýrslur frá grunni. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HJÁLP OG STUÐNINGUR - table [Localized Labels] measure [HELP AND SUPPORT] - - - Lesið fylgigögn greiningaryfirlitsins til að fá hjálp og aðstoð við nýju skýrsluna. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - fyrir Business Central - table [Localized Labels] measure [for Business Central] - - - Síðast uppfært - table [Localized Labels] measure [Last Refreshed] - - - Heiti fyrirtækis - table [Localized Labels] measure [Company Name] - - - Greiningarfærslur frá og með - table [Localized Labels] measure [Analysis Entries as of] - - - Reikningsspá eftir reikningstímabili, viðskiptavini og samningsnúmeri. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Reikningsspá eftir almanaksári og -mánuði - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Greiðsluáætlun - table [Localized Labels] measure [Billing Schedule] - - - Breyting á mán. endurteknum tekjum eftir ári og mánuði - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Núverandi dagsetningabil: - table [Localized Labels] measure [Current Date Range:] - - - Samningsfrestanir viðskiptavinar - table [Localized Labels] measure [Customer Contract Deferrals] - - - Samningslínur viðskiptavinar - table [Localized Labels] measure [Customer Contract Lines] - - - Frestanir viðskiptamanns - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Mán. endurtekin tekjugreining - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Mán. endurteknar tekjur og mán. endurteknar tekjur fyrra árs eftir almanaksmánuði - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Mán. endurteknar tekjur og vöxtur milli ára eftir almanaksári og -mánuði - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Mán. endurteknar tekjur eftir viðskiptavini - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Mán. endurteknar tekjur eftir sölumanni - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Mán. endurteknar tekjur eftir almanaksári og -mánuði - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Mán. endurteknar tekjur eftir vöru - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Mán. endurteknar tekjur eftir vöruflokkum - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Mán uppsögn endurtekinna tekna og niðurfærsla eftir samningi við viðskiptavin - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Mán. Endurteknar tekjur nýjar og uppfærðar eftir samningi við viðskiptavin - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Mánaðarleg tekju- og kostnaðarspá eftir almanaksári og -mánuði - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Mánaðarleg tekju- og kostnaðarspá sölumanns, viðskiptavinar og samnings nr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Losuð og frestuð upphæð eftir almanaksári og -mánuði - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Greining tekja - table [Localized Labels] measure [Revenue Analysis] - - - Tekjur eftir viðskiptamanni - table [Localized Labels] measure [Revenue by Customer] - - - Tekjur eftir vöru - table [Localized Labels] measure [Revenue by Item] - - - Tekjur eftir sölumanni - table [Localized Labels] measure [Revenue by Salesperson] - - - Tekjuþróun - table [Localized Labels] measure [Revenue Development] - - - Tekjuspá - table [Localized Labels] measure [Sales and Cost Forecast] - - - Tekjuvöxtur milli ára - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing greining - table [Localized Labels] measure [Subscription Billing Analysis] - - - Subscription Billing yfirlit - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 hæstu viðskiptavinirnir eftir mán. endurteknum tekjum - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 hæstu lánardrottnar fyrir mán. endurtekinn kostnað - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Heildargreining samningsvirðis - table [Localized Labels] measure [Total Contract Value Analysis] - - - Heildarsamningsvirði og heildarsamningsvirði fyrra árs eftir almanaksmánuði - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Heildarvirði samnings og vöxtur milli ára eftir almanaksári og -mánuði - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Heildarverðmæti samnings eftir almanaksári og -mánuði - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Heildarvöxtur samningsvirðis á milli ára - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Frestanir lánardrottnasamnings - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Frestun lánardrottins - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Bakkhnappur - table [Localized Labels] measure [Back button] - - - Mánaðarlegar endurteknar tekjur, mánaðarlegur endurtekinn kostnaður, mánaðarlegur hreinn hagnaður, virkir viðskiptavinir, heildarvirði samnings, breyting á mánaðarlegum endurteknum tekjum - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Greining á uppsögnum - table [Localized Labels] measure [Churn Analysis] - - - Meðaltími mán. uppsagna % eftir ári og mánuði - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Þjónustuhlutur - table [table.Name] - - - Nr. þjónustuhlutar - table [Subscription] column [Subscription No.] - - - Sendingarkóði - table [Subscription] column [Package Code] - - - Afsláttur þjónustuhluta - table [Subscription] column [Subscription Desc.] - - - Greiningardagsetning - table [Subscription] column [Analysis Date] - - - Afsláttur áskriftarnr. - table [Subscription] column [Subscription No. Desc.] - - - Frestanir lánardrottnasamnings - table [table.Name] - - - Gerð skjals - table [Vendor Contract Deferrals] column [Document Type] - - - Nr. skjals - table [Vendor Contract Deferrals] column [Document No.] - - - Bókunardagsetning - table [Vendor Contract Deferrals] column [Posting Date] - - - Bókunardagur skjals - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Losa bókunardagsetningu - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Fjárhagsbókarfærslunr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Afsláttur - table [Vendor Contract Deferrals] column [Discount] - - - Línunr. fylgiskjals - table [Vendor Contract Deferrals] column [Document Line No.] - - - Samningslína viðskiptavinar - table [table.Name] - - - Ráðstöfunarlínunr. - table [Customer Contract Line] column [Subscription Line No.] - - - Sniðmát - table [Customer Contract Line] column [Template] - - - Afsláttur samningslýsingar viðskiptavinar - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Upphafsdagur þjónustu - table [Customer Contract Line] column [Subscription Start Date] - - - Lokadagsetning þjónustu - table [Customer Contract Line] column [Subscription End Date] - - - Næsta greiðsludagsetning - table [Customer Contract Line] column [Next Billing Date] - - - Grunntímabil innheimtu - table [Customer Contract Line] column [Billing Base Period] - - - Vörunr. reikningsfærslu - table [Customer Contract Line] column [Invoicing Item No.] - - - Samningslínunr. viðskiptavinar - table [Customer Contract Line] column [Customer Contract Line No.] - - - Uppsagnarfrestur - table [Customer Contract Line] column [Notice Period] - - - Fyrsta tímabil - table [Customer Contract Line] column [Initial Term] - - - Skilmálar viðbótar - table [Customer Contract Line] column [Extension Term] - - - Innheimtutíðni - table [Customer Contract Line] column [Billing Rhythm] - - - Afbókun möguleg til - table [Customer Contract Line] column [Cancellation Possible Until] - - - Liður til - table [Customer Contract Line] column [Term Until] - - - Endurnýjunartímabil - table [Customer Contract Line] column [Renewal Term] - - - Lína virk - table [Customer Contract Line] column [Line Active] - - - Eftirstandandi skilmálar - table [Customer Contract Line] column [Remaining Term] - - - Mánuðir innheimtutíðni - table [Customer Contract Line] column [Billing Rhythm Months] - - - Samningsnr. viðskiptavinar - table [Customer Contract Line] column [Customer Contract No.] - - - Er greitt samkvæmt notkun - table [Customer Contract Line] column [Is Usage Based Billing] - - - Upprunagerð - table [Customer Contract Line] column [Source Type] - - - Upprunanúmer - table [Customer Contract Line] column [Source No.] - - - Lánardrottnasamningslína - table [table.Name] - - - Ráðstöfunarlínunr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Sniðmát - table [Vendor Contract Line] column [Template] - - - Afsláttur lánardrottnasamningslínu - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Upphafsdagur þjónustu - table [Vendor Contract Line] column [Subscription Start Date] - - - Lokadagsetning þjónustu - table [Vendor Contract Line] column [Subscription End Date] - - - Næsta greiðsludagsetning - table [Vendor Contract Line] column [Next Billing Date] - - - Nr. lánardrottnasamningslínu - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Uppsagnarfrestur - table [Vendor Contract Line] column [Notice Period] - - - Fyrsta tímabil - table [Vendor Contract Line] column [Initial Term] - - - Skilmálar viðbótar - table [Vendor Contract Line] column [Extension Term] - - - Innheimtutíðni - table [Vendor Contract Line] column [Billing Rhythm] - - - Afbókun möguleg til - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Liður til - table [Vendor Contract Line] column [Term Until] - - - Endurnýjunartímabil - table [Vendor Contract Line] column [Renewal Term] - - - Lína virk - table [Vendor Contract Line] column [Line Active] - - - Eftirstandandi skilmálar - table [Vendor Contract Line] column [Remaining Term] - - - Mánuðir innheimtutíðni - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Nr. lánardrottinssamnings - table [Vendor Contract Line] column [Vendor Contract No.] - - - Er nýjasta útgáfa - table [Vendor Contract Line] column [Is Latest Version] - - - Er greitt samkvæmt notkun - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Upprunagerð - table [Vendor Contract Line] column [Source Type] - - - Upprunanúmer - table [Vendor Contract Line] column [Source No.] - - - Samningsfrestanir viðskiptavinar - table [table.Name] - - - Gerð skjals - table [Customer Contract Deferrals] column [Document Type] - - - Nr. skjals - table [Customer Contract Deferrals] column [Document No.] - - - Bókunardagsetning - table [Customer Contract Deferrals] column [Posting Date] - - - Línunr. fylgiskjals - table [Customer Contract Deferrals] column [Document Line No.] - - - Bókunardagur skjals - table [Customer Contract Deferrals] column [Document Posting Date] - - - Losa bókunardagsetningu - table [Customer Contract Deferrals] column [Release Posting Date] - - - Fjárhagsbókarfærslunr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Samningur viðskiptamanns - table [table.Name] - - - Samningsnr. viðskiptavinar - table [Customer Contract] column [Customer Contract No.] - - - Gerð samnings viðskiptavinar - table [Customer Contract] column [Customer Contract Type] - - - Lýsing á samningi viðskiptavinar - table [Customer Contract] column [Customer Contract Description] - - - Afsláttarnr. samnings viðskiptavinar - table [Customer Contract] column [Customer Contract No. Desc.] - - - Lánardrottnasamningur - table [table.Name] - - - Nr. lánardrottinssamnings - table [Vendor Contract] column [Vendor Contract No.] - - - Gerð lánardrottnasamnings - table [Vendor Contract] column [Vendor Contract Type] - - - Lýsing lánardrottnasamnings - table [Vendor Contract] column [Vendor Contract Description] - - - Afsláttarnr. lánardrottinssamnings - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Meðhöndlun innheimtu byggðri á notkun - table [table.Name] - - - Meðhöndla innheimtu byggða á notkun sem fasta - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Er losað - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Vara - table [table.Name] - - - Vörunr. - table [Item] column [Item No.] - - - Vöruheiti - table [Item] column [Item Name] - - - Birgðabókunarflokkur - table [Item] column [Inventory Posting Group] - - - Grunnmælieining - table [Item] column [Base Unit of Measure] - - - Vörunr. og lýsing - table [Item] column [Item No. & Description] - - - Greiningardagsetning - table [table.Name] - - - Er upprunaleg útgáfa - table [Analysis Date] column [Is Initial Version] - - - Er núverandi útgáfa - table [Analysis Date] column [Is Current Version] - - - Útreikningshópur - Tímagreind dagatals (fjárhagur) - table [table.Name] - - - Sjónarhorn - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Subscription Billing afkastavísar - table [table.Name] - - - Mánaðarlegar endurteknar tekjur - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - Mánaðarlegur endurtekinn kostnaður - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Frestanir viðskiptamanns - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Frestun lánardrottins - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ÁBMKR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - Heildarvirði samnings - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Spársala - table [Subscription Billing KPIs] measure [Forecast Sales] - - - Mánaðarlegur endurtekinn kostnaður fyrra ár - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - Mánaðarlegur endurtekinn kostnaður Δ samanborið við fyrra ár - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Mán. uppsagnir endurtekinna tekna - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - Mánaðarlegar endurteknar tekjur fyrra ár - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Mán. endurteknar nýjar tekjur - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Mán. endurteknar tekjur Δ sbr. fyrra ár - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - Nýjar mánaðarlega endurteknar tekjur - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - Nýjar mánaðarlega endurteknar tekjur % af mánaðarlegum endurteknum tekjum - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - Nýjar mánaðarlega endurteknar tekjur fyrra ár - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - Nýjar mánaðarlega endurteknar tekjur Δ samanborið við fyrra ár - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Mánaðarlegar endurteknar tekjur heildarbreyting - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - Heildarvirði samnings fyrra ár - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - Heildarvirði samnings Δ samanborið við fyrra ár - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Síðast uppfærðu greiningarfærslur - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Síðasta uppfærsla á merkingarlíkani - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Umhverfisbreytur - table [Subscription Billing KPIs] measure [Param Environment] - - - Param fyrirtæki - table [Subscription Billing KPIs] measure [Param Company] - - - Mán. endurteknar uppfærslur tekna - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Mán. endurteknar tekjubreytingar innheimtu byggðri á notkun - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Skýrslugjaldmiðill - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Virkir viðskiptavinir - table [Subscription Billing KPIs] measure [Active Customers] - - - Virkir viðskiptavinir fyrra ár - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Virkir viðskiptavinir Δ sbr. fyrra ár - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Innheimtuspá viðskiptavinar - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Spá um greiðslur lánardrottins - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Kostnaðarspár - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Mán. endurtekin niðurfærsla tekna - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Valið dagabil - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Meðaltími mán. uppsagna % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Mán. meðalt. niðurfærsla % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Mán. niðurfærslur og uppsagnir endurtekinna tekna - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Sölumaður - table [table.Name] - - - Kóði sölumanns - table [Salesperson] column [Salesperson Code] - - - Nafn sölumanns - table [Salesperson] column [Salesperson Name] - - - Breytingar á samningi viðskiptavinar - table [table.Name] - - - Línulykill samnings viðskiptavinar - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Dagsetning - table [Customer Contract Changes] column [Date] - - - Breyta tegund - table [Customer Contract Changes] column [Change Type] - - - Mánaðarlegar endurteknar tekjur Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-CH.resx deleted file mode 100644 index 79ee22bc7c..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-CH.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Set di dimensioni - table [table.Name] - - - Dimensione globale 1 - table [Dimension Sets] column [Global Dimension 1] - - - Dimensione globale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Collegamento dimensione 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Collegamento dimensione 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Collegamento dimensione 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Collegamento dimensione 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Collegamento dimensione 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Collegamento dimensione 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fornitori - table [table.Name] - - - Nr. fornitore - table [Vendors] column [Vendor No.] - - - Nome fornitore - table [Vendors] column [Vendor Name] - - - Indirizzo - table [Vendors] column [Address] - - - Indirizzo 2 - table [Vendors] column [Address 2] - - - Città - table [Vendors] column [City] - - - NPA - table [Vendors] column [Post Code] - - - Stato - table [Vendors] column [State] - - - Codice paese/area geografica - table [Vendors] column [Country/Region Code] - - - Categoria registrazione fornitore - table [Vendors] column [Vendor Posting Group] - - - Nome e nr. fornitore - table [Vendors] column [Vendor No. & Name] - - - Clienti - table [table.Name] - - - Nr. cliente - table [Customers] column [Customer No.] - - - Nome cliente - table [Customers] column [Customer Name] - - - Indirizzo - table [Customers] column [Address] - - - Indirizzo 2 - table [Customers] column [Address 2] - - - Città - table [Customers] column [City] - - - NPA - table [Customers] column [Post Code] - - - Stato - table [Customers] column [State] - - - Codice paese/area geografica - table [Customers] column [Country/Region Code] - - - Categoria registrazione cliente - table [Customers] column [Customer Posting Group] - - - Gruppo prezzi cliente - table [Customers] column [Customer Price Group] - - - Categoria sconto cliente - table [Customers] column [Customer Discount Group] - - - Nr. e nome cliente - table [Customers] column [Customer No. & Name] - - - Data - table [table.Name] - - - Giorno della settimana - table [Date] column [Week Day] - - - Tipo di giorno - table [Date] column [Day Type] - - - Anno di calendario - table [Date] column [Calendar Year] - - - - Trimestre di calendario - table [Date] column [Calendar Quarter] - - - Trimestre anno di calendario - table [Date] column [Calendar Quarter Year] - - - Mese di calendario - table [Date] column [Calendar Month] - - - Mese anno di calendario - table [Date] column [Calendar Month Year] - - - Settimana di calendario - table [Date] column [Calendar Week] - - - Settimana anno di calendario - table [Date] column [Calendar Week Year] - - - PosSettimanaRelativa di calendario - table [Date] column [Calendar RelativeWeekPos] - - - PosMeseRelativo di calendario - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativo di calendario - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnoRelativo di calendario - table [Date] column [Calendar RelativeYearPos] - - - PrimoGiornoMese di calendario - table [Date] column [Calendar StartOfMonth] - - - UltimoGiornoMese di calendario - table [Date] column [Calendar EndOfMonth] - - - PrimoGiornoTrimestre di calendario - table [Date] column [Calendar StartOfQuarter] - - - UltimoGiornoTrimestre di calendario - table [Date] column [Calendar EndOfQuarter] - - - PrimoGiornoAnno di calendario - table [Date] column [Calendar StartOfYear] - - - UltimoGiornoAnno di calendario - table [Date] column [Calendar EndOfYear] - - - GiorniMese di calendario - table [Date] column [Calendar MonthDays] - - - GiorniTrimestre di calendario - table [Date] column [Calendar QuarterDays] - - - GiorniAnno di calendario - table [Date] column [Calendar YearDays] - - - NumeroGiornoMese di calendario - table [Date] column [Calendar DayOfMonthNumber] - - - NumeroGiornoTrimestre di calendario - table [Date] column [Calendar DayOfQuarterNumber] - - - NumeroGiornoAnno di calendario - table [Date] column [Calendar DayOfYearNumber] - - - DataSettimanaPrecedente di calendario - table [Date] column [Calendar DatePreviousWeek] - - - DataMesePrecedente di calendario - table [Date] column [Calendar DatePreviousMonth] - - - DataTrimestrePrecedente di calendario - table [Date] column [Calendar DatePreviousQuarter] - - - DataAnnoPrecedente di calendario - table [Date] column [Calendar DatePreviousYear] - - - Anno fiscale - table [Date] column [Fiscal Year] - - - Trimestre fiscale - table [Date] column [Fiscal Quarter] - - - Trimestre anno fiscale - table [Date] column [Fiscal Quarter Year] - - - Mese fiscale - table [Date] column [Fiscal Month] - - - Mese anno fiscale - table [Date] column [Fiscal Month Year] - - - Settimana fiscale - table [Date] column [Fiscal Week] - - - Settimana anno fiscale - table [Date] column [Fiscal Week Year] - - - PosSettimanaRelativa fiscale - table [Date] column [Fiscal RelativeWeekPos] - - - PosMeseRelativo fiscale - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativo fiscale - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnoRelativo fiscale - table [Date] column [Fiscal RelativeYearPos] - - - PrimoGiornoMese fiscale - table [Date] column [Fiscal StartOfMonth] - - - UltimoGiornoMese fiscale - table [Date] column [Fiscal EndOfMonth] - - - PrimoGiornoTrimestre fiscale - table [Date] column [Fiscal StartOfQuarter] - - - UltimoGiornoTrimestre fiscale - table [Date] column [Fiscal EndOfQuarter] - - - PrimoGiornoAnno fiscale - table [Date] column [Fiscal StartOfYear] - - - UltimoGiornoAnno fiscale - table [Date] column [Fiscal EndOfYear] - - - GiorniMese fiscale - table [Date] column [Fiscal MonthDays] - - - GiorniTrimestre fiscale - table [Date] column [Fiscal QuarterDays] - - - GiorniAnno fiscale - table [Date] column [Fiscal YearDays] - - - NumeroGiornoMese fiscale - table [Date] column [Fiscal DayOfMonthNumber] - - - NumeroGiornoTrimestre fiscale - table [Date] column [Fiscal DayOfQuarterNumber] - - - NumeroGiornoAnno fiscale - table [Date] column [Fiscal DayOfYearNumber] - - - DataSettimanaPrecedente fiscale - table [Date] column [Fiscal DatePreviousWeek] - - - DataMesePrecedente fiscale - table [Date] column [Fiscal DatePreviousMonth] - - - DataTrimestrePrecedente fiscale - table [Date] column [Fiscal DatePreviousQuarter] - - - DataAnnoPrecedente fiscale - table [Date] column [Fiscal DatePreviousYear] - - - Anno SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre anno SF - table [Date] column [FW Quarter Year] - - - Mese SF - table [Date] column [FW Month] - - - Mese anno SF - table [Date] column [FW Month Year] - - - Settimana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Settimana anno SF - table [Date] column [FW Week Year] - - - PrimoGiornoSettimana SF - table [Date] column [FW StartOfWeek] - - - UltimoGiornoSettimana SF - table [Date] column [FW EndOfWeek] - - - PosSettimanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMeseRelativo SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativo SF - table [Date] column [FW RelativeQuarterPos] - - - PosAnnoRelativo SF - table [Date] column [FW RelativeYearPos] - - - PrimoGiornoMese SF - table [Date] column [FW StartOfMonth] - - - UltimoGiornoMese SF - table [Date] column [FW EndOfMonth] - - - PrimoGiornoTrimestre SF - table [Date] column [FW StartOfQuarter] - - - UltimoGiornoTrimestre SF - table [Date] column [FW EndOfQuarter] - - - PrimoGiornoAnno SF - table [Date] column [FW StartOfYear] - - - UltimoGiornoAnno SF - table [Date] column [FW EndOfYear] - - - GiorniMese SF - table [Date] column [FW MonthDays] - - - GiorniTrimestre SF - table [Date] column [FW QuarterDays] - - - GiorniAnno SF - table [Date] column [FW YearDays] - - - NumeroGiornoMese SF - table [Date] column [FW DayOfMonthNumber] - - - NumeroGiornoTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NumeroGiornoAnno SF - table [Date] column [FW DayOfYearNumber] - - - DataSettimanaPrecedente SF - table [Date] column [FW DatePreviousWeek] - - - DataMesePrecedente SF - table [Date] column [FW DatePreviousMonth] - - - DataTrimestrePrecedente SF - table [Date] column [FW DatePreviousQuarter] - - - DataAnnoPrecedente SF - table [Date] column [FW DatePreviousYear] - - - Giorno relativo - table [Date] column [Relative Day] - - - NumeroGiorno sequenziale da 1 a 365 - table [Date] column [Sequential365DayNumber] - - - Differimenti intervallo dati - table [Date] column [Data Range Deferrals] - - - Nr. di giorni - table [Date] measure [No. of Days] - - - Anno-Trimestre-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Anno-Trimestre-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Anno-Trimestre-Mese-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Anno-Mese fiscale - table [Date] hierarchy [Fiscal Year-Month] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Anno-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Anno-Mese di calendario - table [Date] hierarchy [Calendar Year-Month] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Anno-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Anno-Mese-Settimana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Anno-Trimestre-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Anno-Settimana SF - table [Date] hierarchy [FW Year-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNETTI I DATI - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Scaricare Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurare Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USA, MODIFICA E CREA I TUOI REPORT - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - GUIDA E SUPPORTO - table [Localized Labels] measure [HELP AND SUPPORT] - - - Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - per Business Central - table [Localized Labels] measure [for Business Central] - - - Ultimo aggiornamento - table [Localized Labels] measure [Last Refreshed] - - - Nome società - table [Localized Labels] measure [Company Name] - - - Movimenti analisi a partire da - table [Localized Labels] measure [Analysis Entries as of] - - - Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Previsione fatturazione per anno e mese di calendario - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Programmazione fatturazione - table [Localized Labels] measure [Billing Schedule] - - - Modifica dei ricavi periodici mensili per anno e mese - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Intervallo di date corrente: - table [Localized Labels] measure [Current Date Range:] - - - Differimenti contratto del cliente - table [Localized Labels] measure [Customer Contract Deferrals] - - - Righe contratto del cliente - table [Localized Labels] measure [Customer Contract Lines] - - - Differimenti cliente - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analisi ricavi periodici mensili - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Ricavi periodici mensili per cliente - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Ricavi periodici mensili per venditore - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Ricavi periodici mensili per anno e mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Ricavi periodici mensili per articolo - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Ricavi periodici mensili per categoria articolo - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Abbandono e downgrade ricavi periodici mensili per contratto cliente - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Novità e aggiornamento ricavi periodici mensili per contratto cliente - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Previsioni mensili di ricavi e costi per anno e mese di calendario - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Importo rilasciato e differito per anno e mese di calendario - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analisi ricavi - table [Localized Labels] measure [Revenue Analysis] - - - Ricavi per cliente - table [Localized Labels] measure [Revenue by Customer] - - - Ricavi per articolo - table [Localized Labels] measure [Revenue by Item] - - - Ricavi per venditore - table [Localized Labels] measure [Revenue by Salesperson] - - - Sviluppo ricavi - table [Localized Labels] measure [Revenue Development] - - - Previsione ricavi - table [Localized Labels] measure [Sales and Cost Forecast] - - - Crescita ricavi anno su anno - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analisi Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Panoramica di Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Primi 5 clienti per ricavi periodici mensili - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Primi 5 fornitori per costo periodico mensile - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analisi valore totale del contratto - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valore totale dei contratti e valore totale dei contratti PY per mese di calendario - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valore totale del contratto e crescita anno su anno per anno e mese di calendario - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valore totale del contratto per anno e mese di calendario - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Crescita anno su anno del valore totale dei contratti - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Differimenti contratto del fornitore - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Differimenti fornitore - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Pulsante Indietro - table [Localized Labels] measure [Back button] - - - Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analisi abbandono - table [Localized Labels] measure [Churn Analysis] - - - % tasso medio di abbandono mensile per anno e mese - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Oggetto di assistenza - table [table.Name] - - - Nr. oggetto di assistenza - table [Subscription] column [Subscription No.] - - - Codice pacchetto - table [Subscription] column [Package Code] - - - Descrizione oggetto di assistenza - table [Subscription] column [Subscription Desc.] - - - Data di analisi - table [Subscription] column [Analysis Date] - - - Descrizione nr. sottoscrizione - table [Subscription] column [Subscription No. Desc.] - - - Differimenti contratto del fornitore - table [table.Name] - - - Tipo di documento - table [Vendor Contract Deferrals] column [Document Type] - - - Nr. documento - table [Vendor Contract Deferrals] column [Document No.] - - - Data di registrazione - table [Vendor Contract Deferrals] column [Posting Date] - - - Data di registrazione documento - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Data di registrazione rilascio - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Nr. movimento C/G - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Sconto - table [Vendor Contract Deferrals] column [Discount] - - - Nr. riga documento - table [Vendor Contract Deferrals] column [Document Line No.] - - - Riga contratto del cliente - table [table.Name] - - - Nr. riga impegno - table [Customer Contract Line] column [Subscription Line No.] - - - Modello - table [Customer Contract Line] column [Template] - - - Descrizione riga contratto del cliente - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Data di inizio assistenza - table [Customer Contract Line] column [Subscription Start Date] - - - Data di fine assistenza - table [Customer Contract Line] column [Subscription End Date] - - - Data fatturazione successiva - table [Customer Contract Line] column [Next Billing Date] - - - Periodo di base di fatturazione - table [Customer Contract Line] column [Billing Base Period] - - - Nr. articolo fatturazione - table [Customer Contract Line] column [Invoicing Item No.] - - - Nr. riga contratto del cliente - table [Customer Contract Line] column [Customer Contract Line No.] - - - Periodo di avviso - table [Customer Contract Line] column [Notice Period] - - - Periodo iniziale - table [Customer Contract Line] column [Initial Term] - - - Periodo di estensione - table [Customer Contract Line] column [Extension Term] - - - Ritmo di fatturazione - table [Customer Contract Line] column [Billing Rhythm] - - - Annullamento possibile fino alla data - table [Customer Contract Line] column [Cancellation Possible Until] - - - Periodo fino alla data - table [Customer Contract Line] column [Term Until] - - - Termine di rinnovo - table [Customer Contract Line] column [Renewal Term] - - - Attività riga - table [Customer Contract Line] column [Line Active] - - - Periodo rimanente - table [Customer Contract Line] column [Remaining Term] - - - Mesi frequenza fatturazione - table [Customer Contract Line] column [Billing Rhythm Months] - - - Nr. contratto del cliente - table [Customer Contract Line] column [Customer Contract No.] - - - Fatturazione basata sull'utilizzo - table [Customer Contract Line] column [Is Usage Based Billing] - - - Tipo di origine - table [Customer Contract Line] column [Source Type] - - - Nr. origine - table [Customer Contract Line] column [Source No.] - - - Riga contratto del fornitore - table [table.Name] - - - Nr. riga impegno - table [Vendor Contract Line] column [Subscription Line No.] - - - Modello - table [Vendor Contract Line] column [Template] - - - Descrizione riga contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Data di inizio assistenza - table [Vendor Contract Line] column [Subscription Start Date] - - - Data di fine assistenza - table [Vendor Contract Line] column [Subscription End Date] - - - Data fatturazione successiva - table [Vendor Contract Line] column [Next Billing Date] - - - Nr. riga contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Periodo di avviso - table [Vendor Contract Line] column [Notice Period] - - - Periodo iniziale - table [Vendor Contract Line] column [Initial Term] - - - Periodo di estensione - table [Vendor Contract Line] column [Extension Term] - - - Ritmo di fatturazione - table [Vendor Contract Line] column [Billing Rhythm] - - - Annullamento possibile fino alla data - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Periodo fino alla data - table [Vendor Contract Line] column [Term Until] - - - Termine di rinnovo - table [Vendor Contract Line] column [Renewal Term] - - - Attività riga - table [Vendor Contract Line] column [Line Active] - - - Periodo rimanente - table [Vendor Contract Line] column [Remaining Term] - - - Mesi frequenza fatturazione - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Nr. contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract No.] - - - Ultima versione - table [Vendor Contract Line] column [Is Latest Version] - - - Fatturazione basata sull'utilizzo - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Tipo di origine - table [Vendor Contract Line] column [Source Type] - - - Nr. origine - table [Vendor Contract Line] column [Source No.] - - - Differimenti contratto del cliente - table [table.Name] - - - Tipo di documento - table [Customer Contract Deferrals] column [Document Type] - - - Nr. documento - table [Customer Contract Deferrals] column [Document No.] - - - Data di registrazione - table [Customer Contract Deferrals] column [Posting Date] - - - Nr. riga documento - table [Customer Contract Deferrals] column [Document Line No.] - - - Data di registrazione documento - table [Customer Contract Deferrals] column [Document Posting Date] - - - Data di registrazione rilascio - table [Customer Contract Deferrals] column [Release Posting Date] - - - Nr. movimento C/G - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contratto del cliente - table [table.Name] - - - Nr. contratto del cliente - table [Customer Contract] column [Customer Contract No.] - - - Tipo di contratto del cliente - table [Customer Contract] column [Customer Contract Type] - - - Descrizione contratto del cliente - table [Customer Contract] column [Customer Contract Description] - - - Descrizione nr. contratto del cliente - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contratto del fornitore - table [table.Name] - - - Nr. contratto del fornitore - table [Vendor Contract] column [Vendor Contract No.] - - - Tipo di contratto del fornitore - table [Vendor Contract] column [Vendor Contract Type] - - - Descrizione contratto del fornitore - table [Vendor Contract] column [Vendor Contract Description] - - - Descrizione nr. contratto del fornitore - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Movimentazione UBB - table [table.Name] - - - Considera UBB come costante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Rilasciato - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Articolo - table [table.Name] - - - Nr. articolo - table [Item] column [Item No.] - - - Nome articolo - table [Item] column [Item Name] - - - Categoria registrazione inventario - table [Item] column [Inventory Posting Group] - - - Unità di misura di base - table [Item] column [Base Unit of Measure] - - - Nr. e descrizione articolo - table [Item] column [Item No. & Description] - - - Data di analisi - table [table.Name] - - - Versione iniziale - table [Analysis Date] column [Is Initial Version] - - - Versione corrente - table [Analysis Date] column [Is Current Version] - - - Gruppo calcolato - Funzionalità di Business Intelligence per le gerarchie temporali per calendario (fiscale) - table [table.Name] - - - Prospettiva - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Differimenti cliente - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Differimenti fornitore - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Vendite previste - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - Δ MRC rispetto a PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Abbandono ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nuovi ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Δ analisi ricavi periodici mensili rispetto PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NMRP di MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - Δ NMRP rispetto a PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Variazione complessiva MRR - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - Δ TCV rispetto a PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Ultimo aggiornamento movimenti analisi - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Ultimo aggiornamento modello semantico - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parametri ambiente - table [Subscription Billing KPIs] measure [Param Environment] - - - Parametri società - table [Subscription Billing KPIs] measure [Param Company] - - - Aggiornamento ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - UBB variazione ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Valuta di dichiarazione - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clienti attivi - table [Subscription Billing KPIs] measure [Active Customers] - - - Clienti attivi PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Δ clienti attivi rispetto a PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Previsione fatturazione cliente - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Previsione fatturazione fornitore - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Costi previsione - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Downgrade ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Intervallo di date selezionato - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % tasso medio di abbandono mensile - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % tasso medio di downgrade mensile - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Downgrade e abbandono ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Venditore - table [table.Name] - - - Codice venditore - table [Salesperson] column [Salesperson Code] - - - Nome venditore - table [Salesperson] column [Salesperson Name] - - - Modifiche contratto del cliente - table [table.Name] - - - Chiave riga contratto del cliente - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Data - table [Customer Contract Changes] column [Date] - - - Tipo di modifica - table [Customer Contract Changes] column [Change Type] - - - Delta MRR - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-IT.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-IT.resx deleted file mode 100644 index 58bd26eaea..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.it-IT.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Set di dimensioni - table [table.Name] - - - Dimensione globale 1 - table [Dimension Sets] column [Global Dimension 1] - - - Dimensione globale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Collegamento dimensione 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Collegamento dimensione 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Collegamento dimensione 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Collegamento dimensione 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Collegamento dimensione 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Collegamento dimensione 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Fornitori - table [table.Name] - - - Nr. fornitore - table [Vendors] column [Vendor No.] - - - Nome fornitore - table [Vendors] column [Vendor Name] - - - Indirizzo - table [Vendors] column [Address] - - - Indirizzo 2 - table [Vendors] column [Address 2] - - - Città - table [Vendors] column [City] - - - Codice postale - table [Vendors] column [Post Code] - - - Stato - table [Vendors] column [State] - - - Codice paese/area geografica - table [Vendors] column [Country/Region Code] - - - Categoria registrazione fornitore - table [Vendors] column [Vendor Posting Group] - - - Nome e nr. fornitore - table [Vendors] column [Vendor No. & Name] - - - Clienti - table [table.Name] - - - Nr. cliente - table [Customers] column [Customer No.] - - - Nome cliente - table [Customers] column [Customer Name] - - - Indirizzo - table [Customers] column [Address] - - - Indirizzo 2 - table [Customers] column [Address 2] - - - Città - table [Customers] column [City] - - - Codice postale - table [Customers] column [Post Code] - - - Stato - table [Customers] column [State] - - - Codice paese/area geografica - table [Customers] column [Country/Region Code] - - - Categoria registrazione cliente - table [Customers] column [Customer Posting Group] - - - Gruppo prezzi cliente - table [Customers] column [Customer Price Group] - - - Categoria sconto cliente - table [Customers] column [Customer Discount Group] - - - Nr. e nome cliente - table [Customers] column [Customer No. & Name] - - - Data - table [table.Name] - - - Giorno della settimana - table [Date] column [Week Day] - - - Tipo di giorno - table [Date] column [Day Type] - - - Anno di calendario - table [Date] column [Calendar Year] - - - - Trimestre di calendario - table [Date] column [Calendar Quarter] - - - Trimestre anno di calendario - table [Date] column [Calendar Quarter Year] - - - Mese di calendario - table [Date] column [Calendar Month] - - - Mese anno di calendario - table [Date] column [Calendar Month Year] - - - Settimana di calendario - table [Date] column [Calendar Week] - - - Settimana anno di calendario - table [Date] column [Calendar Week Year] - - - PosSettimanaRelativa di calendario - table [Date] column [Calendar RelativeWeekPos] - - - PosMeseRelativo di calendario - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativo di calendario - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnoRelativo di calendario - table [Date] column [Calendar RelativeYearPos] - - - PrimoGiornoMese di calendario - table [Date] column [Calendar StartOfMonth] - - - UltimoGiornoMese di calendario - table [Date] column [Calendar EndOfMonth] - - - PrimoGiornoTrimestre di calendario - table [Date] column [Calendar StartOfQuarter] - - - UltimoGiornoTrimestre di calendario - table [Date] column [Calendar EndOfQuarter] - - - PrimoGiornoAnno di calendario - table [Date] column [Calendar StartOfYear] - - - UltimoGiornoAnno di calendario - table [Date] column [Calendar EndOfYear] - - - GiorniMese di calendario - table [Date] column [Calendar MonthDays] - - - GiorniTrimestre di calendario - table [Date] column [Calendar QuarterDays] - - - GiorniAnno di calendario - table [Date] column [Calendar YearDays] - - - NumeroGiornoMese di calendario - table [Date] column [Calendar DayOfMonthNumber] - - - NumeroGiornoTrimestre di calendario - table [Date] column [Calendar DayOfQuarterNumber] - - - NumeroGiornoAnno di calendario - table [Date] column [Calendar DayOfYearNumber] - - - DataSettimanaPrecedente di calendario - table [Date] column [Calendar DatePreviousWeek] - - - DataMesePrecedente di calendario - table [Date] column [Calendar DatePreviousMonth] - - - DataTrimestrePrecedente di calendario - table [Date] column [Calendar DatePreviousQuarter] - - - DataAnnoPrecedente di calendario - table [Date] column [Calendar DatePreviousYear] - - - Anno fiscale - table [Date] column [Fiscal Year] - - - Trimestre fiscale - table [Date] column [Fiscal Quarter] - - - Trimestre anno fiscale - table [Date] column [Fiscal Quarter Year] - - - Mese fiscale - table [Date] column [Fiscal Month] - - - Mese anno fiscale - table [Date] column [Fiscal Month Year] - - - Settimana fiscale - table [Date] column [Fiscal Week] - - - Settimana anno fiscale - table [Date] column [Fiscal Week Year] - - - PosSettimanaRelativa fiscale - table [Date] column [Fiscal RelativeWeekPos] - - - PosMeseRelativo fiscale - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativo fiscale - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnoRelativo fiscale - table [Date] column [Fiscal RelativeYearPos] - - - PrimoGiornoMese fiscale - table [Date] column [Fiscal StartOfMonth] - - - UltimoGiornoMese fiscale - table [Date] column [Fiscal EndOfMonth] - - - PrimoGiornoTrimestre fiscale - table [Date] column [Fiscal StartOfQuarter] - - - UltimoGiornoTrimestre fiscale - table [Date] column [Fiscal EndOfQuarter] - - - PrimoGiornoAnno fiscale - table [Date] column [Fiscal StartOfYear] - - - UltimoGiornoAnno fiscale - table [Date] column [Fiscal EndOfYear] - - - GiorniMese fiscale - table [Date] column [Fiscal MonthDays] - - - GiorniTrimestre fiscale - table [Date] column [Fiscal QuarterDays] - - - GiorniAnno fiscale - table [Date] column [Fiscal YearDays] - - - NumeroGiornoMese fiscale - table [Date] column [Fiscal DayOfMonthNumber] - - - NumeroGiornoTrimestre fiscale - table [Date] column [Fiscal DayOfQuarterNumber] - - - NumeroGiornoAnno fiscale - table [Date] column [Fiscal DayOfYearNumber] - - - DataSettimanaPrecedente fiscale - table [Date] column [Fiscal DatePreviousWeek] - - - DataMesePrecedente fiscale - table [Date] column [Fiscal DatePreviousMonth] - - - DataTrimestrePrecedente fiscale - table [Date] column [Fiscal DatePreviousQuarter] - - - DataAnnoPrecedente fiscale - table [Date] column [Fiscal DatePreviousYear] - - - Anno SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre anno SF - table [Date] column [FW Quarter Year] - - - Mese SF - table [Date] column [FW Month] - - - Mese anno SF - table [Date] column [FW Month Year] - - - Settimana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Settimana anno SF - table [Date] column [FW Week Year] - - - PrimoGiornoSettimana SF - table [Date] column [FW StartOfWeek] - - - UltimoGiornoSettimana SF - table [Date] column [FW EndOfWeek] - - - PosSettimanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMeseRelativo SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativo SF - table [Date] column [FW RelativeQuarterPos] - - - PosAnnoRelativo SF - table [Date] column [FW RelativeYearPos] - - - PrimoGiornoMese SF - table [Date] column [FW StartOfMonth] - - - UltimoGiornoMese SF - table [Date] column [FW EndOfMonth] - - - PrimoGiornoTrimestre SF - table [Date] column [FW StartOfQuarter] - - - UltimoGiornoTrimestre SF - table [Date] column [FW EndOfQuarter] - - - PrimoGiornoAnno SF - table [Date] column [FW StartOfYear] - - - UltimoGiornoAnno SF - table [Date] column [FW EndOfYear] - - - GiorniMese SF - table [Date] column [FW MonthDays] - - - GiorniTrimestre SF - table [Date] column [FW QuarterDays] - - - GiorniAnno SF - table [Date] column [FW YearDays] - - - NumeroGiornoMese SF - table [Date] column [FW DayOfMonthNumber] - - - NumeroGiornoTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NumeroGiornoAnno SF - table [Date] column [FW DayOfYearNumber] - - - DataSettimanaPrecedente SF - table [Date] column [FW DatePreviousWeek] - - - DataMesePrecedente SF - table [Date] column [FW DatePreviousMonth] - - - DataTrimestrePrecedente SF - table [Date] column [FW DatePreviousQuarter] - - - DataAnnoPrecedente SF - table [Date] column [FW DatePreviousYear] - - - Giorno relativo - table [Date] column [Relative Day] - - - NumeroGiorno sequenziale da 1 a 365 - table [Date] column [Sequential365DayNumber] - - - Differimenti intervallo dati - table [Date] column [Data Range Deferrals] - - - Nr. di giorni - table [Date] measure [No. of Days] - - - Anno-Trimestre-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Anno-Trimestre-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Anno-Trimestre-Mese-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Anno-Mese fiscale - table [Date] hierarchy [Fiscal Year-Month] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Anno-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Anno-Mese di calendario - table [Date] hierarchy [Calendar Year-Month] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Anno-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Anno-Mese-Settimana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Anno-Trimestre-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Anno-Settimana SF - table [Date] hierarchy [FW Year-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - CONNETTI I DATI - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Scaricare Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Configurare Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - USA, MODIFICA E CREA I TUOI REPORT - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - I dati finanziari includono una serie di report predefiniti che consentono di visualizzare immediatamente i dati. È possibile modificare questi report o creare il proprio report da zero. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - GUIDA E SUPPORTO - table [Localized Labels] measure [HELP AND SUPPORT] - - - Per assistenza e supporto per il nuovo report, vedere la documentazione generale di analisi. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - per Business Central - table [Localized Labels] measure [for Business Central] - - - Ultimo aggiornamento - table [Localized Labels] measure [Last Refreshed] - - - Nome società - table [Localized Labels] measure [Company Name] - - - Movimenti analisi a partire da - table [Localized Labels] measure [Analysis Entries as of] - - - Previsione di fatturazione per periodo di fatturazione, cliente e nr. contratto - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Previsione fatturazione per anno e mese di calendario - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Programmazione fatturazione - table [Localized Labels] measure [Billing Schedule] - - - Modifica dei ricavi periodici mensili per anno e mese - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Intervallo di date corrente: - table [Localized Labels] measure [Current Date Range:] - - - Differimenti contratto del cliente - table [Localized Labels] measure [Customer Contract Deferrals] - - - Righe contratto del cliente - table [Localized Labels] measure [Customer Contract Lines] - - - Differimenti cliente - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analisi ricavi periodici mensili - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Ricavi periodici mensili e ricavi periodici mensili PY per mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Ricavi periodici mensili e crescita anno su anno per anno e mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Ricavi periodici mensili per cliente - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Ricavi periodici mensili per venditore - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Ricavi periodici mensili per anno e mese di calendario - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Ricavi periodici mensili per articolo - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Ricavi periodici mensili per categoria articolo - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Abbandono e downgrade ricavi periodici mensili per contratto cliente - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Novità e aggiornamento ricavi periodici mensili per contratto cliente - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Previsioni mensili di ricavi e costi per anno e mese di calendario - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Previsione mensile dei ricavi e dei costi per venditore, cliente e nr. contratto - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Importo rilasciato e differito per anno e mese di calendario - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Analisi ricavi - table [Localized Labels] measure [Revenue Analysis] - - - Ricavi per cliente - table [Localized Labels] measure [Revenue by Customer] - - - Ricavi per articolo - table [Localized Labels] measure [Revenue by Item] - - - Ricavi per venditore - table [Localized Labels] measure [Revenue by Salesperson] - - - Sviluppo ricavi - table [Localized Labels] measure [Revenue Development] - - - Previsione ricavi - table [Localized Labels] measure [Sales and Cost Forecast] - - - Crescita ricavi anno su anno - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analisi Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Panoramica di Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Primi 5 clienti per ricavi periodici mensili - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Primi 5 fornitori per costo periodico mensile - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analisi valore totale del contratto - table [Localized Labels] measure [Total Contract Value Analysis] - - - Valore totale dei contratti e valore totale dei contratti PY per mese di calendario - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Valore totale del contratto e crescita anno su anno per anno e mese di calendario - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Valore totale del contratto per anno e mese di calendario - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Crescita anno su anno del valore totale dei contratti - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Differimenti contratto del fornitore - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Differimenti fornitore - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Pulsante Indietro - table [Localized Labels] measure [Back button] - - - Ricavi periodici mensili, costo periodico mensile, profitto netto mensile, clienti attivi, Valore totale contratto, variazione ricavi periodici mensili - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Analisi abbandono - table [Localized Labels] measure [Churn Analysis] - - - % tasso medio di abbandono mensile per anno e mese - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Oggetto di assistenza - table [table.Name] - - - Nr. oggetto di assistenza - table [Subscription] column [Subscription No.] - - - Codice pacchetto - table [Subscription] column [Package Code] - - - Descrizione oggetto di assistenza - table [Subscription] column [Subscription Desc.] - - - Data di analisi - table [Subscription] column [Analysis Date] - - - Descrizione nr. sottoscrizione - table [Subscription] column [Subscription No. Desc.] - - - Differimenti contratto del fornitore - table [table.Name] - - - Tipo di documento - table [Vendor Contract Deferrals] column [Document Type] - - - Nr. documento - table [Vendor Contract Deferrals] column [Document No.] - - - Data di registrazione - table [Vendor Contract Deferrals] column [Posting Date] - - - Data di registrazione documento - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Data di registrazione rilascio - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Nr. movimento C/G - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Sconto - table [Vendor Contract Deferrals] column [Discount] - - - Nr. riga documento - table [Vendor Contract Deferrals] column [Document Line No.] - - - Riga contratto del cliente - table [table.Name] - - - Nr. riga impegno - table [Customer Contract Line] column [Subscription Line No.] - - - Modello - table [Customer Contract Line] column [Template] - - - Descrizione riga contratto del cliente - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Data di inizio assistenza - table [Customer Contract Line] column [Subscription Start Date] - - - Data di fine assistenza - table [Customer Contract Line] column [Subscription End Date] - - - Data fatturazione successiva - table [Customer Contract Line] column [Next Billing Date] - - - Periodo di base di fatturazione - table [Customer Contract Line] column [Billing Base Period] - - - Nr. articolo fatturazione - table [Customer Contract Line] column [Invoicing Item No.] - - - Nr. riga contratto del cliente - table [Customer Contract Line] column [Customer Contract Line No.] - - - Periodo di avviso - table [Customer Contract Line] column [Notice Period] - - - Periodo iniziale - table [Customer Contract Line] column [Initial Term] - - - Periodo di estensione - table [Customer Contract Line] column [Extension Term] - - - Ritmo di fatturazione - table [Customer Contract Line] column [Billing Rhythm] - - - Annullamento possibile fino alla data - table [Customer Contract Line] column [Cancellation Possible Until] - - - Periodo fino alla data - table [Customer Contract Line] column [Term Until] - - - Termine di rinnovo - table [Customer Contract Line] column [Renewal Term] - - - Attività riga - table [Customer Contract Line] column [Line Active] - - - Periodo rimanente - table [Customer Contract Line] column [Remaining Term] - - - Mesi frequenza fatturazione - table [Customer Contract Line] column [Billing Rhythm Months] - - - Nr. contratto del cliente - table [Customer Contract Line] column [Customer Contract No.] - - - Fatturazione basata sull'utilizzo - table [Customer Contract Line] column [Is Usage Based Billing] - - - Tipo di origine - table [Customer Contract Line] column [Source Type] - - - Nr. origine - table [Customer Contract Line] column [Source No.] - - - Riga contratto del fornitore - table [table.Name] - - - Nr. riga impegno - table [Vendor Contract Line] column [Subscription Line No.] - - - Modello - table [Vendor Contract Line] column [Template] - - - Descrizione riga contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Data di inizio assistenza - table [Vendor Contract Line] column [Subscription Start Date] - - - Data di fine assistenza - table [Vendor Contract Line] column [Subscription End Date] - - - Data fatturazione successiva - table [Vendor Contract Line] column [Next Billing Date] - - - Nr. riga contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Periodo di avviso - table [Vendor Contract Line] column [Notice Period] - - - Periodo iniziale - table [Vendor Contract Line] column [Initial Term] - - - Periodo di estensione - table [Vendor Contract Line] column [Extension Term] - - - Ritmo di fatturazione - table [Vendor Contract Line] column [Billing Rhythm] - - - Annullamento possibile fino alla data - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Periodo fino alla data - table [Vendor Contract Line] column [Term Until] - - - Termine di rinnovo - table [Vendor Contract Line] column [Renewal Term] - - - Attività riga - table [Vendor Contract Line] column [Line Active] - - - Periodo rimanente - table [Vendor Contract Line] column [Remaining Term] - - - Mesi frequenza fatturazione - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Nr. contratto del fornitore - table [Vendor Contract Line] column [Vendor Contract No.] - - - Ultima versione - table [Vendor Contract Line] column [Is Latest Version] - - - Fatturazione basata sull'utilizzo - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Tipo di origine - table [Vendor Contract Line] column [Source Type] - - - Nr. origine - table [Vendor Contract Line] column [Source No.] - - - Differimenti contratto del cliente - table [table.Name] - - - Tipo di documento - table [Customer Contract Deferrals] column [Document Type] - - - Nr. documento - table [Customer Contract Deferrals] column [Document No.] - - - Data di registrazione - table [Customer Contract Deferrals] column [Posting Date] - - - Nr. riga documento - table [Customer Contract Deferrals] column [Document Line No.] - - - Data di registrazione documento - table [Customer Contract Deferrals] column [Document Posting Date] - - - Data di registrazione rilascio - table [Customer Contract Deferrals] column [Release Posting Date] - - - Nr. movimento C/G - table [Customer Contract Deferrals] column [G LEntry No.] - - - Contratto del cliente - table [table.Name] - - - Nr. contratto del cliente - table [Customer Contract] column [Customer Contract No.] - - - Tipo di contratto del cliente - table [Customer Contract] column [Customer Contract Type] - - - Descrizione contratto del cliente - table [Customer Contract] column [Customer Contract Description] - - - Descrizione nr. contratto del cliente - table [Customer Contract] column [Customer Contract No. Desc.] - - - Contratto del fornitore - table [table.Name] - - - Nr. contratto del fornitore - table [Vendor Contract] column [Vendor Contract No.] - - - Tipo di contratto del fornitore - table [Vendor Contract] column [Vendor Contract Type] - - - Descrizione contratto del fornitore - table [Vendor Contract] column [Vendor Contract Description] - - - Descrizione nr. contratto del fornitore - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Movimentazione UBB - table [table.Name] - - - Considera UBB come costante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Rilasciato - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Articolo - table [table.Name] - - - Nr. articolo - table [Item] column [Item No.] - - - Nome articolo - table [Item] column [Item Name] - - - Categoria registrazione inventario - table [Item] column [Inventory Posting Group] - - - Unità di misura di base - table [Item] column [Base Unit of Measure] - - - Nr. e descrizione articolo - table [Item] column [Item No. & Description] - - - Data di analisi - table [table.Name] - - - Versione iniziale - table [Analysis Date] column [Is Initial Version] - - - Versione corrente - table [Analysis Date] column [Is Current Version] - - - Gruppo calcolato - Funzionalità di Business Intelligence per le gerarchie temporali per calendario (fiscale) - table [table.Name] - - - Prospettiva - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI Subscription Billing - table [table.Name] - - - MRR - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MRC - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Differimenti cliente - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Differimenti fornitore - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ARR - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Vendite previste - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MRC PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - Δ MRC rispetto a PY - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Abbandono ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MRR PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Nuovi ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Δ analisi ricavi periodici mensili rispetto PY - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMRP - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - % NMRP di MRR - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMRP PY - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - Δ NMRP rispetto a PY - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Variazione complessiva MRR - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCV PY - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - Δ TCV rispetto a PY - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Ultimo aggiornamento movimenti analisi - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Ultimo aggiornamento modello semantico - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parametri ambiente - table [Subscription Billing KPIs] measure [Param Environment] - - - Parametri società - table [Subscription Billing KPIs] measure [Param Company] - - - Aggiornamento ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - UBB variazione ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Valuta di dichiarazione - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Clienti attivi - table [Subscription Billing KPIs] measure [Active Customers] - - - Clienti attivi PY - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Δ clienti attivi rispetto a PY - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Previsione fatturazione cliente - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Previsione fatturazione fornitore - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Costi previsione - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Downgrade ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Intervallo di date selezionato - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - % tasso medio di abbandono mensile - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - % tasso medio di downgrade mensile - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Downgrade e abbandono ricavi periodici mensili - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Venditore - table [table.Name] - - - Codice venditore - table [Salesperson] column [Salesperson Code] - - - Nome venditore - table [Salesperson] column [Salesperson Name] - - - Modifiche contratto del cliente - table [table.Name] - - - Chiave riga contratto del cliente - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Data - table [Customer Contract Changes] column [Date] - - - Tipo di modifica - table [Customer Contract Changes] column [Change Type] - - - Delta MRR - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nb-NO.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nb-NO.resx deleted file mode 100644 index 442f552dbf..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nb-NO.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensjonssett - table [table.Name] - - - Global dimensjon 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global dimensjon 2 - table [Dimension Sets] column [Global Dimension 2] - - - Snarveisdimensjon 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Snarveisdimensjon 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Snarveisdimensjon 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Snarveisdimensjon 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Snarveisdimensjon 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Snarveisdimensjon 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Leverandører - table [table.Name] - - - Leverandørnr. - table [Vendors] column [Vendor No.] - - - Leverandørnavn - table [Vendors] column [Vendor Name] - - - Adresse - table [Vendors] column [Address] - - - Adresse 2 - table [Vendors] column [Address 2] - - - Poststed - table [Vendors] column [City] - - - Postnr. - table [Vendors] column [Post Code] - - - Delstat - table [Vendors] column [State] - - - Kode for land/område - table [Vendors] column [Country/Region Code] - - - Leverandørbokføringsgruppe - table [Vendors] column [Vendor Posting Group] - - - Leverandørnr. og -navn - table [Vendors] column [Vendor No. & Name] - - - Kunder - table [table.Name] - - - Kundenr. - table [Customers] column [Customer No.] - - - Kundenavn - table [Customers] column [Customer Name] - - - Adresse - table [Customers] column [Address] - - - Adresse 2 - table [Customers] column [Address 2] - - - Poststed - table [Customers] column [City] - - - Postnr. - table [Customers] column [Post Code] - - - Delstat - table [Customers] column [State] - - - Kode for land/område - table [Customers] column [Country/Region Code] - - - Kundebokføringsgruppe - table [Customers] column [Customer Posting Group] - - - Kundeprisgruppe - table [Customers] column [Customer Price Group] - - - Kunderabattgruppe - table [Customers] column [Customer Discount Group] - - - Kundenr. og -navn - table [Customers] column [Customer No. & Name] - - - Dato - table [table.Name] - - - Ukedag - table [Date] column [Week Day] - - - Type dag - table [Date] column [Day Type] - - - Kalenderår - table [Date] column [Calendar Year] - - - - Kalenderkvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalendermåned - table [Date] column [Calendar Month] - - - Kalender Måned År - table [Date] column [Calendar Month Year] - - - Kalenderuke - table [Date] column [Calendar Week] - - - Kalender Uke År - table [Date] column [Calendar Week Year] - - - Kalender RelativUkePos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativMånedPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativtKvartalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativtÅrPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMåned - table [Date] column [Calendar StartOfMonth] - - - Kalender SluttPåMåned - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - KalenderSluttPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender SluttPåÅr - table [Date] column [Calendar EndOfYear] - - - Kalender MånedDager - table [Date] column [Calendar MonthDays] - - - Kalender KvartalDager - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDager - table [Date] column [Calendar YearDays] - - - Kalender DagIMånedNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagIKvartalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagIÅretNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatoForrigeUke - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatoForrigeMåned - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatoForrigeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatoForrigeÅr - table [Date] column [Calendar DatePreviousYear] - - - Regnskapsår - table [Date] column [Fiscal Year] - - - Regnskapskvartal - table [Date] column [Fiscal Quarter] - - - Regnskap Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Regnskapsmåned - table [Date] column [Fiscal Month] - - - Regnskap Måned År - table [Date] column [Fiscal Month Year] - - - Regnskapsuke - table [Date] column [Fiscal Week] - - - Regnskap Uke År - table [Date] column [Fiscal Week Year] - - - Regnskap RelativUkePos - table [Date] column [Fiscal RelativeWeekPos] - - - Regnskap RelativMånedPos - table [Date] column [Fiscal RelativeMonthPos] - - - Regnskap RelativtKvartalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Regnskap RelativtÅrPos - table [Date] column [Fiscal RelativeYearPos] - - - Regnskap StartPåMåned - table [Date] column [Fiscal StartOfMonth] - - - Regnskap SluttPåMåned - table [Date] column [Fiscal EndOfMonth] - - - Regnskap StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Regnskap SluttPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Regnskap StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Regnskap SluttPåÅr - table [Date] column [Fiscal EndOfYear] - - - Regnskap MånedDager - table [Date] column [Fiscal MonthDays] - - - Regnskap KvartalDager - table [Date] column [Fiscal QuarterDays] - - - Regnskap ÅrDager - table [Date] column [Fiscal YearDays] - - - Regnskap DagIMånedNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Regnskap DagIKvartalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Regnskap DagIÅretNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Regnskap DatoForrigeUke - table [Date] column [Fiscal DatePreviousWeek] - - - Regnskap DatoForrigeMåned - table [Date] column [Fiscal DatePreviousMonth] - - - Regnskap DatoForrigeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Regnskap DatoForrigeÅr - table [Date] column [Fiscal DatePreviousYear] - - - Regnskapsuke år - table [Date] column [FW Year] - - - Regnskapsuke kvartal - table [Date] column [FW Quarter] - - - Regnskapsuke Kvartal År - table [Date] column [FW Quarter Year] - - - Regnskapsuke måned - table [Date] column [FW Month] - - - Regnskapsuke Måned År - table [Date] column [FW Month Year] - - - Regnskapsuke Uke - table [Date] column [FW Week] - - - Regnskapsukeperiode - table [Date] column [FW Period] - - - Regnskapsuke Uke År - table [Date] column [FW Week Year] - - - Regnskapsuke StartPåUke - table [Date] column [FW StartOfWeek] - - - Regnskapsuke SluttPåUke - table [Date] column [FW EndOfWeek] - - - Regnskapsuke RelativUkePos - table [Date] column [FW RelativeWeekPos] - - - Regnskapsuke RelativMånedPos - table [Date] column [FW RelativeMonthPos] - - - Regnskapsuke RelativtKvartalPos - table [Date] column [FW RelativeQuarterPos] - - - Regnskapsuke RelativtÅrPos - table [Date] column [FW RelativeYearPos] - - - Regnskapsuke StartPåMåned - table [Date] column [FW StartOfMonth] - - - Regnskapsuke SluttPåMåned - table [Date] column [FW EndOfMonth] - - - Regnskapsuke StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - Regnskapsuke SluttPåKvartal - table [Date] column [FW EndOfQuarter] - - - Regnskapsuke StartPåÅr - table [Date] column [FW StartOfYear] - - - Regnskapsuke SluttPåÅr - table [Date] column [FW EndOfYear] - - - Regnskapsuke MånedDager - table [Date] column [FW MonthDays] - - - Regnskapsuke KvartalDager - table [Date] column [FW QuarterDays] - - - Regnskapsuke ÅrDager - table [Date] column [FW YearDays] - - - Regnskapsuke DagIMånedNummer - table [Date] column [FW DayOfMonthNumber] - - - Regnskapsuke DagIKvartalNummer - table [Date] column [FW DayOfQuarterNumber] - - - Regnskapsuke DagIÅretNummer - table [Date] column [FW DayOfYearNumber] - - - Regnskapsuke DatoForrigeUke - table [Date] column [FW DatePreviousWeek] - - - Regnskapsuke DatoForrigeMåned - table [Date] column [FW DatePreviousMonth] - - - Regnskapsuke DatoForrigeKvartal - table [Date] column [FW DatePreviousQuarter] - - - Regnskapsuke DatoForrigeÅr - table [Date] column [FW DatePreviousYear] - - - Relativ dag - table [Date] column [Relative Day] - - - Sekvensiell 365 DagNummer - table [Date] column [Sequential365DayNumber] - - - Periodiseringer av dataområde - table [Date] column [Data Range Deferrals] - - - Antall dager - table [Date] measure [No. of Days] - - - Regnskap år-kvartal-måned-uke - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Regnskap Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Regnskap Uke År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender år-kvartal-måned-uke - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Uke År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Regnskapsuke år-kvartal-måned-uke - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Regnskapsuke Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Regnskapsuke Måned År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Regnskap år-måned - table [Date] hierarchy [Fiscal Year-Month] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Regnskap år-måned-uke - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Regnskap Uke År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender år-måned - table [Date] hierarchy [Calendar Year-Month] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender år-måned-uke - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Uke År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Regnskapsuke år-måned-uke - table [Date] hierarchy [FW Year-Month-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Regnskapsuke Måned År - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Regnskapsuke år-kvartal-uke - table [Date] hierarchy [FW Year-Quarter-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Regnskapsuke Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Regnskapsuke år-uke - table [Date] hierarchy [FW Year-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - KOBLE TIL DATAENE - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Last ned Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Konfigurer Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - BRUK, REDIGER OG BYGG DINE EGNE RAPPORTER - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Finans inneholder en rekke forhåndsbygde rapporter som hjelper deg med å se dataene umiddelbart. Du kan redigere disse rapportene eller lage din egen rapport fra bunnen av. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HJELP OG KUNDESTØTTE - table [Localized Labels] measure [HELP AND SUPPORT] - - - Hvis du vil ha hjelp og støtte med den nye rapporten, kan du gå til dokumentasjonen for analyseoversikten. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - for Business Central - table [Localized Labels] measure [for Business Central] - - - Sist oppdatert - table [Localized Labels] measure [Last Refreshed] - - - Selskapsnavn - table [Localized Labels] measure [Company Name] - - - Analyseposter per - table [Localized Labels] measure [Analysis Entries as of] - - - Faktureringsprognose etter faktureringsperiode, kunde- og kontraktnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Faktureringsprognose etter kalenderår og måned - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Faktureringsplan - table [Localized Labels] measure [Billing Schedule] - - - Endring i månedlig gjentakende inntekt etter år og måned - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Nåværende datoområde: - table [Localized Labels] measure [Current Date Range:] - - - Kundekontraktperiodiseringer - table [Localized Labels] measure [Customer Contract Deferrals] - - - Kundekontraktlinjer - table [Localized Labels] measure [Customer Contract Lines] - - - Kundeperiodiseringer - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Månedlig gjentakende inntektsanalyse - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Månedlig gjentakende inntekt og månedlig gjentakende inntekt PÅ etter kalendermåned - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Månedlig gjentakende inntekst og vekst år for år etter kalenderår og måned - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Månedlig gjentakende inntekt etter kunde - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Månedlig gjentakende inntekt etter selger - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Månedlig gjentakende inntekt etter kalenderår og måned - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Månedlig gjentakende inntekt etter vare - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Månedlig gjentakende inntekt etter varekategori - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Månedlig gjentakende inntektsfrafall og -nedgradering etter kundekontrakt - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Månedlig gjentakende inntekt ny og oppgradering etter kundekontrakt - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Månedlig inntekts- og kostnadsprognose etter kalenderår og måned - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Månedlig inntekts- og kostnadsprognose etter selger, kunde- og kontraktnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Frigitt og periodisert beløp etter kalenderår og måned - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Inntektsanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Inntekt etter kunde - table [Localized Labels] measure [Revenue by Customer] - - - Inntekt etter vare - table [Localized Labels] measure [Revenue by Item] - - - Inntekt per selger - table [Localized Labels] measure [Revenue by Salesperson] - - - Inntektsutvikling - table [Localized Labels] measure [Revenue Development] - - - Inntektsprognose - table [Localized Labels] measure [Sales and Cost Forecast] - - - Inntekstvekst år for år - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Subscription Billing-analyse - table [Localized Labels] measure [Subscription Billing Analysis] - - - Oversikt over Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Beste fem kunder etter månedlig gjentakende inntekt - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Beste fem leverandører etter månedlig gjentakende kostnad - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse av total kontraktverdi - table [Localized Labels] measure [Total Contract Value Analysis] - - - Total kontraktverdi og total kontraktverdi PÅ etter kalendermåned - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Total kontraktverdi og vekst år for år etter kalenderår og måned - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Total kontraktverdi etter kalenderår og måned - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Total kontraktverdivekst år for år - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Leverandørkontraktperiodiseringer - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Leverandørperiodiseringer - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Tilbakeknapp - table [Localized Labels] measure [Back button] - - - Månedlig gjentakende inntekt, månedlig gjentakende kostnad, månedlig nettofortjeneste, aktive kunder, total kontraktverdi, endring i månedlig gjentakende inntekt - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Frafallsanalyse - table [Localized Labels] measure [Churn Analysis] - - - Gj.sn. månedlig frafallsrate i prosent etter år og måned - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektnr. - table [Subscription] column [Subscription No.] - - - Pakkekode - table [Subscription] column [Package Code] - - - Beskrivelse av serviceobjekt - table [Subscription] column [Subscription Desc.] - - - Analysedato - table [Subscription] column [Analysis Date] - - - Beskrivelse av abonnementsnr. - table [Subscription] column [Subscription No. Desc.] - - - Leverandørkontraktperiodiseringer - table [table.Name] - - - Dokumenttype - table [Vendor Contract Deferrals] column [Document Type] - - - Dokumentnr. - table [Vendor Contract Deferrals] column [Document No.] - - - Bokføringsdato - table [Vendor Contract Deferrals] column [Posting Date] - - - Dokumentbokføringsdato - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Frigi bokføringsdato - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Finanspostnr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabatt - table [Vendor Contract Deferrals] column [Discount] - - - Dokumentlinjenr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Kundekontraktlinje - table [table.Name] - - - Forpliktelseslinjenr. - table [Customer Contract Line] column [Subscription Line No.] - - - Mal - table [Customer Contract Line] column [Template] - - - Beskrivelse av kundekontraktlinje - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Tjenestestartdato - table [Customer Contract Line] column [Subscription Start Date] - - - Tjenestesluttdato - table [Customer Contract Line] column [Subscription End Date] - - - Neste faktureringsdato - table [Customer Contract Line] column [Next Billing Date] - - - Faktureringsbasisperiode - table [Customer Contract Line] column [Billing Base Period] - - - Faktureringsvarenr. - table [Customer Contract Line] column [Invoicing Item No.] - - - Kundekontraktlinjenr. - table [Customer Contract Line] column [Customer Contract Line No.] - - - Merknadsperiode - table [Customer Contract Line] column [Notice Period] - - - Innledende periode - table [Customer Contract Line] column [Initial Term] - - - Utvidelsesperiode - table [Customer Contract Line] column [Extension Term] - - - Faktureringsfrekvens - table [Customer Contract Line] column [Billing Rhythm] - - - Oppsigelse mulig frem til - table [Customer Contract Line] column [Cancellation Possible Until] - - - Periode til - table [Customer Contract Line] column [Term Until] - - - Fornyelsesperiode - table [Customer Contract Line] column [Renewal Term] - - - Linje aktiv - table [Customer Contract Line] column [Line Active] - - - Resterende periode - table [Customer Contract Line] column [Remaining Term] - - - Faktureringsfrekvensmåneder - table [Customer Contract Line] column [Billing Rhythm Months] - - - Kundekontraktnr. - table [Customer Contract Line] column [Customer Contract No.] - - - Er bruksbasert fakturering - table [Customer Contract Line] column [Is Usage Based Billing] - - - Kildetype - table [Customer Contract Line] column [Source Type] - - - Kildenr. - table [Customer Contract Line] column [Source No.] - - - Leverandørkontraktlinje - table [table.Name] - - - Forpliktelseslinjenr. - table [Vendor Contract Line] column [Subscription Line No.] - - - Mal - table [Vendor Contract Line] column [Template] - - - Beskrivelse av leverandørkontraktlinje - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Tjenestestartdato - table [Vendor Contract Line] column [Subscription Start Date] - - - Tjenestesluttdato - table [Vendor Contract Line] column [Subscription End Date] - - - Neste faktureringsdato - table [Vendor Contract Line] column [Next Billing Date] - - - Leverandørkontraktlinjenr. - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Merknadsperiode - table [Vendor Contract Line] column [Notice Period] - - - Innledende periode - table [Vendor Contract Line] column [Initial Term] - - - Utvidelsesperiode - table [Vendor Contract Line] column [Extension Term] - - - Faktureringsfrekvens - table [Vendor Contract Line] column [Billing Rhythm] - - - Oppsigelse mulig frem til - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Periode til - table [Vendor Contract Line] column [Term Until] - - - Fornyelsesperiode - table [Vendor Contract Line] column [Renewal Term] - - - Linje aktiv - table [Vendor Contract Line] column [Line Active] - - - Resterende periode - table [Vendor Contract Line] column [Remaining Term] - - - Faktureringsfrekvensmåneder - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Leverandørkontraktnr. - table [Vendor Contract Line] column [Vendor Contract No.] - - - Er den nyeste versjonen - table [Vendor Contract Line] column [Is Latest Version] - - - Er bruksbasert fakturering - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Kildetype - table [Vendor Contract Line] column [Source Type] - - - Kildenr. - table [Vendor Contract Line] column [Source No.] - - - Kundekontraktperiodiseringer - table [table.Name] - - - Dokumenttype - table [Customer Contract Deferrals] column [Document Type] - - - Dokumentnr. - table [Customer Contract Deferrals] column [Document No.] - - - Bokføringsdato - table [Customer Contract Deferrals] column [Posting Date] - - - Dokumentlinjenr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Dokumentbokføringsdato - table [Customer Contract Deferrals] column [Document Posting Date] - - - Frigi bokføringsdato - table [Customer Contract Deferrals] column [Release Posting Date] - - - Finanspostnr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Kundekontrakt - table [table.Name] - - - Kundekontraktnr. - table [Customer Contract] column [Customer Contract No.] - - - Kundekontrakttype - table [Customer Contract] column [Customer Contract Type] - - - Beskrivelse av kundekontrakt - table [Customer Contract] column [Customer Contract Description] - - - Beskrivelse av kundekontraktnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Leverandørkontrakt - table [table.Name] - - - Leverandørkontraktnr. - table [Vendor Contract] column [Vendor Contract No.] - - - Leverandørkontrakttype - table [Vendor Contract] column [Vendor Contract Type] - - - Beskrivelse av leverandørkontrakt - table [Vendor Contract] column [Vendor Contract Description] - - - Beskrivelse av leverandørkontraktnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - BBF-behandling - table [table.Name] - - - Behandle BBF som konstant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Er frigitt - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Vare - table [table.Name] - - - Varenr. - table [Item] column [Item No.] - - - Varenavn - table [Item] column [Item Name] - - - Beholdningsbokføringsgruppe - table [Item] column [Inventory Posting Group] - - - Lagerenhet - table [Item] column [Base Unit of Measure] - - - Varenr. og -beskrivelse - table [Item] column [Item No. & Description] - - - Analysedato - table [table.Name] - - - Er opprinnelig versjon - table [Analysis Date] column [Is Initial Version] - - - Er nåværende versjon - table [Analysis Date] column [Is Current Version] - - - Beregningsgruppe – tidsintelligens for kalender (regnskap) - table [table.Name] - - - Perspektiv - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - Nøkkelindikatorer for Subscription Billing - table [table.Name] - - - MGI - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MGK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Kundeperiodiseringer - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Leverandørperiodiseringer - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - ÅGI - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TKV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prognosesalg - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MGK PÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MGK Δ kontra PÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Månedlig gjentakende inntektsfrafall - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MGI PÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Månedlig gjentakende inntekt ny - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Månedlig gjentakende inntekt Δ kontra PÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMGI - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMGI i % av MGI - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMGI PÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMGI Δ kontra PÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Generell endring i MGI - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TKV PÅ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TKV Δ kontra PÅ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Analyseposter sist oppdatert - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Semantisk modell sist oppdatert - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parametermiljø - table [Subscription Billing KPIs] measure [Param Environment] - - - Parameterselskap - table [Subscription Billing KPIs] measure [Param Company] - - - Månedlig gjentakende inntektsoppgradering - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Månedlig gjentakende inntektsendring BBF - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Rapporteringsvaluta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktive kunder - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktive kunder PÅ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktive kunder Δ kontra PÅ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Kundefaktureringsprognose - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Leverandørfaktureringsprognose - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prognosekostnader - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Månedlig gjentakende inntektsnedgradering - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Valgt datoområde - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Gj.sn. månedlig frafallsrate i prosent - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Gj.sn. månedlig nedgraderingsrate i prosent - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Månedlig gjentakende inntektsnedgradering og -frafall - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Selger - table [table.Name] - - - Selgerkode - table [Salesperson] column [Salesperson Code] - - - Selgernavn - table [Salesperson] column [Salesperson Name] - - - Endringer i kundekontrakt - table [table.Name] - - - Kundekontraktlinjenøkkel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Dato - table [Customer Contract Changes] column [Date] - - - Endringstype - table [Customer Contract Changes] column [Change Type] - - - MGI delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-BE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-BE.resx deleted file mode 100644 index 9ed3045310..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-BE.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensiecombinaties - table [table.Name] - - - Globale dimensie 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globale dimensie 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimensie 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimensie 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimensie 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimensie 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimensie 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimensie 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Leveranciers - table [table.Name] - - - Leveranciersnr. - table [Vendors] column [Vendor No.] - - - Leveranciersnaam - table [Vendors] column [Vendor Name] - - - Adres - table [Vendors] column [Address] - - - Adres 2 - table [Vendors] column [Address 2] - - - Plaats - table [Vendors] column [City] - - - Postcode - table [Vendors] column [Post Code] - - - Staat - table [Vendors] column [State] - - - Land/regio-code - table [Vendors] column [Country/Region Code] - - - Leveranciersboekingsgroep - table [Vendors] column [Vendor Posting Group] - - - Nr. en naam van leverancier - table [Vendors] column [Vendor No. & Name] - - - Klanten - table [table.Name] - - - Klantnr. - table [Customers] column [Customer No.] - - - Klantnaam - table [Customers] column [Customer Name] - - - Adres - table [Customers] column [Address] - - - Adres 2 - table [Customers] column [Address 2] - - - Plaats - table [Customers] column [City] - - - Postcode - table [Customers] column [Post Code] - - - Staat - table [Customers] column [State] - - - Land/regio-code - table [Customers] column [Country/Region Code] - - - Klantboekingsgroep - table [Customers] column [Customer Posting Group] - - - Klantenprijsgroep - table [Customers] column [Customer Price Group] - - - Klantenkortingsgroep - table [Customers] column [Customer Discount Group] - - - Klantnr. en -naam - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Week Dag - table [Date] column [Week Day] - - - Dagsoort - table [Date] column [Day Type] - - - Kalender Jaar - table [Date] column [Calendar Year] - - - - Kalender Kwartaal - table [Date] column [Calendar Quarter] - - - Kalender Kwartaal Jaar - table [Date] column [Calendar Quarter Year] - - - Kalender Maand - table [Date] column [Calendar Month] - - - Kalender Maand Jaar - table [Date] column [Calendar Month Year] - - - Kalender Week - table [Date] column [Calendar Week] - - - Kalender Week Jaar - table [Date] column [Calendar Week Year] - - - Kalender RelatieveWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelatieveMaandPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelatieveKwartaalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelatieveJaarPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginVanMaand - table [Date] column [Calendar StartOfMonth] - - - Kalender EindVanMaand - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginVanKwartaal - table [Date] column [Calendar StartOfQuarter] - - - Kalender EindVanKwartaal - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginVanJaar - table [Date] column [Calendar StartOfYear] - - - Kalender EindVanJaar - table [Date] column [Calendar EndOfYear] - - - Kalender MaandDagen - table [Date] column [Calendar MonthDays] - - - Kalender KwartaalDagen - table [Date] column [Calendar QuarterDays] - - - Kalender JaarDagen - table [Date] column [Calendar YearDays] - - - Kalender DagVanMaandNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagVanKwartaalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagVanJaarNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWeek - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigeMaand - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigKwartaal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigJaar - table [Date] column [Calendar DatePreviousYear] - - - Fiscaal Jaar - table [Date] column [Fiscal Year] - - - Fiscaal Kwartaal - table [Date] column [Fiscal Quarter] - - - Fiscaal Kwartaal Jaar - table [Date] column [Fiscal Quarter Year] - - - Fiscaal Maand - table [Date] column [Fiscal Month] - - - Fiscaal Maand Jaar - table [Date] column [Fiscal Month Year] - - - Fiscaal Week - table [Date] column [Fiscal Week] - - - Fiscaal Week Jaar - table [Date] column [Fiscal Week Year] - - - Fiscaal RelatieveWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscaal RelatieveMaandPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscaal RelatieveKwartaalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscaal RelatieveJaarPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscaal BeginVanMaand - table [Date] column [Fiscal StartOfMonth] - - - Fiscaal EindVanMaand - table [Date] column [Fiscal EndOfMonth] - - - Fiscaal BeginVanKwartaal - table [Date] column [Fiscal StartOfQuarter] - - - Fiscaal EindVanKwartaal - table [Date] column [Fiscal EndOfQuarter] - - - Fiscaal BeginVanJaar - table [Date] column [Fiscal StartOfYear] - - - Fiscaal EindVanJaar - table [Date] column [Fiscal EndOfYear] - - - Fiscaal MaandDagen - table [Date] column [Fiscal MonthDays] - - - Fiscaal KwartaalDagen - table [Date] column [Fiscal QuarterDays] - - - Fiscaal JaarDagen - table [Date] column [Fiscal YearDays] - - - Fiscaal DagVanMaandNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscaal DagVanKwartaalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscaal DagVanJaarNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscaal DatumVorigeWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscaal DatumVorigeMaand - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscaal DatumVorigKwartaal - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscaal DatumVorigJaar - table [Date] column [Fiscal DatePreviousYear] - - - FW Jaar - table [Date] column [FW Year] - - - FW Kwartaal - table [Date] column [FW Quarter] - - - FW Kwartaal Jaar - table [Date] column [FW Quarter Year] - - - FW Maand - table [Date] column [FW Month] - - - FW Maand Jaar - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Periode - table [Date] column [FW Period] - - - FW Week Jaar - table [Date] column [FW Week Year] - - - FW BeginVanWeek - table [Date] column [FW StartOfWeek] - - - FW EindVanWeek - table [Date] column [FW EndOfWeek] - - - FW RelatieveWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelatieveMaandPos - table [Date] column [FW RelativeMonthPos] - - - FW RelatieveKwartaalPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelatieveJaarPos - table [Date] column [FW RelativeYearPos] - - - FW BeginVanMaand - table [Date] column [FW StartOfMonth] - - - FW EindVanMaand - table [Date] column [FW EndOfMonth] - - - FW BeginVanKwartaal - table [Date] column [FW StartOfQuarter] - - - FW EindVanKwartaal - table [Date] column [FW EndOfQuarter] - - - FW BeginVanJaar - table [Date] column [FW StartOfYear] - - - FW EindVanJaar - table [Date] column [FW EndOfYear] - - - FW MaandDagen - table [Date] column [FW MonthDays] - - - FW KwartaalDagen - table [Date] column [FW QuarterDays] - - - FW JaarDagen - table [Date] column [FW YearDays] - - - FW DagVanMaandNummer - table [Date] column [FW DayOfMonthNumber] - - - FW DagVanKwartaalNummer - table [Date] column [FW DayOfQuarterNumber] - - - FW DagVanJaarNummer - table [Date] column [FW DayOfYearNumber] - - - FW DatumVorigeWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatumVorigeMaand - table [Date] column [FW DatePreviousMonth] - - - FW DatumVorigKwartaal - table [Date] column [FW DatePreviousQuarter] - - - FW DatumVorigJaar - table [Date] column [FW DatePreviousYear] - - - Relatieve Dag - table [Date] column [Relative Day] - - - Sequentieel 365 DagNummer - table [Date] column [Sequential365DayNumber] - - - Uitstel van gegevensbereik - table [Date] column [Data Range Deferrals] - - - Aantal dagen - table [Date] measure [No. of Days] - - - Fiscaal Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscaal Kwartaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kwartaal Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscaal Jaar-Maand - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscaal Jaar-Maand-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Maand - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jaar-Maand-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Jaar-Maand-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Jaar-Kwartaal-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Jaar-Week - table [Date] hierarchy [FW Year-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - UW GEGEVENS VERBINDEN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. De Finance Connector for Power BI downloaden - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Dynamics 365 Business Central configureren - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP EN ONDERSTEUNING - table [Localized Labels] measure [HELP AND SUPPORT] - - - Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - voor Business Central - table [Localized Labels] measure [for Business Central] - - - Laatst vernieuwd - table [Localized Labels] measure [Last Refreshed] - - - Bedrijfsnaam - table [Localized Labels] measure [Company Name] - - - Analyseposten vanaf - table [Localized Labels] measure [Analysis Entries as of] - - - Factureringsprognose per factureringsperiode, klant en contractnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Factureringsprognose per kalenderjaar en -maand - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Factureringsplanning - table [Localized Labels] measure [Billing Schedule] - - - Wijziging van maand. periodieke opbrengst per jaar en maand - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Huidig datumbereik: - table [Localized Labels] measure [Current Date Range:] - - - Uitstel van klantcontracten - table [Localized Labels] measure [Customer Contract Deferrals] - - - Klantcontractregels - table [Localized Labels] measure [Customer Contract Lines] - - - Klantuitstel - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Maand. periodieke analyse van opbrengst - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Maand. periodieke opbrengst per klant - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Maand. periodieke opbrengst per verkoper - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Maand. periodieke opbrengst per kalenderjaar en -maand - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Maand. periodieke opbrengst per artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Maand. periodieke opbrengst per artikelcategorie - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Maand. periodiek opbrengstverloop en downgrade per klantcontract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Maand. periodieke opbrengst nieuw en upgrade per klantcontract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Opbrengstanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Opbrengst per klant - table [Localized Labels] measure [Revenue by Customer] - - - Opbrengst per artikel - table [Localized Labels] measure [Revenue by Item] - - - Opbrengst per verkoper - table [Localized Labels] measure [Revenue by Salesperson] - - - Opbrengstontwikkeling - table [Localized Labels] measure [Revenue Development] - - - Opbrengstprognose - table [Localized Labels] measure [Sales and Cost Forecast] - - - Opbrengstgroei jaar-tot-jaar - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse van Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Overzicht van Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 klanten per maand. periodieke opbrengst - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 leveranciers op maand. periodieke kosten - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse van totale contractwaarde - table [Localized Labels] measure [Total Contract Value Analysis] - - - Totale contractwaarde en totale contractwaarde VJ per kalendermaand - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Totale contractwaarde per kalenderjaar en -maand - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Groei totale contractwaarde jaar-tot-jaar - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Uitstel van leverancierscontracten - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Leveranciersuitstel - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Knop Terug - table [Localized Labels] measure [Back button] - - - Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Verloopanalyse - table [Localized Labels] measure [Churn Analysis] - - - Gem. maand. % verloop per jaar en maand - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobject - table [table.Name] - - - Serviceobjectnr. - table [Subscription] column [Subscription No.] - - - Pakketcode - table [Subscription] column [Package Code] - - - Omschrijving van serviceobject - table [Subscription] column [Subscription Desc.] - - - Analysedatum - table [Subscription] column [Analysis Date] - - - Omschrijving van abonnement nr. - table [Subscription] column [Subscription No. Desc.] - - - Uitstel van leverancierscontracten - table [table.Name] - - - Documenttype - table [Vendor Contract Deferrals] column [Document Type] - - - Documentnr. - table [Vendor Contract Deferrals] column [Document No.] - - - Boekingsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Documentboekingsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Boekingsdatum van vrijgave - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Grootboekpostnr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Korting - table [Vendor Contract Deferrals] column [Discount] - - - Documentregelnr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Klantcontractregel - table [table.Name] - - - Nr. van toezeggingsregel - table [Customer Contract Line] column [Subscription Line No.] - - - Sjabloon - table [Customer Contract Line] column [Template] - - - Omschrijving van klantcontractregel - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Begindatum van service - table [Customer Contract Line] column [Subscription Start Date] - - - Einddatum van service - table [Customer Contract Line] column [Subscription End Date] - - - Volgende factureringsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Basisperiode van facturering - table [Customer Contract Line] column [Billing Base Period] - - - Nr. van factureringsartikel - table [Customer Contract Line] column [Invoicing Item No.] - - - Nr. van klantcontractregel - table [Customer Contract Line] column [Customer Contract Line No.] - - - Opzegperiode - table [Customer Contract Line] column [Notice Period] - - - Initiële termijn - table [Customer Contract Line] column [Initial Term] - - - Uitbreidingstermijn - table [Customer Contract Line] column [Extension Term] - - - Factureringsritme - table [Customer Contract Line] column [Billing Rhythm] - - - Annulering mogelijk tot - table [Customer Contract Line] column [Cancellation Possible Until] - - - Termijn tot - table [Customer Contract Line] column [Term Until] - - - Verlengingstermijn - table [Customer Contract Line] column [Renewal Term] - - - Regel actief - table [Customer Contract Line] column [Line Active] - - - Resterende termijn - table [Customer Contract Line] column [Remaining Term] - - - Maanden factureringsritme - table [Customer Contract Line] column [Billing Rhythm Months] - - - Nr. van klantcontract - table [Customer Contract Line] column [Customer Contract No.] - - - Is op gebruik gebaseerde facturering - table [Customer Contract Line] column [Is Usage Based Billing] - - - Bronsoort - table [Customer Contract Line] column [Source Type] - - - Bronnr. - table [Customer Contract Line] column [Source No.] - - - Leverancierscontractregel - table [table.Name] - - - Nr. van toezeggingsregel - table [Vendor Contract Line] column [Subscription Line No.] - - - Sjabloon - table [Vendor Contract Line] column [Template] - - - Omschrijving van leverancierscontractregel - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Begindatum van service - table [Vendor Contract Line] column [Subscription Start Date] - - - Einddatum van service - table [Vendor Contract Line] column [Subscription End Date] - - - Volgende factureringsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Nr. van leverancierscontractregel - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Opzegperiode - table [Vendor Contract Line] column [Notice Period] - - - Initiële termijn - table [Vendor Contract Line] column [Initial Term] - - - Uitbreidingstermijn - table [Vendor Contract Line] column [Extension Term] - - - Factureringsritme - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulering mogelijk tot - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Termijn tot - table [Vendor Contract Line] column [Term Until] - - - Verlengingstermijn - table [Vendor Contract Line] column [Renewal Term] - - - Regel actief - table [Vendor Contract Line] column [Line Active] - - - Resterende termijn - table [Vendor Contract Line] column [Remaining Term] - - - Maanden factureringsritme - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Nr. van leverancierscontract - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is nieuwste versie - table [Vendor Contract Line] column [Is Latest Version] - - - Is op gebruik gebaseerde facturering - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Bronsoort - table [Vendor Contract Line] column [Source Type] - - - Bronnr. - table [Vendor Contract Line] column [Source No.] - - - Uitstel van klantcontracten - table [table.Name] - - - Documenttype - table [Customer Contract Deferrals] column [Document Type] - - - Documentnr. - table [Customer Contract Deferrals] column [Document No.] - - - Boekingsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Documentregelnr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Documentboekingsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Boekingsdatum van vrijgave - table [Customer Contract Deferrals] column [Release Posting Date] - - - Grootboekpostnr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Klantcontract - table [table.Name] - - - Nr. van klantcontract - table [Customer Contract] column [Customer Contract No.] - - - Type klantcontract - table [Customer Contract] column [Customer Contract Type] - - - Omschrijving van klantcontract - table [Customer Contract] column [Customer Contract Description] - - - Omschrijving van klantcontractnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Leverancierscontract - table [table.Name] - - - Nr. van leverancierscontract - table [Vendor Contract] column [Vendor Contract No.] - - - Type leverancierscontract - table [Vendor Contract] column [Vendor Contract Type] - - - Omschrijving van leverancierscontract - table [Vendor Contract] column [Vendor Contract Description] - - - Omschrijving van leverancierscontractnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - GGF-verwerking - table [table.Name] - - - GGF behandelen als constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is vrijgegeven - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnr. - table [Item] column [Item No.] - - - Artikelnaam - table [Item] column [Item Name] - - - Voorraadboekingsgroep - table [Item] column [Inventory Posting Group] - - - Basiseenheid - table [Item] column [Base Unit of Measure] - - - Artikelnr. en -omschrijving - table [Item] column [Item No. & Description] - - - Analysedatum - table [table.Name] - - - Is initiële versie - table [Analysis Date] column [Is Initial Version] - - - Is huidige versie - table [Analysis Date] column [Is Current Version] - - - Berekeningsgroep - Tijdinformatie voor kalender (fiscaal) - table [table.Name] - - - Perspectief - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI's van Subscription Billing - table [table.Name] - - - MPO - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MPK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Klantuitstel - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Leveranciersuitstel - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - VORDERING - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCW - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Verkoop voorspellen - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MPK VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MPK Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Maand. periodiek opbrengstverloop - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MPO VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Maand. periodieke opbrengst nieuw - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Maand. periodieke opbrengst Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMPO - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMPO % van MPO - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMPO VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMPO Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Algehele wijziging MPO - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCW VJ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCW Δ versus VJ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Analyseposten laatste update - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Laatste update semantisch model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param.omgeving - table [Subscription Billing KPIs] measure [Param Environment] - - - Param.bedrijf - table [Subscription Billing KPIs] measure [Param Company] - - - Maand. periodieke opbrengstupgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Wijziging GGF maand. periodieke opbrengst - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Aangiftevaluta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Actieve klanten - table [Subscription Billing KPIs] measure [Active Customers] - - - Actieve klanten VJ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Actieve klanten Δ versus VJ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prognose van klantfacturering - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prognose van leveranciersfacturering - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prognosekosten - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Maand. periodieke opbrengstdowngrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Geselecteerd datumbereik - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Gem. maand. % verloop - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Maand. gem. % downgrade - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Maand. periodieke opbrengstdowngrade en -verloop - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Verkoper - table [table.Name] - - - Verkoperscode - table [Salesperson] column [Salesperson Code] - - - Verkopersnaam - table [Salesperson] column [Salesperson Name] - - - Wijzigingen in klantcontract - table [table.Name] - - - Sleutel van klantcontractregel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Type wijzigen - table [Customer Contract Changes] column [Change Type] - - - MPO Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-NL.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-NL.resx deleted file mode 100644 index 0db9f3e59f..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.nl-NL.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensiesets - table [table.Name] - - - Globale dimensie 1 - table [Dimension Sets] column [Global Dimension 1] - - - Globale dimensie 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimensie 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimensie 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimensie 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimensie 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimensie 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimensie 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Leveranciers - table [table.Name] - - - Leveranciersnr. - table [Vendors] column [Vendor No.] - - - Leveranciersnaam - table [Vendors] column [Vendor Name] - - - Adres - table [Vendors] column [Address] - - - Adres 2 - table [Vendors] column [Address 2] - - - Plaats - table [Vendors] column [City] - - - Postcode - table [Vendors] column [Post Code] - - - Staat - table [Vendors] column [State] - - - Land/regio-code - table [Vendors] column [Country/Region Code] - - - Leveranciersboekingsgroep - table [Vendors] column [Vendor Posting Group] - - - Nr. en naam van leverancier - table [Vendors] column [Vendor No. & Name] - - - Klanten - table [table.Name] - - - Klantnr. - table [Customers] column [Customer No.] - - - Klantnaam - table [Customers] column [Customer Name] - - - Adres - table [Customers] column [Address] - - - Adres 2 - table [Customers] column [Address 2] - - - Plaats - table [Customers] column [City] - - - Postcode - table [Customers] column [Post Code] - - - Staat - table [Customers] column [State] - - - Land/regio-code - table [Customers] column [Country/Region Code] - - - Klantboekingsgroep - table [Customers] column [Customer Posting Group] - - - Klantenprijsgroep - table [Customers] column [Customer Price Group] - - - Klantenkortingsgroep - table [Customers] column [Customer Discount Group] - - - Klantnr. en -naam - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Week Dag - table [Date] column [Week Day] - - - Dagsoort - table [Date] column [Day Type] - - - Kalender Jaar - table [Date] column [Calendar Year] - - - - Kalender Kwartaal - table [Date] column [Calendar Quarter] - - - Kalender Kwartaal Jaar - table [Date] column [Calendar Quarter Year] - - - Kalender Maand - table [Date] column [Calendar Month] - - - Kalender Maand Jaar - table [Date] column [Calendar Month Year] - - - Kalender Week - table [Date] column [Calendar Week] - - - Kalender Week Jaar - table [Date] column [Calendar Week Year] - - - Kalender RelatieveWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelatieveMaandPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelatieveKwartaalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelatieveJaarPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginVanMaand - table [Date] column [Calendar StartOfMonth] - - - Kalender EindVanMaand - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginVanKwartaal - table [Date] column [Calendar StartOfQuarter] - - - Kalender EindVanKwartaal - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginVanJaar - table [Date] column [Calendar StartOfYear] - - - Kalender EindVanJaar - table [Date] column [Calendar EndOfYear] - - - Kalender MaandDagen - table [Date] column [Calendar MonthDays] - - - Kalender KwartaalDagen - table [Date] column [Calendar QuarterDays] - - - Kalender JaarDagen - table [Date] column [Calendar YearDays] - - - Kalender DagVanMaandNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagVanKwartaalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagVanJaarNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWeek - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigeMaand - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigKwartaal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigJaar - table [Date] column [Calendar DatePreviousYear] - - - Fiscaal Jaar - table [Date] column [Fiscal Year] - - - Fiscaal Kwartaal - table [Date] column [Fiscal Quarter] - - - Fiscaal Kwartaal Jaar - table [Date] column [Fiscal Quarter Year] - - - Fiscaal Maand - table [Date] column [Fiscal Month] - - - Fiscaal Maand Jaar - table [Date] column [Fiscal Month Year] - - - Fiscaal Week - table [Date] column [Fiscal Week] - - - Fiscaal Week Jaar - table [Date] column [Fiscal Week Year] - - - Fiscaal RelatieveWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscaal RelatieveMaandPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscaal RelatieveKwartaalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscaal RelatieveJaarPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscaal BeginVanMaand - table [Date] column [Fiscal StartOfMonth] - - - Fiscaal EindVanMaand - table [Date] column [Fiscal EndOfMonth] - - - Fiscaal BeginVanKwartaal - table [Date] column [Fiscal StartOfQuarter] - - - Fiscaal EindVanKwartaal - table [Date] column [Fiscal EndOfQuarter] - - - Fiscaal BeginVanJaar - table [Date] column [Fiscal StartOfYear] - - - Fiscaal EindVanJaar - table [Date] column [Fiscal EndOfYear] - - - Fiscaal MaandDagen - table [Date] column [Fiscal MonthDays] - - - Fiscaal KwartaalDagen - table [Date] column [Fiscal QuarterDays] - - - Fiscaal JaarDagen - table [Date] column [Fiscal YearDays] - - - Fiscaal DagVanMaandNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscaal DagVanKwartaalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscaal DagVanJaarNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscaal DatumVorigeWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscaal DatumVorigeMaand - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscaal DatumVorigKwartaal - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscaal DatumVorigJaar - table [Date] column [Fiscal DatePreviousYear] - - - FW Jaar - table [Date] column [FW Year] - - - FW Kwartaal - table [Date] column [FW Quarter] - - - FW Kwartaal Jaar - table [Date] column [FW Quarter Year] - - - FW Maand - table [Date] column [FW Month] - - - FW Maand Jaar - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Periode - table [Date] column [FW Period] - - - FW Week Jaar - table [Date] column [FW Week Year] - - - FW BeginVanWeek - table [Date] column [FW StartOfWeek] - - - FW EindVanWeek - table [Date] column [FW EndOfWeek] - - - FW RelatieveWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelatieveMaandPos - table [Date] column [FW RelativeMonthPos] - - - FW RelatieveKwartaalPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelatieveJaarPos - table [Date] column [FW RelativeYearPos] - - - FW BeginVanMaand - table [Date] column [FW StartOfMonth] - - - FW EindVanMaand - table [Date] column [FW EndOfMonth] - - - FW BeginVanKwartaal - table [Date] column [FW StartOfQuarter] - - - FW EindVanKwartaal - table [Date] column [FW EndOfQuarter] - - - FW BeginVanJaar - table [Date] column [FW StartOfYear] - - - FW EindVanJaar - table [Date] column [FW EndOfYear] - - - FW MaandDagen - table [Date] column [FW MonthDays] - - - FW KwartaalDagen - table [Date] column [FW QuarterDays] - - - FW JaarDagen - table [Date] column [FW YearDays] - - - FW DagVanMaandNummer - table [Date] column [FW DayOfMonthNumber] - - - FW DagVanKwartaalNummer - table [Date] column [FW DayOfQuarterNumber] - - - FW DagVanJaarNummer - table [Date] column [FW DayOfYearNumber] - - - FW DatumVorigeWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatumVorigeMaand - table [Date] column [FW DatePreviousMonth] - - - FW DatumVorigKwartaal - table [Date] column [FW DatePreviousQuarter] - - - FW DatumVorigJaar - table [Date] column [FW DatePreviousYear] - - - Relatieve Dag - table [Date] column [Relative Day] - - - Sequentieel 365 DagNummer - table [Date] column [Sequential365DayNumber] - - - Uitstel van gegevensbereik - table [Date] column [Data Range Deferrals] - - - Aantal dagen - table [Date] measure [No. of Days] - - - Fiscaal Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscaal Kwartaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kwartaal Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscaal Jaar-Maand - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscaal Jaar-Maand-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Maand - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jaar-Maand-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Jaar-Maand-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Jaar-Kwartaal-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Jaar-Week - table [Date] hierarchy [FW Year-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - UW GEGEVENS VERBINDEN - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. De Finance Connector for Power BI downloaden - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Dynamics 365 Business Central configureren - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - UW EIGEN RAPPORTEN GEBRUIKEN, BEWERKEN EN MAKEN - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Financiën omvatten een verscheidenheid aan vooraf gemaakte rapporten om u te helpen uw gegevens direct te bekijken. U kunt deze rapporten bewerken of uw eigen rapport helemaal opnieuw maken. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HELP EN ONDERSTEUNING - table [Localized Labels] measure [HELP AND SUPPORT] - - - Ga voor hulp en ondersteuning met uw nieuwe rapport naar de Analytics-overzichtsdocumentatie. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - voor Business Central - table [Localized Labels] measure [for Business Central] - - - Laatst vernieuwd - table [Localized Labels] measure [Last Refreshed] - - - Bedrijfsnaam - table [Localized Labels] measure [Company Name] - - - Analyseposten vanaf - table [Localized Labels] measure [Analysis Entries as of] - - - Factureringsprognose per factureringsperiode, klant en contractnr. - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Factureringsprognose per kalenderjaar en -maand - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Factureringsplanning - table [Localized Labels] measure [Billing Schedule] - - - Wijziging van maand. periodieke opbrengst per jaar en maand - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Huidig datumbereik: - table [Localized Labels] measure [Current Date Range:] - - - Uitstel van klantcontracten - table [Localized Labels] measure [Customer Contract Deferrals] - - - Klantcontractregels - table [Localized Labels] measure [Customer Contract Lines] - - - Klantuitstel - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Maand. periodieke analyse van opbrengst - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Maand. periodieke opbrengst en maand. periodieke opbrengst VJ per kalendermaand - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Maand. periodieke opbrengst en jaar-tot-jaar groei per kalenderjaar en -maand - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Maand. periodieke opbrengst per klant - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Maand. periodieke opbrengst per verkoper - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Maand. periodieke opbrengst per kalenderjaar en -maand - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Maand. periodieke opbrengst per artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Maand. periodieke opbrengst per artikelcategorie - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Maand. periodiek opbrengstverloop en downgrade per klantcontract - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Maand. periodieke opbrengst nieuw en upgrade per klantcontract - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Maandelijkse opbrengst- en kostenprognose per kalenderjaar en -maand - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Maandelijkse opbrengst en kostenprognose per verkoper, klant en contractnr. - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Vrijgegeven en uitgesteld bedrag per kalenderjaar en -maand - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Opbrengstanalyse - table [Localized Labels] measure [Revenue Analysis] - - - Opbrengst per klant - table [Localized Labels] measure [Revenue by Customer] - - - Opbrengst per artikel - table [Localized Labels] measure [Revenue by Item] - - - Opbrengst per verkoper - table [Localized Labels] measure [Revenue by Salesperson] - - - Opbrengstontwikkeling - table [Localized Labels] measure [Revenue Development] - - - Opbrengstprognose - table [Localized Labels] measure [Sales and Cost Forecast] - - - Opbrengstgroei jaar-tot-jaar - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analyse van Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Overzicht van Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - Top 5 klanten per maand. periodieke opbrengst - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - Top 5 leveranciers op maand. periodieke kosten - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analyse van totale contractwaarde - table [Localized Labels] measure [Total Contract Value Analysis] - - - Totale contractwaarde en totale contractwaarde VJ per kalendermaand - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Totale contractwaarde en jaar-tot-jaar groei per kalenderjaar en -maand - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Totale contractwaarde per kalenderjaar en -maand - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Groei totale contractwaarde jaar-tot-jaar - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Uitstel van leverancierscontracten - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Leveranciersuitstel - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Knop Terug - table [Localized Labels] measure [Back button] - - - Maandelijkse periodieke opbrengst, Maandelijkse periodieke kosten, Maandelijkse nettowinst, Actieve klanten, Totale contractwaarde, Wijziging in maandelijks periodieke opbrengst - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Verloopanalyse - table [Localized Labels] measure [Churn Analysis] - - - Gem. maand. % verloop per jaar en maand - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobject - table [table.Name] - - - Serviceobjectnr. - table [Subscription] column [Subscription No.] - - - Pakketcode - table [Subscription] column [Package Code] - - - Omschrijving van serviceobject - table [Subscription] column [Subscription Desc.] - - - Analysedatum - table [Subscription] column [Analysis Date] - - - Omschrijving van abonnementsnr. - table [Subscription] column [Subscription No. Desc.] - - - Uitstel van leverancierscontracten - table [table.Name] - - - Documenttype - table [Vendor Contract Deferrals] column [Document Type] - - - Documentnr. - table [Vendor Contract Deferrals] column [Document No.] - - - Boekingsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Documentboekingsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Boekingsdatum van vrijgave - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Grootboekpostnr. - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Korting - table [Vendor Contract Deferrals] column [Discount] - - - Documentregelnr. - table [Vendor Contract Deferrals] column [Document Line No.] - - - Klantcontractregel - table [table.Name] - - - Nr. van toezeggingsregel - table [Customer Contract Line] column [Subscription Line No.] - - - Sjabloon - table [Customer Contract Line] column [Template] - - - Omschrijving van klantcontractregel - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Begindatum van service - table [Customer Contract Line] column [Subscription Start Date] - - - Einddatum van service - table [Customer Contract Line] column [Subscription End Date] - - - Volgende factureringsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Basisperiode van facturering - table [Customer Contract Line] column [Billing Base Period] - - - Nr. van factureringsartikel - table [Customer Contract Line] column [Invoicing Item No.] - - - Nr. van klantcontractregel - table [Customer Contract Line] column [Customer Contract Line No.] - - - Opzegperiode - table [Customer Contract Line] column [Notice Period] - - - Initiële termijn - table [Customer Contract Line] column [Initial Term] - - - Uitbreidingstermijn - table [Customer Contract Line] column [Extension Term] - - - Factureringsritme - table [Customer Contract Line] column [Billing Rhythm] - - - Annulering mogelijk tot - table [Customer Contract Line] column [Cancellation Possible Until] - - - Termijn tot - table [Customer Contract Line] column [Term Until] - - - Verlengingstermijn - table [Customer Contract Line] column [Renewal Term] - - - Regel actief - table [Customer Contract Line] column [Line Active] - - - Resterende termijn - table [Customer Contract Line] column [Remaining Term] - - - Maanden factureringsritme - table [Customer Contract Line] column [Billing Rhythm Months] - - - Nr. van klantcontract - table [Customer Contract Line] column [Customer Contract No.] - - - Is op gebruik gebaseerde facturering - table [Customer Contract Line] column [Is Usage Based Billing] - - - Bronsoort - table [Customer Contract Line] column [Source Type] - - - Bronnr. - table [Customer Contract Line] column [Source No.] - - - Leverancierscontractregel - table [table.Name] - - - Nr. van toezeggingsregel - table [Vendor Contract Line] column [Subscription Line No.] - - - Sjabloon - table [Vendor Contract Line] column [Template] - - - Omschrijving van leverancierscontractregel - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Begindatum van service - table [Vendor Contract Line] column [Subscription Start Date] - - - Einddatum van service - table [Vendor Contract Line] column [Subscription End Date] - - - Volgende factureringsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Nr. van leverancierscontractregel - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Opzegperiode - table [Vendor Contract Line] column [Notice Period] - - - Initiële termijn - table [Vendor Contract Line] column [Initial Term] - - - Uitbreidingstermijn - table [Vendor Contract Line] column [Extension Term] - - - Factureringsritme - table [Vendor Contract Line] column [Billing Rhythm] - - - Annulering mogelijk tot - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Termijn tot - table [Vendor Contract Line] column [Term Until] - - - Verlengingstermijn - table [Vendor Contract Line] column [Renewal Term] - - - Regel actief - table [Vendor Contract Line] column [Line Active] - - - Resterende termijn - table [Vendor Contract Line] column [Remaining Term] - - - Maanden factureringsritme - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Nr. van leverancierscontract - table [Vendor Contract Line] column [Vendor Contract No.] - - - Is nieuwste versie - table [Vendor Contract Line] column [Is Latest Version] - - - Is op gebruik gebaseerde facturering - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Bronsoort - table [Vendor Contract Line] column [Source Type] - - - Bronnr. - table [Vendor Contract Line] column [Source No.] - - - Uitstel van klantcontracten - table [table.Name] - - - Documenttype - table [Customer Contract Deferrals] column [Document Type] - - - Documentnr. - table [Customer Contract Deferrals] column [Document No.] - - - Boekingsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Documentregelnr. - table [Customer Contract Deferrals] column [Document Line No.] - - - Documentboekingsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Boekingsdatum van vrijgave - table [Customer Contract Deferrals] column [Release Posting Date] - - - Grootboekpostnr. - table [Customer Contract Deferrals] column [G LEntry No.] - - - Klantcontract - table [table.Name] - - - Nr. van klantcontract - table [Customer Contract] column [Customer Contract No.] - - - Type klantcontract - table [Customer Contract] column [Customer Contract Type] - - - Omschrijving van klantcontract - table [Customer Contract] column [Customer Contract Description] - - - Omschrijving van klantcontractnr. - table [Customer Contract] column [Customer Contract No. Desc.] - - - Leverancierscontract - table [table.Name] - - - Nr. van leverancierscontract - table [Vendor Contract] column [Vendor Contract No.] - - - Type leverancierscontract - table [Vendor Contract] column [Vendor Contract Type] - - - Omschrijving van leverancierscontract - table [Vendor Contract] column [Vendor Contract Description] - - - Omschrijving van leverancierscontractnr. - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - GGF-verwerking - table [table.Name] - - - GGF behandelen als constante - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Is vrijgegeven - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnr. - table [Item] column [Item No.] - - - Artikelnaam - table [Item] column [Item Name] - - - Voorraadboekingsgroep - table [Item] column [Inventory Posting Group] - - - Basiseenheid - table [Item] column [Base Unit of Measure] - - - Artikelnr. en -omschrijving - table [Item] column [Item No. & Description] - - - Analysedatum - table [table.Name] - - - Is initiële versie - table [Analysis Date] column [Is Initial Version] - - - Is huidige versie - table [Analysis Date] column [Is Current Version] - - - Berekeningsgroep - Tijdinformatie voor kalender (fiscaal) - table [table.Name] - - - Perspectief - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI's van Subscription Billing - table [table.Name] - - - MPO - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MPK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Klantuitstel - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Leveranciersuitstel - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - VORDERING - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TCW - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Verkoop voorspellen - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MPK VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MPK Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Maand. periodiek opbrengstverloop - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MPO VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Maand. periodieke opbrengst nieuw - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Maand. periodieke opbrengst Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMPO - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMPO % van MPO - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMPO VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMPO Δ versus VJ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Algehele wijziging MPO - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TCW VJ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TCW Δ versus VJ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Analyseposten laatste update - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Laatste update semantisch model - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Param.omgeving - table [Subscription Billing KPIs] measure [Param Environment] - - - Param.bedrijf - table [Subscription Billing KPIs] measure [Param Company] - - - Maand. periodieke opbrengstupgrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Wijziging GGF maand. periodieke opbrengst - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Aangiftevaluta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Actieve klanten - table [Subscription Billing KPIs] measure [Active Customers] - - - Actieve klanten VJ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Actieve klanten Δ versus VJ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prognose van klantfacturering - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prognose van leveranciersfacturering - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prognosekosten - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Maand. periodieke opbrengstdowngrade - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Geselecteerd datumbereik - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Gem. maand. % verloop - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Maand. gem. % downgrade - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Maand. periodieke opbrengstdowngrade en -verloop - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Verkoper - table [table.Name] - - - Verkoperscode - table [Salesperson] column [Salesperson Code] - - - Verkopersnaam - table [Salesperson] column [Salesperson Name] - - - Wijzigingen in klantcontract - table [table.Name] - - - Sleutel van klantcontractregel - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Type wijzigen - table [Customer Contract Changes] column [Change Type] - - - MPO Delta - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.sv-SE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.sv-SE.resx deleted file mode 100644 index 33bfce2840..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Subscription Billing app/SubscriptionBillingApp.sv-SE.resx +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Dimensionsuppsättningar - table [table.Name] - - - Global dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - Global dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Genväg dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Genväg dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Genväg dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Genväg dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Genväg dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Genväg dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - Leverantörer - table [table.Name] - - - Leverantörsnummer - table [Vendors] column [Vendor No.] - - - Leverantörsnamn - table [Vendors] column [Vendor Name] - - - Adress - table [Vendors] column [Address] - - - Adress 2 - table [Vendors] column [Address 2] - - - Ort - table [Vendors] column [City] - - - Postnummer - table [Vendors] column [Post Code] - - - Delstat - table [Vendors] column [State] - - - Lands-/regionskod - table [Vendors] column [Country/Region Code] - - - Leverantörsbokföringsmall - table [Vendors] column [Vendor Posting Group] - - - Leverantörsnummer och -namn - table [Vendors] column [Vendor No. & Name] - - - Kunder - table [table.Name] - - - Kundnummer - table [Customers] column [Customer No.] - - - Kundnamn - table [Customers] column [Customer Name] - - - Adress - table [Customers] column [Address] - - - Adress 2 - table [Customers] column [Address 2] - - - Ort - table [Customers] column [City] - - - Postnummer - table [Customers] column [Post Code] - - - Delstat - table [Customers] column [State] - - - Lands-/regionskod - table [Customers] column [Country/Region Code] - - - Kundbokföringsmall - table [Customers] column [Customer Posting Group] - - - Kundprisgrupp - table [Customers] column [Customer Price Group] - - - Kundrabattgrupp - table [Customers] column [Customer Discount Group] - - - Kundnummer och -namn - table [Customers] column [Customer No. & Name] - - - Datum - table [table.Name] - - - Vecka Dag - table [Date] column [Week Day] - - - Typ av dag - table [Date] column [Day Type] - - - Kalender År - table [Date] column [Calendar Year] - - - - Kalender Kvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalender Månad - table [Date] column [Calendar Month] - - - Kalender Månad År - table [Date] column [Calendar Month Year] - - - Kalender Vecka - table [Date] column [Calendar Week] - - - Kalender Vecka År - table [Date] column [Calendar Week Year] - - - Kalender RelativtVeckaPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativtMånadPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativtKvartalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativtÅrPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMånad - table [Date] column [Calendar StartOfMonth] - - - Kalender SlutPåMånad - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - Kalender SlutPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender Årsslut - table [Date] column [Calendar EndOfYear] - - - Kalender MånadDagar - table [Date] column [Calendar MonthDays] - - - Kalender KvartalDagar - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDagar - table [Date] column [Calendar YearDays] - - - Kalender DagIMånadNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagIKvartalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagIÅrNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumFöregåendeVecka - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumFöregåendeMånad - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumFöregåendeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumFöregåendeÅr - table [Date] column [Calendar DatePreviousYear] - - - Räkenskapsår - table [Date] column [Fiscal Year] - - - Räkenskapskalender Kvartal - table [Date] column [Fiscal Quarter] - - - Räkenskapskalender Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Räkenskapskalender Månad - table [Date] column [Fiscal Month] - - - Räkenskapskalender Månad År - table [Date] column [Fiscal Month Year] - - - Räkenskapskalender Vecka - table [Date] column [Fiscal Week] - - - Räkenskapskalender År Vecka - table [Date] column [Fiscal Week Year] - - - Räkenskapskalender RelativtVeckaPos - table [Date] column [Fiscal RelativeWeekPos] - - - Räkenskapskalender: RelativtMånadPos - table [Date] column [Fiscal RelativeMonthPos] - - - Räkenskapskalender RelativtKvartalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Räkenskapskalender RelativtÅrPos - table [Date] column [Fiscal RelativeYearPos] - - - Räkenskapskalender StartPåMånad - table [Date] column [Fiscal StartOfMonth] - - - Räkenskapskalender SlutPåMånad - table [Date] column [Fiscal EndOfMonth] - - - Räkenskapskalender StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Räkenskapskalender SlutPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Räkenskapskalender StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Räkenskapskalender Årsslut - table [Date] column [Fiscal EndOfYear] - - - Räkenskapskalender MånadDagar - table [Date] column [Fiscal MonthDays] - - - Räkenskapskalender KvartalDagar - table [Date] column [Fiscal QuarterDays] - - - Räkenskapskalender ÅrDagar - table [Date] column [Fiscal YearDays] - - - Räkenskapskalender DagIMÅnadNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Räkenskapskalender DagIKvartalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Räkenskapskalender DagIÅrNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Räkenskapskalender DatumFöregåendeVecka - table [Date] column [Fiscal DatePreviousWeek] - - - Räkenskapskalender DatumFöregåendeMånad - table [Date] column [Fiscal DatePreviousMonth] - - - Räkenskapskalender DatumFöregåendeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Räkenskapskalender DatumFöregåendeÅr - table [Date] column [Fiscal DatePreviousYear] - - - RV År - table [Date] column [FW Year] - - - RV Kvartal - table [Date] column [FW Quarter] - - - RV Kvartal År - table [Date] column [FW Quarter Year] - - - RV Månad - table [Date] column [FW Month] - - - RV Månad År - table [Date] column [FW Month Year] - - - RV Vecka - table [Date] column [FW Week] - - - RV Period - table [Date] column [FW Period] - - - RV Vecka År - table [Date] column [FW Week Year] - - - RV StartPåVecka - table [Date] column [FW StartOfWeek] - - - RV SlutPåVecka - table [Date] column [FW EndOfWeek] - - - RV RelativtVeckaPos - table [Date] column [FW RelativeWeekPos] - - - RV RelativtMånPos - table [Date] column [FW RelativeMonthPos] - - - RV RelativtKvartalPos - table [Date] column [FW RelativeQuarterPos] - - - RV RelativtÅrPos - table [Date] column [FW RelativeYearPos] - - - RV StartPåMånad - table [Date] column [FW StartOfMonth] - - - RV SlutPåMånad - table [Date] column [FW EndOfMonth] - - - RV StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - RV SlutPåKvartal - table [Date] column [FW EndOfQuarter] - - - RV StartPåÅr - table [Date] column [FW StartOfYear] - - - RV Årsslut - table [Date] column [FW EndOfYear] - - - RV MånadDagar - table [Date] column [FW MonthDays] - - - RV KvartalDagar - table [Date] column [FW QuarterDays] - - - RV ÅrDagar - table [Date] column [FW YearDays] - - - RV DagPåMånadNummer - table [Date] column [FW DayOfMonthNumber] - - - RV DagIKvartalNummer - table [Date] column [FW DayOfQuarterNumber] - - - RV DagIÅrNummer - table [Date] column [FW DayOfYearNumber] - - - RV DatumFöregåendeVecka - table [Date] column [FW DatePreviousWeek] - - - RV DatumFöregåendeMånad - table [Date] column [FW DatePreviousMonth] - - - RV DatumFöregåendeKvartal - table [Date] column [FW DatePreviousQuarter] - - - RV DatumFöregåendeÅr - table [Date] column [FW DatePreviousYear] - - - Relativt Dag - table [Date] column [Relative Day] - - - Serienummer i 365-dagarsformat - table [Date] column [Sequential365DayNumber] - - - Periodiseringar av dataintervall - table [Date] column [Data Range Deferrals] - - - Antal dagar - table [Date] measure [No. of Days] - - - Räkenskapskalender År-Kvartal-Månad-Vecka - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Räkenskapskalender Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Räkenskapskalender År Vecka - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender År-Kvartal-Månad-Vecka - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Vecka År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - RV År-Kvartal-Månad-Vecka - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - RV År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - RV Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - RV Månad År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Räkenskapskalender År-Månad - table [Date] hierarchy [Fiscal Year-Month] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Räkenskapskalender År-Månad-Vecka - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Räkenskapskalender År Vecka - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender År-Månad - table [Date] hierarchy [Calendar Year-Month] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender År-Månad-Vecka - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Vecka År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - RV År-Månad-Vecka - table [Date] hierarchy [FW Year-Month-Week] - - - RV År - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - RV Månad År - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - RV År-Kvartal-Vecka - table [Date] hierarchy [FW Year-Quarter-Week] - - - RV År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - RV Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - RV År-Vecka - table [Date] hierarchy [FW Year-Week] - - - RV År - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - ANSLUT DINA DATA - table [Localized Labels] measure [CONNECT YOUR DATA] - - - 1. Ladda ned Finance Connector for Power BI - table [Localized Labels] measure [1. Download the Finance Connector for Power BI] - - - 2. Konfigurera Dynamics 365 Business Central - table [Localized Labels] measure [2. Configure Dynamics 365 Business Central] - - - ANVÄND, REDIGERA OCH SKAPA EGNA RAPPORTER - table [Localized Labels] measure [USE, EDIT AND BUILD YOUR OWN REPORTS] - - - Ekonomi omfattar en mängd olika färdiga rapporter som gör det enkelt att se data direkt. Du kan redigera dessa rapporter eller skapa en egen rapport från grunden. - table [Localized Labels] measure [Finance includes a variety of pre-built reports to help you see your data immediately. You are able to edit these reports or build your own report from scratch.] - - - HJÄLP OCH SUPPORT - table [Localized Labels] measure [HELP AND SUPPORT] - - - Hjälp och support med den nya rapporten finns i översiktsdokumentationen för Analys. - table [Localized Labels] measure [For help and support with your new report please visit the Analytics overview documentation.] - - - för Business Central - table [Localized Labels] measure [for Business Central] - - - Uppdaterades senast - table [Localized Labels] measure [Last Refreshed] - - - Företagsnamn - table [Localized Labels] measure [Company Name] - - - Analysera transaktioner per - table [Localized Labels] measure [Analysis Entries as of] - - - Faktureringsprognos per faktureringsperiod, kund och kontraktsnr - table [Localized Labels] measure [Billing Forecast by Billing Period, Customer and Contract No.] - - - Faktureringsprognos per kalenderår och månad - table [Localized Labels] measure [Billing Forecast by Year and Month] - - - Faktureringsschema - table [Localized Labels] measure [Billing Schedule] - - - Ändring av månatliga återkommande intäkter per år och månad - table [Localized Labels] measure [Change of Mon. Recurring Revenue by Year and Month] - - - Aktuellt datumintervall: - table [Localized Labels] measure [Current Date Range:] - - - Periodiseringar av kundkontrakt - table [Localized Labels] measure [Customer Contract Deferrals] - - - Kundkontraktsrader - table [Localized Labels] measure [Customer Contract Lines] - - - Kundperiodiseringar - table [Localized Labels] measure [Customer Deferrals (Caption)] - - - Analys av månatliga återkommande intäkter - table [Localized Labels] measure [Mon. Recurring Revenue Analysis] - - - Månatliga återkommande intäkter och månatliga återkommande intäkter FÅ per kalendermånad - table [Localized Labels] measure [Mon. Recurring Revenue and Mon. Recurring Revenue PY by Month] - - - Månatliga återkommande intäkter och tillväxt år för år per kalenderår och månad - table [Localized Labels] measure [Mon. Recurring Revenue and Year-Over-Year Growth by Year and Month] - - - Månatliga återkommande intäkter per kund - table [Localized Labels] measure [Mon. Recurring Revenue by Customer] - - - Månatliga återkommande intäkter per säljare - table [Localized Labels] measure [Mon. Recurring Revenue by Salesperson] - - - Månatliga återkommande intäkter per kalenderår och månad - table [Localized Labels] measure [Mon. Recurring Revenue by Year and Month] - - - Månatliga återkommande intäkter per artikel - table [Localized Labels] measure [Mon. Recurring Revenue by Item] - - - Månatliga återkommande intäkter per artikelkategori - table [Localized Labels] measure [Mon. Recurring Revenue by Item Category] - - - Månatliga återkommande intäktsbortfall och nedgradering per kundkontrakt - table [Localized Labels] measure [Mon. Recurring Revenue Churn and Downgrade by Customer Contract] - - - Månatliga återkommande intäkter, nya och nedgradering per kundkontrakt - table [Localized Labels] measure [Mon. Recurring Revenue New and Upgrade by Customer Contract] - - - Månatlig intäkts- och kostnadsprognos per kalenderår och månad - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Year and Month] - - - Månatliga intäkter och kostnadsprognos per säljare, kund och kontraktsnr - table [Localized Labels] measure [Monthly Sales and Cost Forecast by Salesperson, Customer and Contract No.] - - - Frisläppt och periodiserat belopp per kalenderår och månad - table [Localized Labels] measure [Released and Deferred Amount by Year and Month] - - - Intäktsanalys - table [Localized Labels] measure [Revenue Analysis] - - - Intäkt per kund - table [Localized Labels] measure [Revenue by Customer] - - - Intäkt per artikel - table [Localized Labels] measure [Revenue by Item] - - - Intäkt per säljare - table [Localized Labels] measure [Revenue by Salesperson] - - - Intäktsutveckling - table [Localized Labels] measure [Revenue Development] - - - Intäktsprognos - table [Localized Labels] measure [Sales and Cost Forecast] - - - Tillväxtökning år för år - table [Localized Labels] measure [Revenue Year-Over-Year Growth] - - - Analys av Subscription Billing - table [Localized Labels] measure [Subscription Billing Analysis] - - - Översikt över Subscription Billing - table [Localized Labels] measure [Subscription Billing Overview] - - - 5 främsta kunderna per månatliga återkommande intäkter - table [Localized Labels] measure [Top 5 Customers by Mon. Recurring Revenue] - - - 5 främsta leverantörer per månatlig återkommande kostnad - table [Localized Labels] measure [Top 5 Vendors by Mon. Recurring Cost] - - - Analys av totalt kontraktsvärde - table [Localized Labels] measure [Total Contract Value Analysis] - - - Totalt kontraktsvärde och totalt kontraktsvärde FÅ per kalendermånad - table [Localized Labels] measure [Total Contract Value and Total Contract Value PY by Month] - - - Totalt kontraktsvärde och tillväxt år för år per kalenderår och månad - table [Localized Labels] measure [Total Contract Value and Year-Over-Year Growth by Year and Month] - - - Totalt kontraktsvärde per kalenderår och månad - table [Localized Labels] measure [Total Contract Value by Year and Month] - - - Totalt kontraktsvärde tillväxt år för år - table [Localized Labels] measure [Total Contract Value Year-Over-Year Growth] - - - Kontraktsperiodiseringar för leverantör - table [Localized Labels] measure [Vendor Contract Deferrals] - - - Leverantörsperiodiseringar - table [Localized Labels] measure [Vendor Deferrals (Caption)] - - - Knappen Föregående - table [Localized Labels] measure [Back button] - - - Månatliga återkommande intäkter, månatlig återkommande kostnad, månatlig nettovinst, aktiva kunder, totalt kontraktsvärde, förändring i månatliga återkommande intäkter - table [Localized Labels] measure [Monthly Recurring Revenue, Monthly Recurring Cost, Monthly Net Profit, Active Customers, Total Contract Value, Change in Monthly Recurring Revenue] - - - Bortfallsanalys - table [Localized Labels] measure [Churn Analysis] - - - Genomsnittlig månatlig bortfallsgrad % per år och månad - table [Localized Labels] measure [Avg. Mon. Churn Rate % by Year and Month] - - - Total Contract Value by Package - table [Localized Labels] measure [Total Contract Value by Package] - - - Mon. Recurring Revenue by Package - table [Localized Labels] measure [Mon. Recurring Revenue by Package] - - - Churn by Customer - table [Localized Labels] measure [Churn by Customer] - - - Profitability by Item - table [Localized Labels] measure [Profitability by Item] - - - Mon. Recurring Revenue by Customer Location - table [Localized Labels] measure [Mon. Recurring Revenue by Customer Location] - - - Profitability by Salesperson - table [Localized Labels] measure [Profitability by Salesperson] - - - Total Contract Value by Salesperson - table [Localized Labels] measure [Total Contract Value by Salesperson] - - - Customer Deferrals by Released Status - table [Localized Labels] measure [Customer Deferrals by Released Status] - - - Vendor Deferrals by Released Status - table [Localized Labels] measure [Vendor Deferrals by Released Status] - - - Billing Forecast by Billing Period, Vendor and Contract No. - table [Localized Labels] measure [Billing Forecast by Billing Period, Vendor and Contract No.] - - - Serviceobjekt - table [table.Name] - - - Serviceobjektsnummer - table [Subscription] column [Subscription No.] - - - Paketkod - table [Subscription] column [Package Code] - - - Beskrivning av serviceobjekt - table [Subscription] column [Subscription Desc.] - - - Analysdatum - table [Subscription] column [Analysis Date] - - - Beskrivning av prenumerationsnummer - table [Subscription] column [Subscription No. Desc.] - - - Kontraktsperiodiseringar för leverantör - table [table.Name] - - - Dokumenttyp - table [Vendor Contract Deferrals] column [Document Type] - - - Dokumentnummer - table [Vendor Contract Deferrals] column [Document No.] - - - Bokföringsdatum - table [Vendor Contract Deferrals] column [Posting Date] - - - Dokumentets bokföringsdatum - table [Vendor Contract Deferrals] column [Document Posting Date] - - - Bokföringsdatum för frisläppning - table [Vendor Contract Deferrals] column [Release Posting Date] - - - Transaktionsnummer i redovisning - table [Vendor Contract Deferrals] column [G LEntry No.] - - - Rabatt - table [Vendor Contract Deferrals] column [Discount] - - - Dokumentradnr - table [Vendor Contract Deferrals] column [Document Line No.] - - - Kundkontraktsrad - table [table.Name] - - - Ufästelseradnr - table [Customer Contract Line] column [Subscription Line No.] - - - Mall - table [Customer Contract Line] column [Template] - - - Beskrivning av kundkontraktsrad - table [Customer Contract Line] column [Customer Contract Line Desc.] - - - Tjänstens startdatum - table [Customer Contract Line] column [Subscription Start Date] - - - Tjänstens slutdatum - table [Customer Contract Line] column [Subscription End Date] - - - Nästa faktureringsdatum - table [Customer Contract Line] column [Next Billing Date] - - - Faktureringsbasperiod - table [Customer Contract Line] column [Billing Base Period] - - - Faktureringsartikelnummer - table [Customer Contract Line] column [Invoicing Item No.] - - - Kundkontraktsradnr - table [Customer Contract Line] column [Customer Contract Line No.] - - - Uppsägningstid - table [Customer Contract Line] column [Notice Period] - - - Inledande löptid - table [Customer Contract Line] column [Initial Term] - - - Tilläggsvillkor - table [Customer Contract Line] column [Extension Term] - - - Faktureringstakt - table [Customer Contract Line] column [Billing Rhythm] - - - Annullering möjlig till - table [Customer Contract Line] column [Cancellation Possible Until] - - - Löptid till - table [Customer Contract Line] column [Term Until] - - - Förnyelseperiod - table [Customer Contract Line] column [Renewal Term] - - - Aktiv rad - table [Customer Contract Line] column [Line Active] - - - Återstående löptid - table [Customer Contract Line] column [Remaining Term] - - - Månader för faktureringstakt - table [Customer Contract Line] column [Billing Rhythm Months] - - - Kundkontraktsnummer - table [Customer Contract Line] column [Customer Contract No.] - - - Är användningsbaserad fakturering - table [Customer Contract Line] column [Is Usage Based Billing] - - - Källtyp - table [Customer Contract Line] column [Source Type] - - - Ursprungsnr - table [Customer Contract Line] column [Source No.] - - - Leverantörskontraktsrad - table [table.Name] - - - Ufästelseradnr - table [Vendor Contract Line] column [Subscription Line No.] - - - Mall - table [Vendor Contract Line] column [Template] - - - Beskrivning av leverantörskontraktsrad - table [Vendor Contract Line] column [Vendor Contract Line Desc.] - - - Tjänstens startdatum - table [Vendor Contract Line] column [Subscription Start Date] - - - Tjänstens slutdatum - table [Vendor Contract Line] column [Subscription End Date] - - - Nästa faktureringsdatum - table [Vendor Contract Line] column [Next Billing Date] - - - Leverantörskontraktsradnr - table [Vendor Contract Line] column [Vendor Contract Line No.] - - - Uppsägningstid - table [Vendor Contract Line] column [Notice Period] - - - Inledande löptid - table [Vendor Contract Line] column [Initial Term] - - - Tilläggsvillkor - table [Vendor Contract Line] column [Extension Term] - - - Faktureringstakt - table [Vendor Contract Line] column [Billing Rhythm] - - - Annullering möjlig till - table [Vendor Contract Line] column [Cancellation Possible Until] - - - Löptid till - table [Vendor Contract Line] column [Term Until] - - - Förnyelseperiod - table [Vendor Contract Line] column [Renewal Term] - - - Aktiv rad - table [Vendor Contract Line] column [Line Active] - - - Återstående löptid - table [Vendor Contract Line] column [Remaining Term] - - - Månader för faktureringstakt - table [Vendor Contract Line] column [Billing Rhythm Months] - - - Leverantörskontraktsnummer - table [Vendor Contract Line] column [Vendor Contract No.] - - - Är senaste version - table [Vendor Contract Line] column [Is Latest Version] - - - Är användningsbaserad fakturering - table [Vendor Contract Line] column [Is Usage Based Billing] - - - Källtyp - table [Vendor Contract Line] column [Source Type] - - - Ursprungsnr - table [Vendor Contract Line] column [Source No.] - - - Periodiseringar av kundkontrakt - table [table.Name] - - - Dokumenttyp - table [Customer Contract Deferrals] column [Document Type] - - - Dokumentnummer - table [Customer Contract Deferrals] column [Document No.] - - - Bokföringsdatum - table [Customer Contract Deferrals] column [Posting Date] - - - Dokumentradnr - table [Customer Contract Deferrals] column [Document Line No.] - - - Dokumentets bokföringsdatum - table [Customer Contract Deferrals] column [Document Posting Date] - - - Bokföringsdatum för frisläppning - table [Customer Contract Deferrals] column [Release Posting Date] - - - Transaktionsnummer i redovisning - table [Customer Contract Deferrals] column [G LEntry No.] - - - Kundkontrakt - table [table.Name] - - - Kundkontraktsnummer - table [Customer Contract] column [Customer Contract No.] - - - Typ av kundkontrakt - table [Customer Contract] column [Customer Contract Type] - - - Beskrivning av kundkontrakt - table [Customer Contract] column [Customer Contract Description] - - - Beskrivning av kundkontraktsnummer - table [Customer Contract] column [Customer Contract No. Desc.] - - - Leverantörskontrakt - table [table.Name] - - - Leverantörskontraktsnummer - table [Vendor Contract] column [Vendor Contract No.] - - - Typ av leverantörskontrakt - table [Vendor Contract] column [Vendor Contract Type] - - - Beskrivning av leverantörskontrakt - table [Vendor Contract] column [Vendor Contract Description] - - - Beskrivning av leverantörskontraktsnummer - table [Vendor Contract] column [Vendor Contract No. Desc.] - - - Hantering av ABF - table [table.Name] - - - Behandla ABF som konstant - table [UBB handling] column [Treat Usage Based Billing as constant] - - - Är släppt - table [table.Name] - - - Is Released Value - table [Is Released] column [Is Released Value] - - - Artikel - table [table.Name] - - - Artikelnummer - table [Item] column [Item No.] - - - Artikelnamn - table [Item] column [Item Name] - - - Lagerbokföringsmall - table [Item] column [Inventory Posting Group] - - - Basmåttenhet - table [Item] column [Base Unit of Measure] - - - Artikelnummer och -beskrivning - table [Item] column [Item No. & Description] - - - Analysdatum - table [table.Name] - - - Är inledande version - table [Analysis Date] column [Is Initial Version] - - - Är aktuell version - table [Analysis Date] column [Is Current Version] - - - Beräkningsgrupp – Tidsintelligens för kalender (räkenskapskalender) - table [table.Name] - - - Perspektiv - table [Calc. Group - Time Intelligence for Calendar (Fiscal)] column [Perspective] - - - KPI:er för Subscription Billing - table [table.Name] - - - MÅI - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue] - - - MÅK - table [Subscription Billing KPIs] measure [Mon. Recurring Cost] - - - Kundperiodiseringar - table [Subscription Billing KPIs] measure [Customer Deferrals] - - - Leverantörsperiodiseringar - table [Subscription Billing KPIs] measure [Vendor Deferrals] - - - KRA - table [Subscription Billing KPIs] measure [Annual Recurring Revenue] - - - TKV - table [Subscription Billing KPIs] measure [Total Contract Value] - - - Prognosförsäljning - table [Subscription Billing KPIs] measure [Forecast Sales] - - - MÅK FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost PY] - - - MÅK Δ jämfört med FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Cost Δ vs. PY] - - - Bortfall av månatliga återkommande intäkter - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Churn] - - - MÅI FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue PY] - - - Ny månatlig återkommande intäkt - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue New] - - - Månatliga återkommande intäkter Δ jämfört med FÅ - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Δ vs. PY] - - - NMÅI - table [Subscription Billing KPIs] measure [Mon. Net Profit Amount] - - - NMÅI % av MÅI - table [Subscription Billing KPIs] measure [Mon. Net Profit %] - - - NMÅI FÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit PY] - - - NMÅI Δ jämfört med FÅ - table [Subscription Billing KPIs] measure [Mon. Net Profit Δ vs. PY] - - - Övergripande förändring för MÅI - table [Subscription Billing KPIs] measure [Change in Mon. Recurring Revenue] - - - TKV FÅ - table [Subscription Billing KPIs] measure [Total Contract Value PY] - - - TKV Δ jämfört med FÅ - table [Subscription Billing KPIs] measure [Total Contract Value Δ vs. PY] - - - Senaste uppdatering av analystransaktioner - table [Subscription Billing KPIs] measure [Last Update Analysis Entries] - - - Semantisk modell för senaste uppdatering - table [Subscription Billing KPIs] measure [Last Update Semantic Model] - - - Parametermiljö - table [Subscription Billing KPIs] measure [Param Environment] - - - Parameterföretag - table [Subscription Billing KPIs] measure [Param Company] - - - Uppgradering av månatliga återkommande intäkter - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Upgrade] - - - Förändring av månatliga återkommande intäkter vid ABF - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Change UBB] - - - Rapporteringsvaluta - table [Subscription Billing KPIs] measure [Reporting Currency] - - - Aktiva kunder - table [Subscription Billing KPIs] measure [Active Customers] - - - Aktiva kunder FÅ - table [Subscription Billing KPIs] measure [Active Customers PY] - - - Aktiva kunder Δ jämfört med FÅ - table [Subscription Billing KPIs] measure [Active Customers Δ vs. PY] - - - Prognos för kundfakturering - table [Subscription Billing KPIs] measure [Customer Billing Forecast] - - - Prognos för leverantörsfakturering - table [Subscription Billing KPIs] measure [Vendor Billing Forecast] - - - Prognoskostnader - table [Subscription Billing KPIs] measure [Forecast Costs] - - - Nedgradering av månatliga återkommande intäkter - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade] - - - Churn - table [Subscription Billing KPIs] measure [Churn (-)] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade (-)] - - - Usage Based Billing Change - table [Subscription Billing KPIs] measure [Usage Based Billing Change] - - - Upgrade - table [Subscription Billing KPIs] measure [Upgrade] - - - New - table [Subscription Billing KPIs] measure [New] - - - Total Change - table [Subscription Billing KPIs] measure [Total Change] - - - Valt datumintervall - table [Subscription Billing KPIs] measure [Selected Date Range] - - - Churn - table [Subscription Billing KPIs] measure [Churn] - - - Downgrade - table [Subscription Billing KPIs] measure [Downgrade] - - - MRR End of Period - table [Subscription Billing KPIs] measure [MRR End of Period] - - - Genomsnittlig månatlig bortfallsgrad % - table [Subscription Billing KPIs] measure [Avg. Mon. Churn Rate %] - - - Månatlig genomsnittlig nedgraderingsgrad % - table [Subscription Billing KPIs] measure [Mon. Avg. Downgrade Rate %] - - - Nedgradering och bortfall av månatliga återkommande intäkter - table [Subscription Billing KPIs] measure [Mon. Recurring Revenue Downgrade & Churn] - - - Customer Deferrals Back Link - table [Subscription Billing KPIs] measure [Customer Deferrals Back Link] - - - Vendor Deferrals Back Link - table [Subscription Billing KPIs] measure [Vendor Deferrals Back Link] - - - Customer Contract Line Back Link - table [Subscription Billing KPIs] measure [Customer Contract Line Back Link] - - - Vendor Contract Line Back Link - table [Subscription Billing KPIs] measure [Vendor Contract Line Back Link] - - - Säljare - table [table.Name] - - - Säljarkod - table [Salesperson] column [Salesperson Code] - - - Säljarnamn - table [Salesperson] column [Salesperson Name] - - - Ändringar i kundkontrakt - table [table.Name] - - - Nyckel för kundkontraktsrad - table [Customer Contract Changes] column [Customer Contract Line Key] - - - Datum - table [Customer Contract Changes] column [Date] - - - Ändringstyp - table [Customer Contract Changes] column [Change Type] - - - Delta för MÅI - table [Customer Contract Changes] column [MRR Delta] - - - Item Category - table [table.Name] - - - Item Category Code - table [Item Category] column [Item Category Code] - - - Item Category Description - table [Item Category] column [Item Category Description] - - - Item Category Code Hierarchy - table [Item Category] hierarchy [Item Category Code Hierarchy] - - - Item Category Code Level 1 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 1] - - - Item Category Code Level 2 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 2] - - - Item Category Code Level 3 - table [Item Category] hierarchy [Item Category Code Hierarchy] level [Item Category Code Level 3] - - \ No newline at end of file