├── .azuredevops ├── SyncMirroredRepository.yml ├── security-tools.gdnsuppress ├── security-tools.yml └── variables-common.yml ├── .devcontainer └── BCApps │ └── devcontainer.json ├── .github ├── AL-Go-Settings.json ├── ISSUE_TEMPLATE │ ├── bcidea.yaml │ ├── bug_report.yaml │ ├── config.yml │ └── contribution_bug.yaml ├── PULL_REQUEST_TEMPLATE.md ├── RELEASENOTES.copy.md ├── Update AL-Go System Files.settings.json ├── actions │ ├── GetGitBranches │ │ ├── action.ps1 │ │ └── action.yaml │ ├── RunAutomation │ │ ├── HowToAddAnAutomation.md │ │ ├── SubmitStabilityJob │ │ │ └── run.ps1 │ │ ├── UpdateAppBaselines │ │ │ └── run.ps1 │ │ ├── UpdateAppTranslations │ │ │ └── run.ps1 │ │ ├── UpdateBCArtifact │ │ │ └── run.ps1 │ │ ├── UpdateUseProjectDependencies │ │ │ └── run.ps1 │ │ ├── action.yaml │ │ └── run.ps1 │ ├── TestObjectIdsAndManifests │ │ ├── action.ps1 │ │ └── action.yaml │ └── TestPreprocessorSymbols │ │ ├── action.ps1 │ │ └── action.yaml ├── agents │ └── EngSys-VersionChange.agent.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── CICD.yaml │ ├── DeployReferenceDocumentation.yaml │ ├── IncrementVersionNumber.yaml │ ├── PowerShell.yaml │ ├── PullRequestHandler.yaml │ ├── PullRequestLabeler.yaml │ ├── SubmitStabilityJobs.yaml │ ├── Troubleshooting.yaml │ ├── UpdateALGoProjects.yaml │ ├── UpdateBCArtifactVersion.yaml │ ├── UpdateGitHubGoSystemFiles.yaml │ ├── UpdatePackageVersions.yaml │ ├── VerifyAppChanges.yaml │ ├── WorkitemValidation.yaml │ ├── _BuildALGoProject.yaml │ └── scorecard-analysis.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LOCAL_DEV_ENV.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── es-metadata.yml └── src ├── Apps └── W1 │ ├── APIReportsFinance │ └── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ ├── APIFinCustLedgEntry.Query.al │ │ ├── APIFinDtldCustLedgEntry.Query.al │ │ ├── APIFinDtldVendLedgEntry.Query.al │ │ ├── APIFinVendLedgEntry.Query.al │ │ ├── APIFinanceAccPeriods.Page.al │ │ ├── APIFinanceBusinessUnit.Page.al │ │ ├── APIFinanceCustomer.Page.al │ │ ├── APIFinanceDimSetEntries.Page.al │ │ ├── APIFinanceDimensionValues.Page.al │ │ ├── APIFinanceGLAccount.Page.al │ │ ├── APIFinanceGLBudgetEntry.Query.al │ │ ├── APIFinanceGLBudgets.Page.al │ │ ├── APIFinanceGLEntry.Query.al │ │ ├── APIFinanceGlobalSettings.Page.al │ │ ├── APIFinanceVendor.Page.al │ │ └── permissions │ │ ├── APIReportsFinanceObjects.PermissionSet.al │ │ ├── d365basicisvreportsfinance.permissionsetext.al │ │ ├── d365busfullaccessreportsfinance.permissionsetext.al │ │ ├── d365buspremiumreportsfinance.permissionsetext.al │ │ ├── d365fullaccessreportsfinance.permissionsetext.al │ │ ├── d365readreportsfinance.permissionsetext.al │ │ └── d365teammemberreportsfinance.permissionsetext.al │ ├── DataArchive │ ├── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ │ ├── DataArchiveObjects.PermissionSet.al │ │ │ ├── DataArchiveRead.Permissionset.al │ │ │ ├── DataArchiveView.Permissionset.al │ │ │ └── DataArchiveView.Permissionsetext.al │ │ ├── app.json │ │ └── src │ │ │ ├── DataArchive.Table.al │ │ │ ├── DataArchiveDbSubscriber.Codeunit.al │ │ │ ├── DataArchiveExportToCSV.Codeunit.al │ │ │ ├── DataArchiveExportToExcel.Codeunit.al │ │ │ ├── DataArchiveList.Page.al │ │ │ ├── DataArchiveMediaField.Table.al │ │ │ ├── DataArchiveNewArchive.Page.al │ │ │ ├── DataArchiveProvider.Codeunit.al │ │ │ ├── DataArchiveTable.Table.al │ │ │ ├── DataArchiveTableList.Page.al │ │ │ └── DataArchiveTableListPart.Page.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── TestDataArchiveImpl.codeunit.al │ │ └── app.json │ ├── DataCorrectionFA │ └── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ ├── D365AUTOMATIONFATS.PermissionSetExt.al │ │ ├── D365BASICISVFATS.PermissionSetExt.al │ │ ├── D365BUSFULLACCESSFATS.PermissionSetExt.al │ │ ├── D365BUSPREMIUMFATS.PermissionSetExt.al │ │ ├── D365FAEDITFATS.PermissionSetExt.al │ │ ├── D365FULLACCESSFATS.PermissionSetExt.al │ │ ├── FatsEdit.PermissionSet.al │ │ ├── FatsObjects.PermissionSet.al │ │ ├── FatsRead.PermissionSet.al │ │ └── TroubleshootFALedgerEntries.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ ├── codeunits │ │ ├── FACardNotifications.codeunit.al │ │ └── FALedgerEntriesScan.Codeunit.al │ │ ├── pages │ │ └── FALedgerEntriesIssues.page.al │ │ └── tables │ │ ├── FALedgEntrywIssue.Table.al │ │ └── FASetupEntrieswithissues.TableExt.al │ ├── DataSearch │ ├── App │ │ ├── .objidconfig │ │ ├── DataSearch.page.al │ │ ├── DataSearchDefaults.Codeunit.al │ │ ├── DataSearchEvents.codeunit.al │ │ ├── DataSearchInTable.codeunit.al │ │ ├── DataSearchInvocation.Codeunit.al │ │ ├── DataSearchLines.page.al │ │ ├── DataSearchObjectMapping.Codeunit.al │ │ ├── DataSearchResult.table.al │ │ ├── DataSearchResultRecords.page.al │ │ ├── DataSearchSetupChanges.codeunit.al │ │ ├── DataSearchSetupField.Table.al │ │ ├── DataSearchSetupFieldList.Page.al │ │ ├── DataSearchSetupFieldPart.Page.al │ │ ├── DataSearchSetupLists.Page.al │ │ ├── DataSearchSetupTable.Table.al │ │ ├── DataSearchSetupTableList.Page.al │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ │ ├── DataSearch.permissionSetExt.al │ │ │ └── DataSearchSetup.permissionSetExt.al │ │ └── app.json │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── TestDataSearch.Table.al │ │ ├── TestDataSearch.codeunit.al │ │ ├── TestDataSearchExtension.PageExt.al │ │ ├── TestDataSearchOnArchives.codeunit.al │ │ └── app.json │ ├── EDocument │ ├── App │ │ ├── .resources │ │ │ ├── AITools │ │ │ │ ├── DeferralMatching-FunctionParameters.json │ │ │ │ ├── GLAccountClassifier-ToolDef.txt │ │ │ │ ├── HistoricalMatching-ToolDef.json │ │ │ │ └── SimilarDescriptions-ToolDef.json │ │ │ ├── DataExchange │ │ │ │ ├── e-Doc PEPPOL Cr. Memo Import.xml │ │ │ │ ├── e-Doc PEPPOL Invoice Import.xml │ │ │ │ ├── e-Doc PEPPOL Sales Cr. Memo Export.xml │ │ │ │ ├── e-Doc PEPPOL Sales Invoice Export.xml │ │ │ │ ├── e-Doc PEPPOL Service Cr. Memo Export NO.xml │ │ │ │ ├── e-Doc PEPPOL Service Cr. Memo Export.xml │ │ │ │ ├── e-Doc PEPPOL Service Invoice Export NO.xml │ │ │ │ └── e-Doc PEPPOL Service Invoice Export.xml │ │ │ ├── Prompts │ │ │ │ ├── DeferralMatching-SystemPrompt.md │ │ │ │ ├── EDocHistoricalMatching-SystemPrompt.md │ │ │ │ ├── EDocSimilarDescriptions-SystemPrompt.md │ │ │ │ └── GLAccountMatching-SystemPrompt.md │ │ │ └── Template │ │ │ │ ├── StandardSalesCreditMemowithQR.docx │ │ │ │ └── StandardSalesInvoicewithQR.docx │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ │ ├── D365BUSFULLACCESSEDocument.PermissionSetExt.al │ │ │ ├── D365BUSPREMIUMEDocument.PermissionsetExt.al │ │ │ ├── D365READEDocCore.PermissionsetExt.al │ │ │ ├── D365TEAMMEMBEREDocCore.PermissionsetExt.al │ │ │ ├── EDocCoreAdmin.PermissionSet.al │ │ │ ├── EDocCoreBasic.PermissionSet.al │ │ │ ├── EDocCoreEdit.PermissionSet.al │ │ │ ├── EDocCoreObjects.PermissionSet.al │ │ │ ├── EDocCoreRead.PermissionSet.al │ │ │ └── EDocCoreUser.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ClearanceModel │ │ │ ├── EDocQRBuffer.Table.al │ │ │ ├── EDocumentQRCodeManagement.Codeunit.al │ │ │ ├── EDocumentQRCodeViewer.Page.al │ │ │ ├── EDocumentQRViewer.Page.al │ │ │ ├── PostedSalesCrdMemoWithQR.PageExt.al │ │ │ ├── PostedSalesCrdMemoWithQR.ReportExt.al │ │ │ ├── PostedSalesCrdMemoWithQR.TableExt.al │ │ │ ├── PostedSalesInvoiceWithQR.ReportExt.al │ │ │ ├── PostedSalesInvoicewithQR.PageExt.al │ │ │ └── PostedSalesInvoicewithQR.TableExt.al │ │ │ ├── ControlAddIn │ │ │ ├── PDFViewer.ControlAddIn.al │ │ │ ├── script.js │ │ │ ├── startup.js │ │ │ └── stylesheet.css │ │ │ ├── DataExchange │ │ │ ├── EDocDataExchangeImpl.Codeunit.al │ │ │ ├── EDocServiceDataExchDef.Table.al │ │ │ ├── EDocServiceDataExchSub.Page.al │ │ │ └── PEPPOL Data Exchange Definition │ │ │ │ ├── EDocDEDPEPPOLExternal.Codeunit.al │ │ │ │ ├── EDocDEDPEPPOLPreMapping.Codeunit.al │ │ │ │ ├── EDocDEDPEPPOLSubscribers.Codeunit.al │ │ │ │ ├── PreMapSalesCrMemoLine.Codeunit.al │ │ │ │ ├── PreMapSalesInvLine.Codeunit.al │ │ │ │ ├── PreMapServiceCrMemoLine.Codeunit.al │ │ │ │ └── PreMapServiceInvLine.Codeunit.al │ │ │ ├── Document │ │ │ ├── EDocument.Page.al │ │ │ ├── EDocument.Table.al │ │ │ ├── EDocumentDirection.Enum.al │ │ │ ├── EDocumentFormat.Enum.al │ │ │ ├── EDocumentProcessingPhase.Enum.al │ │ │ ├── EDocumentSourceType.Enum.al │ │ │ ├── EDocumentType.Enum.al │ │ │ ├── EDocuments.Page.al │ │ │ ├── EDocumentsSetup.Table.al │ │ │ ├── Inbound │ │ │ │ ├── InboundEDocFactbox.Page.al │ │ │ │ ├── InboundEDocPicture.Page.al │ │ │ │ └── InboundEDocuments.Page.al │ │ │ ├── Interfaces │ │ │ │ ├── EDocument.Interface.al │ │ │ │ └── IEDocumentStatus.Interface.al │ │ │ ├── Notification │ │ │ │ ├── EDocumentNotification.Codeunit.al │ │ │ │ ├── EDocumentNotification.Table.al │ │ │ │ └── EDocumentNotificationType.Enum.al │ │ │ ├── Outbound │ │ │ │ ├── OutboundEDocFactbox.Page.al │ │ │ │ └── OutboundEDocuments.Page.al │ │ │ └── Status │ │ │ │ ├── EDocErrorStatus.Codeunit.al │ │ │ │ ├── EDocInProgressStatus.Codeunit.al │ │ │ │ ├── EDocProcessedStatus.Codeunit.al │ │ │ │ ├── EDocumentServiceStatus.Enum.al │ │ │ │ └── EDocumentStatus.Enum.al │ │ │ ├── EDocumentInstall.Codeunit.al │ │ │ ├── Extensions │ │ │ ├── EDocAttachment.TableExt.al │ │ │ ├── EDocCustomerCard.PageExt.al │ │ │ ├── EDocDocumentAttachmentDetails.PageExt.al │ │ │ ├── EDocFinChargeMemo.PageExt.al │ │ │ ├── EDocIssuedFinChargeMemo.PageExt.al │ │ │ ├── EDocIssuedReminder.PageExt.al │ │ │ ├── EDocLocation.TableExt.al │ │ │ ├── EDocLocationCard.PageExt.al │ │ │ ├── EDocOrderMapActivities.Page.al │ │ │ ├── EDocPostedPurchCrMemo.PageExt.al │ │ │ ├── EDocPostedPurchInv.PageExt.al │ │ │ ├── EDocPostedSalesCrMemo.PageExt.al │ │ │ ├── EDocPostedSalesCrMemo.PageExt.al.orig │ │ │ ├── EDocPostedSalesInv.PageExt.al │ │ │ ├── EDocPostedSalesInv.PageExt.al.orig │ │ │ ├── EDocPostedSalesShipment.PageExt.al │ │ │ ├── EDocPostedSalesShipment.PageExt.al.orig │ │ │ ├── EDocPostedServiceCrMemo.PageExt.al │ │ │ ├── EDocPostedServiceInv.PageExt.al │ │ │ ├── EDocPostedTransferShpmnt.PageExt.al │ │ │ ├── EDocPostedTransferShpmnt.PageExt.al.orig │ │ │ ├── EDocPurchPayablesSetup.PageExt.al │ │ │ ├── EDocPurchPayablesSetup.TableExt.al │ │ │ ├── EDocPurchaseCreditMemo.PageExt.al │ │ │ ├── EDocPurchaseHeader.TableExt.al │ │ │ ├── EDocPurchaseInvoice.PageExt.al │ │ │ ├── EDocPurchaseLine.TableExt.al │ │ │ ├── EDocPurchaseOrder.PageExt.al │ │ │ ├── EDocPurchaseOrderList.PageExt.al │ │ │ ├── EDocReminder.PageExt.al │ │ │ ├── EDocSalesCreditMemo.PageExt.al │ │ │ ├── EDocSalesInvoice.PageExt.al │ │ │ ├── EDocSalesOrder.PageExt.al │ │ │ ├── EDocServiceCreditMemo.PageExt.al │ │ │ ├── EDocServiceInvoice.PageExt.al │ │ │ ├── EDocServiceOrder.PageExt.al │ │ │ ├── EDocVendorPage.PageExt.al │ │ │ ├── EDocumentActivities.Page.al │ │ │ ├── EDocumentVendor.TableExt.al │ │ │ ├── EDocumentVendorTemplCard.PageExt.al │ │ │ ├── EDocumentVendorTemplate.TableExt.al │ │ │ ├── RoleCenter │ │ │ │ ├── EDocAPAdminActivities.PageExt.al │ │ │ │ ├── EDocAccountantRC.PageExt.al │ │ │ │ ├── EDocBusManagerRC.PageExt.al │ │ │ │ ├── EDocInvManagerRC.PageExt.al │ │ │ │ └── EDocShipRecWmsRC.PageExt.al │ │ │ └── Sending │ │ │ │ ├── EDocSelectSendingOptions.PageExt.al │ │ │ │ ├── EDocSendProfileElecDoc.EnumExt.al │ │ │ │ ├── EDocSendingProfAttType.EnumExt.al │ │ │ │ ├── EDocumentSendingProfile.PageExt.al │ │ │ │ └── EDocumentSendingProfile.TableExt.al │ │ │ ├── Format │ │ │ ├── EDocImportPEPPOLBIS30.Codeunit.al │ │ │ ├── EDocPEPPOLBIS30.Codeunit.al │ │ │ ├── EDocPEPPOLValidation.Codeunit.al │ │ │ ├── EDocShipmentExportToXml.Codeunit.al │ │ │ ├── EDocTransferShptToXML.Codeunit.al │ │ │ ├── EDocumentStructuredFormat.Enum.al │ │ │ └── FinResultsPEPPOLBIS30.XmlPort.al │ │ │ ├── Helpers │ │ │ ├── EDocumentErrorHelper.Codeunit.al │ │ │ ├── EDocumentHelper.Codeunit.al │ │ │ ├── EDocumentImportHelper.Codeunit.al │ │ │ ├── EDocumentJsonHelper.Codeunit.al │ │ │ └── EDocumentLogHelper.Codeunit.al │ │ │ ├── Integration │ │ │ ├── Actions │ │ │ │ ├── ActionContext.Codeunit.al │ │ │ │ ├── EDocumentActionRunner.Codeunit.al │ │ │ │ ├── HttpMessageState.Codeunit.al │ │ │ │ ├── Implementations │ │ │ │ │ ├── EmptyIntegrationAction.Codeunit.al │ │ │ │ │ ├── SentDocumentApproval.Codeunit.al │ │ │ │ │ └── SentDocumentCancellation.Codeunit.al │ │ │ │ ├── IntegrationActionStatus.Codeunit.al │ │ │ │ └── IntegrationActionType.Enum.al │ │ │ ├── EDocIntegrationManagement.Codeunit.al │ │ │ ├── EDocumentIntegration.Enum.al │ │ │ ├── EDocumentIntegration.Interface.al │ │ │ ├── EDocumentNoIntegration.Codeunit.al │ │ │ ├── Interfaces │ │ │ │ ├── IConsentManager.Interface.al │ │ │ │ ├── IDocumentAction.Interface.al │ │ │ │ ├── IDocumentReceiver.Interface.al │ │ │ │ ├── IDocumentResponseHandler.Interface.al │ │ │ │ ├── IDocumentSender.Interface.al │ │ │ │ ├── IReceivedDocumentMarker.Interface.al │ │ │ │ └── ISentDocumentActions.Interface.al │ │ │ ├── Receive │ │ │ │ ├── DownloadDocument.Codeunit.al │ │ │ │ ├── MarkFetched.Codeunit.al │ │ │ │ ├── ReceiveContext.Codeunit.al │ │ │ │ └── ReceiveDocuments.Codeunit.al │ │ │ ├── Send │ │ │ │ ├── EDocRecurrentBatchSend.Codeunit.al │ │ │ │ ├── EDocumentGetResponse.Codeunit.al │ │ │ │ ├── GetResponseRunner.Codeunit.al │ │ │ │ ├── SendContext.Codeunit.al │ │ │ │ └── SendRunner.Codeunit.al │ │ │ └── ServiceIntegration.Enum.al │ │ │ ├── Logging │ │ │ ├── EDocDataStorage.Table.al │ │ │ ├── EDocFileFormat.Enum.al │ │ │ ├── EDocumentIntegrationLog.Table.al │ │ │ ├── EDocumentIntegrationLogs.Page.al │ │ │ ├── EDocumentLog.Codeunit.al │ │ │ ├── EDocumentLog.Table.al │ │ │ └── EDocumentLogs.Page.al │ │ │ ├── Mapping │ │ │ ├── EDocChangesPart.Page.al │ │ │ ├── EDocChangesPreview.Page.al │ │ │ ├── EDocMapping.Codeunit.al │ │ │ ├── EDocMapping.Page.al │ │ │ ├── EDocMapping.Table.al │ │ │ ├── EDocMappingLog.Table.al │ │ │ ├── EDocMappingLogs.Page.al │ │ │ └── EDocMappingPart.Page.al │ │ │ ├── Processing │ │ │ ├── AI │ │ │ │ ├── EDocAIToolProcessor.Codeunit.al │ │ │ │ ├── EDocHistoricalMatchBuffer.Table.al │ │ │ │ ├── EDocLineMatchBuffer.Table.al │ │ │ │ └── Tools │ │ │ │ │ ├── EDocDeferralMatching.Codeunit.al │ │ │ │ │ ├── EDocGLAccountMatching.Codeunit.al │ │ │ │ │ ├── EDocHistoricalMatching.Codeunit.al │ │ │ │ │ └── EDocSimilarDescriptions.Codeunit.al │ │ │ ├── API │ │ │ │ ├── EDocEventCategory.EnumExt.al │ │ │ │ ├── EDocFileContentAPIBuffer.Table.al │ │ │ │ ├── EDocumentBusinessEvents.Codeunit.al │ │ │ │ └── Endpoints │ │ │ │ │ ├── EDocFileContentAPI.Page.al │ │ │ │ │ ├── EDocumentServiceStatusAPI.Page.al │ │ │ │ │ ├── EDocumentServicesAPI.Page.al │ │ │ │ │ ├── EDocumentsAPI.Page.al │ │ │ │ │ └── NewEDocumentsAPI.Page.al │ │ │ ├── DefaultExportEligibility.Codeunit.al │ │ │ ├── EDocAttachmentProcessor.Codeunit.al │ │ │ ├── EDocExport.Codeunit.al │ │ │ ├── EDocGetBasicInfo.Codeunit.al │ │ │ ├── EDocGetCompleteInfo.Codeunit.al │ │ │ ├── EDocImport.Codeunit.al │ │ │ ├── EDocRecordLink.Table.al │ │ │ ├── EDocumentBackgroundJobs.Codeunit.al │ │ │ ├── EDocumentCopilotCapability.EnumExt.al │ │ │ ├── EDocumentCreate.Codeunit.al │ │ │ ├── EDocumentCreateJnlLine.Codeunit.al │ │ │ ├── EDocumentCreatePurchDoc.Codeunit.al │ │ │ ├── EDocumentEmailing.Codeunit.al │ │ │ ├── EDocumentImportJob.Codeunit.al │ │ │ ├── EDocumentProcessing.Codeunit.al │ │ │ ├── EDocumentSubscribers.Codeunit.al │ │ │ ├── EDocumentUpdateOrder.Codeunit.al │ │ │ ├── ExportEligibilityEvaluator.Enum.al │ │ │ ├── Import │ │ │ │ ├── AdditionalFields │ │ │ │ │ ├── EDPurchaseLineFieldSetup.Table.al │ │ │ │ │ ├── EDocAdditionalFieldsSetup.Page.al │ │ │ │ │ ├── EDocFieldValueEdit.Page.al │ │ │ │ │ ├── EDocLineAdditionalFields.Page.al │ │ │ │ │ ├── EDocLineValues.Page.al │ │ │ │ │ ├── EDocOptionValueSelector.Page.al │ │ │ │ │ ├── EDocPurchLineFieldSetup.Table.al │ │ │ │ │ ├── EDocPurchLineFields.Page.al │ │ │ │ │ └── EDocumentLineField.Table.al │ │ │ │ ├── EDocAutomaticProcessing.Enum.al │ │ │ │ ├── EDocEmptyDraft.Codeunit.al │ │ │ │ ├── EDocHistoricalMatchingSetup.Table.al │ │ │ │ ├── EDocImportParameters.Table.al │ │ │ │ ├── EDocLineMatchingScope.Enum.al │ │ │ │ ├── EDocProcessDraft.Enum.al │ │ │ │ ├── EDocReadIntoDraft.Enum.al │ │ │ │ ├── EDocUnspecifiedImpl.Codeunit.al │ │ │ │ ├── EDocVendorMatchingScope.Enum.al │ │ │ │ ├── EDocumentHeaderMapping.Table.al │ │ │ │ ├── EDocumentImportProcess.Enum.al │ │ │ │ ├── EDocumentLineMapping.Table.al │ │ │ │ ├── FileFormat │ │ │ │ │ ├── EDocJSONFileFormat.Codeunit.al │ │ │ │ │ ├── EDocPDFFileFormat.Codeunit.al │ │ │ │ │ └── EDocXMLFileFormat.Codeunit.al │ │ │ │ ├── FinishDraft │ │ │ │ │ ├── EDocCreatePurchaseInvoice.Codeunit.al │ │ │ │ │ └── EDocCreatePurchaseInvoice.Enum.al │ │ │ │ ├── ImportEDocProcStatus.Enum.al │ │ │ │ ├── ImportEDocumentProcess.Codeunit.al │ │ │ │ ├── ImportEDocumentSteps.Enum.al │ │ │ │ ├── PrepareDraft │ │ │ │ │ ├── EDocActivityLogSession.Codeunit.al │ │ │ │ │ ├── EDocProcCustomizations.Enum.al │ │ │ │ │ ├── EDocProviders.Codeunit.al │ │ │ │ │ └── PreparePurchaseEDocDraft.Codeunit.al │ │ │ │ ├── Purchase │ │ │ │ │ ├── EDocPurchaseDraftSubform.Page.al │ │ │ │ │ ├── EDocReadPurchLines.Page.al │ │ │ │ │ ├── EDocReadablePurchaseDoc.Page.al │ │ │ │ │ ├── EDocumentPurchaseDraft.Page.al │ │ │ │ │ ├── EDocumentPurchaseHeader.Table.al │ │ │ │ │ ├── EDocumentPurchaseLine.Table.al │ │ │ │ │ ├── History │ │ │ │ │ │ ├── EDocPurchaseHistMapping.Codeunit.al │ │ │ │ │ │ ├── EDocPurchaseLineHistory.Table.al │ │ │ │ │ │ ├── EDocVendorAssignHistory.Table.al │ │ │ │ │ │ └── EDocVendorAssignmentHist.Page.al │ │ │ │ │ └── PurchaseOrderMatching │ │ │ │ │ │ ├── EDocPOMConfigReceipt.Enum.al │ │ │ │ │ │ ├── EDocPOMConfiguration.Enum.al │ │ │ │ │ │ ├── EDocPOMatchWarning.Enum.al │ │ │ │ │ │ ├── EDocPOMatchWarning.Table.al │ │ │ │ │ │ ├── EDocPOMatching.Codeunit.al │ │ │ │ │ │ ├── EDocPOMatchingSetup.Table.al │ │ │ │ │ │ ├── EDocPurchaseLinePOMatch.Table.al │ │ │ │ │ │ ├── EDocSelectPOLines.Page.al │ │ │ │ │ │ └── EDocSelectReceiptLines.Page.al │ │ │ │ ├── StructureReceivedEDoc.Enum.al │ │ │ │ ├── StructureReceivedEDocument │ │ │ │ │ ├── EDocumentADIHandler.Codeunit.al │ │ │ │ │ └── EDocumentPEPPOLHandler.Codeunit.al │ │ │ │ └── Telemetry │ │ │ │ │ └── EDocImpSessionTelemetry.Codeunit.al │ │ │ ├── Interfaces │ │ │ │ ├── IBlobToStructuredDataConverter.Interface.al │ │ │ │ ├── IBlobType.Interface.al │ │ │ │ ├── IEDocAISystem.Interface.al │ │ │ │ ├── IEDocFileFormat.Interface.al │ │ │ │ ├── IEDocumentCreatePurchaseInvoice.Interface.al │ │ │ │ ├── IEDocumentFinishDraft.Interface.al │ │ │ │ ├── IExportEligibilityEvaluator.Interface.al │ │ │ │ ├── IItemProvider.Interface.al │ │ │ │ ├── IPrepareDraft.Interface.al │ │ │ │ ├── IProcessStructuredData.Interface.al │ │ │ │ ├── IPurchaseLineAccountProvider.Interface.al │ │ │ │ ├── IPurchaseLineProvider.Interface.al │ │ │ │ ├── IPurchaseOrderProvider.Interface.al │ │ │ │ ├── IStructureReceivedEDocument.Interface.al │ │ │ │ ├── IStructuredDataType.Interface.al │ │ │ │ ├── IStructuredFormatReader.Interface.al │ │ │ │ ├── IUnitOfMeasureProvider.Interface.al │ │ │ │ └── IVendorProvider.Interface.al │ │ │ └── OrderMatching │ │ │ │ ├── Copilot │ │ │ │ ├── EDocPOAOAIFunction.Codeunit.al │ │ │ │ ├── EDocPOCopilotMatching.Codeunit.al │ │ │ │ ├── EDocPOCopilotProp.Page.al │ │ │ │ ├── EDocPOMatchPropBuffer.Table.al │ │ │ │ └── EDocPOMatchPropSub.Page.al │ │ │ │ ├── EDocCreatePurchOrderLine.Page.al │ │ │ │ ├── EDocImportedLine.Table.al │ │ │ │ ├── EDocImportedLineSub.Page.al │ │ │ │ ├── EDocLineMatching.Codeunit.al │ │ │ │ ├── EDocOrderLineMatching.Page.al │ │ │ │ ├── EDocOrderMatch.Page.al │ │ │ │ ├── EDocOrderMatch.Table.al │ │ │ │ ├── EDocOrderMatchAct.Page.al │ │ │ │ └── EDocPurchaseOrderSub.Page.al │ │ │ ├── Service │ │ │ ├── EDocServiceSupportedType.Table.al │ │ │ ├── EDocServiceSupportedTypes.Page.al │ │ │ ├── EDocumentBatchMode.Enum.al │ │ │ ├── EDocumentService.Table.al │ │ │ ├── EDocumentServiceStatus.Page.al │ │ │ ├── EDocumentServiceStatus.Table.al │ │ │ ├── EDocumentServices.Page.al │ │ │ ├── EdocumentService.Page.al │ │ │ └── Participant │ │ │ │ ├── ServiceParticipant.Codeunit.al │ │ │ │ ├── ServiceParticipant.Table.al │ │ │ │ └── ServiceParticipants.Page.al │ │ │ ├── Setup │ │ │ ├── ConsentManagerDefaultImpl.Codeunit.al │ │ │ ├── EDocumentSetup.Codeunit.al │ │ │ └── EDocumentUpgrade.Codeunit.al │ │ │ └── Workflow │ │ │ ├── EDocWorkflowResponseOptions.PageExt.al │ │ │ ├── EDocWorkflowStepArgument.TableExt.al │ │ │ ├── EDocWorkflowStepArgumentArch.TableExt.al │ │ │ ├── EDocumentCreatedFlow.Codeunit.al │ │ │ ├── EDocumentWorkFlowProcessing.Codeunit.al │ │ │ └── EDocumentWorkFlowSetup.Codeunit.al │ ├── Demo Data │ │ ├── 1.Setup Data │ │ │ ├── CreateEDocDemodataService.Codeunit.al │ │ │ └── CreateEDocumentSetup.Codeunit.al │ │ ├── 2.Master Data │ │ │ └── CreateEDocumentMasterData.Codeunit.al │ │ ├── 3.Transactions │ │ │ └── CreateEDocumentTransactions.Codeunit.al │ │ ├── EDocFromResourcesImpl │ │ │ ├── ADIMockStructReceiveEDoc.EnumExt.al │ │ │ ├── EDocADIHandlerMock.Codeunit.al │ │ │ ├── EDocFromResourceHelper.Codeunit.al │ │ │ └── EDocFromResourceMapping.Table.al │ │ ├── EDocumentContosoModule.Codeunit.al │ │ ├── EDocumentContosoModule.EnumExt.al │ │ ├── EDocumentModuleSetup.Page.al │ │ ├── EDocumentModuleSetup.Table.al │ │ ├── ExtensionLogo.png │ │ └── app.json │ ├── EDocumentCore.code-workspace │ └── Test │ │ ├── .resources │ │ ├── AITestSuite │ │ │ ├── Harms │ │ │ │ ├── EDOCPOHarms.jsonl │ │ │ │ ├── EDOCPOHarmsXPIA.jsonl │ │ │ │ └── EDOCPOHarms_test.jsonl │ │ │ ├── TestScenarios │ │ │ │ └── PurchaseOrder-Accuracy.jsonl │ │ │ └── TestSuite │ │ │ │ └── PurchaseOrder-Accuracy.xml │ │ ├── API │ │ │ └── base64file.txt │ │ ├── capi │ │ │ ├── capi-invoice-unexpected-values-0.json │ │ │ └── capi-invoice-valid-0.json │ │ └── peppol │ │ │ ├── PEPPOL1.xml │ │ │ └── peppol-invoice-0.xml │ │ ├── DisabledTests │ │ ├── CopilotTests.json │ │ ├── EDocAPITest.json │ │ └── EDocEmailTests.json │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ ├── EDocTest.PermissionSet.al │ │ └── EDocTestExt.PermissionSetExt.al │ │ ├── app.json │ │ └── src │ │ ├── Copilot │ │ ├── EDocCopilotPOAccuracy.Codeunit.al │ │ ├── EDocCopilotPOGeneralHarms.Codeunit.al │ │ ├── EDocCopilotPORedTeaming.Codeunit.al │ │ └── EDocCopilotPOUPIAHarms.Codeunit.al │ │ ├── EDOCTestsInstall.Codeunit.al │ │ ├── Flow │ │ └── EDocFlowTest.Codeunit.al │ │ ├── LibraryEDocument.Codeunit.al │ │ ├── Mapping │ │ ├── EDocMappingTest.Codeunit.al │ │ └── EDocMappingTestRec.Table.al │ │ ├── Matching │ │ ├── EDocLineMatchingTest.Codeunit.al │ │ └── EDocPOMatchingUnitTests.Codeunit.al │ │ ├── Mock │ │ ├── EDocFormatMock.Codeunit.al │ │ ├── EDocFormatMock.EnumExt.al │ │ ├── EDocImplState.Codeunit.al │ │ ├── EDocIntMockNoAsync.Codeunit.al │ │ ├── EDocIntegrationMock.Codeunit.al │ │ ├── EDocIntegrationMock.EnumExt.al │ │ ├── EDocIntegrationMockV2.Codeunit.al │ │ ├── EDocIntegrationMockV2.EnumExt.al │ │ └── EDocTestBuffer.Codeunit.al │ │ ├── Processing │ │ ├── CAPIStructuredValidations.Codeunit.al │ │ ├── EDocAPITest.Codeunit.al │ │ ├── EDocBlobTypeMock.EnumExt.al │ │ ├── EDocClearanceModelE2ETest.Codeunit.al │ │ ├── EDocCueCardTest.Codeunit.al │ │ ├── EDocE2ETest.Codeunit.al │ │ ├── EDocEmailTests.Codeunit.al │ │ ├── EDocFormatTests.Codeunit.al │ │ ├── EDocMockCustomizations.EnumExt.al │ │ ├── EDocPDFMock.Codeunit.al │ │ ├── EDocProcessTest.Codeunit.al │ │ ├── EDocProcessingMocks.Codeunit.al │ │ ├── EDocStructuredFormat.EnumExt.al │ │ ├── EDocumentStructuredTests.Codeunit.al │ │ └── PEPPOLStructuredValidations.Codeunit.al │ │ └── Receive │ │ ├── EDocHelperTest.Codeunit.al │ │ ├── EDocReceiveFiles.Codeunit.al │ │ └── EDocReceiveTest.Codeunit.al │ ├── EDocumentConnectors │ ├── Avalara │ │ ├── App │ │ │ ├── ExtensionLogo.png │ │ │ ├── app.json │ │ │ └── src │ │ │ │ ├── Authenticator.Codeunit.al │ │ │ │ ├── AvalaraCompany.Table.al │ │ │ │ ├── AvalaraEdoc.TableExt.al │ │ │ │ ├── AvalaraSendMode.Enum.al │ │ │ │ ├── Company.Table.al │ │ │ │ ├── CompanyList.Page.al │ │ │ │ ├── ConnectionSetup.Table.al │ │ │ │ ├── ConnectionSetupCard.Page.al │ │ │ │ ├── EDocExtSendMode.Enum.al │ │ │ │ ├── Extensions │ │ │ │ ├── EDocService.PageExt.al │ │ │ │ └── EDocService.TableExt.al │ │ │ │ ├── HttpExecutor.Codeunit.al │ │ │ │ ├── Integration.EnumExt.al │ │ │ │ ├── IntegrationImpl.Codeunit.al │ │ │ │ ├── IntegrationV2.EnumExt.al │ │ │ │ ├── MandateList.Page.al │ │ │ │ ├── Models │ │ │ │ ├── Mandate.Table.al │ │ │ │ └── Metadata.Codeunit.al │ │ │ │ ├── Permissions │ │ │ │ ├── AvalaraEdit.PermissionSet.al │ │ │ │ ├── AvalaraObjects.PermissionSet.al │ │ │ │ ├── AvalaraRead.PermissionSet.al │ │ │ │ ├── AvlEDocConnectorEdit.PermissionSetExt.al │ │ │ │ ├── AvlEDocConnectorRead.PermissionSetExt.al │ │ │ │ ├── Edit.PermissionSet.al │ │ │ │ ├── Objects.PermissionSet.al │ │ │ │ └── Read.PermissionSet.al │ │ │ │ ├── Processing.Codeunit.al │ │ │ │ ├── Requests.Codeunit.al │ │ │ │ └── Upgrade.Codeunit.al │ │ └── Test │ │ │ ├── ExtensionLogo.png │ │ │ ├── HttpResponseFiles │ │ │ ├── Companies.txt │ │ │ ├── ConnectToken.txt │ │ │ ├── DownloadDocument.txt │ │ │ ├── GetDocuments.txt │ │ │ ├── GetResponseComplete.txt │ │ │ ├── GetResponseError.txt │ │ │ ├── GetResponsePending.txt │ │ │ ├── Http500.txt │ │ │ └── SubmitDocument.txt │ │ │ ├── app.json │ │ │ └── src │ │ │ └── IntegrationTests.Codeunit.al │ └── ForNAV │ │ ├── App │ │ ├── AppSourceCop.json │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ │ ├── ForNAV │ │ │ ├── Extensions │ │ │ │ ├── ForNAVEDocument.TableExt.al │ │ │ │ └── ForNAVEDocumentService.TableExt.al │ │ │ ├── ForNAVAppRespHandler.Codeunit.al │ │ │ ├── ForNAVIncomingEDocStatus.enum.al │ │ │ ├── ForNAVIncomingEDocsApi.Page.al │ │ │ ├── ForNAVIncomingEDocument.Table.al │ │ │ ├── ForNAVPeppolInstall.Codeunit.al │ │ │ ├── ForNAVPeppolJobQueue.Codeunit.al │ │ │ └── ForNAVPeppolUpgrade.Codeunit.al │ │ │ ├── Integration │ │ │ ├── ForNAVAPIRequests.Codeunit.al │ │ │ ├── ForNAVApplicationResponse.Codeunit.al │ │ │ ├── ForNAVConnection.Codeunit.al │ │ │ ├── ForNAVInbox.Codeunit.al │ │ │ ├── ForNAVIntegration.EnumExt.al │ │ │ ├── ForNAVIntegrationImpl.Codeunit.al │ │ │ └── ForNAVProcessing.Codeunit.al │ │ │ ├── Permissions EDoc │ │ │ ├── FORNAVEDocAPI.PermissionSet.al │ │ │ ├── FORNAVEDocUser.PermissionSet.al │ │ │ ├── ForNAVEDocAdmin.PermissionSet.al │ │ │ ├── ForNAVPeppolD365BASIC.PermissionSetExt.al │ │ │ ├── ForNAVPeppolD365BUSFULLACCESS.PermissionSetExt.al │ │ │ └── ForNAVPeppolD365TeamMember.PermissionSetExt.al │ │ │ └── Setup │ │ │ ├── ForNAVPeppolAadApp.Codeunit.al │ │ │ ├── ForNAVPeppolCrypto.Codeunit.al │ │ │ ├── ForNAVPeppolOauth.Codeunit.al │ │ │ ├── ForNAVPeppolOauthApi.Page.al │ │ │ ├── ForNAVPeppolOauthToken.Codeunit.al │ │ │ ├── ForNAVPeppolRole.Table.al │ │ │ ├── ForNAVPeppolRoles.Page.al │ │ │ ├── ForNAVPeppolSMP.Codeunit.al │ │ │ ├── ForNAVPeppolSetup.Codeunit.al │ │ │ ├── ForNAVPeppolSetup.Page.al │ │ │ ├── ForNAVPeppolSetup.Table.al │ │ │ └── ForNAVPeppolSetupWizard.Page.al │ │ ├── EDocumentConnector FORNAV.code-workspace │ │ └── Test │ │ ├── AppSourceCop.json │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ ├── IntegrationTests.Codeunit.al │ │ └── PeppolTest.Codeunit.al │ ├── ErrorMessagesWithRecommendations │ ├── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ErrorMessageExt.TableExt.al │ │ │ ├── ErrorMessageStatus.Enum.al │ │ │ ├── ErrorMessagesActionHandler.Codeunit.al │ │ │ ├── ErrorMessagesActionHandlerImpl.Codeunit.al │ │ │ ├── ErrorMessagesCardPart.Page.al │ │ │ ├── ErrorMessagesRecommendationExt.PageExt.al │ │ │ ├── ExecuteErrorAction.Codeunit.al │ │ │ ├── Implementation │ │ │ ├── DefaultImplErrorMessage.Codeunit.al │ │ │ ├── DimCodeSameButMissingErr.Codeunit.al │ │ │ ├── DimensionCodeMustBeBlank.Codeunit.al │ │ │ ├── DimensionCodeSameError.Codeunit.al │ │ │ └── ErrorMsgFixImplementation.Enum.al │ │ │ └── Interface │ │ │ └── ErrorMessageFix.Interface.al │ └── Test │ │ ├── DisabledTests │ │ └── ErrorMessageExtensibilityTests.json │ │ ├── ErrMsgFixImplementationTestExt.EnumExt.al │ │ ├── ErrMsgScenarioTestHelper.Codeunit.al │ │ ├── ErrorMessageExtensibilityTests.Codeunit.al │ │ ├── ErrorMessageRecommendedAction.Codeunit.al │ │ ├── ExtensionLogo.png │ │ ├── FailToFixErrorMessageTest.Codeunit.al │ │ └── app.json │ ├── EssentialBusinessHeadlines │ ├── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ │ ├── Permissions │ │ │ ├── EssentialHeadlinesEdit.PermissionSet.al │ │ │ ├── EssentialHeadlinesObjects.PermissionSet.al │ │ │ ├── EssentialHeadlinesRead.PermissionSet.al │ │ │ ├── d365basicessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365basicisvessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365busfullaccessessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365buspremiumessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365fullaccessessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365readessentialbusinessheadlines.permissionsetext.al │ │ │ ├── d365teammemberessentialbusinessheadlines.permissionsetext.al │ │ │ └── intelligentcloudessentialbusinessheadlines.permissionsetext.al │ │ │ ├── codeunits │ │ │ ├── EssBusHeadlineSubscribers.Codeunit.al │ │ │ ├── EssentialBusHeadlineMgt.Codeunit.al │ │ │ └── HeadlinesInstall.Codeunit.al │ │ │ ├── pages │ │ │ ├── HeadlineDetails.Page.al │ │ │ ├── HeadlinesRCAccountantExt.PageExt.al │ │ │ ├── HeadlinesRCAdminExt.PageExt.al │ │ │ ├── HeadlinesRCBusMgrExt.PageExt.al │ │ │ ├── HeadlinesRCOrderProcExt.PageExt.al │ │ │ ├── HeadlinesRCProjectMgrExt.PageExt.al │ │ │ ├── HeadlinesRCRelMgtExt.PageExt.al │ │ │ └── HeadlinesRCTeamMemberExt.PageExt.al │ │ │ ├── queries │ │ │ ├── BestSoldItemHeadline.Query.al │ │ │ ├── SalesIncreaseHeadline.Query.al │ │ │ └── TopCustomerHeadline.Query.al │ │ │ └── tables │ │ │ ├── EssBusinessHeadlinePerUsr.Table.al │ │ │ └── HeadlineDetailsPerUser.Table.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ └── codeunits │ │ └── TestEssentialBusHeadlines.Codeunit.al │ ├── ExcelReports │ ├── App │ │ ├── ExtensionLogo.png │ │ ├── ReportLayouts │ │ │ └── Excel │ │ │ │ ├── Customer │ │ │ │ └── CustomerTopListExcel.xlsx │ │ │ │ ├── FixedAsset │ │ │ │ ├── FixedAssetAnalysisExcel.xlsx │ │ │ │ ├── FixedAssetDetailsExcel.xlsx │ │ │ │ └── FixedAssetProjectedValueExcel.xlsx │ │ │ │ ├── GeneralLedger │ │ │ │ ├── ConsolidatedTrialBalanceExcel.xlsx │ │ │ │ ├── TrialBalanceBudgetExcel.xlsx │ │ │ │ ├── TrialBalanceExcel.xlsx │ │ │ │ ├── TrialBalancePrevYearExcel.xlsx │ │ │ │ └── TrialBalancebyPeriodExcel.xlsx │ │ │ │ ├── Purchase │ │ │ │ └── AgedAccountsPayableExcel.xlsx │ │ │ │ ├── Sales │ │ │ │ └── AgedAccountsReceivableExcel.xlsx │ │ │ │ └── Vendor │ │ │ │ └── VendorTopListExcel.xlsx │ │ ├── app.json │ │ └── src │ │ │ ├── Customer │ │ │ ├── EXRCustomerTopList.Report.al │ │ │ ├── EXRTopCustomerBalance.Query.al │ │ │ ├── EXRTopCustomerReportBuffer.Table.al │ │ │ ├── EXRTopCustomerSales.Query.al │ │ │ ├── ExtTopCustCaptionHandler.Codeunit.al │ │ │ └── PageExtensions │ │ │ │ ├── EXRCustomerList.PageExt.al │ │ │ │ ├── EXRReminder.PageExt.al │ │ │ │ ├── EXRSalesCreditMemos.PageExt.al │ │ │ │ └── EXRSalesInvoiceList.PageExt.al │ │ │ ├── ExcelReportsTelemetry.Codeunit.al │ │ │ ├── Financials │ │ │ ├── EXRAgedAccPayableExcel.Report.al │ │ │ ├── EXRAgedAccountsRecExcel.Report.al │ │ │ ├── EXRAgingReportBuffer.Table.al │ │ │ ├── EXRConsolidatedTrialBalance.Report.al │ │ │ ├── EXRFixedAssetAnalysisExcel.Report.al │ │ │ ├── EXRFixedAssetDetailsExcel.Report.al │ │ │ ├── EXRFixedAssetProjected.Report.al │ │ │ ├── EXRTrialBalPrevYearExcel.Report.al │ │ │ ├── EXRTrialBalance.Query.al │ │ │ ├── EXRTrialBalanceBudgetExcel.Report.al │ │ │ ├── EXRTrialBalanceBuffer.Table.al │ │ │ ├── EXRTrialBalanceExcel.Report.al │ │ │ ├── EXRTrialBalbyPeriodExcel.Report.al │ │ │ ├── EXTAgedAccCaptionHandler.Codeunit.al │ │ │ ├── PageExtensions │ │ │ │ ├── BusinessUnitList.PageExt.al │ │ │ │ ├── EXRAccountingPeriods.PageExt.al │ │ │ │ ├── EXRBankAccountList.PageExt.al │ │ │ │ ├── EXRBudget.PageExt.al │ │ │ │ ├── EXRChartOfAccounts.PageExt.al │ │ │ │ ├── EXRCurrencyCard.PageExt.al │ │ │ │ ├── EXRFixedAssetCard.PageExt.al │ │ │ │ ├── EXRGLAccountCard.PageExt.al │ │ │ │ ├── EXRGLAccountList.PageExt.al │ │ │ │ ├── EXRGLBudgetNames.PageExt.al │ │ │ │ ├── EXRGLRegisters.PageExt.al │ │ │ │ ├── EXRGeneralJournalBatches.PageExt.al │ │ │ │ └── FixedAssetList.PageExt.al │ │ │ └── TrialBalance.Codeunit.al │ │ │ ├── RoleCenters │ │ │ ├── EXRARRoleCenter.PageExt.al │ │ │ ├── EXRAccPayCoordinatorRC.PageExt.al │ │ │ ├── EXRAccRecAdminRC.PageExt.al │ │ │ ├── EXRAccountantRoleCenter.PageExt.al │ │ │ ├── EXRAccountingManagerRC.PageExt.al │ │ │ ├── EXRBookkeeperRC.PageExt.al │ │ │ ├── EXRCEOAndPresidentRC.PageExt.al │ │ │ ├── EXRFinRoleCenter.PageExt.al │ │ │ ├── EXROrderProcessorRC.PageExt.al │ │ │ ├── EXRPurchasingAgentRC.PageExt.al │ │ │ ├── EXRPurchasingManagerRC.PageExt.al │ │ │ ├── EXRSalesManagerRC.PageExt.al │ │ │ ├── EXRSalesMarketingMgrRC.PageExt.al │ │ │ ├── EXRSalesRelMgrRC.PageExt.al │ │ │ ├── EXRSmallBusinessOwnerRC.PageExt.al │ │ │ ├── ExtBusManagerRoleCenter.PageExt.al │ │ │ └── ExtCompanyDetail.PageExt.al │ │ │ ├── Vendor │ │ │ ├── EXRTopVendorBalance.Query.al │ │ │ ├── EXRTopVendorPurchase.Query.al │ │ │ ├── EXRTopVendorReportBuffer.Table.al │ │ │ ├── EXRVendorTopList.Report.al │ │ │ ├── ExtTopVendorCaptionHandler.Codeunit.al │ │ │ └── PageExtensions │ │ │ │ ├── EXRPurchaseCreditMemos.PageExt.al │ │ │ │ └── EXRVendorList.PageExt.al │ │ │ └── permissions │ │ │ ├── D365BASICISVFEReports.PermissionSetExt.al │ │ │ ├── D365BUSFULLACCESSFEReports.PermissionSetExt.al │ │ │ ├── D365BUSPREMIUMFEReports.PermissionSetExt.al │ │ │ ├── D365FULLACCESSFEReports.PermissionSetExt.al │ │ │ ├── D365READFEReports.PermissionSetExt.al │ │ │ └── ExcelReportsObjects.PermissionSet.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ ├── FixedAssetExcelReports.Codeunit.al │ │ └── TrialBalanceExcelReports.Codeunit.al │ ├── External File Storage - Azure Blob Service Connector │ ├── App │ │ ├── Entitlements │ │ │ └── ExtBlobStorageConnector.Entitlement.al │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ ├── data │ │ │ └── connector-logo.png │ │ ├── permissions │ │ │ ├── ExtBlobStorEdit.PermissionSet.al │ │ │ ├── ExtBlobStorObjects.PermissionSet.al │ │ │ ├── ExtBlobStorRead.PermissionSet.al │ │ │ ├── FileStorageAdminExtBlobStorage.PermissionSetExt.al │ │ │ └── FileStorageEditExtBlobStorage.PermissionSetExt.al │ │ └── src │ │ │ ├── ExtBlobStoConnectorImpl.Codeunit.al │ │ │ ├── ExtBlobStoContainerLookup.Page.al │ │ │ ├── ExtBlobStorAccountWizard.Page.al │ │ │ ├── ExtBlobStorageAccount.Page.al │ │ │ ├── ExtBlobStorageAccount.Table.al │ │ │ ├── ExtBlobStorageAuthType.Enum.al │ │ │ └── ExtBlobStorageConnector.EnumExt.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ ├── ExtAzureBlobServiceTest.Codeunit.al │ │ └── mocks │ │ └── ExtBlobAccountMock.Codeunit.al │ ├── External File Storage - Azure File Service Connector │ ├── App │ │ ├── Entitlements │ │ │ └── ExtFileShareConnector.Entitlement.al │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ ├── data │ │ │ └── connector-logo.png │ │ ├── permissions │ │ │ ├── ExtFileShareEdit.PermissionSet.al │ │ │ ├── ExtFileShareObjects.PermissionSet.al │ │ │ ├── ExtFileShareRead.PermissionSet.al │ │ │ ├── FileStorageAdminExtFileShare.PermissionSetExt.al │ │ │ └── FileStorageEditExtFileShare.PermissionSetExt.al │ │ └── src │ │ │ ├── ExtFileShareAccount.Page.al │ │ │ ├── ExtFileShareAccount.Table.al │ │ │ ├── ExtFileShareAccountWizard.Page.al │ │ │ ├── ExtFileShareAuthType.Enum.al │ │ │ ├── ExtFileShareConnector.EnumExt.al │ │ │ └── ExtFileShareConnectorImpl.Codeunit.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ ├── ExtAzureFileServiceTest.Codeunit.al │ │ └── mocks │ │ └── ExtFileAccountMock.Codeunit.al │ ├── External File Storage - SharePoint Connector │ ├── App │ │ ├── Entitlements │ │ │ └── ExtSharePointConnector.Entitlement.al │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ ├── data │ │ │ └── connector-logo.png │ │ ├── permissions │ │ │ ├── ExtSharePointEdit.PermissionSet.al │ │ │ ├── ExtSharePointObjects.PermissionSet.al │ │ │ ├── ExtSharePointRead.PermissionSet.al │ │ │ ├── FileStorageAdminExtSharePoint.PermissionSetExt.al │ │ │ └── FileStorageEditExtSharePoint.PermissionSetExt.al │ │ └── src │ │ │ ├── ExtSharePointAccount.Page.al │ │ │ ├── ExtSharePointAccount.Table.al │ │ │ ├── ExtSharePointAccountWizard.Page.al │ │ │ ├── ExtSharePointAuthType.Enum.al │ │ │ ├── ExtSharePointConnector.EnumExt.al │ │ │ └── ExtSharePointConnectorImpl.Codeunit.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ ├── ExtSharePointConnectorTest.Codeunit.al │ │ └── mocks │ │ └── ExtSharePointAccountMock.Codeunit.al │ ├── PaymentPractices │ ├── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ │ ├── Core │ │ │ ├── Enums │ │ │ │ ├── PaymPracAggregationType.Enum.al │ │ │ │ └── PaymPracHeaderType.Enum.al │ │ │ ├── Implementations │ │ │ │ ├── PaymPracCVGenerator.Codeunit.al │ │ │ │ ├── PaymPracCustGenerator.Codeunit.al │ │ │ │ ├── PaymPracPeriodAggregator.Codeunit.al │ │ │ │ ├── PaymPracSizeAggregator.Codeunit.al │ │ │ │ └── PaymPracVendorGenerator.Codeunit.al │ │ │ ├── InstallPaymentPractices.Codeunit.al │ │ │ ├── Interfaces │ │ │ │ ├── PaymentPracticeDataGenerator.Interface.al │ │ │ │ └── PaymentPracticeLinesAggregator.Interface.al │ │ │ ├── PaymentPracticeBuilders.Codeunit.al │ │ │ ├── PaymentPracticeMath.Codeunit.al │ │ │ ├── PaymentPractices.Codeunit.al │ │ │ └── Permissions │ │ │ │ ├── D365BasicISVPaymPrac.PermissionSetExt.al │ │ │ │ ├── D365BasicPaymPrac.PermissionSetExt.al │ │ │ │ ├── D365ReadPaymPrac.PermissionSetExt.al │ │ │ │ ├── D365TeamMemberPaymPrac.PermissionSetExt.al │ │ │ │ ├── IntelligentCloudPaymPrac.PermissionSetExt.al │ │ │ │ ├── LocalPaymPrac.PermissionSetExt.al │ │ │ │ ├── PaymPracEdit.PermissionSet.al │ │ │ │ ├── PaymPracObjects.PermissionSet.al │ │ │ │ └── PaymPracRead.PermissionSet.al │ │ │ ├── Pages │ │ │ ├── PaymentPeriods.Page.al │ │ │ ├── PaymentPracticeCard.Page.al │ │ │ ├── PaymentPracticeDataList.Page.al │ │ │ ├── PaymentPracticeLines.Page.al │ │ │ └── PaymentPracticeList.Page.al │ │ │ ├── Reports │ │ │ ├── Payment Practice by Period.docx │ │ │ ├── Payment Practice by Vendor Size.docx │ │ │ └── PaymentPractice.Report.al │ │ │ └── Tables │ │ │ ├── PaymentPeriod.Table.al │ │ │ ├── PaymentPracticeData.Table.al │ │ │ ├── PaymentPracticeHeader.Table.al │ │ │ └── PaymentPracticeLine.Table.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ ├── PaymentPracticesLibrary.Codeunit.al │ │ └── PaymentPracticesUT.Codeunit.al │ ├── PowerBIReports │ ├── App │ │ ├── Core │ │ │ ├── APIs │ │ │ │ ├── ContactsPBIAPI.Page.al │ │ │ │ ├── Customers.Page.al │ │ │ │ ├── DateSetup.Page.al │ │ │ │ ├── Dimensions.Query.al │ │ │ │ ├── DynamicDimensionsPBIAPI.Query.al │ │ │ │ ├── GeneralLedgerSetupPBIAPI.Page.al │ │ │ │ ├── ItemCategoryPBIAPI.Page.al │ │ │ │ ├── ItemsPBIAPI.Query.al │ │ │ │ ├── Locations.Page.al │ │ │ │ ├── PowerBIDimensionSetEntries.Query.al │ │ │ │ ├── PowerBIDimensionSets.Query.al │ │ │ │ ├── ResourcesPBIAPI.Query.al │ │ │ │ ├── ReturnReasonCodePBIAPI.Page.al │ │ │ │ ├── SalespersonPurchasers.Page.al │ │ │ │ ├── VendorsPBIAPI.Page.al │ │ │ │ └── WorkingDays.Page.al │ │ │ ├── Codeunits │ │ │ │ ├── Initialization.Codeunit.al │ │ │ │ ├── InstallationHandler.Codeunit.al │ │ │ │ ├── PowerBIReportSetup.Codeunit.al │ │ │ │ ├── PowerBIUpgrade.Codeunit.al │ │ │ │ └── UpdateDimSetEntries.Codeunit.al │ │ │ ├── Pages │ │ │ │ ├── PowerBIAssistedSetup.Page.al │ │ │ │ ├── PowerBIReportsSetup.Page.al │ │ │ │ ├── PowerBISelectionLookup.Page.al │ │ │ │ ├── WorkingDaysSetup.Page.al │ │ │ │ └── WorkingDaysSubform.Page.al │ │ │ ├── PermissionSets │ │ │ │ ├── D365BasicPowerBIReports.PermissionsetExt.al │ │ │ │ ├── D365BusFullAccessPowerBIReports.PermissionsetExt.al │ │ │ │ ├── D365ReadPowerBIReports.PermissionsetExt.al │ │ │ │ ├── D365TeamMemberPowerBIReports.PermissionsetExt.al │ │ │ │ ├── PowerBIEmbeddedObjects.PermissionSet.al │ │ │ │ ├── PowerBIReportAdmin.PermissionSet.al │ │ │ │ └── PowerBiReportBasic.PermissionSet.al │ │ │ ├── RoleCenterExtensions │ │ │ │ ├── APAdministratorRC.PageExt.al │ │ │ │ ├── AdministratorMainRoleCenter.PageExt.al │ │ │ │ ├── BusinessManagerRoleCenter.PageExt.al │ │ │ │ ├── FinanceManagerRoleCenter.PageExt.al │ │ │ │ ├── ManufacturingManagerRC.PageExt.al │ │ │ │ ├── OrderProcessorRoleCenter.PageExt.al │ │ │ │ ├── PowerBIJobProjectManager.PageExt.al │ │ │ │ ├── ProductionPlannerRoleCenter.PageExt.al │ │ │ │ ├── ProjectManagerRoleCenter.PageExt.al │ │ │ │ ├── PurchasingAgentRoleCenter.PageExt.al │ │ │ │ ├── PurchasingManagerRoleCenter.PageExt.al │ │ │ │ ├── SalesMarketingManagerRC.PageExt.al │ │ │ │ ├── WarehouseManagerRoleCenter.PageExt.al │ │ │ │ └── WhseBasicRoleCenter.PageExt.al │ │ │ ├── TableExtensions │ │ │ │ └── AccountingPeriod.TableExt.al │ │ │ └── Tables │ │ │ │ ├── PowerBIFlatDimSetEntry.Table.al │ │ │ │ ├── PowerBIReportsSetup.Table.al │ │ │ │ └── WorkingDay.Table.al │ │ ├── ExtensionLogo.png │ │ ├── Finance │ │ │ ├── APIs │ │ │ │ ├── AccountCategories.Query.al │ │ │ │ ├── CloseIncomeSourcePBIAPI.Query.al │ │ │ │ ├── CustomerLedgerEntries.Query.al │ │ │ │ ├── GLAccountCategories.Query.al │ │ │ │ ├── GLAccounts.Query.al │ │ │ │ ├── GLBudgetEntriesPBIAPI.Query.al │ │ │ │ ├── GLBudgets.Query.al │ │ │ │ ├── GLEntriesBalanceSheet.Query.al │ │ │ │ ├── GLIncomeStatementPBIAPI.Query.al │ │ │ │ └── VendorLedgEntriesPBIAPI.Query.al │ │ │ ├── AccountCategories.Page.al │ │ │ ├── AccountCategory.Table.al │ │ │ ├── AccountCategoryType.Enum.al │ │ │ ├── Embedded │ │ │ │ ├── AgedPayablesBackDating.Page.al │ │ │ │ ├── AgedReceivablesBackDating.Page.al │ │ │ │ ├── AverageCollectionPeriod.Page.al │ │ │ │ ├── BalanceSheetbyMonth.Page.al │ │ │ │ ├── BudgetComparison.Page.al │ │ │ │ ├── DetailedCustLedgerEntries.Page.al │ │ │ │ ├── DetailedVendorLedgerEntries.Page.al │ │ │ │ ├── EBITDA.Page.al │ │ │ │ ├── FinanceReport.Page.al │ │ │ │ ├── FinancialOverview.Page.al │ │ │ │ ├── IncomeStatementbyMonth.Page.al │ │ │ │ ├── LatePaymentsReceivables.Page.al │ │ │ │ ├── Liabilities.Page.al │ │ │ │ ├── LiquidityKPIs.Page.al │ │ │ │ ├── PowerBIGeneralLedgEntries.Page.al │ │ │ │ └── Profitability.Page.al │ │ │ ├── FinanceFilterHelper.Codeunit.al │ │ │ ├── FinanceInstallationHandler.Codeunit.al │ │ │ ├── PBICIncomeStSourceCode.Table.al │ │ │ ├── PBICloseIncomeStmtSC.Page.al │ │ │ └── SetupFinance.TableExt.al │ │ ├── Inventory │ │ │ ├── APIs │ │ │ │ ├── AssemblyHeadersOrder.Query.al │ │ │ │ ├── AssemblyLinesItem.Query.al │ │ │ │ ├── Bins.Query.al │ │ │ │ ├── ItemLedgerEntriesPBIAPI.Query.al │ │ │ │ ├── JobPlanningLinesItem.Query.al │ │ │ │ ├── PlanningComponents.Query.al │ │ │ │ ├── ProdOrderCompInvt.Query.al │ │ │ │ ├── ProdOrderLinesInvt.Query.al │ │ │ │ ├── PurchaseLinesOutstanding.Query.al │ │ │ │ ├── RequisitionLines.Query.al │ │ │ │ ├── SalesLinesOutstanding.Query.al │ │ │ │ ├── ServiceLinesOrder.Query.al │ │ │ │ ├── TransferLines.Query.al │ │ │ │ ├── ValueEntriesItem.Query.al │ │ │ │ ├── WarehouseActivityLines.Query.al │ │ │ │ ├── WarehouseEntries.Query.al │ │ │ │ ├── WhseJournalLinesFromBin.Query.al │ │ │ │ ├── WhseJournalLinesToBin.Query.al │ │ │ │ └── Zones.Query.al │ │ │ ├── Embedded │ │ │ │ ├── Inventory Valuation │ │ │ │ │ ├── InventoryValuationOverview.Page.al │ │ │ │ │ ├── InventoryValuationReport.Page.al │ │ │ │ │ ├── InventoryValuationbyItem.Page.al │ │ │ │ │ └── InventoryValuationbyLoc.Page.al │ │ │ │ └── Inventory │ │ │ │ │ ├── BinContentsbyItemTracking.Page.al │ │ │ │ │ ├── GrossRequirement.Page.al │ │ │ │ │ ├── InventoryForecasting.Page.al │ │ │ │ │ ├── InventoryOverview.Page.al │ │ │ │ │ ├── InventoryReport.Page.al │ │ │ │ │ ├── InventorybyItem.Page.al │ │ │ │ │ ├── InventorybyLocation.Page.al │ │ │ │ │ ├── InventorybyLot.Page.al │ │ │ │ │ ├── InventorybySerialNo.Page.al │ │ │ │ │ ├── ItemAvailability.Page.al │ │ │ │ │ ├── PowerBIBinContents.Page.al │ │ │ │ │ ├── PurchaseandSalesQuantity.Page.al │ │ │ │ │ └── ScheduledReceipt.Page.al │ │ │ └── SetupInventory.TableExt.al │ │ ├── Manufacturing │ │ │ ├── APIs │ │ │ │ ├── CalendarEntries.Query.al │ │ │ │ ├── CapacityLedgerEntries.Query.al │ │ │ │ ├── InvAdjEntOrderPBIAPI.Query.al │ │ │ │ ├── ItemLedgerEntriesProd.Query.al │ │ │ │ ├── MachineCenters.Query.al │ │ │ │ ├── ManufValueEntriesPBIAPI.Query.al │ │ │ │ ├── ManufacturingSetupPBIAPI.Query.al │ │ │ │ ├── ProdOrderCapacityNeeds.Query.al │ │ │ │ ├── ProdOrderCompManuf.Query.al │ │ │ │ ├── ProdOrderLinesManuf.Query.al │ │ │ │ ├── ProdOrderRoutingLines.Query.al │ │ │ │ ├── ProdOrdersPBIAPI.Query.al │ │ │ │ ├── RoutingLinksPBIAPI.Query.al │ │ │ │ ├── RoutingsPBIAPI.Query.al │ │ │ │ ├── WorkCenterGroupsPBIAPI.Query.al │ │ │ │ └── WorkCenters.Query.al │ │ │ ├── Embedded │ │ │ │ ├── AllocatedHours.Page.al │ │ │ │ ├── AverageProductionsTimes.Page.al │ │ │ │ ├── CapacityVariance.Page.al │ │ │ │ ├── ConsumptionVariance.Page.al │ │ │ │ ├── ExpectedCapacityNeed.Page.al │ │ │ │ ├── FinishedProdOrderBreakdown.Page.al │ │ │ │ ├── ManufacturingReport.Page.al │ │ │ │ ├── PBIMachineCenterLoad.Page.al │ │ │ │ ├── PBIMachineCenterStatistics.Page.al │ │ │ │ ├── PBIWorkCenterStatistics.Page.al │ │ │ │ ├── PowerBIReleasedProdOrders.Page.al │ │ │ │ ├── PowerBIWorkCenterLoad.Page.al │ │ │ │ ├── ProdOrderList.Page.al │ │ │ │ ├── ProdOrderRoutingsGantt.Page.al │ │ │ │ ├── ProductionOrderOverview.Page.al │ │ │ │ ├── ProductionOrderWIP.Page.al │ │ │ │ └── ProductionScrap.Page.al │ │ │ ├── ManufFilterHelper.Codeunit.al │ │ │ └── SetupManufacturing.TableExt.al │ │ ├── Projects │ │ │ ├── APIs │ │ │ │ ├── JobLedgerEntriesPBIAPI.Query.al │ │ │ │ ├── JobPlanningLines.Query.al │ │ │ │ ├── JobTasks.Query.al │ │ │ │ ├── Jobs.Query.al │ │ │ │ ├── PurchLinesJobOutstanding.Query.al │ │ │ │ └── PurchLinesJobReceived.Query.al │ │ │ ├── Embedded │ │ │ │ ├── ProjectInvdSalesbyCust.Page.al │ │ │ │ ├── ProjectInvoicedSalesbyType.Page.al │ │ │ │ ├── ProjectPerformancetoBudget.Page.al │ │ │ │ ├── ProjectProfitability.Page.al │ │ │ │ ├── ProjectRealization.Page.al │ │ │ │ ├── ProjectTasks.Page.al │ │ │ │ ├── ProjectTimeline.Page.al │ │ │ │ ├── ProjectsOverview.Page.al │ │ │ │ └── ProjectsReport.Page.al │ │ │ ├── ProjectFilterHelper.Codeunit.al │ │ │ └── SetupProjects.TableExt.al │ │ ├── Purchasing │ │ │ ├── APIs │ │ │ │ ├── ItemBudgetEntriesPurch.Query.al │ │ │ │ ├── PurchLinesItemOutstd.Query.al │ │ │ │ ├── PurchLinesItemReceived.Query.al │ │ │ │ ├── PurchValueEntriesPBIAPI.Query.al │ │ │ │ ├── PurchaseCreditLines.Query.al │ │ │ │ ├── PurchaseInvoiceLines.Query.al │ │ │ │ └── PurchaseLinesPBIAPI.Query.al │ │ │ ├── Embedded │ │ │ │ ├── DailyPurchases.Page.al │ │ │ │ ├── KeyPurchaseInfluencers.Page.al │ │ │ │ ├── PurchActualvsBudgetAmt.Page.al │ │ │ │ ├── PurchActualvsBudgetQty.Page.al │ │ │ │ ├── PurchaseForecasting.Page.al │ │ │ │ ├── PurchaseQuoteOverview.Page.al │ │ │ │ ├── PurchaseReturnOverview.Page.al │ │ │ │ ├── PurchasesDecomposition.Page.al │ │ │ │ ├── PurchasesMovingAnnualTotal.Page.al │ │ │ │ ├── PurchasesMovingAverages.Page.al │ │ │ │ ├── PurchasesOverview.Page.al │ │ │ │ ├── PurchasesPeriodOverPeriod.Page.al │ │ │ │ ├── PurchasesReport.Page.al │ │ │ │ ├── PurchasesYearOverYear.Page.al │ │ │ │ ├── PurchasesbyItem.Page.al │ │ │ │ ├── PurchasesbyLocation.Page.al │ │ │ │ ├── PurchasesbyPurchaser.Page.al │ │ │ │ ├── PurchasesbyVendor.Page.al │ │ │ │ └── VendorQualityAnalysis.Page.al │ │ │ ├── PurchasesFilterHelper.Codeunit.al │ │ │ └── SetupPurchases.TableExt.al │ │ ├── Sales │ │ │ ├── APIs │ │ │ │ ├── CloseOppCodePBIAPI.Page.al │ │ │ │ ├── ItemBudgetEntriesSales.Query.al │ │ │ │ ├── ItemBudgetNames.Query.al │ │ │ │ ├── OpportunityEntriesPBIAPI.Query.al │ │ │ │ ├── OpportunityPBIAPI.Query.al │ │ │ │ ├── SalesCrProjectLedgerEntry.Query.al │ │ │ │ ├── SalesCreditLinesPBIAPI.Query.al │ │ │ │ ├── SalesCycleStagePBIAPI.Page.al │ │ │ │ ├── SalesInvProjectLedgerEntry.Query.al │ │ │ │ ├── SalesInvoiceLinesPBIAPI.Query.al │ │ │ │ ├── SalesLineItemOutstanding.Query.al │ │ │ │ ├── SalesLineItemShipped.Query.al │ │ │ │ ├── SalesLineV2PBIAPI.Query.al │ │ │ │ └── SalesValueEntriesPBIAPI.Query.al │ │ │ ├── Embedded │ │ │ │ ├── DailySales.Page.al │ │ │ │ ├── KeySalesInfluencers.Page.al │ │ │ │ ├── OpportunityOverview.Page.al │ │ │ │ ├── ReturnOrderOverview.Page.al │ │ │ │ ├── SalesActualvsBudgetQty.Page.al │ │ │ │ ├── SalesDecomposition.Page.al │ │ │ │ ├── SalesDemographics.Page.al │ │ │ │ ├── SalesForecasting.Page.al │ │ │ │ ├── SalesMonthToDate.Page.al │ │ │ │ ├── SalesMovingAnnualTotal.Page.al │ │ │ │ ├── SalesMovingAverage.Page.al │ │ │ │ ├── SalesOverview.Page.al │ │ │ │ ├── SalesPeriodOverPeriod.Page.al │ │ │ │ ├── SalesQuoteOverview.Page.al │ │ │ │ ├── SalesReport.Page.al │ │ │ │ ├── SalesbyCustomer.Page.al │ │ │ │ ├── SalesbyItem.Page.al │ │ │ │ ├── SalesbyLocation.Page.al │ │ │ │ ├── SalesbyProjects.Page.al │ │ │ │ └── SalesbySalesperson.Page.al │ │ │ ├── SalesFilterHelper.Codeunit.al │ │ │ └── SetupSales.TableExt.al │ │ ├── _Obsolete │ │ │ ├── Core │ │ │ │ └── DimensionSetEntry.Table.al │ │ │ ├── Finance │ │ │ │ └── APIs │ │ │ │ │ ├── GLEntriesClosing.Query.al │ │ │ │ │ └── GLEntriesIncomeStatement.Query.al │ │ │ ├── Manufacturing │ │ │ │ └── Embedded │ │ │ │ │ ├── CurrentUtilization.Page.al │ │ │ │ │ └── HistoricalUtilization.Page.al │ │ │ ├── Purchasing │ │ │ │ └── APIs │ │ │ │ │ └── ValueEntriesPurch.Query.al │ │ │ ├── Sales │ │ │ │ ├── APIs │ │ │ │ │ ├── SalesLinePBIAPI.Query.al │ │ │ │ │ └── ValueEntriesSales.Query.al │ │ │ │ └── Embedded │ │ │ │ │ └── SalesActualvsBudgetAmt.Page.al │ │ │ ├── SubscriptionBilling │ │ │ │ ├── EmbeddedPages │ │ │ │ │ ├── BillingSchedule.Page.al │ │ │ │ │ ├── ChurnAnalysis.Page.al │ │ │ │ │ ├── CustomerDeferrals.Page.al │ │ │ │ │ ├── RevenueAnalysis.Page.al │ │ │ │ │ ├── RevenueDevelopment.Page.al │ │ │ │ │ ├── RevenueYoY.Page.al │ │ │ │ │ ├── RevenuebyCustomer.Page.al │ │ │ │ │ ├── RevenuebyItem.Page.al │ │ │ │ │ ├── RevenuebySalesperson.Page.al │ │ │ │ │ ├── SalesandCostforecast.Page.al │ │ │ │ │ ├── SubscriptionBillingReport.Page.al │ │ │ │ │ ├── SubscriptionOverview.Page.al │ │ │ │ │ ├── TotalContractValueAnalysis.Page.al │ │ │ │ │ ├── TotalContractValueYoY.Page.al │ │ │ │ │ └── VendorDeferrals.Page.al │ │ │ │ └── SetupSubscriptionBilling.TableExt.al │ │ │ └── Sustainability │ │ │ │ ├── EmbeddedPages │ │ │ │ ├── CO2eAnalysis.Page.al │ │ │ │ ├── CO2eDecompositionTree.Page.al │ │ │ │ ├── CO2eKeyInfluences.Page.al │ │ │ │ ├── EmissionsbyCatandScope.Page.al │ │ │ │ ├── JourneytoNetZeroCarbon.Page.al │ │ │ │ ├── RealizedEmissionsvsBaseline.Page.al │ │ │ │ ├── RealizedEmissionsvsTarget.Page.al │ │ │ │ ├── SocialAnalysis.Page.al │ │ │ │ ├── SustainabilityOverview.Page.al │ │ │ │ ├── SustainabilityReport.Page.al │ │ │ │ └── WaterandWasteAnalysis.Page.al │ │ │ │ └── SetupSustainability.TableExt.al │ │ └── app.json │ ├── Power BI Files │ │ ├── Finance app │ │ │ ├── Finance app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines8623869033811491.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY19SU12.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark15eb889e4059c3146371.bookmark.json │ │ │ │ │ ├── Bookmark2556dbd13d90b398a787.bookmark.json │ │ │ │ │ ├── Bookmark496226472d24527c5e69.bookmark.json │ │ │ │ │ ├── Bookmark4c54ebcb0eb024e967b5.bookmark.json │ │ │ │ │ ├── Bookmark6746518f3cb530dd9a83.bookmark.json │ │ │ │ │ ├── Bookmark6837f6cd2e84a77e9b8e.bookmark.json │ │ │ │ │ ├── Bookmark7acc4dd5c7523a1e4003.bookmark.json │ │ │ │ │ ├── Bookmark7fcb39a12a27604d4d10.bookmark.json │ │ │ │ │ ├── Bookmarka9652147edcc8bce4301.bookmark.json │ │ │ │ │ ├── Bookmarkb27f7bff097c6d0905d6.bookmark.json │ │ │ │ │ ├── Bookmarkcddf9bad46110d655e76.bookmark.json │ │ │ │ │ ├── Bookmarke7692ddf63b3b5b08d0c.bookmark.json │ │ │ │ │ ├── Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 04fa320747962435bf38 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 06c4bc5246d5229c22e0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1a1f6c3fda2bf4de6795 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 734bb12e37055a1cbb7c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7cc7c2c8c2261e10a590 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 91d160c6ce952e2b7838 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c70a35b97d9ca0e978e0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cd3bbf1e1ac1884a6bbd │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e08576f891b517a9d36f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e8387bd4e4b08ac15484 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection15bface0e851125fb4ea │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 684a86189d0293034d27 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7dfcc06a3a0533a5483e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d9a72770b739ecc516ab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e2752672c7b80e0e9a0a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection1636f46ab3cad0c163a4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── ab2a603a50ee51e5006c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d96f29105a08e8019d52 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e1ce7b1d7d5890d3c17d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e421a875bb92091b5e2e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection191ca6bc71c7ec7b1450 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3bd514127e6002dbc745 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 594d743bbda475ade817 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── aa0c089d1a13b2b1e5e4 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── da2cbbd91fee6895d6da │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection56ffc74955826011c00d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4c9ba3107002159e31e9 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b21b508be4919d898e34 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cdbea2e2ca3fd1415bea │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ecdbf0c01d9cd4773b21 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection617fae23c8d7b50d6d0a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0980f0186ec3976e906a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 17b313b576348aea56c7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1e2157ef7319e5b737d2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 41ec9042caeb2e980963 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4360271e9411ed096322 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4542e515010cc8a34211 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4da1a366c590c725bbd0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 526fdc941c4e38210105 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5f2923f09d44e5458077 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64486291b04829710dcc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 66392c283e2b2468edbc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6917f221e9c5400939bd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── afea4d233aea68eacd50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b7c50ae585bb58c807d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── bde9e20c4dea86643d5a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection64d670dfa9da1a5b7033 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 64e372d8086bd80a4557 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ce278e11d9621d300e46 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e1035c80544f8b1b0739 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── febb64214b44110be383 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection6838cf9cda361d088e0a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 07ca8b23abb18bcdc5c0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 123e1988cc1d07952b08 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 22605c889eca14a76b69 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 26fadd080912e1289544 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 43bfe1901057815354b6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 574cbe1e0d3593c14d31 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 755f3b55ffe8a7bdd6f0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 919e3b6c3005b50ec84a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 970cbbe77cd1508d0e0d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9ba60d39a7e4aba450b4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b51e616413a7aa279ad3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b64db4b0d60b6d141cab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c99c49ed6ae330e4ed9b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d21d4dd45a3e9d55d625 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection6a30609896651f006f0f │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 433165d36d6832277ad1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 73469fbeb00c485d8eb7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9ab470417a6d8f6aa542 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ff51f0cb8ef5c65a5bfd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection904474b579cc92816425 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 06c6934f0b78e21ee142 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0d4b1391103195a20a19 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 16200ead54a6007b9cb3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 19c04d4d1107e69b0c22 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 238b3e73b4fe0b165b3c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2a06fa9a02d8940c70b0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3bd48eaeece3eea893fd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64a0b8a2b0b91aec6c94 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7f740564eb5b20502a6c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8d72778951b54d8a58a6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9a64c940b00659a82e77 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9e2c08232637010835c3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a06ed07a8548627c70ce │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b064681315a05471e570 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b36beb46e29d0186da38 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b8e25941d917024453ac │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── be54737c71a1004d98ac │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ce725486de5a8686a33a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d9270216f64ce54580b2 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f142ec2a18383d07400b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f93370b980a09c6b090c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionab3743c6203831d31beb │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 075972f98cf47653cee3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 09265a1f12b30ff3c924 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 391ef8f329e3304eee2b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8afaff29ca69be56054f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8ec0fd52d0fb757519a2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8fc72a3d202fdb2fca55 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9d2a6fa6e2c61bc91588 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a0492f22fcb7033ca63b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── af5de34a6d539704e7b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b355410ad057b901d828 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bdf2de135f007d4f9d1a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d228de39d5d94c4ae964 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f10efada523b396440c6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb1d1e3d33a031ad3b0ed │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 01fa067c3baf21a459fc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2f6be9c402a130a783bb │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5baeb444f0f79560d837 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7411975ca1893eb483d1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8993b2738ee98b5ba18c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dcdd8574feb9682e74fb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e9a37964a20fcad6704d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionbb4917d9edb6d427282c │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0a6edfcc6bbaec25eed1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 14355411b2a810eca798 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1ca64742622944a6470b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3fee86e2ac46b4bfdaf0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 433165f3179720ef426b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 88779fe273c0a5806231 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8ae4534b1c0d07796ec0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8d099a909db88340aa50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 954cb27bbac8b05b5d4c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a3684c3828eca9e38cc8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b131d6b39c730e831b30 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c0c9933eb64a87790fec │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c654cb930373e77b3992 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cb62f51f58ed0f502104 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d2d91761d2998a98b89d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e9e124bcc29326bd0d34 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── eb3a8727823559e15e4e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fd2d7f61b79b44afe6f9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectioncd819efac970874e83c3 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 04365bbe331ae76c612d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1336b621304923579a2b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 17a1a64152b6d8414981 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 424ca5e9495346109505 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a4ab8ff8f2d64e762ebe │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b0998178a24c3d3b8a8e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── c920ce6e1c6e3c418e77 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectione41781b904ee19d0b943 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 339a67da6df286374513 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e074c6b2ed9e27a2898 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d22a0089b51816969e9c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ea74e54fbb9f4aa87a87 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectione72966404f743d39d212 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4c0a92e04a1b4be78b0e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 627bc0aff7ef16bf664c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 63e1b2a70e27cb9ae010 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── abec204c77222e595c2c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf72eb4d7e5e35db3b283 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 707ee821e4dd1325b506 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 98745ba72d9c38f5c86c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bbc7470a265697d59935 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cf335ca8c786d7675098 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf81eac120b0121499b0b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2d869399c17c173af148 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 84e7690ed4509ea9f8d1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 896e15c031405314e001 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d07c7ef373ca320a2d78 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionfdc853c4230265e530cc │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1814067759a746461565 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 81d808fd226747792502 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b18d01b658de6cf056ec │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ef69206e1fbb926182c3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionfef66fa3cf79c6d85930 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 00b6125b70476e7132f5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 061645e0a1c1ff5dcd94 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3378f26c410031c9291e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 339141cb56c9ff607992 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 35986c5ee2fae2244229 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3d07ce3f1eccb64ecd05 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4922cad7016e8bce2ffa │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4c015466d4c1da2e6a4e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 683e8e9ca8c95dcf4e33 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 720c9ad940269c758269 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ea0eb60809982717251 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 997588b604dfb9a4c6db │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9e240be6509b5c6c5034 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b055c830247c7ef6b4b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b0c7a35c4551ec7ae78d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d9ee849759e0ffa0d098 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e30b8560a37037f05730 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e7c6c38864dbd2231b8e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e84bb974d4b6afd0bf17 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f1d4e7ea883f9ea81748 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f5ea97060ad95d6a11f6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── c11895fd214552064bae │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 08064ffd53f358dda809 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2934924a1f60283aef2b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 390b380dafee3a961e00 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3d30e3d3ba2e5861477a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7e75400340b8091b0c2b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e8001d98883040f7559 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a3e976959db3271c83d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b6a5982925ff1487e61c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c75420548d24b32c617a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d135a86b5cb54bb02830 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f6ce8f554b223bafb421 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Finance app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── Activity KPIs.tmdl │ │ │ │ │ │ ├── Aging Bucket Period.tmdl │ │ │ │ │ │ ├── Aging Date Parameter.tmdl │ │ │ │ │ │ ├── Back Links.tmdl │ │ │ │ │ │ ├── Balance Sheet Measures.tmdl │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl │ │ │ │ │ │ ├── Calc. Group - Time Intelligence for Calendar (Standard).tmdl │ │ │ │ │ │ ├── Calc. Group - Time Intelligence for Calenday (Weekly).tmdl │ │ │ │ │ │ ├── Closing Entry Filter Table.tmdl │ │ │ │ │ │ ├── Customer Ledger Entries.tmdl │ │ │ │ │ │ ├── Customers.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Fiscal Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── G%2FL Account Category.tmdl │ │ │ │ │ │ ├── G%2FL Account.tmdl │ │ │ │ │ │ ├── G%2FL Budget Entries.tmdl │ │ │ │ │ │ ├── G%2FL Budget.tmdl │ │ │ │ │ │ ├── G%2FL Entries.tmdl │ │ │ │ │ │ ├── Income Statement Measures.tmdl │ │ │ │ │ │ ├── Liquidity KPIs.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Power BI Account Categories.tmdl │ │ │ │ │ │ ├── Profitability KPIs.tmdl │ │ │ │ │ │ ├── Standard Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Vendor Ledger Entries.tmdl │ │ │ │ │ │ ├── Vendors.tmdl │ │ │ │ │ │ ├── Weekly Calendar Time Intelligence.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Finance app.pbip │ │ │ └── Finance app.pbix │ │ ├── Inventory Valuation app │ │ │ ├── Inventory Valuation app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines510968252950425.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY19SU12.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark057b0d3a30e17de60c8d.bookmark.json │ │ │ │ │ ├── Bookmark4b45beaa708c05057e2b.bookmark.json │ │ │ │ │ ├── Bookmark5b0acb8fa3c1b26eea48.bookmark.json │ │ │ │ │ ├── Bookmarkba290afc10020d067c55.bookmark.json │ │ │ │ │ ├── Bookmarkc3aaba61b174e252ae80.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 47469f126ce6603a9114 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 7460a2ad40e2a742c60d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ea3c301e80870d9a826 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 97d20e3f56a5dd16536a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9cab786c479b8d40e0d3 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── b81f2011e727c57e6508 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 6a6852c0d882690a617b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 317b24d3206ba8186bc7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 490f2478c708bdd6637e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 524b82407ca2d16051ab │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c424b37865e7534e0673 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f3d53d40be8bb0d60c33 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection31df4b90dc8e996715ce │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0d888011c2622c22ac18 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 22bf62d9d4de4470c3a3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 286980186e0171ea2126 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4357ad84460d5d2247fa │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 46e54aaa00c1a675de05 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5b2f76140d1c0a1878cb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5f8167fcfa9be241333f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 633b8172b0b5bb30a309 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 642a3a28a331dea87207 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6cd303f3036d769afb16 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 836f9c90a5b93a080005 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 84bf09a17f9cee57dbe7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 921c8c7caf1ca528924b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9851fc90d0c35061aebd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b3a3e88cbf5ea1f2410c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cc64197fa5f2f5e0f95a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection41d23fcd2b0c70d16059 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1cbddb0f4716822490e8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 253cfa301a9b4893e9ab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8461c5066810644c8e23 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 84c872700d55292a578a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e07a76e34dbb59b21ee2 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee649b7860100e2ced90 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection46eb1a0421029b780408 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 5da92201718a0c2b8f94 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 84cdee2a1b7d9b6b5907 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── aaf7625f4012923c2608 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dc20d720570d0ed7e7b4 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Inventory Valuation app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── DAXQueries │ │ │ │ │ ├── .pbi │ │ │ │ │ │ └── daxQueries.json │ │ │ │ │ └── Query 1.dax │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Item Category.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Location.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Value Entries.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Inventory Valuation app.pbip │ │ │ └── Inventory Valuation app.pbix │ │ ├── Inventory app │ │ │ ├── Inventory app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines8354450509462955.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY19SU12.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark057b0d3a30e17de60c8d.bookmark.json │ │ │ │ │ ├── Bookmark0b571534281374de1697.bookmark.json │ │ │ │ │ ├── Bookmark10d6ed18b198005ac04a.bookmark.json │ │ │ │ │ ├── Bookmark38bd9874c78053a202e2.bookmark.json │ │ │ │ │ ├── Bookmark4b45beaa708c05057e2b.bookmark.json │ │ │ │ │ ├── Bookmark5b0acb8fa3c1b26eea48.bookmark.json │ │ │ │ │ ├── Bookmark6bb1ad993ed68b0dc53b.bookmark.json │ │ │ │ │ ├── Bookmark789e42ab40bed8221b00.bookmark.json │ │ │ │ │ ├── Bookmark7c6c8354be6b677a4c29.bookmark.json │ │ │ │ │ ├── Bookmark7db1c1cdaead10e09511.bookmark.json │ │ │ │ │ ├── Bookmarkba01289fa1e5d659d514.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 7fea1d34602a649a1083 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3d8cea6220968d290279 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8fcc609204c0120194d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9f5569d7ce40e0741d48 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a09e7757bcb3b7977d83 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c3478bccf18c39fe3df9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d0063616c6d6c9daf059 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d1f2af4ed16117e83d43 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection03dcadb7525d51900472 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0b9972ccc327379a6ce1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 124876eb8c3ebdc623d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2877b292c64202e50e42 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2ada9ab545ec5bf2d2a2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3412e01f7866f2e5e5d1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 35d55a84d59b7c1183f0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4543cbbcdc10497cb170 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 67d34f55c5d3d73d562b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6bc9199a61005a715609 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6d1afd1e87321e7ed1c2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 71a296ab14c050c800c3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7a0831ff885ee5403dcb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bdea2f232168f31579a5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── beb8df272cb3b71aa8a3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c037843c1c6b41731c0a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f55a0da142a0ad236ceb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection12b3ff23621e20c1398d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 155ee882efc97e5729cd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2ffd7d47301699129504 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4b7e94a5670dbec6c2cb │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4fe5e8abb925c73748e9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9b3a53e350202c08a8cc │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dfed96968bd1330bc502 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection2765ed5a1005d04217d1 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3046080466277c02f41c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 454dcb346f419283a93b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 508d66f8d62d6c3a6690 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 79c99bd36e0c2e4466a6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e337ced2ffe1681d187a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection497a0733e5e90ba900a1 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ └── 51974e410066127b83e0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection58e1ccc4c983326cd9e5 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 10b25dc0028b16d50404 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 736f98f24c44757b004c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8bb2ca3c0395aec89e44 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e8201982c164934a2414 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection5aaca347e8eb867da682 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0ec38b4893746c77ad7c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60b658a4063a1668919c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 81c92b60a707e9b92096 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9c0f2cca4bc10c2243bb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── a0bd1eee0880b78e6a4c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection61c190709a57015b0e48 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 12f145c085e099adda45 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3b48de168d0a6b950456 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5c18615ed580c579afe7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9a76bf1fe1cc94569904 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cee5028f49a270136667 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection7359815290770dd2a490 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 6401e1c81d090ea0bc5b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e96050f700b3bcc3d0b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d9504fbe503763e03dc6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e68bd67980b3ab7a548a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection73cdbea804d31fffbea7 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 05f6dc69ec05420157ea │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4f08940d689551f48914 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 91a4cc2282449fccd03d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── a47d1e7f9c6c62a0a51b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection7a453ed80b4a52692b44 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 92b0858da405be0ee644 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c41b74c9de06b3048a31 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── db1638096230893ee771 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e7f37e738b5d013a4878 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection83efd78c5625e0b0a650 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1c0bc24842aa1899b59c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2cbbc2c2a6633d131897 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6e87ead34cd9d0937aac │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 72424b7099356561d0de │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection87a3736490abeda3244f │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── b79ebd44452a62e3932c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e5c6f06509aacda02acf │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f05ed7c3bc411bfed606 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ffe01345e14f3d9cef58 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection8c3ed3c2c96e298a0824 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 23529a90a2448848a2ca │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3d50611b6006ec620366 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 702ab240e06ce302bd38 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ef50d2061f4ff4f229fe │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection94c932a22e568b021aba │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1819358bd98b590ced4d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c4e4a187c894a06d02ad │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d656a50a622055909e66 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── fa17c6cf55ce91ef32c9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fafefdb4e70156a4b2ee │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection956cd619a014201c65e3 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 001c67a91ec30c35099b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 04925a327bdb92124ecc │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 371d0905889cead80433 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4b699748e49a9002cc90 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 56e9a32f037d59a416be │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 586b473cab64c64fca26 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 70fe6c73dbc471ed1381 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9c24ff904eccdc8e3029 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9dfcf5df77b077502e7a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee9f57304ba116e50dc7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection9dfdc8a0eb1e8309d861 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 13713b753e327905bc93 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 811afec05771a0d4396d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ba43d18992db8239b391 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d532278f0446b9dab97e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb3a412070059b10a5bb4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4dda0b5fd49b0680d60e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 4e1f5fa227052d0e1d67 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb9621105306a4dc988c7 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ └── 583710f2ecc2091484ba │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionca1408a32a2e9a9d4225 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 21369251da7cc729cb9a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c6088ab5ab8661a34b25 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c8d18d570a767dbc0e2c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d3633582915a124575b8 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiond8e975a633160b0491e0 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 8544b754957b7da22707 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 929d727030b73dbe58de │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ca2620f02a182e9046c4 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── eb7ec3b4913b1b35708d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiond99a75349d3388ca085c │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 045c11ac85a73b8fdf70 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 55c6e36f31e4d3bebc39 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 611b63c5ad3939e8dc05 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b499f57d69697304be88 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ba88f54c0599e360e030 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fdd57c4d9bc6ba0c56c3 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectione24db7517a44af92f122 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 26333c0f0d01be338be2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2835be8c0f7313b188ac │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 367bff39e4d60ea35ae0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3c24954a468724604810 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3e72717375c042ac4e80 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6028172dc2d1540c7911 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64a0bf80a01d0028034c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7abfead70eedccad2e5b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 821cc7b3ee921105ea06 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 94a9684273271a633c9c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b81444b1a1335b045376 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d89e1ff593a6bc545059 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e153beb97d87080b3958 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e4f8ead2c3586d236aa2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ee64ef9b2b496d5d600d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fb554ef06c2061127b01 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectione4987dcc2e0842a30b01 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0e66cdf02649f3497b32 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 21082c1b3e99cad64882 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 80c01d330d8891b9e236 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── edd3fa8ec24c279fa062 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionec09da5413c3755982a4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1c92e73558b9d2289cad │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 295b566003323ac08bd0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 403e0b0571b282d877d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 79a2546797a24dc02010 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ae4b175d7d5d6c810a70 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── bfcf53b8038e021eb8ab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectioneec094838d892a02e39b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 398c55369a4001462389 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 473de8ff219a020b2042 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 94723dda46806677deb6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f84074b69eb653d68b6d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf32e623e68a6282b1dc5 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1401c28118ae5e3b4e51 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2376fdf8b86229ab0cb7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 65859c5f2cdf320f5fca │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fbd6baa28bd3b58d5824 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Inventory app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── perspectives │ │ │ │ │ │ ├── Fiscal Calendar.tmdl │ │ │ │ │ │ ├── Standard Calendar.tmdl │ │ │ │ │ │ └── Weekly Calendar.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── Assembly Headers.tmdl │ │ │ │ │ │ ├── Assembly Lines.tmdl │ │ │ │ │ │ ├── Bin.tmdl │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Customer.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Item Availability Filter.tmdl │ │ │ │ │ │ ├── Item Category.tmdl │ │ │ │ │ │ ├── Item Ledger Entries.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Location.tmdl │ │ │ │ │ │ ├── Lot No.tmdl │ │ │ │ │ │ ├── Planning Component Lines.tmdl │ │ │ │ │ │ ├── Prod Order Component Lines.tmdl │ │ │ │ │ │ ├── Production Order Lines.tmdl │ │ │ │ │ │ ├── Project Planning Lines.tmdl │ │ │ │ │ │ ├── Purchase Lines.tmdl │ │ │ │ │ │ ├── Requisition Line.tmdl │ │ │ │ │ │ ├── Sales Lines.tmdl │ │ │ │ │ │ ├── Serial No.tmdl │ │ │ │ │ │ ├── Service Lines.tmdl │ │ │ │ │ │ ├── Transfer Lines.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Vendor.tmdl │ │ │ │ │ │ ├── Warehouse Activity Lines.tmdl │ │ │ │ │ │ ├── Warehouse Entries.tmdl │ │ │ │ │ │ ├── Warehouse Journal Lines (From Bin).tmdl │ │ │ │ │ │ ├── Warehouse Journal Lines (To Bin).tmdl │ │ │ │ │ │ ├── Working Days.tmdl │ │ │ │ │ │ └── Zone.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Inventory app.pbip │ │ │ └── Inventory app.pbix │ │ ├── Manufacturing app │ │ │ ├── Manufacturing app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ └── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines4458723838449534.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark9c9656d3975d0b206a0d.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 6acf7a1bcebe65700b22 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 27e8436e5c33d9b2718d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5eb1b7269268c0740830 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60a5c6ca90a6b218eaa7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9232add73c7e98d520b6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d3138fb3b020ab39d9b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 7471b800c5bc6e707c91 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3a5fc4b58a9a7ee8e48a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3eb56e080b8b3b41101d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6ff779ad1403a240684c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a9ea29cf0b97a566e203 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d2dfad5cd275d05b5740 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 85214b3ea7543b0500e5 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0b9c359c9c5c82e8e86a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2950e44bbb289424bd57 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 33402ff0440b4857a470 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3e89c8a099a2e5ed95b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4b6dedeed400a6ecc433 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 935792c08c22a317632c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── c409dea2097c668c0ee9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 8cb7f877949d0b12d931 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 064a72fad1c247e46a71 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 35b3ca9070141c9600d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 56b87cc8dde760c1e0ca │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 65eea2180172a009401c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a62cfc2059494091e130 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dc8c74b41b7824aa08c8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e023766c12ececb634b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f7521b05e040da1620d5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 949e7a93960706625a9a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3c1362ab3740392c29b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5d657ceccf184be2e338 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6c091a644749b3a1230a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8230efcf4c76e6bc102d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9975e012812a17631e82 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c4694fe7075e6599c05e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e813ad1d75c189905012 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection13a328ff231fccdc12f7 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 149c76d71033b06c74e3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 475d9e88c57b7e8bdd88 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 67e1a8f2024418094ab0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a94f05d3e07741bed8e5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c795e95ea8556a428e2a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ff139b5e8d926e7bdcd1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection1cb4eb25650060b6dbd0 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0204341129281dec30b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 158e6a700ca2b1959658 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 36730ae8aa2011c2544c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 43ec871ae750c4b09ab9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 466fc6dc842880e3eccb │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5066fc22c6092e81d3b9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 98ebf1ac65511b912402 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection6616bf98be16d1636d03 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 07b1c5d9624a08f05a59 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 31c8d50a7cc767995d00 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 624ecebef6c9806138c9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6a8aa8a64a64fe1b0d74 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── adcfad7a480d92751e1a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dd480ed47c47246eb457 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f2877fa8479ac6306443 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection83a7395d207d5b47b1a4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 398cb85b8b09801bba4c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4e0c47ae002d27639500 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 537cc5fac6e6d2a7cb9e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6bfebc8aa10cb96ec5e5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bf298ff77228e0285035 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e0b997c8500abbdacd11 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiona2c7d37ca03217072470 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 15c90ddec80bdd903d87 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 20054aa695c48adb2b84 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4b62e0a39c39c8623304 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6d9ca8eca7eafd6a9953 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 730c7192a45362a73ce9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a2eaaf4968134e5c6d9e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cc88172dc4b0c7e343d8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiona9060ee37f667a3d554d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1fccf3749d812364e162 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3675a146a862969acce0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 72d183e513cbb123ab52 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bedb45e61b32bc605b1e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ca196fe9fccf20c8981f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── caa0c23d711ee79080d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cebda7de65c2bf5202d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb4e9630e25c77fccda8a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0c394d1300ba02d81160 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64a61c0e6aa5314f449e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 701f44583a8b8eaca4e5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 70684f46e6a79b0e4e15 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 723af1c94002abb8250a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e4c10b230359ab1de070 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionc790f50d90d7b6a6836a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 535f22ab29f3e9e6e1a6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7435352765ea0dc14408 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 75610fc69434c1ac3cae │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 81583bd00a3609b43b81 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b3181703092a910ccdcc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b54e58c2b99a5850397d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b751c1b8e0197cb9e5cc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c27df2bc92f547638c0b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e10d48c79eae37caa8a7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf3f7e4f23b609a9d9cb2 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1afb80816170e2503be6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1ec7c90935e63807cb02 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 23099f6a95eb14b3c701 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 434b5103a0564306dd8e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 803378e0e0e23020522a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a08a3a476b3144dc50a8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── da11c9e9265eb8bc9e50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ed322f1668cfaddfb93e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf4561a9ce097a4ce2275 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 01a9b9a23aa290668d40 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 08ce8d6f8a6644180212 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0b3da90db84ddd85f95d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 20e00275e64d780002c9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2bf22acdb9a34865e6d2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3c3d005fe2aca03de9d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5757df9d59350aca1fd6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6642581d73ac154b67dd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6de2e5b71f130eecb9d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8542a176dcded84d4ea2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8665634c27d70beffa30 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8bb1e53f493e9ddcac39 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8bf7ad80232c5a6e5480 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d3ac988bc227ede3be61 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f03f7b39ce7498a5ea8c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f95949ae5f4ea984c7b6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf9d212728e1d71a00044 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 36a78e0de56703ea808c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5698cd600c8c0b788dba │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5f77c1ea779a0024345a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a2494b71a21920320362 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f039d1cb5cc8a3417898 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── a400a1281385ff890e3e │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4b9e936e01b4b356baee │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5350253c60c98175dd0b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 98382ed7bee1c043d528 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── aef9cfb0c09b6992fcc0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b1e17424c2e5580b0810 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── eee673927330a5b2893d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f5ccf69926ee57fcaf3f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── d0b095013b4daa61d75c │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 03141a11596dc9291d62 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5404e7fe63a03d58349b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60298befa3d8686babd6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6def4eade50b45c902b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e37d462f7a0a5c4c3c55 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── d0f01228e35f48f4c891 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 42a0c7e0e559d45ee0ce │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6c2c009a67ea5799a573 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7d12319a1708dcaebb23 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a3df15301091a1cbd8eb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a5c7e364ecbbf5fa1ca6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b2111e847a284fdd7b41 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── feb1017fa0f40205c8bc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── f0afc9178d3f83210328 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 053a66c810d2c8be8a12 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 09f331edeb694a6f13e1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 19b1848013bfdec6080e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 85f8b0f6c017be83c7f6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f7248c89e2bcd83a964e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Manufacturing app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── DAXQueries │ │ │ │ │ ├── .pbi │ │ │ │ │ │ └── daxQueries.json │ │ │ │ │ └── Query 1.dax │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── Back Links.tmdl │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Calendar Entries.tmdl │ │ │ │ │ │ ├── Capacity Ledger Entries.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Inventory Adjustment Entry Order Line.tmdl │ │ │ │ │ │ ├── Item Category.tmdl │ │ │ │ │ │ ├── Item Ledger Entries.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Location.tmdl │ │ │ │ │ │ ├── Machine Center.tmdl │ │ │ │ │ │ ├── Manufacturing Setup.tmdl │ │ │ │ │ │ ├── Prod Order Capacity Need.tmdl │ │ │ │ │ │ ├── Prod Order Components.tmdl │ │ │ │ │ │ ├── Prod Order Routing Lines.tmdl │ │ │ │ │ │ ├── Production Order Lines.tmdl │ │ │ │ │ │ ├── Production Orders.tmdl │ │ │ │ │ │ ├── Routing Link.tmdl │ │ │ │ │ │ ├── Routing.tmdl │ │ │ │ │ │ ├── Time Factors.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Value Entries.tmdl │ │ │ │ │ │ ├── Work Center Group.tmdl │ │ │ │ │ │ ├── Work Center.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Manufacturing app.pbip │ │ │ └── Manufacturing app.pbix │ │ ├── Projects app │ │ │ ├── Projects app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ ├── Microsoft_Dynamics_365_Busines08219185398320827.json │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines6545343889194978.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY24SU02.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark20664c0d462ca72279b0.bookmark.json │ │ │ │ │ ├── Bookmark2ce85ab5b75929348de1.bookmark.json │ │ │ │ │ ├── Bookmark43d8de091ea6eabb8b50.bookmark.json │ │ │ │ │ ├── Bookmark6a1e41f067160ea07d04.bookmark.json │ │ │ │ │ ├── Bookmark8a390af28128a46aa956.bookmark.json │ │ │ │ │ ├── Bookmarkb4a96f23502494bcd37d.bookmark.json │ │ │ │ │ ├── Bookmarkbf2f60f400076cb765c0.bookmark.json │ │ │ │ │ ├── Bookmarke0eb530e0e0214bd4eba.bookmark.json │ │ │ │ │ ├── Bookmarkea23a0b0d1b16d9032e8.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 0e40c80342a2c735f496 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 81026dd8395536e0078b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 900821c30b10109c4b6d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c77b2b0413ea5b781665 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e1cbf5e1d0df553445cb │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 28ed0b540c9ca0ec0105 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 7ce35dfe514b50484210 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e14285051e5bb4c4db7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9bbf547beaddaa6dc9ab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a51bac310b4ddd708dc3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f72bd08a7aceece2086a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 2d0cb2bcdd89b4f97c9e │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2de7b3d387719195a064 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 33ab94c9209142b695dc │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8cc900f20c41cd1dce06 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d62e3556b031ae13a565 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 89b75bcf2e511c341a05 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2d2655d71365c782bbae │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 42a9abb2b90066162c5b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4aa17854c03bc445b99d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 862283df3efa70e4daa5 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection1356fdbebe72ad7283d3 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 627ec1af023a025a4ad7 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 680e66f06068807d1111 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7631307451535b02a400 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 82817d1740285200c00d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b688c0a06b084c08e0d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c373b341a0658857e890 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e47ef88eeeec01b0412c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fdee53f9320260c1b39e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection16f4a9483133b8db3e12 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 04ad83788ad6e9e01e13 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 086da1c8bace1a665439 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 195ba088d99201731ded │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 57861cf91467e1b13606 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6ae45852ac6042a22938 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7298065c00802a4d26b0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 85c1bdb55ede1e851e31 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 87118fd91b4a45a56cd5 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 87b9c78060e00deed699 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a69107ada928b995eaa3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a9579755cc28cce42c71 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bb8104873d0ae14d79dd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d12e7dc7988074c0cc6a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e0fb9a1d52802412610b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection31df4b90dc8e996715ce │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1188e7aabb77759f50c7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 190af71fe3486322d4c7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 30acad1ea3b6689a6edc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 556e17a68573a13ce68c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5f64429dbadd40efa39b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7b2d8dfbce882625fbfd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7c0dc80ae0468585a44d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 83e8424bedac61e01b7f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 842453fbea773cae7139 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 865b338c1e9c4c1bf3bd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 956ffee6d038c209b03b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 996d4df31e72eb9fdba2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b162dce772c7bc65992f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ceaa1d27453a2bc57222 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d0b5b1c1d075fe19bd6a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fdabcdd0603040b7e05c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection355bfd7d0ab99d6a0620 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 02c0623cd74e3a0e72b3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 46a2ce6a0cb2059146d2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 46bcaa454d0d8a42e4c6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 575bc543c47677047ed6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7729c01661096c7c0708 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 924c9b71b20770268695 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cde53f20307da1555d0e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dbc5ea07038086602529 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e122112c0ac41861dd03 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection4b100a3a42980b76957c │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0f125a3ff9c5c2bb3420 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1c7cf89950548c18bf2c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 23254d93c45446734dd0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5f39bd163cf0bb18ae0e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 649b0c689ad5c51a1572 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64b31b35ca8237a8533b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 845217d440760809cb27 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9264aa5fd990c00b0e18 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b257e7f6145a199038cd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dbaa3e5a9e11602b1c14 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectioncd82c6e10e816900e80b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0bacb241dd654530bb17 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3eef4bb861aa4760baa3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 576878d8e9e00e7587c2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9b52f2daa0a3063862b1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9c505c2f7354755c49e0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c5356d53aa8ed717d64a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c7fd2e1f07ec14588982 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d4a8a603c28914851448 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f1c72e261d0db210916b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionf22cc27c0600033d5e26 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 066bb0f8c77654e68507 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2eaba1f519c0a49327dd │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 305072cab8706dbe7ea0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 56a753c4cc81a8e906d3 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 738be32a2407543c43a3 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8fb0d41fa1563a0aed02 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9920fceababc15e316be │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cfe6b64ca90866a0a600 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── c6f8461589c4aae51685 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 88e37b0000e644876398 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a7287cea6595abae9a80 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d1477d5d6e165be8f66f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f26422e76f98619d15d6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Projects app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Customer.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── G%2FL Accounts.tmdl │ │ │ │ │ │ ├── Items.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Project Ledger Entry.tmdl │ │ │ │ │ │ ├── Project Planning Line.tmdl │ │ │ │ │ │ ├── Project.tmdl │ │ │ │ │ │ ├── Purchases.tmdl │ │ │ │ │ │ ├── Resources.tmdl │ │ │ │ │ │ ├── Tasks.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Type.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Projects app.pbip │ │ │ └── Projects app.pbix │ │ ├── Purchase app │ │ │ ├── Purchase app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ └── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines6702084018317763.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark139ae82f0bd2e8075ec0.bookmark.json │ │ │ │ │ ├── Bookmark417387eaaa991e4d93e0.bookmark.json │ │ │ │ │ ├── Bookmark70f42aa07708460944a2.bookmark.json │ │ │ │ │ ├── Bookmark7d498f4fe7182890973a.bookmark.json │ │ │ │ │ ├── Bookmark8281c4ec0ec232e74206.bookmark.json │ │ │ │ │ ├── Bookmark85e622624c13779238d6.bookmark.json │ │ │ │ │ ├── Bookmarkb29a60f82acc8707b859.bookmark.json │ │ │ │ │ ├── Bookmarkbbb7abc1b0c084cbc09e.bookmark.json │ │ │ │ │ ├── Bookmarkf7278fa55d14e9c26de4.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 15386889aed0b65c35cc │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3aedc18314fe8d3f8797 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7238886317be42728546 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ada50029e49b2fb86f8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8d7c0c162083c130f329 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b5b3f2d570584bf67107 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cfe45169913403d62526 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ef5cde3d93c3762144a7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fa7f3a9feaa75b9df3d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 4507bee7aaf3d01db682 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 40a3270bcb4edc9170b9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 48907ecb0420d4652369 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 79c419d0c88a577b08e2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7c36e60602b5e4518c49 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ed660cb387ba9aa4b10 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9e37649c71c189ae555c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dd615c9f21b196ce566d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── faba7a05e94341f66c39 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 5199d0edac148d9b7c01 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1640664664178062d71e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1f3a19738408836b959e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 460050703b600c230131 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5803312997bb4e70630d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6f328d64a6b0721004d0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7287f610aa9a0b095649 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 80a906e2d945cb5852ad │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e23d91739b9c13551cb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b4a5dbf77d3d032b2b0d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b9e4ded27400ee35df2c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── c31d4ab19ec80255547a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 63a53744a60debfbb8ac │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1bd71bfd7587755b2cd0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5a194bc2495f6badbeb4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 79fe0c731fcb3f4a4fbc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 868acf8b1c8f3ea6d75a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 92c1abfc5d39ea1dd1a1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 97afb242e824f4a741b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d0a6628010ab309decb2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fb4e3be6a73439dd0676 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 72b59b79a0cb70b56aed │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0682359228e6d60cdeb6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1f98b59ad49d90095bc8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 26197f4027c5c4350d43 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9a150f23d9c38d181ecb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ac273ee39505504e0c5a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e2bfff57755ed16bd8d0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f84f625902e4580ac4a3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fac6ca4780030643e031 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection02de1de9adad5ee196e0 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 13c2388f0095d5208b0d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5d08e569e7a4f02c050c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8628d5112750d9aea204 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bfe83f7780691bdcb9e1 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f2435f75ba4985db105d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection0cb7f30495bc871b8948 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 23f5f34c694632f4e7ea │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2505fec003038e040593 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3319c328a5db89a6c746 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3e01b05251c70ed16e17 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4f02022033490fab8b06 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60a0d0fc6aa621db7092 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d9c1677ec8c09eb2108f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f37347a64b3a7070e0c0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection2530548032dd85837d8c │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 055f8b667d6dec2bd95b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 507ef79578782a23e373 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 59c17288236c3c570a01 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 73b871ef140690de071c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 96e906300c9982fe797a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a23e6363671399e8542c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ed7fd78118d707754a93 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection26e891a305a24bb29884 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 089b93aa566bd8b801fa │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0e7ad85ed11a902e8724 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3a9a417d27908807dc09 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 772ae42072bb1e5a0510 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cfcc1e6683d14087bd29 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection2c5c763cbb0914a4201d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3801e18b810804a40831 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4dd7e151472870aee4b3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a324940a94da337ca99a │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ae1993e00161c8a17ccc │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e372f56d7109d7055e2e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection31df4b90dc8e996715ce │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 18e96840c8d54b620e2d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 22f91c2a3bed6d78c306 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 32c82792a22ec301c1b2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 370ce7e023dbdab08037 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3f0158e20c5cbd9827e1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 43c3370b9269080b0c8b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6016cd301b06d50d0d95 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6f8c17973075e55429b6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 789313eabb09ea4bd50a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 898159607bb804b86bca │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8bb83218ba2baaa56303 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a245803029a78832e905 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── be87b93abc99067b4cbe │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cfc22accb77ad9e20576 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e2ce90c8640e202586ab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ef2d57706a77bdbc65d2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection510c03a74548b078dc31 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1a8f6d867667c0409572 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 24f9d6bde47520cb849d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5aa52826034218d91905 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ce0232ae0ca8682c0ed │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 84169388e6b4946d3b69 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── da0f40d1300b717a03bc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f54e3f8dd8549d10d2e2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection86b19910d517e658b780 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 338c0f3e09fe7b6bc8ed │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 401e6a3562cb275c07c2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7ec0c10fc791b48a3c5b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 911f6eb86976c7ece5c8 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9443480078200179c17c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a42f1ea38b201f8c7265 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── b735401aec81d7dd0462 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection884ee5483252d4c5e096 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0d7169fcde0134420eb1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2784ed25107625027ab3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a12351969c54d33cda0a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cbf865f582402100b6b9 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d8b01bf0921abba1d0a5 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e45631c31880730238ee │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection8b95261eeb4a596956c1 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 139fbee3d8ae73b6ca32 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 53f98d166131db298419 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5b66b9340b16e7fabf16 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 74b7257c39bc7444aa92 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b5b538372304d28068e6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── c30cdd9ccefc38250e28 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionc4bf0b0750800ca6b0c6 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0a75d090dd04552ad7b1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1903b71749509dc0790d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6bdaa8f00599da06de6a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── c2716c23f8ba94c015ec │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiond03ece9eb5ac094617e2 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 47365b9acb429e4a0e95 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 528593d49448964ed5bd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9b0735c4222d511a810a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a107675f603e02117849 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b32a73773802c295016a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bb28d1e030ccdb503223 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e0ffd534eea10e5318d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiond7fdf374ab65b2861937 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 57a4d44fec5690c87d01 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 601ab120571829425ec1 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7c327869c223e0083841 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 7deee66db9bdc415ae0c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── c0b7f34035721e76e546 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4ddff446936812bd84c1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6b758e12dc4ccbcc248a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 92379ed3a1e7849681b4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a4da273905cd0961db7c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b1391772341bb13e3649 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee6a5beea929d1203045 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Purchase app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── Documents.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Fiscal Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── G%2FL Accounts.tmdl │ │ │ │ │ │ ├── Item Category.tmdl │ │ │ │ │ │ ├── Item Ledger Document Type.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Location.tmdl │ │ │ │ │ │ ├── Pareto Scale.tmdl │ │ │ │ │ │ ├── Project.tmdl │ │ │ │ │ │ ├── Purchase Budget Name.tmdl │ │ │ │ │ │ ├── Purchase Budget.tmdl │ │ │ │ │ │ ├── Purchase Credit Lines.tmdl │ │ │ │ │ │ ├── Purchase Document Type.tmdl │ │ │ │ │ │ ├── Purchase Invoice Lines.tmdl │ │ │ │ │ │ ├── Purchase Line Type.tmdl │ │ │ │ │ │ ├── Purchase Lines.tmdl │ │ │ │ │ │ ├── Purchase Value Entries.tmdl │ │ │ │ │ │ ├── Purchaser.tmdl │ │ │ │ │ │ ├── Reason Codes.tmdl │ │ │ │ │ │ ├── Resources.tmdl │ │ │ │ │ │ ├── Standard Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Type.tmdl │ │ │ │ │ │ ├── Vendor.tmdl │ │ │ │ │ │ ├── Weekly Calendar Time Intelligence.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Purchase app.pbip │ │ │ └── Purchase app.pbix │ │ ├── Sales app │ │ │ ├── Sales app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ ├── Microsoft_Dynamics_365_Busines07463454264473424.json │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines9407891057557065.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY18SU07.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── pages │ │ │ │ │ ├── 04b18fd32b63ebcd4349 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 08c537816c609a06e630 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 217d3315500da734053a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8a6da9fd0e60a56d7d61 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8d6769908256ed3084d7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 918a78b1eb9a006dadd9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a63ea43cdc1c1b582928 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── bc00bb31aea198751044 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 15a022da356609401ade │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 03c74c240c1c21da1cec │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2c83a3b29a1d47072746 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3b5bf05706048bd86eb5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8a12f5f7557a2a097b8c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c4c1dc9c87683f9b024b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cb63f9db05b7b5e3dd00 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d408be8b0b4a7940d0d0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d803e8b8ced68e428172 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 33644ef709c5de3d300d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 06415f9292a503a0ce40 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 18e02053018c37400244 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 35159c34b6e88677e118 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 475286f047de148c5239 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 563bb53fd693d0025410 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6218db3e398ae29c0893 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 626b503f0013a85a0820 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 835fe3da89013b856e97 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 91609f23c3096b047ad6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── adeb1f34000a10a52872 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── eb2c011bb13057d03cb1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3ab253ae01524553647d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 05c42b0abc34a5cedd46 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 54aa368bc5d0e1c0b426 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 656b6c0e0067e9970105 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7d62a294531509174eb3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7e9d396608705cd494ba │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8e9b35c80c42126e61d7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9d4d4be61bd27db31847 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dfcc85e11350d203b855 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3da0bb1d844d8c019741 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3d642e5f090702b40336 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4c3edbd751838b9c95a5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 602ff291005743c106e5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a868781691d776711664 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ba44bf81b04226e86736 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── df8ca7357e8a709e6dc9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3f3a8251c4943f8c8fb2 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 476a2673f8b8ec541b8b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4c0a89e78fadb7cb873e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5b0922ff0b5d30764f4c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6e283baadf8f8b774a62 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7e05132638f57ed7fce0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 840174a7f81ce1ba180e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a6266df6fe124e63ce54 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d3a86b6326cab4a8435f │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 429930d2d08538d4d2bb │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 30f3b38bcd106062bc2d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6ad48f377031b4502c90 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 86a5a71daa5be5a57e03 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ae29f30b1a05d1a9000b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d7c0166939087bcba5b7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── db87db8112a47be4633e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 7eb61bb06993742c9b40 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2b367547db48aa00e0d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 48bb31b3e00300eb174e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5bf083e1caae01482403 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6ac2d608d0887cca00cb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6c087962d31e5a2b373a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7a2914edc0ab673046e6 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7fcff2bfa17a2a8b1750 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a0c64a396d0e0eb8cde7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d4466a100b55538408c4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dd565b5dd20b0e203aa8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 9be72c5d82d0c030a1d6 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 15074dd7b3c7b0b06a30 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3ab3f5f7980992328c27 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7a347112eb43c2083aa3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8c0d484090010c98c558 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b69ed691c30d762c13e2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── da4b42c8d196d0002405 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e6cae9d6c0acbd6b1023 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee5b0e0ce0115b88512d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection05f91a4884be2b5c94ed │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3f2ffdee5484643b9b45 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 41e8c2fb1046d134224d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5ee47555603328081eab │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 94b55dca0ba01b732873 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b21fe097068396ac7b16 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b369767d40561000120a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bf6d8699ee03a6c80d1a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── df5d06b7328d30ab089e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection2480499c371d97221c09 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 64cb9de70e0304b417c9 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a2f162f82d3e2d3395bc │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── aff1855ad64ab3508200 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e012cff350aece9ba816 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee2d64fca8a4180c2147 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection3581fe0d3c3b5dda5f11 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 33c079c10a041e83e1b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 42e8404486c018a320c7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 486d5adcd70e9abe779a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4be732e74c71de937260 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5716b3a2be4767deb501 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5fd77d8394a648d75834 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6d8e5f246616c48b37a7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7c98de9fa66000a752d7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9812a61799517a55684b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9ca3ec57890ad551a654 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9f14b689212520601125 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b3bd931253eb70ee98d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e36935da52034c4177b1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e53ac97c31908600357d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e7b01f43a5370ee1ee86 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection48bbd51044e094b7a9a2 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1dc1a508d54829021039 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 365a90a7278229c338c4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 854cada7498a03d5030a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 91d84b1be888b1de075c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bdea2b58db5f02560225 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── beee02c15f58ec284a7e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ce19d5fbd35083169245 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection713e48d18640066bc508 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 25a996be25186032549d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3691edc5599e1be65728 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a1195a1c156c66b62d54 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c745d058819cab39988e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f052c201206e5c08cde0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection7d903e33b708c20e3be1 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 27e33db50433738d980c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4513aed50df875295390 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7d51669c8d12de381504 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9e6ab3908e1d7bb054b1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cc85324690730adc7706 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dfa87e4c32814ce7017d │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection913651e69467cecd580d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 221a5f25168a64707cc4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 26a7e197e9ab8f300e61 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 299937b6d43367956280 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7a7fc1b9a2cc6538d028 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9818e5035b71bda5531b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b881ef407d80b9054fa0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── b96b737ebb52becbd33f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb3680fa80c9685297c06 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2193ba2cad54774160eb │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6e07c1c90533eb571478 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a5af6de64e5942e9ee93 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── abd56b1854b502de0637 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dd8d0f8a0ede67094e17 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectionb41f5981e90364039035 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 522c1d3014186b0459d5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 83330e5fbb615894a176 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8f884ed57e0ab9b28493 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d82a4128cc8685dccb8b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSectiond95fc6aa44e9e612cbc4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 63099be28de04b3da44a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 73eb0ecdb1458559317e │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 746430d84e9a20a83a3f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 90dc83c066245a46a900 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ae3d7d580077b6459a22 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ccd2c9793c8b30f70483 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dd27d43c1a667226645e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── bbcbdfc8ed18270bc4b0 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2cd004f68e3bc0e174d5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2cf65855e4036089890c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2fd0c85ab3a070526339 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4105deab29ee1634922d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 79ec53d413ee9c1d1185 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d97d588f002b4e33533b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── da16feb02b930c2292e0 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1dab786a0493163e9830 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 404056f0dc53bb1c41e0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 52955a7e09534480d702 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 673aed05a99d5c26d6e5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d1f19c01cd610cdec59b │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f8af7568515233d0a000 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── f346c5b1f9260944d3cf │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 053fe06233d35eafa788 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 24105aef4988e3bdf15c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 34a2420c552354109f40 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4a658496e36c5027e8de │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4a74d62663811c889778 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c078aa62fa1a2408ac00 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ea675d9daa83198efbc2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── eb945f9c3b4a83838548 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Sales app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── DAXQueries │ │ │ │ │ ├── .pbi │ │ │ │ │ │ └── daxQueries.json │ │ │ │ │ └── Query 1.dax │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Close Opportunity Codes.tmdl │ │ │ │ │ │ ├── Contacts.tmdl │ │ │ │ │ │ ├── Customer.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── Documents.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Fiscal Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── G%2FL Accounts.tmdl │ │ │ │ │ │ ├── Item Category.tmdl │ │ │ │ │ │ ├── Item Ledger Document Type.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Location.tmdl │ │ │ │ │ │ ├── Lost Customer Month Range.tmdl │ │ │ │ │ │ ├── Opportunities.tmdl │ │ │ │ │ │ ├── Opportunity Entries.tmdl │ │ │ │ │ │ ├── Pareto Scale.tmdl │ │ │ │ │ │ ├── Project Journal Line Type.tmdl │ │ │ │ │ │ ├── Project Ledger Entries.tmdl │ │ │ │ │ │ ├── Project.tmdl │ │ │ │ │ │ ├── Reason Codes.tmdl │ │ │ │ │ │ ├── Resources.tmdl │ │ │ │ │ │ ├── Sales Budget Name.tmdl │ │ │ │ │ │ ├── Sales Budget.tmdl │ │ │ │ │ │ ├── Sales Credit Lines.tmdl │ │ │ │ │ │ ├── Sales Cycle Stages.tmdl │ │ │ │ │ │ ├── Sales Document Type.tmdl │ │ │ │ │ │ ├── Sales Invoice Lines.tmdl │ │ │ │ │ │ ├── Sales Line Type.tmdl │ │ │ │ │ │ ├── Sales Lines.tmdl │ │ │ │ │ │ ├── Sales Value Entries.tmdl │ │ │ │ │ │ ├── Salesperson.tmdl │ │ │ │ │ │ ├── Standard Calendar Time Intelligence.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── Type.tmdl │ │ │ │ │ │ ├── Weekly Calendar Time Intelligence.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Sales app.pbip │ │ │ └── Sales app.pbix │ │ ├── Subscription Billing app │ │ │ ├── Subscription Billing app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines6267337640832151.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY19SU12.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark15eb889e4059c3146371.bookmark.json │ │ │ │ │ ├── Bookmark2556dbd13d90b398a787.bookmark.json │ │ │ │ │ ├── Bookmark496226472d24527c5e69.bookmark.json │ │ │ │ │ ├── Bookmark4c54ebcb0eb024e967b5.bookmark.json │ │ │ │ │ ├── Bookmark6746518f3cb530dd9a83.bookmark.json │ │ │ │ │ ├── Bookmark6837f6cd2e84a77e9b8e.bookmark.json │ │ │ │ │ ├── Bookmark7acc4dd5c7523a1e4003.bookmark.json │ │ │ │ │ ├── Bookmark7fcb39a12a27604d4d10.bookmark.json │ │ │ │ │ ├── Bookmarka9652147edcc8bce4301.bookmark.json │ │ │ │ │ ├── Bookmarkb27f7bff097c6d0905d6.bookmark.json │ │ │ │ │ ├── Bookmarkcddf9bad46110d655e76.bookmark.json │ │ │ │ │ ├── Bookmarke7692ddf63b3b5b08d0c.bookmark.json │ │ │ │ │ ├── Bookmarkfa6d9d9e3eb90e2d49e5.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 04fa320747962435bf38 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 06c4bc5246d5229c22e0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1a1f6c3fda2bf4de6795 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 380bc0f60c79c935dbea │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 734bb12e37055a1cbb7c │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 91d160c6ce952e2b7838 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a243f925d09647abc906 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c70a35b97d9ca0e978e0 │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cd3bbf1e1ac1884a6bbd │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e08576f891b517a9d36f │ │ │ │ │ │ │ ├── mobile.json │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 0ce6ac6d5da599bd30e9 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3d604ae72626517949d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9c4bea6443937a7e7a06 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ab052cbc71ba2a434d64 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e4e41d9fcbce74b5aefe │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3e6e12bc48782630bd89 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 931b77fb5d9002d757c5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b287c65856d05a2a4ee2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c29e1d030e61b14c0613 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e319e19fba8ec7b6db9b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 500cc4cc7e93a1014a89 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 18d3cb15be48a7beef29 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a5e22fde03eea27e1de6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── aacc4cbb742b2008d5e1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── b98dd5b1501bb99b1349 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 6d4dcc705ea9db21d91b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 196ec74ac72d12cfda20 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cb6561b5bc2078de8295 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ea2ac44c70c32799bd76 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 8bb19f8625a990d30466 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 12c7322794d81b03be78 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6161988c51108e718976 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7e42a30884add435d50b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b0be5cc5e9edc98f0a97 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f73a4ac1046ca739060e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 926fa2c13070086cb999 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 07c346ab60012806c7b2 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 34f7f6f2c05d7005195d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9e2bbe10ecf17ef20e70 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dcf0fad18eb044a66bbe │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection617fae23c8d7b50d6d0a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0980f0186ec3976e906a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 41ec9042caeb2e980963 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4542e515010cc8a34211 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4da1a366c590c725bbd0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 526fdc941c4e38210105 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 64486291b04829710dcc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 66392c283e2b2468edbc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6917f221e9c5400939bd │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7783e9773b1d38eb9361 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── afea4d233aea68eacd50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b7c50ae585bb58c807d4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ced57bc25ed03c0dc826 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d714a011086098594cc8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── abe45c8964230489e801 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 4ed9e828ed0090701c77 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5bbcc1e67300acae0add │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e8c8dae6f34d6271a9b5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── b0629e90d266c40d537d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 1a1386014a848597f30a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f3e0fe08092781c05516 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── f40fc720c046316c4dc8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f68fbd6fde8c38bc29dc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── bf60e6bdba77e101902e │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 58289719eff95a01fdc5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 601b21c7ae14dcbe5d37 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── acb01350b168140848a6 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f9f64be080e7ddb75696 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── c27df17dadb4b21679dc │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 2bbb6c45bd05fa01a106 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2cbd558083b48e044e09 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 74e4e1e1bc31ce696980 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fd4cda9862254d9d906d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── c9cd438d95e60a070e76 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3273171b157ba5861e86 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ada27189a6d44850207e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c611b875834a9472b524 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── cb3b1e8658de8de900d5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── cd6be9e72c3ae66a3dc4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 37d594d05aac0424b752 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 847143e04187b6cd2d9e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 97d778246ba270c640cc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── bbc79a94d4e771f2aca3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── d280b52ee16d2a2b727d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 23662959ee30b7cc71d3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9d7e33db5e6a74857906 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cc12523be5633b50f04a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dcbf6433020742aa41b8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── daf7261ae50cb900681b │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 3e4eefafa4f5295c7ed8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 72a277cd79070e47e688 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── afd062858a1801ee2042 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── edd558bc8b6ce3aa79b0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── dcb80fad15d5002bc00d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 04bd429e4709269ddca9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 15397bee55fba45e043e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 439cebade8580dd5b6cc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── eca10e5446387c860e6d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ebdd708c02b5406dd277 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 29bad4dcc0a702aa0c35 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 39500444654b91e4a4e1 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4a8d2d587d10d5c1ac54 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── 81632f105a7b9c2c1744 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Subscription Billing app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ ├── ru-RU.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── Analysis Date.tmdl │ │ │ │ │ │ ├── Calc. Group - Tec. Transformations.tmdl │ │ │ │ │ │ ├── Calc. Group - Time Intelligence for Calendar (Fiscal).tmdl │ │ │ │ │ │ ├── Customer Billing Forecast.tmdl │ │ │ │ │ │ ├── Customer Contract Changes.tmdl │ │ │ │ │ │ ├── Customer Contract Deferrals.tmdl │ │ │ │ │ │ ├── Customer Contract Line.tmdl │ │ │ │ │ │ ├── Customer Contract.tmdl │ │ │ │ │ │ ├── Customers.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── Is Released.tmdl │ │ │ │ │ │ ├── Item.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Meta Information.tmdl │ │ │ │ │ │ ├── Salesperson.tmdl │ │ │ │ │ │ ├── Subscription Billing KPIs.tmdl │ │ │ │ │ │ ├── Subscription.tmdl │ │ │ │ │ │ ├── Tec Dummy Values.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ ├── UBB handling.tmdl │ │ │ │ │ │ ├── Vendor Billing Forecast.tmdl │ │ │ │ │ │ ├── Vendor Contract Deferrals.tmdl │ │ │ │ │ │ ├── Vendor Contract Line.tmdl │ │ │ │ │ │ ├── Vendor Contract.tmdl │ │ │ │ │ │ ├── Vendors.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Subscription Billing app.pbip │ │ │ └── Subscription Billing app.pbix │ │ ├── Sustainability app │ │ │ ├── Sustainability app.Report │ │ │ │ ├── .platform │ │ │ │ ├── StaticResources │ │ │ │ │ ├── RegisteredResources │ │ │ │ │ │ └── Microsoft_Dynamics_365_Busines8275439523005887.json │ │ │ │ │ └── SharedResources │ │ │ │ │ │ └── BaseThemes │ │ │ │ │ │ └── CY19SU12.json │ │ │ │ ├── definition.pbir │ │ │ │ └── definition │ │ │ │ │ ├── bookmarks │ │ │ │ │ ├── Bookmark6746518f3cb530dd9a83.bookmark.json │ │ │ │ │ └── bookmarks.json │ │ │ │ │ ├── pages │ │ │ │ │ ├── 0b23e0ca6a2516847ca8 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 12b02069b436c1320c93 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 25b3afd7ba351eceea7d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 5e30f581647d7ff912d9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 76ec5578c61d977f696e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8dc8daad5ddeca3e785c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 9c13b672726c31609ee5 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a7f6646996a0e6050128 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ad11820795f420bcef0c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── b2c75a750c2a8c36c351 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 1782621aa0d0e087ed20 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 64975b95d161484e36d0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 65ffcbd21962ea043e30 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7a779d2d929b1d35db47 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 93bacbe141e58b021535 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a3b8aec3e322dae35928 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ac9ad629531723bdb923 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d05666e1db09c2043a9b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ed4f7394ec3a2654100c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ee089e908c9c6d34270c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 282ec7e112a110c2addb │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── b96d4fae5d0307b47a93 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bebfafa39809830100c9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c707b83080001d683080 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e21772e7b67996540782 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3d1fa8eae4e214542edd │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0aeccb3f870e8e483517 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 372f0797e3100d0d0978 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 3e640e5016264217e3c7 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 947d9ed811d3bbd648db │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e501e570b01305e74e54 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── fc97c3463ace847120a0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 56c99409880d5002ad2e │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0b21391e9601a5b4104a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0e85aba7aec847702d80 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0fae04b007701de44644 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 1dd0d2dd17952782e276 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 31204d310751922b073b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 42c124100e8d70980a8d │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 44804b807003966e5d54 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4b379e7fad37db2a59ee │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 543eeeced7b9cd091bc0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60e9cbdd5452ec71b395 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 6b624b65b087b15590a3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ac3cd1dec0ac701a7941 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── acaaffd1717925b107d0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b0c0b3f5164b6a9072a0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b99a0f99e4a7b391ce10 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bb45ef10b90b4d090015 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cb933679b40a2b9a7d20 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f1b9c4d42d3760400d4a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 6305c2799c0d6e6072b5 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 053fee37eebc9860ba57 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 182bd83daa6a777e6a2e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 376fe19892261ce57800 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── ac83c738d74d8612662c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 723552ce7d04d22dc0c5 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── a941a7d4bc07065a5591 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c1f28a24220a1aec00e9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c2479dc3920d05c9a61c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ed871a07b4c81ba68350 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f39ee58f95259118e3cb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 73714a8f07753d4a87c6 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 6d46382d469a47d23167 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 99361670d4a51b0b136b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a9625a5f4d5213cdb400 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f2e17b5dd0a7a5083a7c │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── ReportSection617fae23c8d7b50d6d0a │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0980f0186ec3976e906a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 41ec9042caeb2e980963 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 7783e9773b1d38eb9361 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── afea4d233aea68eacd50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ced57bc25ed03c0dc826 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── d714a011086098594cc8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── a8f44c103130e497d67d │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 16e67ff3f295e5b76dc4 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2bc70531cada7c508da0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 773a16200abb9bebaa50 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 777ba1a3a302e984802a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8b8aafa2b845ddb65ba0 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 8f5744027a1dd3639ddb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a5518c0876a55c719ab9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a8ce5c3fdda70d632ccc │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b6b30b23f93394219025 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── eab39c328bd358f6e236 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── b5e269104115da14c7e4 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 04c0e9fb2917e47a570a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0658da7fcc2d447aa8a8 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 0c14ce4ba396a9753c90 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 38977ba132b55e90bc11 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 4293af50bd53e0272e1b │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 42f5bb40cab14391d144 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 60fdc1d054b4d90e4074 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 78d8dc7a89d79dd35775 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 879a6b80553100520daa │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── a3189eb30074d94bb794 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── af294d70931ec1967154 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── df15c95f485e70612280 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e1fe4e7d8467ebc6ba40 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e67c239c21ae83e7d804 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── e99bbe14d9ecaa286774 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── eb879666d3e4302961da │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── f49814b300ce5309d9be │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── bac4712acce8c3ba0213 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 774afda36a1b89ed54b9 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── b3be9690d4448d34820e │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── dc7c75d3684436004356 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── dcc54904722c3bac521a │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ ├── df5c90f3b0b177923932 │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ └── visuals │ │ │ │ │ │ │ ├── 0d86ff3c408b33001679 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 2118e5605c2858744eeb │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── 322f84d005813bec6e57 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── ad403f379beb65426523 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── afd530570012b6761848 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── bb14519c169c252737c3 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── c4e079b7046983b05190 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── cdf44faa4608b9a974ea │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ ├── d2f442f34b0a06e00e27 │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ │ │ └── e209253e2b00405088ee │ │ │ │ │ │ │ └── visual.json │ │ │ │ │ └── pages.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── version.json │ │ │ ├── Sustainability app.SemanticModel │ │ │ │ ├── .pbi │ │ │ │ │ └── editorSettings.json │ │ │ │ ├── .platform │ │ │ │ ├── definition.pbism │ │ │ │ ├── definition │ │ │ │ │ ├── cultures │ │ │ │ │ │ ├── cs-CZ.tmdl │ │ │ │ │ │ ├── da-DK.tmdl │ │ │ │ │ │ ├── de-AT.tmdl │ │ │ │ │ │ ├── de-CH.tmdl │ │ │ │ │ │ ├── de-DE.tmdl │ │ │ │ │ │ ├── en-AU.tmdl │ │ │ │ │ │ ├── en-CA.tmdl │ │ │ │ │ │ ├── en-GB.tmdl │ │ │ │ │ │ ├── en-NZ.tmdl │ │ │ │ │ │ ├── en-US.tmdl │ │ │ │ │ │ ├── es-ES.tmdl │ │ │ │ │ │ ├── es-MX.tmdl │ │ │ │ │ │ ├── fi-FI.tmdl │ │ │ │ │ │ ├── fr-BE.tmdl │ │ │ │ │ │ ├── fr-CA.tmdl │ │ │ │ │ │ ├── fr-CH.tmdl │ │ │ │ │ │ ├── fr-FR.tmdl │ │ │ │ │ │ ├── is-IS.tmdl │ │ │ │ │ │ ├── it-CH.tmdl │ │ │ │ │ │ ├── it-IT.tmdl │ │ │ │ │ │ ├── nb-NO.tmdl │ │ │ │ │ │ ├── nl-BE.tmdl │ │ │ │ │ │ ├── nl-NL.tmdl │ │ │ │ │ │ └── sv-SE.tmdl │ │ │ │ │ ├── database.tmdl │ │ │ │ │ ├── expressions.tmdl │ │ │ │ │ ├── model.tmdl │ │ │ │ │ ├── relationships.tmdl │ │ │ │ │ └── tables │ │ │ │ │ │ ├── COMPANY.tmdl │ │ │ │ │ │ ├── Country%2FRegion.tmdl │ │ │ │ │ │ ├── Date Ref.tmdl │ │ │ │ │ │ ├── Date Table Setup.tmdl │ │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ │ ├── Dimension Sets.tmdl │ │ │ │ │ │ ├── ENVIRONMENT.tmdl │ │ │ │ │ │ ├── Emission Fees.tmdl │ │ │ │ │ │ ├── Employee Absences.tmdl │ │ │ │ │ │ ├── Employee Ledger Entries.tmdl │ │ │ │ │ │ ├── Employee Qualifications.tmdl │ │ │ │ │ │ ├── Employees.tmdl │ │ │ │ │ │ ├── Localized Labels.tmdl │ │ │ │ │ │ ├── Responsibility Centre.tmdl │ │ │ │ │ │ ├── Sustainability Account Category.tmdl │ │ │ │ │ │ ├── Sustainability Accounts.tmdl │ │ │ │ │ │ ├── Sustainability Goals.tmdl │ │ │ │ │ │ ├── Sustainability Ledger Entries.tmdl │ │ │ │ │ │ ├── Sustainability Sub-Account Categories.tmdl │ │ │ │ │ │ ├── Translated Localized Labels.tmdl │ │ │ │ │ │ └── Working Days.tmdl │ │ │ │ └── diagramLayout.json │ │ │ ├── Sustainability app.pbip │ │ │ └── Sustainability app.pbix │ │ └── Translations │ │ │ ├── Finance app │ │ │ ├── FinanceApp.cs-CZ.resx │ │ │ ├── FinanceApp.da-DK.resx │ │ │ ├── FinanceApp.de-AT.resx │ │ │ ├── FinanceApp.de-CH.resx │ │ │ ├── FinanceApp.de-DE.resx │ │ │ ├── FinanceApp.en-AU.resx │ │ │ ├── FinanceApp.en-CA.resx │ │ │ ├── FinanceApp.en-GB.resx │ │ │ ├── FinanceApp.en-NZ.resx │ │ │ ├── FinanceApp.en-US.resx │ │ │ ├── FinanceApp.es-ES.resx │ │ │ ├── FinanceApp.es-MX.resx │ │ │ ├── FinanceApp.fi-FI.resx │ │ │ ├── FinanceApp.fr-BE.resx │ │ │ ├── FinanceApp.fr-CA.resx │ │ │ ├── FinanceApp.fr-CH.resx │ │ │ ├── FinanceApp.fr-FR.resx │ │ │ ├── FinanceApp.is-IS.resx │ │ │ ├── FinanceApp.it-CH.resx │ │ │ ├── FinanceApp.it-IT.resx │ │ │ ├── FinanceApp.nb-NO.resx │ │ │ ├── FinanceApp.nl-BE.resx │ │ │ ├── FinanceApp.nl-NL.resx │ │ │ └── FinanceApp.sv-SE.resx │ │ │ ├── Inventory Valuation app │ │ │ ├── InventoryValuationApp.cs-CZ.resx │ │ │ ├── InventoryValuationApp.da-DK.resx │ │ │ ├── InventoryValuationApp.de-AT.resx │ │ │ ├── InventoryValuationApp.de-CH.resx │ │ │ ├── InventoryValuationApp.de-DE.resx │ │ │ ├── InventoryValuationApp.en-AU.resx │ │ │ ├── InventoryValuationApp.en-CA.resx │ │ │ ├── InventoryValuationApp.en-GB.resx │ │ │ ├── InventoryValuationApp.en-NZ.resx │ │ │ ├── InventoryValuationApp.en-US.resx │ │ │ ├── InventoryValuationApp.es-ES.resx │ │ │ ├── InventoryValuationApp.es-MX.resx │ │ │ ├── InventoryValuationApp.fi-FI.resx │ │ │ ├── InventoryValuationApp.fr-BE.resx │ │ │ ├── InventoryValuationApp.fr-CA.resx │ │ │ ├── InventoryValuationApp.fr-CH.resx │ │ │ ├── InventoryValuationApp.fr-FR.resx │ │ │ ├── InventoryValuationApp.is-IS.resx │ │ │ ├── InventoryValuationApp.it-CH.resx │ │ │ ├── InventoryValuationApp.it-IT.resx │ │ │ ├── InventoryValuationApp.nb-NO.resx │ │ │ ├── InventoryValuationApp.nl-BE.resx │ │ │ ├── InventoryValuationApp.nl-NL.resx │ │ │ └── InventoryValuationApp.sv-SE.resx │ │ │ ├── Inventory app │ │ │ ├── InventoryApp.cs-CZ.resx │ │ │ ├── InventoryApp.da-DK.resx │ │ │ ├── InventoryApp.de-AT.resx │ │ │ ├── InventoryApp.de-CH.resx │ │ │ ├── InventoryApp.de-DE.resx │ │ │ ├── InventoryApp.en-AU.resx │ │ │ ├── InventoryApp.en-CA.resx │ │ │ ├── InventoryApp.en-GB.resx │ │ │ ├── InventoryApp.en-NZ.resx │ │ │ ├── InventoryApp.en-US.resx │ │ │ ├── InventoryApp.es-ES.resx │ │ │ ├── InventoryApp.es-MX.resx │ │ │ ├── InventoryApp.fi-FI.resx │ │ │ ├── InventoryApp.fr-BE.resx │ │ │ ├── InventoryApp.fr-CA.resx │ │ │ ├── InventoryApp.fr-CH.resx │ │ │ ├── InventoryApp.fr-FR.resx │ │ │ ├── InventoryApp.is-IS.resx │ │ │ ├── InventoryApp.it-CH.resx │ │ │ ├── InventoryApp.it-IT.resx │ │ │ ├── InventoryApp.nb-NO.resx │ │ │ ├── InventoryApp.nl-BE.resx │ │ │ ├── InventoryApp.nl-NL.resx │ │ │ └── InventoryApp.sv-SE.resx │ │ │ ├── LocProject.json │ │ │ ├── Manufacturing app │ │ │ ├── ManufacturingApp.cs-CZ.resx │ │ │ ├── ManufacturingApp.da-DK.resx │ │ │ ├── ManufacturingApp.de-AT.resx │ │ │ ├── ManufacturingApp.de-CH.resx │ │ │ ├── ManufacturingApp.de-DE.resx │ │ │ ├── ManufacturingApp.en-AU.resx │ │ │ ├── ManufacturingApp.en-CA.resx │ │ │ ├── ManufacturingApp.en-GB.resx │ │ │ ├── ManufacturingApp.en-NZ.resx │ │ │ ├── ManufacturingApp.en-US.resx │ │ │ ├── ManufacturingApp.es-ES.resx │ │ │ ├── ManufacturingApp.es-MX.resx │ │ │ ├── ManufacturingApp.fi-FI.resx │ │ │ ├── ManufacturingApp.fr-BE.resx │ │ │ ├── ManufacturingApp.fr-CA.resx │ │ │ ├── ManufacturingApp.fr-CH.resx │ │ │ ├── ManufacturingApp.fr-FR.resx │ │ │ ├── ManufacturingApp.is-IS.resx │ │ │ ├── ManufacturingApp.it-CH.resx │ │ │ ├── ManufacturingApp.it-IT.resx │ │ │ ├── ManufacturingApp.nb-NO.resx │ │ │ ├── ManufacturingApp.nl-BE.resx │ │ │ ├── ManufacturingApp.nl-NL.resx │ │ │ └── ManufacturingApp.sv-SE.resx │ │ │ ├── Projects app │ │ │ ├── ProjectsApp.cs-CZ.resx │ │ │ ├── ProjectsApp.da-DK.resx │ │ │ ├── ProjectsApp.de-AT.resx │ │ │ ├── ProjectsApp.de-CH.resx │ │ │ ├── ProjectsApp.de-DE.resx │ │ │ ├── ProjectsApp.en-AU.resx │ │ │ ├── ProjectsApp.en-CA.resx │ │ │ ├── ProjectsApp.en-GB.resx │ │ │ ├── ProjectsApp.en-NZ.resx │ │ │ ├── ProjectsApp.en-US.resx │ │ │ ├── ProjectsApp.es-ES.resx │ │ │ ├── ProjectsApp.es-MX.resx │ │ │ ├── ProjectsApp.fi-FI.resx │ │ │ ├── ProjectsApp.fr-BE.resx │ │ │ ├── ProjectsApp.fr-CA.resx │ │ │ ├── ProjectsApp.fr-CH.resx │ │ │ ├── ProjectsApp.fr-FR.resx │ │ │ ├── ProjectsApp.is-IS.resx │ │ │ ├── ProjectsApp.it-CH.resx │ │ │ ├── ProjectsApp.it-IT.resx │ │ │ ├── ProjectsApp.nb-NO.resx │ │ │ ├── ProjectsApp.nl-BE.resx │ │ │ ├── ProjectsApp.nl-NL.resx │ │ │ └── ProjectsApp.sv-SE.resx │ │ │ ├── Purchase app │ │ │ ├── PurchaseApp.cs-CZ.resx │ │ │ ├── PurchaseApp.da-DK.resx │ │ │ ├── PurchaseApp.de-AT.resx │ │ │ ├── PurchaseApp.de-CH.resx │ │ │ ├── PurchaseApp.de-DE.resx │ │ │ ├── PurchaseApp.en-AU.resx │ │ │ ├── PurchaseApp.en-CA.resx │ │ │ ├── PurchaseApp.en-GB.resx │ │ │ ├── PurchaseApp.en-NZ.resx │ │ │ ├── PurchaseApp.en-US.resx │ │ │ ├── PurchaseApp.es-ES.resx │ │ │ ├── PurchaseApp.es-MX.resx │ │ │ ├── PurchaseApp.fi-FI.resx │ │ │ ├── PurchaseApp.fr-BE.resx │ │ │ ├── PurchaseApp.fr-CA.resx │ │ │ ├── PurchaseApp.fr-CH.resx │ │ │ ├── PurchaseApp.fr-FR.resx │ │ │ ├── PurchaseApp.is-IS.resx │ │ │ ├── PurchaseApp.it-CH.resx │ │ │ ├── PurchaseApp.it-IT.resx │ │ │ ├── PurchaseApp.nb-NO.resx │ │ │ ├── PurchaseApp.nl-BE.resx │ │ │ ├── PurchaseApp.nl-NL.resx │ │ │ └── PurchaseApp.sv-SE.resx │ │ │ ├── README.md │ │ │ ├── Sales app │ │ │ ├── SalesApp.cs-CZ.resx │ │ │ ├── SalesApp.da-DK.resx │ │ │ ├── SalesApp.de-AT.resx │ │ │ ├── SalesApp.de-CH.resx │ │ │ ├── SalesApp.de-DE.resx │ │ │ ├── SalesApp.en-AU.resx │ │ │ ├── SalesApp.en-CA.resx │ │ │ ├── SalesApp.en-GB.resx │ │ │ ├── SalesApp.en-NZ.resx │ │ │ ├── SalesApp.en-US.resx │ │ │ ├── SalesApp.es-ES.resx │ │ │ ├── SalesApp.es-MX.resx │ │ │ ├── SalesApp.fi-FI.resx │ │ │ ├── SalesApp.fr-BE.resx │ │ │ ├── SalesApp.fr-CA.resx │ │ │ ├── SalesApp.fr-CH.resx │ │ │ ├── SalesApp.fr-FR.resx │ │ │ ├── SalesApp.is-IS.resx │ │ │ ├── SalesApp.it-CH.resx │ │ │ ├── SalesApp.it-IT.resx │ │ │ ├── SalesApp.nb-NO.resx │ │ │ ├── SalesApp.nl-BE.resx │ │ │ ├── SalesApp.nl-NL.resx │ │ │ └── SalesApp.sv-SE.resx │ │ │ ├── Subscription Billing app │ │ │ ├── SubscriptionBillingApp.cs-CZ.resx │ │ │ ├── SubscriptionBillingApp.da-DK.resx │ │ │ ├── SubscriptionBillingApp.de-AT.resx │ │ │ ├── SubscriptionBillingApp.de-CH.resx │ │ │ ├── SubscriptionBillingApp.de-DE.resx │ │ │ ├── SubscriptionBillingApp.en-AU.resx │ │ │ ├── SubscriptionBillingApp.en-CA.resx │ │ │ ├── SubscriptionBillingApp.en-GB.resx │ │ │ ├── SubscriptionBillingApp.en-NZ.resx │ │ │ ├── SubscriptionBillingApp.en-US.resx │ │ │ ├── SubscriptionBillingApp.es-ES.resx │ │ │ ├── SubscriptionBillingApp.es-MX.resx │ │ │ ├── SubscriptionBillingApp.fi-FI.resx │ │ │ ├── SubscriptionBillingApp.fr-BE.resx │ │ │ ├── SubscriptionBillingApp.fr-CA.resx │ │ │ ├── SubscriptionBillingApp.fr-CH.resx │ │ │ ├── SubscriptionBillingApp.fr-FR.resx │ │ │ ├── SubscriptionBillingApp.is-IS.resx │ │ │ ├── SubscriptionBillingApp.it-CH.resx │ │ │ ├── SubscriptionBillingApp.it-IT.resx │ │ │ ├── SubscriptionBillingApp.nb-NO.resx │ │ │ ├── SubscriptionBillingApp.nl-BE.resx │ │ │ ├── SubscriptionBillingApp.nl-NL.resx │ │ │ └── SubscriptionBillingApp.sv-SE.resx │ │ │ └── Sustainability app │ │ │ ├── SustainabilityApp.cs-CZ.resx │ │ │ ├── SustainabilityApp.da-DK.resx │ │ │ ├── SustainabilityApp.de-AT.resx │ │ │ ├── SustainabilityApp.de-CH.resx │ │ │ ├── SustainabilityApp.de-DE.resx │ │ │ ├── SustainabilityApp.en-AU.resx │ │ │ ├── SustainabilityApp.en-CA.resx │ │ │ ├── SustainabilityApp.en-GB.resx │ │ │ ├── SustainabilityApp.en-NZ.resx │ │ │ ├── SustainabilityApp.en-US.resx │ │ │ ├── SustainabilityApp.es-ES.resx │ │ │ ├── SustainabilityApp.es-MX.resx │ │ │ ├── SustainabilityApp.fi-FI.resx │ │ │ ├── SustainabilityApp.fr-BE.resx │ │ │ ├── SustainabilityApp.fr-CA.resx │ │ │ ├── SustainabilityApp.fr-CH.resx │ │ │ ├── SustainabilityApp.fr-FR.resx │ │ │ ├── SustainabilityApp.is-IS.resx │ │ │ ├── SustainabilityApp.it-CH.resx │ │ │ ├── SustainabilityApp.it-IT.resx │ │ │ ├── SustainabilityApp.nb-NO.resx │ │ │ ├── SustainabilityApp.nl-BE.resx │ │ │ ├── SustainabilityApp.nl-NL.resx │ │ │ └── SustainabilityApp.sv-SE.resx │ ├── README.md │ ├── Scripts │ │ ├── Validate-PowerBIReportPages.ps1 │ │ └── exceptions-power-bi-pages-validation.yaml │ ├── Test Library │ │ ├── ExtensionLogo.png │ │ ├── PowerBIAPIEndpoints.Enum.al │ │ ├── PowerBIAPIRequests.Codeunit.al │ │ ├── PowerBIFilterScenarios.Enum.al │ │ ├── PowerBIMockPermissions.Codeunit.al │ │ └── app.json │ └── Test │ │ ├── DisabledTests │ │ └── E2EAPITests.json │ │ ├── E2EPowerBIFinanceTest.Codeunit.al │ │ ├── E2EPowerBIInventoryTest.Codeunit.al │ │ ├── E2EPowerBIManufacturingTest.Codeunit.al │ │ ├── E2EPowerBIProjectTest.Codeunit.al │ │ ├── E2EPowerBIPurchasesTest.Codeunit.al │ │ ├── E2EPowerBISalesTest.Codeunit.al │ │ ├── ExtensionLogo.png │ │ ├── PowerBICoreTest.Codeunit.al │ │ └── app.json │ ├── Quality Management │ ├── QMWorkspace.code-workspace │ ├── app │ │ ├── ExtensionLogo.png │ │ ├── Resources │ │ │ └── InstallFiles │ │ │ │ ├── ConfigurationPackageExcelData.xlsx │ │ │ │ └── PackageQM-EXPRESSDEMO.rapidstart │ │ ├── app.json │ │ └── src │ │ │ ├── API │ │ │ └── QltyInspectionTestValues.Query.al │ │ │ ├── AccessControl │ │ │ └── QltyPermissionMgmt.Codeunit.al │ │ │ ├── Configuration │ │ │ ├── GenerationRule │ │ │ │ ├── JobQueue │ │ │ │ │ ├── QltyJobQueueManagement.Codeunit.al │ │ │ │ │ └── QltyScheduleInspectionTest.Report.al │ │ │ │ ├── QltyCertainty.Enum.al │ │ │ │ ├── QltyGenRuleActTrigger.Enum.al │ │ │ │ ├── QltyGenRuleIntent.Enum.al │ │ │ │ ├── QltyGenerationRuleMgmt.Codeunit.al │ │ │ │ ├── QltyInTestGeneratRules.Page.al │ │ │ │ └── QltyInTestGenerationRule.Table.al │ │ │ ├── Grade │ │ │ │ ├── QltyGradeCategory.Enum.al │ │ │ │ ├── QltyGradeConditionMgmt.Codeunit.al │ │ │ │ ├── QltyGradeConditionType.Enum.al │ │ │ │ ├── QltyGradeCopyBehavior.Enum.al │ │ │ │ ├── QltyGradeEvaluation.Codeunit.al │ │ │ │ ├── QltyGradeFinishAllowed.Enum.al │ │ │ │ ├── QltyGradeVisibility.Enum.al │ │ │ │ ├── QltyIGradeConditionConf.Table.al │ │ │ │ ├── QltyInspectionGrade.Table.al │ │ │ │ ├── QltyInspectionGradeList.Page.al │ │ │ │ ├── QltyItemTrkgBlockBehavior.Enum.al │ │ │ │ └── QltyTestFindBehavior.Enum.al │ │ │ ├── QltyAutoConfigure.Codeunit.al │ │ │ ├── SourceConfiguration │ │ │ │ ├── QltyConfigFieldPriority.Enum.al │ │ │ │ ├── QltyInsSourceConfigList.Page.al │ │ │ │ ├── QltyInspectSourceConfig.Page.al │ │ │ │ ├── QltyInspectSourceConfig.Table.al │ │ │ │ ├── QltyInspectSrcFldConf.Table.al │ │ │ │ ├── QltySourceConfigLinePart.Page.al │ │ │ │ ├── QltyTargetType.Enum.al │ │ │ │ └── QltyTraversal.Codeunit.al │ │ │ └── Template │ │ │ │ ├── Field │ │ │ │ ├── QltyCaseSensitivity.Enum.al │ │ │ │ ├── QltyChooseExistingFields.Page.al │ │ │ │ ├── QltyField.Table.al │ │ │ │ ├── QltyFieldCard.Page.al │ │ │ │ ├── QltyFieldCardPart.Page.al │ │ │ │ ├── QltyFieldExprCardPart.Page.al │ │ │ │ ├── QltyFieldLookup.Page.al │ │ │ │ ├── QltyFieldNumberCardPart.Page.al │ │ │ │ ├── QltyFieldType.Enum.al │ │ │ │ ├── QltyFieldWizard.Page.al │ │ │ │ ├── QltyFieldWizardState.Enum.al │ │ │ │ ├── QltyFields.Page.al │ │ │ │ ├── QltyLookupCode.Table.al │ │ │ │ ├── QltyLookupCodeList.Page.al │ │ │ │ ├── QltyLookupCodePart.Page.al │ │ │ │ └── QltyLookupFieldChoose.Page.al │ │ │ │ ├── QltyInspectionCopyTemplate.Report.al │ │ │ │ ├── QltyInspectionTemplate.Page.al │ │ │ │ ├── QltyInspectionTemplateEdit.Page.al │ │ │ │ ├── QltyInspectionTemplateHdr.Table.al │ │ │ │ ├── QltyInspectionTemplateLine.Table.al │ │ │ │ ├── QltyInspectionTemplateList.Page.al │ │ │ │ ├── QltyInspectionTemplateSubf.Page.al │ │ │ │ └── QltySampleSizeSource.Enum.al │ │ │ ├── Dispositions │ │ │ ├── InventoryAdjustment │ │ │ │ ├── QltyCreateNegativeAdjmt.Report.al │ │ │ │ └── QltyDispNegAdjustInv.Codeunit.al │ │ │ ├── ItemTracking │ │ │ │ ├── QltyChangeItemTracking.Report.al │ │ │ │ └── QltyDispChangeTracking.Codeunit.al │ │ │ ├── Move │ │ │ │ ├── QltyDispInternalMove.Codeunit.al │ │ │ │ ├── QltyDispMoveAutoChoose.Codeunit.al │ │ │ │ ├── QltyDispMoveItemReclass.Codeunit.al │ │ │ │ ├── QltyDispMoveWhseReclass.Codeunit.al │ │ │ │ ├── QltyDispMoveWorksheet.Codeunit.al │ │ │ │ └── QltyMoveInventory.Report.al │ │ │ ├── Purchase │ │ │ │ ├── QltyCreatePurchaseReturn.Report.al │ │ │ │ └── QltyDispPurchaseReturn.Codeunit.al │ │ │ ├── PutAway │ │ │ │ ├── QltyCreateInternalPutaway.Report.al │ │ │ │ ├── QltyDispInternalPutAway.Codeunit.al │ │ │ │ └── QltyDispWarehousePutAway.Codeunit.al │ │ │ ├── QltyDisposition.Interface.al │ │ │ ├── QltyDispositionAction.Enum.al │ │ │ ├── QltyDispositionBuffer.Table.al │ │ │ ├── QltyItemAdjPostBehavior.Enum.al │ │ │ ├── QltyQuantityBehavior.Enum.al │ │ │ └── Transfer │ │ │ │ ├── QltyCreateTransferOrder.Report.al │ │ │ │ └── QltyDispTransfer.Codeunit.al │ │ │ ├── Document │ │ │ ├── QltyCreateInspectionTest.Report.al │ │ │ ├── QltyInspTestCreateStatus.Enum.al │ │ │ ├── QltyInspectionTest.Page.al │ │ │ ├── QltyInspectionTestCreate.Codeunit.al │ │ │ ├── QltyInspectionTestHeader.Table.al │ │ │ ├── QltyInspectionTestLine.Table.al │ │ │ ├── QltyInspectionTestLines.Page.al │ │ │ ├── QltyInspectionTestList.Page.al │ │ │ ├── QltyInspectionTestStatus.Enum.al │ │ │ ├── QltyInspectionTestSubform.Page.al │ │ │ ├── QltyIterationState.Enum.al │ │ │ ├── QltyLineFailureState.Enum.al │ │ │ └── QltyMostRecentPicture.Page.al │ │ │ ├── Integration │ │ │ ├── Assembly │ │ │ │ ├── QltyAssemblyIntegration.Codeunit.al │ │ │ │ └── QltyAssemblyTrigger.Enum.al │ │ │ ├── Foundation │ │ │ │ ├── Attachment │ │ │ │ │ └── QltyAttachmentIntegration.Codeunit.al │ │ │ │ └── Navigate │ │ │ │ │ └── QltyNavigateIntegration.Codeunit.al │ │ │ ├── Inventory │ │ │ │ ├── Availability │ │ │ │ │ ├── QltyAvailInfoBuffer.TableExt.al │ │ │ │ │ └── QltyItemAvailbyLotNo.PageExt.al │ │ │ │ ├── QltyInventoryAvailability.Codeunit.al │ │ │ │ ├── QltyItemJournalManagement.Codeunit.al │ │ │ │ ├── QltyItemLedgerByLocation.Query.al │ │ │ │ ├── QltyItemTracking.Codeunit.al │ │ │ │ ├── QltyItemTrackingMgmt.Codeunit.al │ │ │ │ ├── Tracking │ │ │ │ │ ├── QltyEntrySummary.TableExt.al │ │ │ │ │ ├── QltyItemTrackingLines.PageExt.al │ │ │ │ │ ├── QltyItemTrackingSummary.PageExt.al │ │ │ │ │ ├── QltyLotNoInfoCard.PageExt.al │ │ │ │ │ ├── QltyLotNoInfoList.PageExt.al │ │ │ │ │ ├── QltyLotNoInformation.TableExt.al │ │ │ │ │ ├── QltyPackageNoInfoCard.PageExt.al │ │ │ │ │ ├── QltyPackageNoInfoList.PageExt.al │ │ │ │ │ ├── QltyPackageNoInformation.TableExt.al │ │ │ │ │ ├── QltySerialNoInfoCard.PageExt.al │ │ │ │ │ ├── QltySerialNoInfoList.PageExt.al │ │ │ │ │ ├── QltySerialNoInformation.TableExt.al │ │ │ │ │ └── QltyTrackingIntegration.Codeunit.al │ │ │ │ └── Transfer │ │ │ │ │ ├── Document │ │ │ │ │ ├── QltyTransferHeader.TableExt.al │ │ │ │ │ └── QltyTransferOrder.PageExt.al │ │ │ │ │ ├── History │ │ │ │ │ ├── QltyDirectTransHeader.TableExt.al │ │ │ │ │ ├── QltyPostedDirectTransfer.PageExt.al │ │ │ │ │ ├── QltyPostedTransferReceipt.PageExt.al │ │ │ │ │ ├── QltyPostedTransferShipment.PageExt.al │ │ │ │ │ ├── QltyTransferReceiptHeader.TableExt.al │ │ │ │ │ └── QltyTransferShipmentHeader.TableExt.al │ │ │ │ │ ├── QltyRelatedTransferOrders.Page.al │ │ │ │ │ ├── QltyRelatedTransfersBuffer.Table.al │ │ │ │ │ ├── QltyTransferBufferStatus.Enum.al │ │ │ │ │ ├── QltyTransferDocumentType.Enum.al │ │ │ │ │ └── QltyTransferIntegration.Codeunit.al │ │ │ ├── Manufacturing │ │ │ │ ├── Document │ │ │ │ │ └── QltyProdOrderRouting.PageExt.al │ │ │ │ ├── Journal │ │ │ │ │ ├── QltyConsumptionJournal.PageExt.al │ │ │ │ │ └── QltyOutputJournal.PageExt.al │ │ │ │ ├── QltyAutoProductionTrigger.Enum.al │ │ │ │ ├── QltyManufacturIntegration.Codeunit.al │ │ │ │ ├── QltyProdGenRuleWizard.Page.al │ │ │ │ ├── QltyProductionTrigger.Enum.al │ │ │ │ └── Routing │ │ │ │ │ └── QltyRoutingLineLookup.Page.al │ │ │ ├── Purchases │ │ │ │ └── Document │ │ │ │ │ ├── QltyPurchRetOrderSubf.PageExt.al │ │ │ │ │ └── QltyPurchaseOrderSubform.PageExt.al │ │ │ ├── Receiving │ │ │ │ ├── QltyPurchaseTrigger.Enum.al │ │ │ │ ├── QltyRecGenRuleWizard.Page.al │ │ │ │ ├── QltyReceivingIntegration.Codeunit.al │ │ │ │ ├── QltySalesReturnTrigger.Enum.al │ │ │ │ ├── QltyTransferTrigger.Enum.al │ │ │ │ └── QltyWhseReceiveTrigger.Enum.al │ │ │ ├── Sales │ │ │ │ └── Document │ │ │ │ │ ├── QltySalesOrderSubform.PageExt.al │ │ │ │ │ └── QltySalesReturnOrderSubf.PageExt.al │ │ │ ├── Utilities │ │ │ │ └── QltyUtilitiesIntegration.Codeunit.al │ │ │ └── Warehouse │ │ │ │ ├── Ledger │ │ │ │ └── QltyWarehouseEntries.PageExt.al │ │ │ │ ├── QltyWarehouseIntegration.Codeunit.al │ │ │ │ ├── QltyWarehouseTrigger.Enum.al │ │ │ │ └── QltyWhseGenRuleWizard.Page.al │ │ │ ├── Permissions │ │ │ ├── D365BasicQltyMngmnt.PermissionSetExt.al │ │ │ ├── D365BusFullAccessQltyMngmnt.PermissionSetExt.al │ │ │ ├── D365ReadQltyMngmnt.PermissionSetExt.al │ │ │ ├── QltyEntryInspector.PermissionSet.al │ │ │ ├── QltyGeneral.PermissionSet.al │ │ │ ├── QltyMngmntEdit.PermissionSet.al │ │ │ ├── QltyMngmntObjects.PermissionSet.al │ │ │ └── QltyMngmntRead.PermissionSet.al │ │ │ ├── Reports │ │ │ ├── QltyCertificateOfAnalysis.docx │ │ │ ├── QltyCertificateOfAnalysisAlternate.rdl │ │ │ ├── QltyCertificateOfAnalysisDefault.rdl │ │ │ ├── QltyCertificateofAnalysis.Report.al │ │ │ ├── QltyGeneralPurposeInspect.Report.al │ │ │ ├── QltyGeneralPurposeInspection.docx │ │ │ ├── QltyGeneralPurposeInspectionAlternate.rdl │ │ │ ├── QltyGeneralPurposeInspectionDefault.rdl │ │ │ ├── QltyNonConformance.Report.al │ │ │ ├── QltyNonConformance.docx │ │ │ ├── QltyNonConformanceAlternate.rdl │ │ │ ├── QltyNonConformanceDefault.rdl │ │ │ ├── QltyReportMgmt.Codeunit.al │ │ │ ├── QltyReportSelection.Page.al │ │ │ ├── QltyReportSelectionUsage.Enum.al │ │ │ └── QltyReportSelectionUsage.EnumExt.al │ │ │ ├── RoleCenters │ │ │ ├── QltyBusinessManagerRC.PageExt.al │ │ │ ├── QltyInspectionActivities.Page.al │ │ │ ├── QltyMachineOperatorRC.PageExt.al │ │ │ ├── QltyManagement.Profile.al │ │ │ ├── QltyManager.Profile.al │ │ │ ├── QltyManagerRC.Page.al │ │ │ ├── QltyManagerRoleCenter.Page.al │ │ │ ├── QltyMgmtRoleCenterCue.Table.al │ │ │ ├── QltyPurchasingAgentRC.PageExt.al │ │ │ └── QltyShopSupervisorRC.PageExt.al │ │ │ ├── Setup │ │ │ ├── ApplicationAreas │ │ │ │ ├── QltyApplicationAreaMgmt.Codeunit.al │ │ │ │ ├── QltyApplicationAreaSetup.TableExt.al │ │ │ │ └── QltyManagementVisibility.Enum.al │ │ │ ├── QltyInstall.Codeunit.al │ │ │ ├── Setup │ │ │ │ ├── QltyCreateTestBehavior.Enum.al │ │ │ │ ├── QltyFindExistingBehavior.Enum.al │ │ │ │ ├── QltyItemTrackingBehavior.Enum.al │ │ │ │ ├── QltyManagementSetup.Page.al │ │ │ │ ├── QltyManagementSetup.Table.al │ │ │ │ ├── QltyPictureUploadBehavior.Enum.al │ │ │ │ ├── QltyShowTestBehavior.Enum.al │ │ │ │ └── QltyUpdateSourceBehavior.Enum.al │ │ │ └── SetupWizard │ │ │ │ ├── QltyAssistedSetup.Codeunit.al │ │ │ │ └── QltyManagementSetupWizard.Page.al │ │ │ ├── Utilities │ │ │ ├── QltyEditLargeText.Page.al │ │ │ ├── QltyExpressionMgmt.Codeunit.al │ │ │ ├── QltyFilterHelpers.Codeunit.al │ │ │ ├── QltyMiscHelpers.Codeunit.al │ │ │ ├── QltyNotificationMgmt.Codeunit.al │ │ │ └── QltySessionHelper.Codeunit.al │ │ │ └── Workflow │ │ │ ├── QltyApprovalDocumentType.EnumExt.al │ │ │ ├── QltyExpressConfigValue.Table.al │ │ │ ├── QltyStartWorkflow.Codeunit.al │ │ │ ├── QltyWorkflowApprovals.Codeunit.al │ │ │ ├── QltyWorkflowRespOptions.PageExt.al │ │ │ ├── QltyWorkflowResponse.Codeunit.al │ │ │ └── QltyWorkflowSetup.Codeunit.al │ └── test │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ ├── QltyCodeunitTests.Codeunit.al │ │ ├── QltyTestGenRule.Codeunit.al │ │ ├── QltyTestGradeCondition.Codeunit.al │ │ ├── QltyTestPermissionMgmt.Codeunit.al │ │ ├── QltyTestProdOrderRouting.PageExt.al │ │ ├── QltyTestReceivingIntegr.Codeunit.al │ │ ├── QltyTestWorkflows.Codeunit.al │ │ ├── QltyTestsCreateTest.Codeunit.al │ │ ├── QltyTestsDispositions.Codeunit.al │ │ ├── QltyTestsExpressions.Codeunit.al │ │ ├── QltyTestsFilterHelpers.Codeunit.al │ │ ├── QltyTestsGradeEval.Codeunit.al │ │ ├── QltyTestsItemTracking.Codeunit.al │ │ ├── QltyTestsMisc.Codeunit.al │ │ ├── QltyTestsMoreTests.Codeunit.al │ │ ├── QltyTestsProdIntegr.Codeunit.al │ │ ├── QltyTestsTestTable.Codeunit.al │ │ ├── QltyTestsTraversal.Codeunit.al │ │ └── TestLibraries │ │ ├── QltyProdOrderGenerator.Codeunit.al │ │ ├── QltyPurOrderGenerator.Codeunit.al │ │ └── QltyTestsUtility.Codeunit.al │ ├── SendToEmailPrinter │ └── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ ├── DocumentPrintReady.Codeunit.al │ │ ├── EmailPrinterManagement.PageExt.al │ │ ├── EmailPrinterPaperUnit.Enum.al │ │ ├── EmailPrinterScenario.EnumExt.al │ │ ├── EmailPrinterSettings.Page.al │ │ ├── EmailPrinterSettings.Table.al │ │ ├── Permissions │ │ ├── SendToEmailPrinterEdit.PermissionSet.al │ │ ├── SendToEmailPrinterObjects.PermissionSet.al │ │ ├── SendToEmailPrinterRead.PermissionSet.al │ │ ├── d365basicisvsendtoemailprinter.permissionsetext.al │ │ ├── d365basicsendtoemailprinter.permissionsetext.al │ │ ├── d365busfullaccesssendtoemailprinter.permissionsetext.al │ │ ├── d365buspremiumsendtoemailprinter.permissionsetext.al │ │ ├── d365fullaccesssendtoemailprinter.permissionsetext.al │ │ ├── d365readsendtoemailprinter.permissionsetext.al │ │ ├── d365teammembersendtoemailprinter.permissionsetext.al │ │ └── intelligentcloudsendtoemailprinter.permissionsetext.al │ │ └── SetupPrinters.Codeunit.al │ ├── Shopify │ ├── App │ │ ├── .objidconfig │ │ ├── .resources │ │ │ └── data │ │ │ │ └── provinces.yml │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ │ ├── Base │ │ │ ├── Codeunits │ │ │ │ ├── CompanyDetailsChecklistItem.Codeunit.al │ │ │ │ ├── ShpfyBackgroundSyncs.Codeunit.al │ │ │ │ ├── ShpfyChecklistItemList.Codeunit.al │ │ │ │ ├── ShpfyCommunicationEvents.Codeunit.al │ │ │ │ ├── ShpfyCommunicationMgt.Codeunit.al │ │ │ │ ├── ShpfyFilterMgt.Codeunit.al │ │ │ │ ├── ShpfyGuidedExperience.Codeunit.al │ │ │ │ ├── ShpfyInitialImport.Codeunit.al │ │ │ │ ├── ShpfyInstaller.Codeunit.al │ │ │ │ ├── ShpfyShopMgt.Codeunit.al │ │ │ │ ├── ShpfyShopReview.Codeunit.al │ │ │ │ └── ShpfyUpgradeMgt.Codeunit.al │ │ │ ├── Enum Extensions │ │ │ │ └── ShopifySignupContext.EnumExt.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyImportAction.Enum.al │ │ │ │ ├── ShpfyLoggingMode.Enum.al │ │ │ │ ├── ShpfyMappingDirection.Enum.al │ │ │ │ ├── ShpfyReturnLocationPriority.Enum.al │ │ │ │ ├── ShpfySynchronizationType.Enum.al │ │ │ │ └── ShpfyWeightUnit.Enum.al │ │ │ ├── Page Extensions │ │ │ │ ├── ShpfyBusinessManagerRC.PageExt.al │ │ │ │ ├── ShpfyOrderProcessorRC.PageExt.al │ │ │ │ └── ShpfySalesRelMgrRC.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyActivities.Page.al │ │ │ │ ├── ShpfyConnectorGuide.Page.al │ │ │ │ ├── ShpfyInitialImport.Page.al │ │ │ │ ├── ShpfyShopCard.Page.al │ │ │ │ ├── ShpfyShopSelection.Page.al │ │ │ │ ├── ShpfyShops.Page.al │ │ │ │ ├── ShpfyTagFactbox.Page.al │ │ │ │ └── ShpfyTags.Page.al │ │ │ ├── Reports │ │ │ │ └── ShpfyTranslator.Report.al │ │ │ ├── Table Extensions │ │ │ │ ├── ShpfyFeatureDataUpdate.TableExt.al │ │ │ │ └── ShpfySignupContextValues.TableExt.al │ │ │ └── Tables │ │ │ │ ├── ShpfyCue.Table.al │ │ │ │ ├── ShpfyInitialImportLine.Table.al │ │ │ │ ├── ShpfyShop.Table.al │ │ │ │ ├── ShpfySynchronizationInfo.Table.al │ │ │ │ ├── ShpfyTag.Table.al │ │ │ │ └── ShpfyTemplatesWarnings.Table.al │ │ │ ├── Bulk Operations │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyBulkOperationAPI.Codeunit.al │ │ │ │ ├── ShpfyBulkOperationMgt.Codeunit.al │ │ │ │ ├── ShpfyBulkUpdateProductImage.Codeunit.al │ │ │ │ └── ShpfyBulkUpdateProductPrice.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyBulkOperationStatus.Enum.al │ │ │ │ └── ShpfyBulkOperationType.Enum.al │ │ │ ├── Interfaces │ │ │ │ └── ShpfyIBulkOperation.Interface.al │ │ │ ├── Pages │ │ │ │ └── ShpfyBulkOperations.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyBulkOperation.Table.al │ │ │ ├── Catalogs │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCatalogAPI.Codeunit.al │ │ │ │ └── ShpfySyncCatalogPrices.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── ShpfyCatalogType.Enum.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyCatalogs.Page.al │ │ │ │ ├── ShpfyMarketCatalogRelations.Page.al │ │ │ │ └── ShpfyMarketCatalogs.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfySyncCatalogPrices.Report.al │ │ │ │ └── ShpfySyncCatalogs.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyCatalog.Table.al │ │ │ │ ├── ShpfyCatalogPrice.Table.al │ │ │ │ └── ShpfyMarketCatalogRelation.Table.al │ │ │ ├── Companies │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCompByDefaultComp.Codeunit.al │ │ │ │ ├── ShpfyCompByEmailPhone.Codeunit.al │ │ │ │ ├── ShpfyCompByTaxId.Codeunit.al │ │ │ │ ├── ShpfyCompanyAPI.Codeunit.al │ │ │ │ ├── ShpfyCompanyExport.Codeunit.al │ │ │ │ ├── ShpfyCompanyImport.Codeunit.al │ │ │ │ ├── ShpfyCompanyMapping.Codeunit.al │ │ │ │ ├── ShpfySyncCompanies.Codeunit.al │ │ │ │ ├── ShpfyTaxRegistrationNo.Codeunit.al │ │ │ │ └── ShpfyVATRegistrationNo.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyCompTaxIdMapping.Enum.al │ │ │ │ ├── ShpfyCompanyImportRange.Enum.al │ │ │ │ ├── ShpfyCompanyMapping.Enum.al │ │ │ │ └── ShpfyDefaultContPermission.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyICompanyMapping.Interface.al │ │ │ │ ├── ShpfyIFindCompanyMapping.Interface.al │ │ │ │ └── ShpfyTaxRegistrationIdMapping.Interface.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyCompLocations.Page.al │ │ │ │ ├── ShpfyCompLocationsSubform.Page.al │ │ │ │ ├── ShpfyCompanies.Page.al │ │ │ │ ├── ShpfyCompanyCard.Page.al │ │ │ │ └── ShpfyMainContactFactbox.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfyAddCompanyToShopify.Report.al │ │ │ │ ├── ShpfyAddCustasLocations.Report.al │ │ │ │ └── ShpfySyncCompanies.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyCompany.Table.al │ │ │ │ └── ShpfyCompanyLocation.Table.al │ │ │ ├── Customers │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCountyCode.Codeunit.al │ │ │ │ ├── ShpfyCountyFromJsonCode.Codeunit.al │ │ │ │ ├── ShpfyCountyFromJsonName.Codeunit.al │ │ │ │ ├── ShpfyCountyName.Codeunit.al │ │ │ │ ├── ShpfyCreateCustomer.Codeunit.al │ │ │ │ ├── ShpfyCustByBillto.Codeunit.al │ │ │ │ ├── ShpfyCustByDefaultCust.Codeunit.al │ │ │ │ ├── ShpfyCustByEmailPhone.Codeunit.al │ │ │ │ ├── ShpfyCustomerAPI.Codeunit.al │ │ │ │ ├── ShpfyCustomerEvents.Codeunit.al │ │ │ │ ├── ShpfyCustomerExport.Codeunit.al │ │ │ │ ├── ShpfyCustomerImport.Codeunit.al │ │ │ │ ├── ShpfyCustomerMapping.Codeunit.al │ │ │ │ ├── ShpfyNameisCompanyName.Codeunit.al │ │ │ │ ├── ShpfyNameisEmpty.Codeunit.al │ │ │ │ ├── ShpfyNameisFirstLastName.Codeunit.al │ │ │ │ ├── ShpfyNameisLastFirstName.Codeunit.al │ │ │ │ ├── ShpfySyncCountries.Codeunit.al │ │ │ │ ├── ShpfySyncCustomers.Codeunit.al │ │ │ │ └── ShpfyUpdateCustomer.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyCountySource.Enum.al │ │ │ │ ├── ShpfyCustomerImportRange.Enum.al │ │ │ │ ├── ShpfyCustomerMapping.Enum.al │ │ │ │ ├── ShpfyCustomerState.Enum.al │ │ │ │ ├── ShpfyNameSource.Enum.al │ │ │ │ ├── ShpfyTaxBy.Enum.al │ │ │ │ └── ShpfyTaxType.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyICounty.Interface.al │ │ │ │ ├── ShpfyICountyFromJson.Interface.al │ │ │ │ ├── ShpfyICustomerMapping.Interface.al │ │ │ │ └── ShpfyICustomerName.Interface.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyCustomerAdresses.Page.al │ │ │ │ ├── ShpfyCustomerCard.Page.al │ │ │ │ ├── ShpfyCustomerTemplates.Page.al │ │ │ │ ├── ShpfyCustomers.Page.al │ │ │ │ └── ShpfyTaxAreas.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfyAddCustomerToShopify.Report.al │ │ │ │ ├── ShpfySyncCountries.Report.al │ │ │ │ └── ShpfySyncCustomers.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyCustomer.Table.al │ │ │ │ ├── ShpfyCustomerAddress.Table.al │ │ │ │ ├── ShpfyCustomerTemplate.Table.al │ │ │ │ ├── ShpfyProvince.Table.al │ │ │ │ └── ShpfyTaxArea.Table.al │ │ │ ├── Document Links │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyBCDocumentTypeConvert.Codeunit.al │ │ │ │ ├── ShpfyDocumentLinkMgt.Codeunit.al │ │ │ │ ├── ShpfyOpenBCDocNotSupported.Codeunit.al │ │ │ │ ├── ShpfyOpenDocNotSupported.Codeunit.al │ │ │ │ ├── ShpfyOpenOrder.Codeunit.al │ │ │ │ ├── ShpfyOpenPostedReturnReceipt.Codeunit.al │ │ │ │ ├── ShpfyOpenPostedSalesCrMemo.Codeunit.al │ │ │ │ ├── ShpfyOpenPostedSalesInvoice.Codeunit.al │ │ │ │ ├── ShpfyOpenRefund.Codeunit.al │ │ │ │ ├── ShpfyOpenReturn.Codeunit.al │ │ │ │ ├── ShpfyOpenSalesCrMemo.Codeunit.al │ │ │ │ ├── ShpfyOpenSalesInvoice.Codeunit.al │ │ │ │ ├── ShpfyOpenSalesOrder.Codeunit.al │ │ │ │ ├── ShpfyOpenSalesReturnOrder.Codeunit.al │ │ │ │ └── ShpfyOpenSalesShipment.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyDocumentType.Enum.al │ │ │ │ └── ShpfyShopDocumentType.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyIOpenBCDocument.Interface.al │ │ │ │ └── ShpfyIOpenShopifyDocument.Interface.al │ │ │ ├── Pages │ │ │ │ └── ShpfyLinkedToDocuments.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyDocLinkToDoc.Table.al │ │ │ ├── Gift Cards │ │ │ ├── Codeunits │ │ │ │ └── ShpfyGiftCards.Codeunit.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyGiftCardTransactions.Page.al │ │ │ │ └── ShpfyGiftCards.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyGiftCard.Table.al │ │ │ ├── GraphQL │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyGQLAcceptFFRequest.Codeunit.al │ │ │ │ ├── ShpfyGQLAddProductImage.Codeunit.al │ │ │ │ ├── ShpfyGQLAllCustomerIds.Codeunit.al │ │ │ │ ├── ShpfyGQLApiKey.Codeunit.al │ │ │ │ ├── ShpfyGQLAssignedFFOrders.Codeunit.al │ │ │ │ ├── ShpfyGQLBulkOpMutation.Codeunit.al │ │ │ │ ├── ShpfyGQLBulkOperation.Codeunit.al │ │ │ │ ├── ShpfyGQLBulkOperations.Codeunit.al │ │ │ │ ├── ShpfyGQLCatalogMarkets.Codeunit.al │ │ │ │ ├── ShpfyGQLCatalogPrices.Codeunit.al │ │ │ │ ├── ShpfyGQLCatalogProducts.Codeunit.al │ │ │ │ ├── ShpfyGQLCatalogs.Codeunit.al │ │ │ │ ├── ShpfyGQLCloseOrder.Codeunit.al │ │ │ │ ├── ShpfyGQLCompLocation.Codeunit.al │ │ │ │ ├── ShpfyGQLCompLocations.Codeunit.al │ │ │ │ ├── ShpfyGQLCompany.Codeunit.al │ │ │ │ ├── ShpfyGQLCompanyAssignConRole.Codeunit.al │ │ │ │ ├── ShpfyGQLCompanyAssignContact.Codeunit.al │ │ │ │ ├── ShpfyGQLCompanyAssignMainCon.Codeunit.al │ │ │ │ ├── ShpfyGQLCompanyIds.Codeunit.al │ │ │ │ ├── ShpfyGQLCompanyMetafieldIds.Codeunit.al │ │ │ │ ├── ShpfyGQLCreateCatalog.Codeunit.al │ │ │ │ ├── ShpfyGQLCreateCompLocTaxId.Codeunit.al │ │ │ │ ├── ShpfyGQLCreateFulfillmentSvc.Codeunit.al │ │ │ │ ├── ShpfyGQLCreatePriceList.Codeunit.al │ │ │ │ ├── ShpfyGQLCreatePublication.Codeunit.al │ │ │ │ ├── ShpfyGQLCreateUploadUrl.Codeunit.al │ │ │ │ ├── ShpfyGQLCreateWebhookSub.Codeunit.al │ │ │ │ ├── ShpfyGQLCustProdCollections.Codeunit.al │ │ │ │ ├── ShpfyGQLCustomer.Codeunit.al │ │ │ │ ├── ShpfyGQLCustomerIds.Codeunit.al │ │ │ │ ├── ShpfyGQLCustomerMetafieldIds.Codeunit.al │ │ │ │ ├── ShpfyGQLDeleteWebhookSub.Codeunit.al │ │ │ │ ├── ShpfyGQLDeliveryMethods.Codeunit.al │ │ │ │ ├── ShpfyGQLDeliveryProfiles.Codeunit.al │ │ │ │ ├── ShpfyGQLDisputeById.Codeunit.al │ │ │ │ ├── ShpfyGQLDisputes.Codeunit.al │ │ │ │ ├── ShpfyGQLDraftOrderComplete.Codeunit.al │ │ │ │ ├── ShpfyGQLFFOrdersFromOrder.Codeunit.al │ │ │ │ ├── ShpfyGQLFindCustByEMail.Codeunit.al │ │ │ │ ├── ShpfyGQLFindCustByPhone.Codeunit.al │ │ │ │ ├── ShpfyGQLFindVariantByBarcode.Codeunit.al │ │ │ │ ├── ShpfyGQLFindVariantBySKU.Codeunit.al │ │ │ │ ├── ShpfyGQLFulfillOrder.Codeunit.al │ │ │ │ ├── ShpfyGQLGetFulfillments.Codeunit.al │ │ │ │ ├── ShpfyGQLGetNextSChannels.Codeunit.al │ │ │ │ ├── ShpfyGQLGetProductImage.Codeunit.al │ │ │ │ ├── ShpfyGQLGetProductOptions.Codeunit.al │ │ │ │ ├── ShpfyGQLGetSalesChannels.Codeunit.al │ │ │ │ ├── ShpfyGQLGetStaffMembers.Codeunit.al │ │ │ │ ├── ShpfyGQLGetWebhookSubs.Codeunit.al │ │ │ │ ├── ShpfyGQLInventoryActivate.Codeunit.al │ │ │ │ ├── ShpfyGQLInventoryEntries.Codeunit.al │ │ │ │ ├── ShpfyGQLLocation.Codeunit.al │ │ │ │ ├── ShpfyGQLLocationGroups.Codeunit.al │ │ │ │ ├── ShpfyGQLLocationOrderLines.Codeunit.al │ │ │ │ ├── ShpfyGQLLocations.Codeunit.al │ │ │ │ ├── ShpfyGQLMarkOrderAsPaid.Codeunit.al │ │ │ │ ├── ShpfyGQLMarketCatalogs.Codeunit.al │ │ │ │ ├── ShpfyGQLMetafieldDefinitions.Codeunit.al │ │ │ │ ├── ShpfyGQLMetafieldsSet.Codeunit.al │ │ │ │ ├── ShpfyGQLModifyInventory.Codeunit.al │ │ │ │ ├── ShpfyGQLNextAllCustomerIds.Codeunit.al │ │ │ │ ├── ShpfyGQLNextAssignedFFOrders.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCatalogMarkets.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCatalogPrices.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCatalogProducts.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCatalogs.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCompLocations.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCompanyIds.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCustProdColls.Codeunit.al │ │ │ │ ├── ShpfyGQLNextCustomerIds.Codeunit.al │ │ │ │ ├── ShpfyGQLNextDeliveryMethods.Codeunit.al │ │ │ │ ├── ShpfyGQLNextDeliveryProfiles.Codeunit.al │ │ │ │ ├── ShpfyGQLNextDisputes.Codeunit.al │ │ │ │ ├── ShpfyGQLNextFFOrdersFromOrd.Codeunit.al │ │ │ │ ├── ShpfyGQLNextFulfillmentLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextInvEntries.Codeunit.al │ │ │ │ ├── ShpfyGQLNextLocations.Codeunit.al │ │ │ │ ├── ShpfyGQLNextMarketCatalogs.Codeunit.al │ │ │ │ ├── ShpfyGQLNextOpenFFOrderLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextOpenOrdToImport.Codeunit.al │ │ │ │ ├── ShpfyGQLNextOrderLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextOrderReturns.Codeunit.al │ │ │ │ ├── ShpfyGQLNextOrdersToImport.Codeunit.al │ │ │ │ ├── ShpfyGQLNextPaymTransactions.Codeunit.al │ │ │ │ ├── ShpfyGQLNextPayouts.Codeunit.al │ │ │ │ ├── ShpfyGQLNextProductIds.Codeunit.al │ │ │ │ ├── ShpfyGQLNextProductImages.Codeunit.al │ │ │ │ ├── ShpfyGQLNextRefundLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextRefundShipLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextReturnLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextRevFulfillOrdLns.Codeunit.al │ │ │ │ ├── ShpfyGQLNextRevFulfillOrders.Codeunit.al │ │ │ │ ├── ShpfyGQLNextShipmentLines.Codeunit.al │ │ │ │ ├── ShpfyGQLNextStaffMembers.Codeunit.al │ │ │ │ ├── ShpfyGQLNextVariantIds.Codeunit.al │ │ │ │ ├── ShpfyGQLNextVariantImages.Codeunit.al │ │ │ │ ├── ShpfyGQLOpenFulfillmOrdLines.Codeunit.al │ │ │ │ ├── ShpfyGQLOpenOrdersToImport.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderCancel.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderFulfillment.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderHeader.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderLines.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderRisks.Codeunit.al │ │ │ │ ├── ShpfyGQLOrderTransactions.Codeunit.al │ │ │ │ ├── ShpfyGQLOrdersToImport.Codeunit.al │ │ │ │ ├── ShpfyGQLPaymentTerms.Codeunit.al │ │ │ │ ├── ShpfyGQLPaymentTransactions.Codeunit.al │ │ │ │ ├── ShpfyGQLPayouts.Codeunit.al │ │ │ │ ├── ShpfyGQLProductById.Codeunit.al │ │ │ │ ├── ShpfyGQLProductIds.Codeunit.al │ │ │ │ ├── ShpfyGQLProductImages.Codeunit.al │ │ │ │ ├── ShpfyGQLProductMetafieldIds.Codeunit.al │ │ │ │ ├── ShpfyGQLRefundHeader.Codeunit.al │ │ │ │ ├── ShpfyGQLRefundLines.Codeunit.al │ │ │ │ ├── ShpfyGQLRefundShippingLines.Codeunit.al │ │ │ │ ├── ShpfyGQLReturnHeader.Codeunit.al │ │ │ │ ├── ShpfyGQLReturnLines.Codeunit.al │ │ │ │ ├── ShpfyGQLRevFulfillOrderLines.Codeunit.al │ │ │ │ ├── ShpfyGQLRevFulfillOrders.Codeunit.al │ │ │ │ ├── ShpfyGQLShipToCountries.Codeunit.al │ │ │ │ ├── ShpfyGQLShipmentLines.Codeunit.al │ │ │ │ ├── ShpfyGQLShopLocales.Codeunit.al │ │ │ │ ├── ShpfyGQLTranslResource.Codeunit.al │ │ │ │ ├── ShpfyGQLTranslationsRegister.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateCatalogPrices.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateFulfillmentSvc.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateLocPmtTerms.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateOrderAttr.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateProductImage.Codeunit.al │ │ │ │ ├── ShpfyGQLUpdateProductOption.Codeunit.al │ │ │ │ ├── ShpfyGQLVariantById.Codeunit.al │ │ │ │ ├── ShpfyGQLVariantIds.Codeunit.al │ │ │ │ ├── ShpfyGQLVariantImages.Codeunit.al │ │ │ │ ├── ShpfyGQLVariantMetafieldIds.Codeunit.al │ │ │ │ ├── ShpfyGraphQLQueries.Codeunit.al │ │ │ │ └── ShpfyGraphQLRateLimit.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── ShpfyGraphQLType.Enum.al │ │ │ └── Interfaces │ │ │ │ └── ShpfyIGraphQL.Interface.al │ │ │ ├── Helpers │ │ │ └── Codeunits │ │ │ │ ├── ShpfyBase64.Codeunit.al │ │ │ │ ├── ShpfyHash.Codeunit.al │ │ │ │ ├── ShpfyJsonHelper.Codeunit.al │ │ │ │ └── ShpfyMath.Codeunit.al │ │ │ ├── Integration │ │ │ ├── Codeunits │ │ │ │ └── ShpfyAuthenticationMgt.Codeunit.al │ │ │ ├── Pages │ │ │ │ └── ShpfyAuthentication.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyRegisteredStoreNew.Table.al │ │ │ ├── Inventory │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyBalanceToday.Codeunit.al │ │ │ │ ├── ShpfyCanHaveStock.Codeunit.al │ │ │ │ ├── ShpfyCanNotHaveStock.Codeunit.al │ │ │ │ ├── ShpfyDisabledValue.Codeunit.al │ │ │ │ ├── ShpfyFreeInventory.Codeunit.al │ │ │ │ ├── ShpfyInventoryAPI.Codeunit.al │ │ │ │ ├── ShpfyInventoryEvents.Codeunit.al │ │ │ │ ├── ShpfySyncInventory.Codeunit.al │ │ │ │ └── ShpfySyncShopLocations.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyInventoryManagement.Enum.al │ │ │ │ ├── ShpfyInventoryPolicy.Enum.al │ │ │ │ └── ShpfyStockCalculation.Enum.al │ │ │ ├── Interface │ │ │ │ ├── ShpfyExtendedStockCalculation.Interface.al │ │ │ │ ├── ShpfyIStockAvailable.Interface.al │ │ │ │ └── ShpfyStockCalculation.Interface.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyInventoryFactBox.Page.al │ │ │ │ └── ShpfyShopLocationsMapping.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfyCreateLocationFilter.Report.al │ │ │ │ └── ShpfySyncStockToShopify.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyShopInventory.Table.al │ │ │ │ └── ShpfyShopLocation.Table.al │ │ │ ├── Invoicing │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyDraftOrdersAPI.Codeunit.al │ │ │ │ ├── ShpfyFulfillmentAPI.Codeunit.al │ │ │ │ ├── ShpfyPostedInvoiceExport.Codeunit.al │ │ │ │ └── ShpfyUpdateSalesInvoice.Codeunit.al │ │ │ ├── PageExt │ │ │ │ └── ShpfySalesInvoiceUpdate.PageExt.al │ │ │ ├── Reports │ │ │ │ └── ShpfySyncInvoicesToShpfy.Report.al │ │ │ └── Tables │ │ │ │ └── ShpfyInvoiceHeader.Table.al │ │ │ ├── Logs │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyLogEntriesDelete.Codeunit.al │ │ │ │ └── ShpfySkippedRecord.Codeunit.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyDataCaptureList.Page.al │ │ │ │ ├── ShpfyLogEntries.Page.al │ │ │ │ ├── ShpfyLogEntryCard.Page.al │ │ │ │ └── ShpfySkippedRecords.Page.al │ │ │ └── Tables │ │ │ │ ├── ShpfyDataCapture.Table.al │ │ │ │ ├── ShpfyLogEntry.Table.al │ │ │ │ └── ShpfySkippedRecord.Table.al │ │ │ ├── Metafields │ │ │ ├── Codeunits │ │ │ │ ├── IMetafieldType │ │ │ │ │ ├── ShpfyMtfldTypeBoolean.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeCollectRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeColor.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeCompanyRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeCustomerRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeDate.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeDateTime.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeDimension.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeFileRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeInteger.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeJson.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeMetaobjRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeMixedRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeMoney.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeMultiText.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeNumDecimal.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeNumInteger.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypePageRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeProductRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeSingleText.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeString.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeUrl.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeVariantRef.Codeunit.al │ │ │ │ │ ├── ShpfyMtfldTypeVolume.Codeunit.al │ │ │ │ │ └── ShpfyMtfldTypeWeight.Codeunit.al │ │ │ │ ├── IOwnerType │ │ │ │ │ ├── ShpfyMetafieldOwnerCompany.Codeunit.al │ │ │ │ │ ├── ShpfyMetafieldOwnerCustomer.Codeunit.al │ │ │ │ │ ├── ShpfyMetafieldOwnerProduct.Codeunit.al │ │ │ │ │ └── ShpfyMetafieldOwnerVariant.Codeunit.al │ │ │ │ └── ShpfyMetafieldAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyMetafieldDimensionType.Enum.al │ │ │ │ ├── ShpfyMetafieldOwnerType.Enum.al │ │ │ │ ├── ShpfyMetafieldType.Enum.al │ │ │ │ ├── ShpfyMetafieldValueType.Enum.al │ │ │ │ ├── ShpfyMetafieldVolumeType.Enum.al │ │ │ │ └── ShpfyMetafieldWeightType.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyIMetafieldOwnerType.Interface.al │ │ │ │ └── ShpfyIMetafieldType.Interface.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyMetafieldAssistEdit.Page.al │ │ │ │ └── ShpfyMetafields.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyMetafield.Table.al │ │ │ ├── Order Fulfillments │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyFulfillmentOrdersAPI.Codeunit.al │ │ │ │ └── ShpfyOrderFulfillments.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyDeliveryMethodType.Enum.al │ │ │ │ ├── ShpfyFFRequestStatus.Enum.al │ │ │ │ ├── ShpfyFulFillmentStatus.Enum.al │ │ │ │ └── ShpfyOrderFulfillStatus.Enum.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyFulFillmentOrders.Page.al │ │ │ │ ├── ShpfyFulfillmentOrderCard.Page.al │ │ │ │ ├── ShpfyFulfillmentOrderLines.Page.al │ │ │ │ ├── ShpfyOrderFulfillment.Page.al │ │ │ │ ├── ShpfyOrderFulfillmentLines.Page.al │ │ │ │ └── ShpfyOrderFulfillments.Page.al │ │ │ └── Tables │ │ │ │ ├── ShpfyFulFillmentOrderHeader.Table.al │ │ │ │ ├── ShpfyFulFillmentOrderLine.Table.al │ │ │ │ ├── ShpfyFulfillmentLine.Table.al │ │ │ │ └── ShpfyOrderFulfillment.Table.al │ │ │ ├── Order Refunds │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyRefundEnumConvertor.Codeunit.al │ │ │ │ └── ShpfyRefundsAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── ShpfyRestockType.Enum.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyRefund.Page.al │ │ │ │ ├── ShpfyRefundLines.Page.al │ │ │ │ ├── ShpfyRefundShippingLines.Page.al │ │ │ │ └── ShpfyRefunds.Page.al │ │ │ └── Tables │ │ │ │ ├── ShpfyRefundHeader.Table.al │ │ │ │ ├── ShpfyRefundLine.Table.al │ │ │ │ └── ShpfyRefundShippingLine.Table.al │ │ │ ├── Order Return Refund Processing │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCreateSalesDocRefund.Codeunit.al │ │ │ │ ├── ShpfyIDocSourceDefault.Codeunit.al │ │ │ │ ├── ShpfyIDocSourceRefund.Codeunit.al │ │ │ │ ├── ShpfyRefundProcessEvents.Codeunit.al │ │ │ │ ├── ShpfyRetRefProcCrMemo.Codeunit.al │ │ │ │ ├── ShpfyRetRefProcDefault.Codeunit.al │ │ │ │ └── ShpfyRetRefProcImportOnly.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyReturnRefundProcessType.Enum.al │ │ │ │ └── ShpfySourceDocumentType.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyExtendedIDocumentSource.Interface.al │ │ │ │ ├── ShpfyIDocumentSource.Interface.al │ │ │ │ └── ShpfyIReturnRefundProcess.Interface.al │ │ │ ├── Page Extensions │ │ │ │ ├── ShpfyPostedSalesCrMemos.PageExt.al │ │ │ │ ├── ShpfySalesCreditMemo.PageExt.al │ │ │ │ └── ShpfySalesCreditMemos.PageExt.al │ │ │ └── Table Extensions │ │ │ │ ├── ShpfyReturnReceiptHeader.TableExt.al │ │ │ │ ├── ShpfyReturnReceiptLine.TableExt.al │ │ │ │ ├── ShpfySalesCrMemoHeader.TableExt.al │ │ │ │ └── ShpfySalesCrMemoLine.TableExt.al │ │ │ ├── Order Returns │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyReturnEnumConvertor.Codeunit.al │ │ │ │ └── ShpfyReturnsAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyOrderReturnStatus.Enum.al │ │ │ │ ├── ShpfyReturnDeclineReason.Enum.al │ │ │ │ ├── ShpfyReturnLineType.Enum.al │ │ │ │ ├── ShpfyReturnReason.Enum.al │ │ │ │ └── ShpfyReturnStatus.Enum.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyReturn.Page.al │ │ │ │ ├── ShpfyReturnLines.Page.al │ │ │ │ └── ShpfyReturns.Page.al │ │ │ └── Tables │ │ │ │ ├── ShpfyReturnHeader.Table.al │ │ │ │ └── ShpfyReturnLine.Table.al │ │ │ ├── Order Risks │ │ │ ├── Codeunits │ │ │ │ └── ShpfyOrderRisks.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyAssessmentSentiment.Enum.al │ │ │ │ └── ShpfyRiskLevel.Enum.al │ │ │ ├── Pages │ │ │ │ └── ShpfyOrderRisks.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyOrderRisk.Table.al │ │ │ ├── Order handling │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCopySalesDocument.Codeunit.al │ │ │ │ ├── ShpfyImportOrder.Codeunit.al │ │ │ │ ├── ShpfyOrderEvents.Codeunit.al │ │ │ │ ├── ShpfyOrderMapping.Codeunit.al │ │ │ │ ├── ShpfyOrderMgt.Codeunit.al │ │ │ │ ├── ShpfyOrders.Codeunit.al │ │ │ │ ├── ShpfyOrdersAPI.Codeunit.al │ │ │ │ ├── ShpfyProcessOrder.Codeunit.al │ │ │ │ ├── ShpfyProcessOrders.Codeunit.al │ │ │ │ └── ShpfySuppressAsmWarning.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyAllocationMethod.Enum.al │ │ │ │ ├── ShpfyCancelReason.Enum.al │ │ │ │ ├── ShpfyFinancialStatus.Enum.al │ │ │ │ ├── ShpfyOrderPurchasingEntity.Enum.al │ │ │ │ ├── ShpfyProcessingMethod.Enum.al │ │ │ │ ├── ShpfyShipmentStatus.Enum.al │ │ │ │ ├── ShpfyTargetSelection.Enum.al │ │ │ │ ├── ShpfyTargetType.Enum.al │ │ │ │ ├── ShpfyTrackingCompanies.Enum.al │ │ │ │ └── ShpfyValueType.Enum.al │ │ │ ├── Page Extensions │ │ │ │ ├── ShpfyPostSalInvSubform.PageExt.al │ │ │ │ ├── ShpfyPostSalesShipmLines.PageExt.al │ │ │ │ ├── ShpfyPostSalesShipment.PageExt.al │ │ │ │ ├── ShpfyPostSalesShipments.PageExt.al │ │ │ │ ├── ShpfyPostedSalesInvoice.PageExt.al │ │ │ │ ├── ShpfyPostedSalesInvoices.PageExt.al │ │ │ │ ├── ShpfySalesInvoice.PageExt.al │ │ │ │ ├── ShpfySalesInvoiceList.PageExt.al │ │ │ │ ├── ShpfySalesInvoiceSubform.PageExt.al │ │ │ │ ├── ShpfySalesOrder.PageExt.al │ │ │ │ ├── ShpfySalesOrderList.PageExt.al │ │ │ │ └── ShpfySalesOrderSubform.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyCancelOrder.Page.al │ │ │ │ ├── ShpfyOrder.Page.al │ │ │ │ ├── ShpfyOrderAttributes.Page.al │ │ │ │ ├── ShpfyOrderLinesAttributes.Page.al │ │ │ │ ├── ShpfyOrderSubform.Page.al │ │ │ │ ├── ShpfyOrderTaxLines.Page.al │ │ │ │ ├── ShpfyOrderTotalsFactBox.Page.al │ │ │ │ ├── ShpfyOrders.Page.al │ │ │ │ └── ShpfyOrdersToImport.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfyCreateSalesOrders.Report.al │ │ │ │ └── ShpfySyncOrdersfromShopify.Report.al │ │ │ ├── Table Extensions │ │ │ │ ├── ShpfySalesHeader.TableExt.al │ │ │ │ ├── ShpfySalesHeaderArchive.TableExt.al │ │ │ │ ├── ShpfySalesInvoiceHeader.TableExt.al │ │ │ │ ├── ShpfySalesInvoiceLine.TableExt.al │ │ │ │ ├── ShpfySalesLine.TableExt.al │ │ │ │ └── ShpfySalesLineArchive.TableExt.al │ │ │ └── Tables │ │ │ │ ├── ShpfyOrderAttribute.Table.al │ │ │ │ ├── ShpfyOrderDiscAppl.Table.al │ │ │ │ ├── ShpfyOrderHeader.Table.al │ │ │ │ ├── ShpfyOrderLine.Table.al │ │ │ │ ├── ShpfyOrderLineAttribute.Table.al │ │ │ │ ├── ShpfyOrderPaymentGateway.Table.al │ │ │ │ ├── ShpfyOrderTaxLine.Table.al │ │ │ │ └── ShpfyOrdersToImport.Table.al │ │ │ ├── Payments │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyPaymentTermsAPI.Codeunit.al │ │ │ │ ├── ShpfyPayments.Codeunit.al │ │ │ │ └── ShpfyPaymentsAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyDisputeReason.Enum.al │ │ │ │ ├── ShpfyDisputeStatus.Enum.al │ │ │ │ ├── ShpfyDisputeType.Enum.al │ │ │ │ ├── ShpfyPaymentTransSource.Enum.al │ │ │ │ ├── ShpfyPaymentTransType.Enum.al │ │ │ │ └── ShpfyPayoutStatus.Enum.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyDisputes.Page.al │ │ │ │ ├── ShpfyPaymentTermsMapping.Page.al │ │ │ │ ├── ShpfyPaymentTransactions.Page.al │ │ │ │ └── ShpfyPayouts.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfySyncDisputes.Report.al │ │ │ │ └── ShpfySyncPayments.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyDispute.Table.al │ │ │ │ ├── ShpfyPaymentTerms.Table.al │ │ │ │ ├── ShpfyPaymentTransaction.Table.al │ │ │ │ └── ShpfyPayout.Table.al │ │ │ ├── PermissionSets │ │ │ ├── ShpfyAdmin.PermissionSet.al │ │ │ ├── ShpfyD365BASIC.PermissionSetExt.al │ │ │ ├── ShpfyEdit.PermissionSet.al │ │ │ ├── ShpfyIndirectPerm.PermissionSet.al │ │ │ ├── ShpfyObjects.PermissionSet.al │ │ │ └── ShpfyRead.PermissionSet.al │ │ │ ├── Products │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyCreateItem.Codeunit.al │ │ │ │ ├── ShpfyCreateItemAsVariant.Codeunit.al │ │ │ │ ├── ShpfyCreateProdStatusActive.Codeunit.al │ │ │ │ ├── ShpfyCreateProdStatusDraft.Codeunit.al │ │ │ │ ├── ShpfyCreateProduct.Codeunit.al │ │ │ │ ├── ShpfyItemReferenceMgt.Codeunit.al │ │ │ │ ├── ShpfyProduct.Codeunit.al │ │ │ │ ├── ShpfyProductAPI.Codeunit.al │ │ │ │ ├── ShpfyProductCollectionAPI.Codeunit.al │ │ │ │ ├── ShpfyProductEvents.Codeunit.al │ │ │ │ ├── ShpfyProductExport.Codeunit.al │ │ │ │ ├── ShpfyProductImageExport.Codeunit.al │ │ │ │ ├── ShpfyProductImport.Codeunit.al │ │ │ │ ├── ShpfyProductMapping.Codeunit.al │ │ │ │ ├── ShpfyProductPriceCalc.Codeunit.al │ │ │ │ ├── ShpfyRemoveProductDoNothing.Codeunit.al │ │ │ │ ├── ShpfySalesChannelAPI.Codeunit.al │ │ │ │ ├── ShpfySyncProductImage.Codeunit.al │ │ │ │ ├── ShpfySyncProducts.Codeunit.al │ │ │ │ ├── ShpfyToArchivedProduct.Codeunit.al │ │ │ │ ├── ShpfyToDraftProduct.Codeunit.al │ │ │ │ ├── ShpfyUpdateItem.Codeunit.al │ │ │ │ ├── ShpfyUpdatePriceSource.Codeunit.al │ │ │ │ └── ShpfyVariantAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyCrProdStatusValue.Enum.al │ │ │ │ ├── ShpfyProductStatus.Enum.al │ │ │ │ ├── ShpfyRemoveProductAction.Enum.al │ │ │ │ ├── ShpfySKUMapping.Enum.al │ │ │ │ └── ShpfyVariantCreateStrategy.Enum.al │ │ │ ├── Interfaces │ │ │ │ ├── ShpfyICreateProductStatusValue.Interface.al │ │ │ │ └── ShpfyIRemoveProductAction.Interface.al │ │ │ ├── Page Extensions │ │ │ │ ├── ShpfyItemCard.PageExt.al │ │ │ │ └── ShpfyItemList.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyAddItemConfirm.Page.al │ │ │ │ ├── ShpfyProductCollections.Page.al │ │ │ │ ├── ShpfyProducts.Page.al │ │ │ │ ├── ShpfyProductsOverview.Page.al │ │ │ │ ├── ShpfySalesChannels.Page.al │ │ │ │ └── ShpfyVariants.Page.al │ │ │ ├── Reports │ │ │ │ ├── ShpfyAddItemAsVariant.Report.al │ │ │ │ ├── ShpfyAddItemtoShopify.Report.al │ │ │ │ ├── ShpfySyncImages.Report.al │ │ │ │ └── ShpfySyncProducts.Report.al │ │ │ └── Tables │ │ │ │ ├── ShpfyInventoryItem.Table.al │ │ │ │ ├── ShpfyProduct.Table.al │ │ │ │ ├── ShpfyProductCollection.Table.al │ │ │ │ ├── ShpfySalesChannel.Table.al │ │ │ │ ├── ShpfyShopCollectionMap.Table.al │ │ │ │ └── ShpfyVariant.Table.al │ │ │ ├── Shipping │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyExportShipments.Codeunit.al │ │ │ │ ├── ShpfyShippingCharges.Codeunit.al │ │ │ │ ├── ShpfyShippingEvents.Codeunit.al │ │ │ │ ├── ShpfyShippingMethods.Codeunit.al │ │ │ │ └── ShpfyUpdateSalesShipment.Codeunit.al │ │ │ ├── Page Extensions │ │ │ │ ├── ShpfySalesShipmentUpdate.PageExt.al │ │ │ │ └── ShpfyShippingAgents.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyOrderShippingCharges.Page.al │ │ │ │ └── ShpfyShipmentMethodsMapping.Page.al │ │ │ ├── Queries │ │ │ │ └── ShpfyShipmentLocation.Query.al │ │ │ ├── Reports │ │ │ │ └── ShpfySyncShipmToShopify.Report.al │ │ │ ├── Table Extensions │ │ │ │ ├── ShpfySalesShipmentHeader.TableExt.al │ │ │ │ ├── ShpfySalesShipmentLine.TableExt.al │ │ │ │ └── ShpfyShippingAgent.TableExt.al │ │ │ └── Tables │ │ │ │ ├── ShpfyOrderShippingCharges.Table.al │ │ │ │ └── ShpfyShipmentMethodMapping.Table.al │ │ │ ├── Staff │ │ │ ├── Codeunits │ │ │ │ └── ShpfyStaffMemberAPI.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── ShpfyStaffAccountType.Enum.al │ │ │ ├── Pages │ │ │ │ └── ShpfyStaffMapping.Page.al │ │ │ └── Tables │ │ │ │ └── ShpfyStaffMember.Table.al │ │ │ ├── Transactions │ │ │ ├── Codeunits │ │ │ │ ├── ShpfySuggestPayments.Codeunit.al │ │ │ │ └── ShpfyTransactions.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ShpfyTransactionStatus.Enum.al │ │ │ │ └── ShpfyTransactionType.Enum.al │ │ │ ├── Page Extensions │ │ │ │ └── ShpfyCashReceiptJournal.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ShpfyCreditCardCompanies.Page.al │ │ │ │ ├── ShpfyOrderTransactions.Page.al │ │ │ │ ├── ShpfyPaymentMethodsMapping.Page.al │ │ │ │ ├── ShpfyTransactionGateways.Page.al │ │ │ │ └── ShpfyTransactions.Page.al │ │ │ ├── Reports │ │ │ │ └── ShpfySuggestPayments.Report.al │ │ │ ├── Table Extensions │ │ │ │ ├── ShpfyCustLedgerEntry.TableExt.al │ │ │ │ └── ShpfyGenJournalLine.TableExt.al │ │ │ └── Tables │ │ │ │ ├── ShpfyCreditCardCompany.Table.al │ │ │ │ ├── ShpfyOrderTransaction.Table.al │ │ │ │ ├── ShpfyPaymentMethodMapping.Table.al │ │ │ │ ├── ShpfySuggestPayment.Table.al │ │ │ │ └── ShpfyTransactionGateway.Table.al │ │ │ ├── Translations │ │ │ ├── Codeunits │ │ │ │ ├── ICreateTranslation │ │ │ │ │ └── ShpfyCreateTranslProduct.Codeunit.al │ │ │ │ ├── ShpfyTranslationApi.Codeunit.al │ │ │ │ └── ShpfyTranslationMgt.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── ShpfyResourceType.Enum.al │ │ │ ├── Interfaces │ │ │ │ └── ShpfyICreateTranslation.Interface.al │ │ │ ├── Pages │ │ │ │ └── ShpfyLanguages.Page.al │ │ │ └── Tables │ │ │ │ ├── ShpfyLanguage.Table.al │ │ │ │ └── ShpfyTranslation.Table.al │ │ │ └── Webhooks │ │ │ ├── Codeunits │ │ │ ├── ShpfyWebhookNotification.Codeunit.al │ │ │ ├── ShpfyWebhooksAPI.Codeunit.al │ │ │ └── ShpfyWebhooksMgt.Codeunit.al │ │ │ └── Enums │ │ │ └── ShpfyWebhookTopic.Enum.al │ ├── AppStoreListing │ │ ├── Listing-translation.da-DK.json │ │ ├── Listing-translation.de-DE.json │ │ ├── Listing-translation.en-us.json │ │ ├── Listing-translation.es-ES.json │ │ ├── Listing-translation.fi-FI.json │ │ ├── Listing-translation.fr-FR.json │ │ ├── Listing-translation.it-IT.json │ │ ├── Listing-translation.nb-NO.json │ │ ├── Listing-translation.nl-NL.json │ │ └── Listing-translation.sv-SE.json │ ├── README.md │ ├── Shopify.code-workspace │ ├── Test │ │ ├── .resources │ │ │ ├── Bulk Operations │ │ │ │ ├── BulkMutationResponse.txt │ │ │ │ ├── BulkOperationCompletedResult.txt │ │ │ │ ├── BulkOperationResult.txt │ │ │ │ ├── CurrentBulkOperationCompletedResult.txt │ │ │ │ ├── CurrentBulkOperationRunningResult.txt │ │ │ │ ├── StagedUploadFailedResult.txt │ │ │ │ └── StagedUploadResult.txt │ │ │ ├── Catalogs │ │ │ │ ├── CatalogMarkets1.txt │ │ │ │ ├── CatalogMarkets2.txt │ │ │ │ ├── CatalogMarkets3.txt │ │ │ │ ├── CatalogPriceResponse.txt │ │ │ │ ├── CatalogPrices.txt │ │ │ │ ├── CatalogPricesUpdate.txt │ │ │ │ ├── CatalogProducts.txt │ │ │ │ ├── CatalogResponse.txt │ │ │ │ └── MarketCatalogResponse.txt │ │ │ ├── Companies │ │ │ │ ├── CompanyAssignContact.txt │ │ │ │ ├── CompanyAssignContactRole.txt │ │ │ │ ├── CompanyCreateRequest.txt │ │ │ │ ├── CompanyLocationUpdateRequest.txt │ │ │ │ ├── CompanyLocations.txt │ │ │ │ ├── CompanyMainContactResponse.txt │ │ │ │ ├── CompanyResponse.txt │ │ │ │ └── CompanyUpdateRequest.txt │ │ │ ├── Invoices │ │ │ │ ├── DraftOrderCompleteResult.txt │ │ │ │ ├── DraftOrderCreationResult.txt │ │ │ │ ├── DraftOrderEmptyResult.txt │ │ │ │ ├── FulfillmentCreateResult.txt │ │ │ │ └── FulfillmentOrderResult.txt │ │ │ ├── Locations │ │ │ │ └── FulfillmentServiceUpdateResponse.txt │ │ │ ├── Logs │ │ │ │ ├── CustomersResult.txt │ │ │ │ ├── EmptyCatalogProductsResponse.txt │ │ │ │ ├── FulfillmentFailedResult.txt │ │ │ │ ├── ProductMetafieldsEmptyResult.txt │ │ │ │ └── VariantMetafieldEmptyResult.txt │ │ │ ├── Metafields │ │ │ │ └── CustomersResult.txt │ │ │ ├── Order Handling │ │ │ │ ├── CompanyLocationResult.txt │ │ │ │ └── OrderTransactionResult.txt │ │ │ ├── Products │ │ │ │ ├── CreatedProductResponse.txt │ │ │ │ ├── CreatedVariantResponse.txt │ │ │ │ ├── DefaultProductCollectionResponse.txt │ │ │ │ ├── DefaultSalesChannelResponse.txt │ │ │ │ ├── DefaultVariantResponse.txt │ │ │ │ ├── EmptyPublishResponse.txt │ │ │ │ ├── ProductDetailsResponse.txt │ │ │ │ ├── ProductMultipleOptionsResponse.txt │ │ │ │ ├── ProductOptionsResponse.txt │ │ │ │ ├── ProductVariantDetailsResponse.txt │ │ │ │ └── ProductVariantsResponse.txt │ │ │ ├── Shipping │ │ │ │ └── FulfillmentOrderAcceptResponse.txt │ │ │ └── Staff │ │ │ │ └── StaffMembers.txt │ │ ├── Base │ │ │ ├── ShpfyChecklistInitTest.Codeunit.al │ │ │ ├── ShpfyConnectorGuideTest.Codeunit.al │ │ │ ├── ShpfyFilterMgtTest.Codeunit.al │ │ │ ├── ShpfyInitializeTest.Codeunit.al │ │ │ └── ShpfyTestShopify.Codeunit.al │ │ ├── Bulk Operations │ │ │ ├── Codeunits │ │ │ │ ├── ShpfyBulkOpSubscriber.Codeunit.al │ │ │ │ ├── ShpfyBulkOperationsTest.Codeunit.al │ │ │ │ └── ShpfyMockBulkProductCreate.Codeunit.al │ │ │ └── Enum Extensions │ │ │ │ └── ShpfyBulkOperationType.EnumExt.al │ │ ├── Catalogs │ │ │ ├── ShpfyCatalogAPISubscribers.Codeunit.al │ │ │ ├── ShpfyCatalogAPITest.Codeunit.al │ │ │ ├── ShpfyCatalogInitialize.Codeunit.al │ │ │ ├── ShpfyCatalogPricesTest.Codeunit.al │ │ │ └── ShpfyMarketCatalogAPITest.Codeunit.al │ │ ├── Companies │ │ │ ├── ShpfyCompanyAPISubs.Codeunit.al │ │ │ ├── ShpfyCompanyAPITest.Codeunit.al │ │ │ ├── ShpfyCompanyExportTest.Codeunit.al │ │ │ ├── ShpfyCompanyImportSubs.Codeunit.al │ │ │ ├── ShpfyCompanyImportTest.Codeunit.al │ │ │ ├── ShpfyCompanyInitialize.Codeunit.al │ │ │ ├── ShpfyCompanyLocationsTest.Codeunit.al │ │ │ ├── ShpfyCompanyMappingSubs.Codeunit.al │ │ │ ├── ShpfyCompanyMappingTest.Codeunit.al │ │ │ └── ShpfyTaxIdMappingTest.Codeunit.al │ │ ├── Customers │ │ │ ├── ShpfyCountySourceTest.Codeunit.al │ │ │ ├── ShpfyCreateCustomerTest.Codeunit.al │ │ │ ├── ShpfyCustomerAPITest.Codeunit.al │ │ │ ├── ShpfyCustomerExportTest.Codeunit.al │ │ │ ├── ShpfyCustomerGetNameTest.Codeunit.al │ │ │ ├── ShpfyCustomerInitTest.Codeunit.al │ │ │ └── ShpfyCustomerMappingTest.Codeunit.al │ │ ├── ExtensionLogo.png │ │ ├── Gift Cards │ │ │ └── ShpfyGiftCardsTest.Codeunit.al │ │ ├── GraphQL │ │ │ └── ShpfyGraphQLRateLimitTest.Codeunit.al │ │ ├── Helpers │ │ │ ├── ShpfyBase64Test.Codeunit.al │ │ │ ├── ShpfyHashTest.Codeunit.al │ │ │ ├── ShpfyJsonHelperTest.Codeunit.al │ │ │ └── Tables │ │ │ │ └── ShpfyTestFields.Table.al │ │ ├── Integration │ │ │ ├── Codeunit │ │ │ │ └── ShpfyConstToReturn.Codeunit.al │ │ │ └── EnumExt │ │ │ │ └── ShpfyStockCalculationExt.EnumExt.al │ │ ├── Inventory │ │ │ ├── ShpfyInventoryAPITest.Codeunit.al │ │ │ ├── ShpfyInventorySyncTest.Codeunit.al │ │ │ ├── ShpfyLocationSubcriber.Codeunit.al │ │ │ └── ShpfyTestLocations.Codeunit.al │ │ ├── Invoices │ │ │ ├── ShpfyInvoicesAPISubscriber.Codeunit.al │ │ │ └── ShpfyInvoicesTest.Codeunit.al │ │ ├── Logs │ │ │ ├── ShpfySkippedRecordLogSub.Codeunit.al │ │ │ └── ShpfySkippedRecordLogTest.Codeunit.al │ │ ├── Metafields │ │ │ ├── ShpfyCompanyMetafieldsSubs.Codeunit.al │ │ │ ├── ShpfyCompanyMetafieldsTest.Codeunit.al │ │ │ ├── ShpfyCustomerMetafieldsSubs.Codeunit.al │ │ │ ├── ShpfyCustomerMetafieldsTest.Codeunit.al │ │ │ └── ShpfyMetafieldsHelper.Codeunit.al │ │ ├── Order Fulfillments │ │ │ └── ShpfyOrderFulfillmentsTest.Codeunit.al │ │ ├── Order Handling │ │ │ ├── ShpfyOrderHandlingHelper.Codeunit.al │ │ │ ├── ShpfyOrderTest.Codeunit.al │ │ │ ├── ShpfyOrdersAPISubscriber.Codeunit.al │ │ │ └── ShpfyOrdersAPITest.Codeunit.al │ │ ├── Order Refunds │ │ │ ├── ShpfyOrderRefundTest.Codeunit.al │ │ │ └── ShpfyOrderRefundsHelper.Codeunit.al │ │ ├── Order Risks │ │ │ └── ShpfyOrderRisksTest.Codeunit.al │ │ ├── Payments │ │ │ ├── ShpfyPaymentsTest.Codeunit.al │ │ │ └── ShpfySuggestPaymentTest.Codeunit.al │ │ ├── Permission Sets │ │ │ └── ShopifyTest.PermissionSet.al │ │ ├── Products │ │ │ ├── ShpfyCreateItemAPITest.Codeunit.al │ │ │ ├── ShpfyCreateItemAsVariantSub.Codeunit.al │ │ │ ├── ShpfyCreateItemTest.Codeunit.al │ │ │ ├── ShpfyCreateItemVariantTest.Codeunit.al │ │ │ ├── ShpfyCreateProductTest.Codeunit.al │ │ │ ├── ShpfyItemReferenceMgtTest.Codeunit.al │ │ │ ├── ShpfyProdCollectionHelper.Codeunit.al │ │ │ ├── ShpfyProductCollectionSubs.Codeunit.al │ │ │ ├── ShpfyProductCollectionTest.Codeunit.al │ │ │ ├── ShpfyProductInitTest.Codeunit.al │ │ │ ├── ShpfyProductMappingTest.Codeunit.al │ │ │ ├── ShpfyProductPriceCalcTest.Codeunit.al │ │ │ ├── ShpfySalesChannelHelper.Codeunit.al │ │ │ ├── ShpfySalesChannelSubs.Codeunit.al │ │ │ └── ShpfySalesChannelTest.Codeunit.al │ │ ├── Shipping │ │ │ ├── ShpfyShippingChargesTest.Codeunit.al │ │ │ ├── ShpfyShippingHelper.Codeunit.al │ │ │ └── ShpfyShippingTest.Codeunit.al │ │ ├── Staff │ │ │ └── ShpfyStaffTest.Codeunit.al │ │ ├── Webhooks │ │ │ ├── ShpfyWebhooksSubscriber.Codeunit.al │ │ │ └── ShpfyWebhooksTest.Codeunit.al │ │ └── app.json │ └── extensibility_examples.md │ ├── SimplifiedBankStatementImport │ ├── App │ │ ├── .objidconfig │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ │ ├── SBSIEdit.PermissionSet.al │ │ │ ├── SBSIObjects.PermissionSet.al │ │ │ ├── SBSIRead.PermissionSet.al │ │ │ ├── d365accpayablesbsi.permissionsetext.al │ │ │ ├── d365accreceivablesbsi.permissionsetext.al │ │ │ ├── d365bankingsbsi.permissionsetext.al │ │ │ ├── d365basicisvsbsi.permissionsetext.al │ │ │ ├── d365basicsbsi.permissionsetext.al │ │ │ ├── d365busfullaccesssbsi.permissionsetext.al │ │ │ ├── d365buspremiumsbsi.permissionsetext.al │ │ │ ├── d365financialrepsbsi.permissionsetext.al │ │ │ ├── d365fullaccesssbsi.permissionsetext.al │ │ │ ├── d365readsbsi.permissionsetext.al │ │ │ ├── d365setupsbsi.permissionsetext.al │ │ │ ├── d365teammembersbsi.permissionsetext.al │ │ │ ├── intelligentcloudsbsi.permissionsetext.al │ │ │ └── simplifiedbankstatimport.permissionset.al │ │ ├── app.json │ │ └── src │ │ │ ├── codeunits │ │ │ └── BankStatementFileWizard.Codeunit.al │ │ │ ├── pages │ │ │ ├── BankAccountCardExtension.PageExt.al │ │ │ ├── BankExpImpSetupExtension.PageExt.al │ │ │ ├── BankStatementFileWizard.Page.al │ │ │ └── BankStatementImportPreview.Page.al │ │ │ └── tables │ │ │ └── BankStatementImportPreview.Table.al │ └── Test │ │ ├── ExtensionLogo.png │ │ ├── app.json │ │ └── src │ │ └── BankStmtFileWizardTests.Codeunit.al │ ├── Subscription Billing │ ├── App │ │ ├── APIs │ │ │ └── Pages │ │ │ │ ├── ArchivedBillingLinesAPI.Page.al │ │ │ │ ├── BillingLinesAPI.Page.al │ │ │ │ ├── ContrAnalysisEntriesAPI.Page.al │ │ │ │ ├── CustContractDeferralAPI.Page.al │ │ │ │ ├── CustomerContractLinesAPI.Page.al │ │ │ │ ├── CustomerContractsAPI.Page.al │ │ │ │ ├── GeneralLedgerSetupAPI.Page.al │ │ │ │ ├── SalesPersonAPI.Page.al │ │ │ │ ├── SalesServiceCommitmentsAPI.Page.al │ │ │ │ ├── ServiceCommitmentsAPI.Page.al │ │ │ │ ├── ServiceObjectAPI.Page.al │ │ │ │ ├── UsageDataGenericImportAPI.Page.al │ │ │ │ ├── UsageDataImportAPI.Page.al │ │ │ │ ├── VendContractDeferralsAPI.Page.al │ │ │ │ ├── VendorContractLinesAPI.Page.al │ │ │ │ └── VendorContractsAPI.Page.al │ │ ├── Base │ │ │ ├── Codeunits │ │ │ │ ├── ContactManagement.Codeunit.al │ │ │ │ ├── CustomerManagement.Codeunit.al │ │ │ │ ├── DateFormulaManagement.Codeunit.al │ │ │ │ ├── DateTimeManagement.Codeunit.al │ │ │ │ ├── DimensionMgt.Codeunit.al │ │ │ │ ├── PersonalizationDataMgmt.Codeunit.al │ │ │ │ ├── ReportFormatting.Codeunit.al │ │ │ │ ├── SubBillingActivitiesCue.Codeunit.al │ │ │ │ ├── SubBillingInstallation.Codeunit.al │ │ │ │ ├── SubContractNotifications.Codeunit.al │ │ │ │ ├── SubContractsGeneralMgt.Codeunit.al │ │ │ │ ├── SubContractsItemManagement.Codeunit.al │ │ │ │ ├── TableAndFieldManagement.codeunit.al │ │ │ │ ├── TextManagement.Codeunit.al │ │ │ │ ├── UpgradeSubscriptionBilling.Codeunit.al │ │ │ │ └── VendorManagement.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ContractLineType.Enum.al │ │ │ │ ├── DateFormulaType.Enum.al │ │ │ │ ├── InvoiceDetailOrigin.Enum.al │ │ │ │ ├── ServStartDateForInvPick.Enum.al │ │ │ │ └── ServicePartner.Enum.al │ │ │ ├── Page Extensions │ │ │ │ ├── BusinessManagerRC.PageExt.al │ │ │ │ ├── GeneralLedgerEntries.PageExt.al │ │ │ │ ├── GeneralLedgerSetup.PageExt.al │ │ │ │ ├── GeneralPostingSetup.PageExt.al │ │ │ │ ├── GeneralPostingSetupCard.PageExt.al │ │ │ │ ├── JobProjectManagerRC.PageExt.al │ │ │ │ ├── OrderProcessorRC.PageExt.al │ │ │ │ ├── SalesMarketingMgrRC.PageExt.al │ │ │ │ ├── ServiceDispatcherRC.PageExt.al │ │ │ │ └── SourceCodeSetup.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ChangeDate.Page.al │ │ │ │ ├── ContactBillingFactbox.Page.al │ │ │ │ ├── ContractTypes.Page.al │ │ │ │ ├── FieldTranslations.Page.al │ │ │ │ ├── ServiceContractSetup.Page.al │ │ │ │ ├── SubBillingActivities.Page.al │ │ │ │ ├── SubBillingHeadlineRC.Page.al │ │ │ │ ├── SubBillingRoleCenter.Page.al │ │ │ │ └── TextViewer.Page.al │ │ │ ├── Table Extensions │ │ │ │ ├── GLEntry.TableExt.al │ │ │ │ ├── GenJournalLine.TableExt.al │ │ │ │ ├── GeneralLedgerSetup.TableExt.al │ │ │ │ ├── GeneralPostingSetup.TableExt.al │ │ │ │ └── SourceCodeSetup.TableExt.al │ │ │ └── Tables │ │ │ │ ├── FieldTranslation.Table.al │ │ │ │ ├── SubscriptionBillingCue.Table.al │ │ │ │ ├── SubscriptionContractSetup.Table.al │ │ │ │ └── SubscriptionContractType.Table.al │ │ ├── Billing │ │ │ ├── Codeunits │ │ │ │ ├── BillingCorrection.Codeunit.al │ │ │ │ ├── BillingProposal.Codeunit.al │ │ │ │ ├── CreateBillingDocuments.Codeunit.al │ │ │ │ ├── DocumentChangeManagement.Codeunit.al │ │ │ │ ├── PurchaseDocuments.Codeunit.al │ │ │ │ ├── SalesDocuments.Codeunit.al │ │ │ │ └── SubContractBillingPrintout.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ContractBillingGrouping.Enum.al │ │ │ │ ├── ContractDetailOverview.Enum.al │ │ │ │ ├── ContractInvoiceTextType.Enum.al │ │ │ │ ├── ContractOriginNameType.Enum.al │ │ │ │ ├── CustomerRecBillingGrouping.Enum.al │ │ │ │ ├── InvoicingVia.Enum.al │ │ │ │ ├── Process.Enum.al │ │ │ │ ├── RecBillingDocumentType.Enum.al │ │ │ │ └── VendorRecBillingGrouping.Enum.al │ │ │ ├── Page Extensions │ │ │ │ ├── PostedPurchCrMemoSubform.PageExt.al │ │ │ │ ├── PostedPurchInvSubform.PageExt.al │ │ │ │ ├── PostedSalesCrMemoSubform.PageExt.al │ │ │ │ ├── PostedSalesCreditMemo.PageExt.al │ │ │ │ ├── PostedSalesCreditMemos.PageExt.al │ │ │ │ ├── PostedSalesInvoice.PageExt.al │ │ │ │ ├── PostedSalesInvoiceSubform.PageExt.al │ │ │ │ ├── PostedSalesInvoices.PageExt.al │ │ │ │ ├── PurchCrMemoSubform.PageExt.al │ │ │ │ ├── PurchInvoiceSubform.PageExt.al │ │ │ │ ├── PurchaseInvoice.PageExt.al │ │ │ │ ├── SalesCrMemoSubform.PageExt.al │ │ │ │ ├── SalesCreditMemo.PageExt.al │ │ │ │ ├── SalesCreditMemos.PageExt.al │ │ │ │ ├── SalesInvoice.PageExt.al │ │ │ │ ├── SalesInvoiceList.PageExt.al │ │ │ │ └── SalesInvoiceSubform.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ArchivedBillingLines.Page.al │ │ │ │ ├── ArchivedBillingLinesList.Page.al │ │ │ │ ├── BillingLines.Page.al │ │ │ │ ├── BillingLinesList.Page.al │ │ │ │ ├── BillingTemplates.Page.al │ │ │ │ ├── CreateBillingDocument.Page.al │ │ │ │ ├── CreateCustomerBillingDocs.Page.al │ │ │ │ ├── CreateVendorBillingDocs.Page.al │ │ │ │ └── RecurringBilling.Page.al │ │ │ ├── Report Extensions │ │ │ │ ├── ContractStandSalesCrMemo.ReportExt.al │ │ │ │ ├── ContractStandardSalesInv.ReportExt.al │ │ │ │ └── Layouts │ │ │ │ │ ├── SalesInvoiceForSubscriptionBilling.docx │ │ │ │ │ └── SalesInvoiceForSubscriptionBilling.rdlc │ │ │ ├── Table Extensions │ │ │ │ ├── PurchCrMemoHdr.TableExt.al │ │ │ │ ├── PurchCrMemoLine.TableExt.al │ │ │ │ ├── PurchInvHeader.TableExt.al │ │ │ │ ├── PurchInvLine.TableExt.al │ │ │ │ ├── SalesCrMemoHeader.TableExt.al │ │ │ │ ├── SalesCrMemoLine.TableExt.al │ │ │ │ ├── SalesInvoiceHeader.TableExt.al │ │ │ │ └── SalesInvoiceLine.TableExt.al │ │ │ └── Tables │ │ │ │ ├── BillingLine.Table.al │ │ │ │ ├── BillingLineArchive.Table.al │ │ │ │ └── BillingTemplate.Table.al │ │ ├── Contract Price Update │ │ │ ├── Codeunits │ │ │ │ ├── CalculationBaseByPerc.Codeunit.al │ │ │ │ ├── PriceByPercent.Codeunit.al │ │ │ │ ├── PriceUpdateManagement.Codeunit.al │ │ │ │ ├── ProcessPriceUpdate.Codeunit.al │ │ │ │ └── RecentItemPrice.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── PriceUpdateMethod.Enum.al │ │ │ │ └── TypeOfPriceUpdate.Enum.al │ │ │ ├── Interfaces │ │ │ │ └── ContractPriceUpdate.Interface.al │ │ │ ├── Pages │ │ │ │ ├── ContractPriceUpdate.Page.al │ │ │ │ └── PriceUpdateTemplates.Page.al │ │ │ └── Tables │ │ │ │ ├── PriceUpdateTemplate.Table.al │ │ │ │ └── SubContrPriceUpdateLine.Table.al │ │ ├── Contract Renewal │ │ │ ├── Codeunits │ │ │ │ ├── CreateSubContractRenewal.Codeunit.al │ │ │ │ ├── PostSubContractRenewal.Codeunit.al │ │ │ │ ├── SubContrRenewalSubcribers.Codeunit.al │ │ │ │ └── SubContractRenewalMgt.Codeunit.al │ │ │ ├── Pages │ │ │ │ ├── ContractRenewal.Page.al │ │ │ │ ├── ContractRenewalLines.Page.al │ │ │ │ ├── ContractRenewalSelection.Page.al │ │ │ │ └── PlannedServiceCommitments.Page.al │ │ │ ├── Reports │ │ │ │ └── SelectContractRenewal.Report.al │ │ │ └── Tables │ │ │ │ ├── PlannedSubscriptionLine.Table.al │ │ │ │ └── SubContractRenewalLine.Table.al │ │ ├── ContractAnalysis │ │ │ ├── ContractAnalysisEntries.Page.al │ │ │ ├── CreateContractAnalysis.Report.al │ │ │ └── SubContrAnalysisEntry.Table.al │ │ ├── Customer Contracts │ │ │ ├── Codeunits │ │ │ │ ├── CustSubContrDimMgt.Codeunit.al │ │ │ │ └── ExtendSubContractMgt.Codeunit.al │ │ │ ├── Page Extensions │ │ │ │ ├── ContractContactCard.PageExt.al │ │ │ │ ├── ContractContactList.PageExt.al │ │ │ │ ├── ContractSalesHSellFactbox.PageExt.al │ │ │ │ ├── CustomerCard.PageExt.al │ │ │ │ ├── CustomerLedgerEntries.PageExt.al │ │ │ │ └── CustomerList.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ClosedCustContLineSubp.Page.al │ │ │ │ ├── CustomerContract.Page.al │ │ │ │ ├── CustomerContractLineSubp.Page.al │ │ │ │ ├── CustomerContractLines.Page.al │ │ │ │ ├── CustomerContracts.Page.al │ │ │ │ ├── ExtendContract.Page.al │ │ │ │ ├── SelectCustContractLines.Page.al │ │ │ │ └── ServCommWOCustContract.Page.al │ │ │ ├── Reports │ │ │ │ ├── OverviewOfContractComp.Report.al │ │ │ │ └── OverviewOfContractComponents.xlsx │ │ │ ├── Table Extensions │ │ │ │ ├── ContractsContact.TableExt.al │ │ │ │ ├── ContractsCustomer.TableExt.al │ │ │ │ └── CustLedgerEntry.TableExt.al │ │ │ └── Tables │ │ │ │ ├── CustSubContractLine.Table.al │ │ │ │ └── CustomerSubscriptionContract.Table.al │ │ ├── Deferrals │ │ │ ├── Codeunits │ │ │ │ ├── CustomerDeferralsMngmt.Codeunit.al │ │ │ │ └── VendorDeferralsMngmt.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── CreateContractDeferrals.Enum.al │ │ │ ├── Pages │ │ │ │ ├── CustomerContractDeferrals.Page.al │ │ │ │ └── VendorContractDeferrals.Page.al │ │ │ ├── Reports │ │ │ │ ├── ContractDeferralsRelease.Report.al │ │ │ │ ├── CustContrDefAnalysis.Report.al │ │ │ │ ├── CustContrDefAnalysis.xlsx │ │ │ │ ├── VendContrDefAnalysis.Report.al │ │ │ │ └── VendContrDefAnalysis.xlsx │ │ │ └── Tables │ │ │ │ ├── CustSubContractDeferral.Table.al │ │ │ │ └── VendSubContractDeferral.Table.al │ │ ├── ExtensionLogo.png │ │ ├── Import │ │ │ ├── Codeunits │ │ │ │ ├── CreateCustSubContract.Codeunit.al │ │ │ │ ├── CreateSubContractLine.Codeunit.al │ │ │ │ ├── CreateSubscriptionHeader.Codeunit.al │ │ │ │ └── CreateSubscriptionLine.Codeunit.al │ │ │ ├── Pages │ │ │ │ ├── ImportedCustomerContracts.Page.al │ │ │ │ ├── ImportedServiceCommitments.Page.al │ │ │ │ └── ImportedServiceObjects.Page.al │ │ │ ├── Reports │ │ │ │ ├── CrServCommAndContrL.Report.al │ │ │ │ ├── CreateCustomerContracts.Report.al │ │ │ │ └── CreateServiceObjects.Report.al │ │ │ └── Tables │ │ │ │ ├── ImportedCustSubContract.Table.al │ │ │ │ ├── ImportedSubscriptionHeader.Table.al │ │ │ │ └── ImportedSubscriptionLine.Table.al │ │ ├── Overdue Service Commitments │ │ │ ├── Pages │ │ │ │ └── OverdueServiceCommitments.Page.al │ │ │ ├── Queries │ │ │ │ ├── OverdueCustomerServComm.Query.al │ │ │ │ └── OverdueVendorServComm.Query.al │ │ │ └── Tables │ │ │ │ └── OverdueSubscriptionLine.Table.al │ │ ├── Permission Sets │ │ │ ├── SubBillingAdmin.PermissionSet.al │ │ │ ├── SubBillingAll.PermissionSet.al │ │ │ ├── SubBillingBasic.PermissionSet.al │ │ │ ├── SubBillingD365Basic.PermissionSetExt.al │ │ │ ├── SubBillingD365Setup.PermissionSetExt.al │ │ │ ├── SubBillingD365TeamMember.PermissionSetExt.al │ │ │ ├── SubBillingObjects.PermissionSet.al │ │ │ └── SubBillingUser.PermissionSet.al │ │ ├── Power BI │ │ │ ├── Embedded │ │ │ │ ├── BillingSchedulePowerBI.Page.al │ │ │ │ ├── ChurnAnalysisPowerBI.Page.al │ │ │ │ ├── ContractValAnalysisPowerBI.Page.al │ │ │ │ ├── ContractValueYoYPowerBI.Page.al │ │ │ │ ├── CustomerDeferralsPowerBI.Page.al │ │ │ │ ├── RevbySalespersonPowerBI.Page.al │ │ │ │ ├── RevenueAnalysisPowerBI.Page.al │ │ │ │ ├── RevenueDevelopmentPowerBI.Page.al │ │ │ │ ├── RevenueYoYPowerBI.Page.al │ │ │ │ ├── RevenuebyCustomerPowerBI.Page.al │ │ │ │ ├── RevenuebyItemPowerBI.Page.al │ │ │ │ ├── SalesCostforecastPowerBI.Page.al │ │ │ │ ├── SubBillingReportPowerBI.Page.al │ │ │ │ ├── SubscriptionOverviewPowerBI.Page.al │ │ │ │ └── VendorDeferralsPowerBI.Page.al │ │ │ ├── PowerBISetupSubBilling.TableExt.al │ │ │ ├── SubBillPBIAssistedSetup.PageExt.al │ │ │ ├── SubBillPBIReportsSetup.PageExt.al │ │ │ ├── SubBillPowerBIReports.PermissionsetExt.al │ │ │ └── SubBillingRoleCenter.PageExt.al │ │ ├── Profiles │ │ │ └── SubscriptionBilling.Profile.al │ │ ├── Sales Service Commitments │ │ │ ├── Codeunits │ │ │ │ └── SalesSubscriptionLineMgmt.Codeunit.al │ │ │ ├── Enums │ │ │ │ └── SubBillingSalesLineType.EnumExt.al │ │ │ ├── Page Extensions │ │ │ │ ├── BlanketSalesOrderArchSub.PageExt.al │ │ │ │ ├── BlanketSalesOrderSubform.PageExt.al │ │ │ │ ├── SalesLineFactBox.PageExt.al │ │ │ │ ├── SalesOrderArchiveSubform.PageExt.al │ │ │ │ ├── SalesOrderSubform.PageExt.al │ │ │ │ ├── SalesQuoteArchiveSubform.PageExt.al │ │ │ │ └── SalesQuoteSubform.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── SalesServCommArchiveList.Page.al │ │ │ │ ├── SalesServiceCommitments.Page.al │ │ │ │ └── SalesServiceCommitmentsList.Page.al │ │ │ ├── Report Extensions │ │ │ │ ├── ContractBlanketSalesOrder.ReportExt.al │ │ │ │ ├── ContractSalesOrderConf.ReportExt.al │ │ │ │ ├── ContractStandardSalesQuote.ReportExt.al │ │ │ │ └── Layouts │ │ │ │ │ ├── SalesOrderConfForSubscriptionBilling.docx │ │ │ │ │ ├── SalesOrderConfForSubscriptionBilling.rdlc │ │ │ │ │ ├── SalesQuoteForSubscriptionBilling.docx │ │ │ │ │ └── SalesQuoteForSubscriptionBilling.rdlc │ │ │ ├── Table Extensions │ │ │ │ ├── PurchaseHeader.TableExt.al │ │ │ │ ├── PurchaseLine.TableExt.al │ │ │ │ ├── SalesHeader.TableExt.al │ │ │ │ ├── SalesLine.TableExt.al │ │ │ │ ├── SalesLineArchive.TableExt.al │ │ │ │ └── SalesShipmentLine.TableExt.al │ │ │ └── Tables │ │ │ │ ├── SalesServiceCommitmentBuff.Table.al │ │ │ │ ├── SalesSubLineArchive.Table.al │ │ │ │ └── SalesSubscriptionLine.Table.al │ │ ├── Service Commitments │ │ │ ├── Codeunits │ │ │ │ └── SalesReportPrintoutMgmt.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── CalculationBaseType.Enum.al │ │ │ │ └── PeriodCalculation.Enum.al │ │ │ ├── Pages │ │ │ │ ├── AssignServiceCommPackages.Page.al │ │ │ │ ├── AssignServiceCommitments.Page.al │ │ │ │ ├── AssignedItems.Page.al │ │ │ │ ├── ItemServCommitmentPackages.Page.al │ │ │ │ ├── ItemServCommitmentsFactbox.Page.al │ │ │ │ ├── ItemTemplServCommP.Page.al │ │ │ │ ├── ServiceCommPackageLines.Page.al │ │ │ │ ├── ServiceCommitmentArchive.Page.al │ │ │ │ ├── ServiceCommitmentPackage.Page.al │ │ │ │ ├── ServiceCommitmentPackages.Page.al │ │ │ │ ├── ServiceCommitmentTemplates.Page.al │ │ │ │ ├── ServiceCommitments.Page.al │ │ │ │ └── ServiceCommitmentsList.Page.al │ │ │ └── Tables │ │ │ │ ├── ItemSubscriptionPackage.Table.al │ │ │ │ ├── ItemTemplSubPackage.Table.al │ │ │ │ ├── SubPackageLineTemplate.Table.al │ │ │ │ ├── SubscriptionLine.Table.al │ │ │ │ ├── SubscriptionLineArchive.Table.al │ │ │ │ ├── SubscriptionPackage.Table.al │ │ │ │ └── SubscriptionPackageLine.Table.al │ │ ├── Service Objects │ │ │ ├── Codeunits │ │ │ │ ├── SubscriptionNotifications.Codeunit.al │ │ │ │ └── UpdateSubLinesTermDates.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── ItemServiceCommitmentType.Enum.al │ │ │ │ └── ServiceObjectType.Enum.al │ │ │ ├── Page Extensions │ │ │ │ ├── ItemCard.PageExt.al │ │ │ │ ├── ItemList.PageExt.al │ │ │ │ └── ItemTemplCard.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ExchangeRateSelection.Page.al │ │ │ │ ├── ServObjectAttrValues.Page.al │ │ │ │ ├── ServObjectAttributeValues.Page.al │ │ │ │ ├── ServiceObject.Page.al │ │ │ │ ├── ServiceObjectAttrFactbox.Page.al │ │ │ │ └── ServiceObjects.Page.al │ │ │ ├── Table Extensions │ │ │ │ ├── Item.TableExt.al │ │ │ │ ├── ItemAttributeValue.TableExt.al │ │ │ │ ├── ItemAttributeValueMapping.TableExt.al │ │ │ │ ├── ItemAttributeValueSelection.TableExt.al │ │ │ │ └── ItemTempl.TableExt.al │ │ │ └── Tables │ │ │ │ └── SubscriptionHeader.Table.al │ │ ├── Usage Based Billing │ │ │ ├── Codeunits │ │ │ │ ├── CreateUsageDataBilling.Codeunit.al │ │ │ │ ├── GenericConnectorProcessing.Codeunit.al │ │ │ │ ├── GenericImportMappings.Codeunit.al │ │ │ │ ├── ImportAndProcessUsageData.Codeunit.al │ │ │ │ ├── ProcessUsageDataBilling.Codeunit.al │ │ │ │ ├── ProcessUsageDataImport.Codeunit.al │ │ │ │ ├── UsageBasedBillingInst.Codeunit.al │ │ │ │ ├── UsageBasedBillingMgmt.Codeunit.al │ │ │ │ ├── UsageBasedContrSubscribers.Codeunit.al │ │ │ │ └── UsageBasedDocTypeConv.Codeunit.al │ │ │ ├── Enums │ │ │ │ ├── AdditionalProcessingType.Enum.al │ │ │ │ ├── BillingCycle.Enum.al │ │ │ │ ├── ConnectToSOMethod.Enum.al │ │ │ │ ├── ProcessingStatus.Enum.al │ │ │ │ ├── ProcessingStep.Enum.al │ │ │ │ ├── ServiceObjectAvailability.Enum.al │ │ │ │ ├── UsageBasedBillingDocType.Enum.al │ │ │ │ ├── UsageBasedPricing.Enum.al │ │ │ │ ├── UsageDataReferenceType.Enum.al │ │ │ │ ├── UsageDataSubscriptionStatus.Enum.al │ │ │ │ ├── UsageDataSupplierType.Enum.al │ │ │ │ └── VendorInvoicePer.Enum.al │ │ │ ├── Interfaces │ │ │ │ └── UsageDataProcessing.Interface.al │ │ │ ├── PageExtensions │ │ │ │ ├── ItemReferenceEntries.PageExt.al │ │ │ │ ├── ItemVendorCatalog.PageExt.al │ │ │ │ └── VendorItemCatalog.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ConnectSubscriptionToSO.Page.al │ │ │ │ ├── CreateUsageBCustBDocs.Page.al │ │ │ │ ├── CreateUsageBVendBDocs.Page.al │ │ │ │ ├── GenericImportSettingsCard.Page.al │ │ │ │ ├── UsageDataBillingMetadata.Page.al │ │ │ │ ├── UsageDataBillings.Page.al │ │ │ │ ├── UsageDataBlobs.Page.al │ │ │ │ ├── UsageDataCustomers.Page.al │ │ │ │ ├── UsageDataGenericImport.Page.al │ │ │ │ ├── UsageDataImports.Page.al │ │ │ │ ├── UsageDataSubscriptions.Page.al │ │ │ │ ├── UsageDataSuppReferences.Page.al │ │ │ │ └── UsageDataSuppliers.Page.al │ │ │ ├── TableExtensions │ │ │ │ ├── UsageBasedItemReference.TableExt.al │ │ │ │ └── UsageBasedItemVendor.TableExt.al │ │ │ └── Tables │ │ │ │ ├── GenericImportSettings.Table.al │ │ │ │ ├── UsageDataBilling.Table.al │ │ │ │ ├── UsageDataBillingMetadata.Table.al │ │ │ │ ├── UsageDataBlob.Table.al │ │ │ │ ├── UsageDataGenericImport.Table.al │ │ │ │ ├── UsageDataImport.Table.al │ │ │ │ ├── UsageDataSuppCustomer.Table.al │ │ │ │ ├── UsageDataSuppSubscription.Table.al │ │ │ │ ├── UsageDataSupplier.Table.al │ │ │ │ └── UsageDataSupplierReference.Table.al │ │ ├── Vendor Contracts │ │ │ ├── Page Extensions │ │ │ │ ├── ContrVendorHBuyFactBox.PageExt.al │ │ │ │ ├── VendorCard.PageExt.al │ │ │ │ ├── VendorLedgerEntries.PageExt.al │ │ │ │ └── VendorList.PageExt.al │ │ │ ├── Pages │ │ │ │ ├── ClosedVendContLineSubp.Page.al │ │ │ │ ├── GetVendorContractLines.Page.al │ │ │ │ ├── SelectVendContractLines.Page.al │ │ │ │ ├── ServCommWOVendContract.Page.al │ │ │ │ ├── VendorContract.Page.al │ │ │ │ ├── VendorContractLineSubpage.Page.al │ │ │ │ └── VendorContracts.Page.al │ │ │ ├── Table Extensions │ │ │ │ ├── Vendor.TableExt.al │ │ │ │ └── VendorLedgerEntry.TableExt.al │ │ │ └── Tables │ │ │ │ ├── VendSubContractLine.Table.al │ │ │ │ └── VendorSubscriptionContract.Table.al │ │ └── app.json │ ├── Demo Data │ │ ├── .resources │ │ │ └── USAGE-GENERIC-US.xml │ │ ├── Demo Data │ │ │ ├── 1.Setup Data │ │ │ │ ├── CreateSubBillContrTypes.Codeunit.al │ │ │ │ ├── CreateSubBillGLAccount.Codeunit.al │ │ │ │ ├── CreateSubBillItemTempl.Codeunit.al │ │ │ │ ├── CreateSubBillPrUTemp.Codeunit.al │ │ │ │ ├── CreateSubBillTemplates.Codeunit.al │ │ │ │ ├── CreateSubBillingNoSeries.Codeunit.al │ │ │ │ ├── CreateSubBillingSetup.Codeunit.al │ │ │ │ └── UpdateSubBillPostSetup.Codeunit.al │ │ │ ├── 2.Master Data │ │ │ │ ├── CreateSubBillGenSett.Codeunit.al │ │ │ │ ├── CreateSubBillItem.Codeunit.al │ │ │ │ ├── CreateSubBillPackages.Codeunit.al │ │ │ │ ├── CreateSubBillSTemplate.Codeunit.al │ │ │ │ ├── CreateSubBillSuppRef.Codeunit.al │ │ │ │ └── CreateSubBillSupplier.Codeunit.al │ │ │ ├── 3.Transactions │ │ │ │ ├── CreateSubBillCustContr.Codeunit.al │ │ │ │ ├── CreateSubBillServObj.Codeunit.al │ │ │ │ ├── CreateSubBillUDImport.Codeunit.al │ │ │ │ ├── CreateSubBillUDSubscr.Codeunit.al │ │ │ │ ├── CreateSubBillVendContr.Codeunit.al │ │ │ │ └── InitSubBillJobQueue.Codeunit.al │ │ │ └── SubBillingContosoModule.Codeunit.al │ │ ├── Demo Tool │ │ │ ├── Contoso Helpers │ │ │ │ └── ContosoSubscriptionBilling.Codeunit.al │ │ │ ├── SubBillingContosoDemoData.EnumExt.al │ │ │ ├── SubBillingModuleSetup.Page.al │ │ │ └── SubBillingModuleSetup.Table.al │ │ ├── ExtensionLogo.png │ │ └── app.json │ ├── Subscription Billing.code-workspace │ └── Test │ │ ├── Base │ │ └── ContractTestLibrary.Codeunit.al │ │ ├── Billing │ │ ├── BillingCorrectionTest.Codeunit.al │ │ ├── RecurringBillingDocsTest.Codeunit.al │ │ ├── RecurringBillingTest.Codeunit.al │ │ └── RecurringDiscountTest.Codeunit.al │ │ ├── Contract Price Update │ │ ├── ContractPriceProposalTest.Codeunit.al │ │ └── ContractPriceUpdateTest.Codeunit.al │ │ ├── Contract Renewal │ │ └── ContractRenewalTest.Codeunit.al │ │ ├── Customer Contracts │ │ ├── ContractDimensionsTest.Codeunit.al │ │ ├── ContractsTest.Codeunit.al │ │ ├── ExtendContractTest.Codeunit.al │ │ └── TestCustContractLineSubp.PageExt.al │ │ ├── Deferrals │ │ ├── CustomerDeferralsTest.Codeunit.al │ │ └── VendorDeferralsTest.Codeunit.al │ │ ├── DisabledTests │ │ ├── ContractRenewalTest.json │ │ ├── ContractsTest.json │ │ ├── RecurringBillingDocsTest.json │ │ ├── RecurringBillingTest.json │ │ ├── ServiceCommArchiveTest.json │ │ └── VendorContractsTest.json │ │ ├── ExtensionLogo.png │ │ ├── Import │ │ └── ImpServiceAndContractTest.Codeunit.al │ │ ├── Service Commitments │ │ ├── SalesServiceCommitmentTest.Codeunit.al │ │ ├── ServiceCommArchiveTest.Codeunit.al │ │ ├── ServiceCommDimensions.Codeunit.al │ │ └── ServiceCommitmentTest.Codeunit.al │ │ ├── Service Objects │ │ ├── ItemServCommTest.Codeunit.al │ │ ├── ItemServiceCommTypeTest.Codeunit.al │ │ ├── ServiceObjectTest.Codeunit.al │ │ └── TemplatesTest.Codeunit.al │ │ ├── UBB │ │ ├── GenericImportTest.Codeunit.al │ │ ├── ItemReferenceTest.Codeunit.al │ │ ├── LinkSubscriptionToSOTest.Codeunit.al │ │ ├── UsageBasedBTestLibrary.Codeunit.al │ │ ├── UsageBasedBTestSubscr.Codeunit.al │ │ ├── UsageBasedBillingTest.Codeunit.al │ │ ├── UsageBasedExtendContrTest.Codeunit.al │ │ ├── UsageBasedRebillingTest.Codeunit.al │ │ └── UsageBasedServiceCommTest.Codeunit.al │ │ ├── Vendor Contracts │ │ └── VendorContractsTest.Codeunit.al │ │ └── app.json │ ├── TransactionStorage │ └── App │ │ ├── ExtensionLogo.png │ │ ├── Permissions │ │ ├── D365BasicTransactStorage.PermissionSetExt.al │ │ ├── TransStorEdit.PermissionSet.al │ │ ├── TransStorRead.PermissionSet.al │ │ └── TransactStorageObjects.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ ├── TransStorageErrorHandler.Codeunit.al │ │ ├── TransStorageExportData.Table.al │ │ ├── TransStorageExportStatus.Enum.al │ │ ├── TransStoragePostingState.Codeunit.al │ │ ├── TransStorageScheduleTask.Codeunit.al │ │ ├── TransactStorageExport.Codeunit.al │ │ ├── TransactStorageExportData.Codeunit.al │ │ ├── TransactStorageExportState.Table.al │ │ ├── TransactStorageTableEntry.Table.al │ │ ├── TransactStorageTaskEntry.Table.al │ │ ├── TransactionStorageABS.Codeunit.al │ │ ├── TransactionStorageSetup.Page.al │ │ ├── TransactionStorageSetup.Table.al │ │ └── TransactionStorageUpgrade.Codeunit.al │ └── UKSendRemittanceAdvice │ ├── App │ ├── .objidconfig │ ├── app.json │ ├── extensionlogo.png │ └── src │ │ ├── Permissions │ │ └── UKSRAObjects.PermissionSet.al │ │ ├── SendPmtJnlRemitAdvice.PageExt.al │ │ ├── SendVendLedgerEntryRemitAdvice.PageExt.al │ │ └── SetupRemittanceReports.Codeunit.al │ └── Test │ ├── app.json │ ├── extensionlogo.png │ └── src │ └── SendRemittanceAdvice.Codeunit.al ├── Business Foundation ├── App │ ├── AuditCodes │ │ ├── Permissions │ │ │ ├── AuditCodesAdmin.permissionset.al │ │ │ ├── AuditCodesObjects.permissionset.al │ │ │ ├── AuditCodesRead.permissionset.al │ │ │ └── AuditCodesView.permissionset.al │ │ ├── app.json │ │ └── src │ │ │ ├── Legacy │ │ │ ├── ObsoleteReturnReasonExt.TableExt.al │ │ │ ├── ObsoleteSourceCodeExt.TableExt.al │ │ │ └── ObsoleteSourceCodeSetupExt.TableExt.al │ │ │ ├── ReasonCode.Table.al │ │ │ ├── ReasonCodes.Page.al │ │ │ ├── ReturnReason.Table.al │ │ │ ├── ReturnReasons.Page.al │ │ │ ├── SourceCode.Table.al │ │ │ ├── SourceCodeSetup.Page.al │ │ │ ├── SourceCodeSetup.Table.al │ │ │ └── SourceCodes.Page.al │ ├── Entitlements │ │ ├── AzureADApplicationApi.Entitlement.al │ │ ├── AzureADApplicationAutomation.Entitlement.al │ │ ├── D365BusinessCentralInfrastructure.Entitlement.al │ │ ├── DelegatedAdminagentPartner.Entitlement.al │ │ ├── DelegatedBCAdminAgentPartner.Entitlement.al │ │ ├── DelegatedHelpdeskagentPartner.Entitlement.al │ │ ├── Dynamics365AccountantHub.Entitlement.al │ │ ├── Dynamics365AdminPartner.Entitlement.al │ │ ├── Dynamics365Administrator.Entitlement.al │ │ ├── Dynamics365BusinessCentralBasicFinancials.Entitlement.al │ │ ├── Dynamics365BusinessCentralDevice.Entitlement.al │ │ ├── Dynamics365BusinessCentralDeviceEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentialAttach.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentialEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentials.Entitlement.al │ │ ├── Dynamics365BusinessCentralExternalAccountant.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremium.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremiumEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremiumPartnerSandbox.Entitlement.al │ │ ├── Dynamics365BusinessCentralTeamMember.Entitlement.al │ │ ├── Dynamics365BusinessCentralTeamMemberEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralforIWs.Entitlement.al │ │ ├── InternalAdministrator.Entitlement.al │ │ ├── InternalBCAdministrator.Entitlement.al │ │ └── Microsoft365.Entitlement.al │ ├── ExtensionLogo.png │ ├── NoSeries │ │ ├── NoSeries │ │ │ └── src │ │ │ │ └── Legacy │ │ │ │ ├── NoSeries.rdlc │ │ │ │ └── NoSeriesCheck.rdlc │ │ ├── Permissions │ │ │ ├── NoSeriesAdmin.permissionset.al │ │ │ ├── NoSeriesObjects.permissionset.al │ │ │ ├── NoSeriesRead.permissionset.al │ │ │ └── NoSeriesView.permissionset.al │ │ ├── app.json │ │ ├── readme_refactoring.md │ │ └── src │ │ │ ├── Batch │ │ │ ├── NoSeriesBatch.Codeunit.al │ │ │ └── NoSeriesBatchImpl.Codeunit.al │ │ │ ├── GlobalNoSeries │ │ │ ├── CrossCompanyNoSeries.Codeunit.al │ │ │ ├── CrossCompanyNoSeriesImpl.Codeunit.al │ │ │ └── NoSeriesTenant.Table.al │ │ │ ├── Legacy │ │ │ ├── NoSeries.rdlc │ │ │ ├── NoSeriesCheck.rdlc │ │ │ ├── NoSeriesLineObsolete.TableExt.al │ │ │ ├── NoSeriesLinePurchase.Table.al │ │ │ ├── NoSeriesLineSales.Table.al │ │ │ └── NoSeriesObsolete.TableExt.al │ │ │ ├── Setup │ │ │ ├── NoSeries.Page.al │ │ │ ├── NoSeries.Table.al │ │ │ ├── NoSeriesErrorsImpl.Codeunit.al │ │ │ ├── NoSeriesLine.Table.al │ │ │ ├── NoSeriesLines.Page.al │ │ │ ├── NoSeriesLinesPart.Page.al │ │ │ ├── NoSeriesRelationship.Table.al │ │ │ ├── NoSeriesRelationships.Page.al │ │ │ ├── NoSeriesRelationshipsPart.Page.al │ │ │ ├── NoSeriesSetup.Codeunit.al │ │ │ └── NoSeriesSetupImpl.Codeunit.al │ │ │ ├── Single │ │ │ ├── NoSeries.Codeunit.al │ │ │ ├── NoSeriesImpl.Codeunit.al │ │ │ ├── NoSeriesImplementation.Enum.al │ │ │ ├── NoSeriesSequenceImpl.Codeunit.al │ │ │ ├── NoSeriesSingle.Interface.al │ │ │ └── NoSeriesStatelessImpl.Codeunit.al │ │ │ └── Upgrade │ │ │ ├── NoSeriesInstaller.Codeunit.al │ │ │ ├── NoSeriesUpgrade.Codeunit.al │ │ │ └── NoSeriesUpgradeTags.Codeunit.al │ ├── NoSeriesCopilot │ │ ├── Permissions │ │ │ └── NoSeriesCopilotObjects.permissionset.al │ │ ├── Readme.md │ │ ├── app.json │ │ └── src │ │ │ ├── Copilot │ │ │ ├── NoSeriesCopilotImpl.Codeunit.al │ │ │ ├── NoSeriesExt.PageExt.al │ │ │ ├── NoSeriesGeneration.Page.al │ │ │ ├── NoSeriesGeneration.Table.al │ │ │ ├── NoSeriesGenerationDetail.Table.al │ │ │ ├── NoSeriesGenerationSub.Page.al │ │ │ ├── Search │ │ │ │ └── Classic │ │ │ │ │ └── NoSeriesTextMatchImpl.Codeunit.al │ │ │ ├── Telemetry │ │ │ │ └── NoSeriesCopilotTelemetry.Codeunit.al │ │ │ └── Tools │ │ │ │ ├── NoSeriesCopAddIntent.Codeunit.al │ │ │ │ ├── NoSeriesCopChangeIntent.Codeunit.al │ │ │ │ ├── NoSeriesCopGenerate.Codeunit.al │ │ │ │ ├── NoSeriesCopNxtYrIntent.Codeunit.al │ │ │ │ └── NoSeriesCopToolsImpl.Codeunit.al │ │ │ ├── Register │ │ │ ├── NoSeriesCopilotCap.EnumExt.al │ │ │ ├── NoSeriesCopilotInstall.Codeunit.al │ │ │ └── NoSeriesCopilotRegister.Codeunit.al │ │ │ └── Upgrade │ │ │ └── NoSeriesCopilotUpgrTags.Codeunit.al │ ├── Permissions │ │ ├── BusFoundAdmin.PermissionSet.al │ │ ├── BusFoundEdit.PermissionSet.al │ │ ├── BusFoundObj.PermissionSet.al │ │ ├── BusFoundRead.PermissionSet.al │ │ └── BusFoundView.PermissionSet.al │ ├── README.md │ └── app.json ├── Test Library │ ├── ExtensionLogo.png │ ├── NoSeries │ │ ├── app.json │ │ └── src │ │ │ └── LibraryNoSeries.Codeunit.al │ ├── NoSeriesCopilot │ │ ├── app.json │ │ └── src │ │ │ └── LibraryNoSeriesCopilot.Codeunit.al │ └── app.json └── Test │ ├── DisabledTests │ └── NoSeriesSuggestionsTest.json │ ├── ExtensionLogo.png │ ├── NoSeries │ ├── Permissions │ │ └── NoSeriesTest.PermissionSet.al │ ├── app.json │ └── src │ │ ├── ERMNoSeriesTests.Codeunit.al │ │ ├── NoSeriesBatchTests.Codeunit.al │ │ └── NoSeriesTests.Codeunit.al │ ├── NoSeriesCopilot │ ├── .resources │ │ ├── input_datasets │ │ │ └── NOSERIES-GOOD.yaml │ │ └── test_suites │ │ │ └── NOSERIES-ACCURACY.xml │ ├── app.json │ └── src │ │ ├── Install │ │ └── NoSeriesTestInstall.codeunit.al │ │ └── NoSeriesCopilotAccuTests.Codeunit.al │ └── app.json ├── BusinessFoundation.code-workspace ├── System Application ├── App │ ├── .objidconfig │ ├── AI │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Azure AI Document Intelligence │ │ │ ├── ADIModelType.Enum.al │ │ │ ├── AzureDIImpl.Codeunit.al │ │ │ └── AzureDocumentIntelligence.Codeunit.al │ │ │ ├── Azure OpenAI │ │ │ ├── AOAIAuthorization.Codeunit.al │ │ │ ├── AOAIDeployments.Codeunit.al │ │ │ ├── AOAIDeploymentsImpl.Codeunit.al │ │ │ ├── AOAIModelType.Enum.al │ │ │ ├── AOAIResourceUtilization.Enum.al │ │ │ ├── AOAIToken.Codeunit.al │ │ │ ├── AzureOpenAI.Codeunit.al │ │ │ ├── AzureOpenAIImpl.Codeunit.al │ │ │ ├── Chat Completion │ │ │ │ ├── AOAIChatComplParamsImpl.Codeunit.al │ │ │ │ ├── AOAIChatCompletionParams.Codeunit.al │ │ │ │ ├── AOAIChatMessages.Codeunit.al │ │ │ │ ├── AOAIChatMessagesImpl.Codeunit.al │ │ │ │ ├── AOAIChatRoles.Enum.al │ │ │ │ ├── AOAIToolInvokePreference.Enum.al │ │ │ │ ├── AOAIToolsImpl.Codeunit.al │ │ │ │ └── Tools │ │ │ │ │ └── AOAIFunction.Interface.al │ │ │ ├── Operation Response │ │ │ │ ├── AOAIFunctionResponse.Codeunit.al │ │ │ │ ├── AOAIFunctionResponseStatus.Enum.al │ │ │ │ └── AOAIOperationResponse.Codeunit.al │ │ │ └── Text Completion │ │ │ │ ├── AOAITextCompletionParams.Codeunit.al │ │ │ │ └── AOAITextCompletionParamsImpl.Codeunit.al │ │ │ └── Copilot │ │ │ ├── AzureAIServiceType.Enum.al │ │ │ ├── CopilotAICapabilities.Page.al │ │ │ ├── CopilotAvailability.Enum.al │ │ │ ├── CopilotBillingType.Enum.al │ │ │ ├── CopilotCapEarlyPreview.Page.al │ │ │ ├── CopilotCapabilitiesGA.Page.al │ │ │ ├── CopilotCapabilitiesPreview.Page.al │ │ │ ├── CopilotCapability.Codeunit.al │ │ │ ├── CopilotCapabilityImpl.Codeunit.al │ │ │ ├── CopilotCapabilityInstall.Codeunit.al │ │ │ ├── CopilotCapabilityUpgrade.Codeunit.al │ │ │ ├── CopilotDeactivateCapability.Page.al │ │ │ ├── CopilotNotAvailable.Page.al │ │ │ ├── CopilotNotifications.Codeunit.al │ │ │ ├── CopilotQuota.Codeunit.al │ │ │ ├── CopilotQuotaImpl.Codeunit.al │ │ │ ├── CopilotQuotaUsageType.Enum.al │ │ │ ├── CopilotSettings.Table.al │ │ │ ├── CopilotStatus.Enum.al │ │ │ ├── CopilotTelemetry.Codeunit.al │ │ │ ├── CopilotTelemetryInstall.Codeunit.al │ │ │ ├── CopilotTelemetryUpgrade.Codeunit.al │ │ │ └── Interfaces │ │ │ └── AIServiceName.Interface.al │ ├── ActivityLog │ │ ├── app.json │ │ └── src │ │ │ ├── ActivityLogBuilder.Codeunit.al │ │ │ ├── ActivityLogBuilderImpl.Codeunit.al │ │ │ └── ActivityLogType.Enum.al │ ├── Advanced Settings │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── AdvancedSettingsObjects.PermissionSet.al │ │ │ └── AdvancedSettingsView.PermissionSet.al │ │ └── src │ │ │ ├── AdvancedSettings.Codeunit.al │ │ │ ├── AdvancedSettings.Page.al │ │ │ └── AdvancedSettingsImpl.Codeunit.al │ ├── Agent │ │ ├── ExtensionLogo.png │ │ ├── Interaction │ │ │ ├── AgentMessage.Codeunit.al │ │ │ ├── AgentSession.Codeunit.al │ │ │ ├── AgentTask.Codeunit.al │ │ │ ├── AgentTaskBuilder.Codeunit.al │ │ │ ├── AgentTaskMessageBuilder.Codeunit.al │ │ │ └── Internal │ │ │ │ ├── AgentMessageImpl.Codeunit.al │ │ │ │ ├── AgentTaskBuilderImpl.Codeunit.al │ │ │ │ ├── AgentTaskImpl.Codeunit.al │ │ │ │ ├── AgentTaskList.Page.al │ │ │ │ ├── AgentTaskLogEntryList.Page.al │ │ │ │ ├── AgentTaskMessageCard.Page.al │ │ │ │ ├── AgentTaskMessageList.Page.al │ │ │ │ └── AgentTaskMsgBuilderImpl.Codeunit.al │ │ ├── Monetization │ │ │ └── AgentConsumptionOverview.Page.al │ │ ├── Permissions │ │ │ ├── AgentObjects.PermissionSet.al │ │ │ ├── AgentSystemPermissions.Codeunit.al │ │ │ └── Internal │ │ │ │ └── AgentSystemPermissionsImpl.Codeunit.al │ │ ├── Setup │ │ │ ├── Agent.Codeunit.al │ │ │ ├── AgentAccessControl.Page.al │ │ │ ├── AgentCard.Page.al │ │ │ ├── AgentImpl.Codeunit.al │ │ │ ├── AgentList.Page.al │ │ │ ├── AgentSetup.Codeunit.al │ │ │ ├── AgentSetupBuffer.Table.al │ │ │ ├── AgentSetupImpl.Codeunit.al │ │ │ ├── AgentSetupPart.Page.al │ │ │ ├── AgentUserSettings.Page.al │ │ │ ├── AgentUserSubform.PageExt.al │ │ │ └── SelectAgentAccessControl.Page.al │ │ ├── TaskPane │ │ │ ├── AgentTaskDetails.Page.al │ │ │ ├── AgentTaskTimeline.Page.al │ │ │ └── AgentTasks.Page.al │ │ ├── app.json │ │ └── dotnet.al │ ├── AppSource Gallery │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AppSourceExtensionManagement.PageExt.al │ │ │ ├── AppSourceJsonUtilities.Codeunit.al │ │ │ ├── AppSourceProduct.Table.al │ │ │ ├── AppSourceProductDetails.Page.al │ │ │ ├── AppSourceProductList.Page.al │ │ │ ├── AppSourceProductManager.Codeunit.al │ │ │ ├── AppSourceProductManagerDependencies.Interface.al │ │ │ └── AppSrcProductDepsProvider.Codeunit.al │ ├── Auto Format │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AutoFormat.Codeunit.al │ │ │ ├── AutoFormat.Enum.al │ │ │ └── AutoFormatImpl.Codeunit.al │ ├── Azure AD Graph │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AzureADGraph.Codeunit.al │ │ │ └── AzureADGraphImpl.Codeunit.al │ ├── Azure AD Licensing │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AzureADLicensing.Codeunit.al │ │ │ └── AzureADLicensingImpl.Codeunit.al │ ├── Azure AD Plan │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── AzureADPlanAdmin.PermissionSet.al │ │ │ ├── AzureADPlanObjects.PermissionSet.al │ │ │ ├── AzureADPlanRead.PermissionSet.al │ │ │ └── AzureADPlanView.PermissionSet.al │ │ └── src │ │ │ ├── AzureADPlan.Codeunit.al │ │ │ ├── AzureADPlanImpl.Codeunit.al │ │ │ ├── Plan Configuration │ │ │ ├── Custom Permissions │ │ │ │ ├── CustomPermissionSetInPlan.Page.al │ │ │ │ └── CustomPermissionSetInPlan.Table.al │ │ │ ├── Default Permssions │ │ │ │ ├── DefaultPermissionSetInPlan.Page.al │ │ │ │ └── DefaultPermissionSetInPlan.Table.al │ │ │ ├── Microsoft365License.Codeunit.al │ │ │ ├── Microsoft365LicenseImpl.Codeunit.al │ │ │ ├── PermissionSetInPlanBuffer.Table.al │ │ │ ├── PlanConfiguration.Codeunit.al │ │ │ ├── PlanConfiguration.Table.al │ │ │ ├── PlanConfigurationCard.Page.al │ │ │ ├── PlanConfigurationImpl.Codeunit.al │ │ │ ├── PlanConfigurationList.Page.al │ │ │ └── PlanConfigurationsPart.Page.al │ │ │ ├── Plan.Query.al │ │ │ ├── Plan.Table.al │ │ │ ├── PlanIds.Codeunit.al │ │ │ ├── PlanInstaller.Codeunit.al │ │ │ ├── PlanUpgrade.Codeunit.al │ │ │ ├── PlanUpgradeTag.Codeunit.al │ │ │ ├── Plans.Page.al │ │ │ ├── PlansFactBox.Page.al │ │ │ ├── RoleCenterFromPlans.Query.al │ │ │ ├── User Details │ │ │ ├── PlanUserDetails.Codeunit.al │ │ │ ├── PlanUserDetails.PageExt.al │ │ │ └── PlanUserDetails.TableExt.al │ │ │ ├── UserPlan.Table.al │ │ │ ├── UserPlanExperience.Enum.al │ │ │ ├── UserPlanMembers.Page.al │ │ │ ├── UserPlanMembersFactBox.Page.al │ │ │ ├── UserPlansFactBox.Page.al │ │ │ ├── UsersInPlans.Query.al │ │ │ └── dotnet.al │ ├── Azure AD Tenant │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AzureADTenant.Codeunit.al │ │ │ └── AzureADTenantImpl.Codeunit.al │ ├── Azure AD User Management │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── AADUserManagementExec.PermissionSet.al │ │ │ └── AADUserManagementObjects.PermissionSet.al │ │ └── src │ │ │ ├── AzureADUserManagement.Codeunit.al │ │ │ ├── AzureADUserMgmtImpl.Codeunit.al │ │ │ ├── AzureADUserSubscribers.Codeunit.al │ │ │ └── User sync │ │ │ ├── AzureADPermissionChangeAction.Enum.al │ │ │ ├── AzureADUpdateType.Enum.al │ │ │ ├── AzureADUserSyncImpl.Codeunit.al │ │ │ ├── AzureADUserUpdateBuffer.Table.al │ │ │ ├── AzureADUserUpdateEntity.Enum.al │ │ │ ├── AzureADUserUpdateWizard.Page.al │ │ │ └── AzureADUserUpdatesPart.Page.al │ ├── Azure AD User │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── AzureADUserRead.PermissionSet.al │ │ │ └── AzureADUserView.PermissionSet.al │ │ └── src │ │ │ ├── AzureADGraphUser.Codeunit.al │ │ │ └── AzureADGraphUserImpl.Codeunit.al │ ├── Azure Blob Services API │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ABSBlobClient.Codeunit.al │ │ │ ├── ABSClientImpl.Codeunit.al │ │ │ ├── ABSContainer.Table.al │ │ │ ├── ABSContainerClient.Codeunit.al │ │ │ ├── ABSContainerContent.Table.al │ │ │ ├── ABSOperation.Enum.al │ │ │ ├── ABSOperationPayload.Codeunit.al │ │ │ ├── ABSOperationResponse.Codeunit.al │ │ │ ├── API Enums │ │ │ ├── ABSBlobAccessTier.Enum.al │ │ │ ├── ABSBlobExpiryOption.Enum.al │ │ │ ├── ABSBlobPublicAccess.Enum.al │ │ │ ├── ABSBlobResourceType.Enum.al │ │ │ ├── ABSBlobType.Enum.al │ │ │ ├── ABSBlockListType.Enum.al │ │ │ ├── ABSLeaseAction.Enum.al │ │ │ └── ABSRehydratePriority.Enum.al │ │ │ └── Helper │ │ │ ├── ABSContainerContentHelper.Codeunit.al │ │ │ ├── ABSContainerHelper.Codeunit.al │ │ │ ├── ABSFormatHelper.Codeunit.al │ │ │ ├── ABSHelperLibrary.Codeunit.al │ │ │ ├── ABSHttpContentHelper.Codeunit.al │ │ │ ├── ABSHttpHeaderHelper.Codeunit.al │ │ │ ├── ABSOptionalParameters.Codeunit.al │ │ │ ├── ABSURIHelper.Codeunit.al │ │ │ └── ABSWebRequestHelper.Codeunit.al │ ├── Azure File Services API │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AFSDirectoryContent.Table.al │ │ │ ├── AFSFileClient.Codeunit.al │ │ │ ├── AFSFileClientImpl.Codeunit.al │ │ │ ├── AFSHandle.Table.al │ │ │ ├── AFSOperationPayloadImpl.Codeunit.al │ │ │ ├── AFSOperationResponse.Codeunit.al │ │ │ ├── AFSOperationResponseImpl.Codeunit.al │ │ │ ├── AFSOptionalParameters.Codeunit.al │ │ │ ├── AFSOptionalParametersImpl.Codeunit.al │ │ │ ├── API Enums │ │ │ ├── AFSFileAttribute.Enum.al │ │ │ ├── AFSFileLastWriteTime.Enum.al │ │ │ ├── AFSFilePermissionCopyMode.Enum.al │ │ │ ├── AFSFileResourceType.Enum.al │ │ │ ├── AFSLeaseAction.Enum.al │ │ │ ├── AFSOperation.Enum.al │ │ │ ├── AFSProperty.Enum.al │ │ │ └── AFSWrite.Enum.al │ │ │ └── Helper │ │ │ ├── AFSDirectoryContentHelper.Codeunit.al │ │ │ ├── AFSFormatHelper.Codeunit.al │ │ │ ├── AFSHandleHelper.Codeunit.al │ │ │ ├── AFSHttpContentHelper.Codeunit.al │ │ │ ├── AFSHttpHeaderHelper.Codeunit.al │ │ │ ├── AFSURIHelper.Codeunit.al │ │ │ ├── AFSWebRequestHelper.Codeunit.al │ │ │ └── XMLUtilityImpl.Codeunit.al │ ├── Azure Function │ │ ├── AzureFunctions.Codeunit.al │ │ ├── AzureFunctionsAuthentication.Codeunit.al │ │ ├── AzureFunctionsAuthentication.interface.al │ │ ├── AzureFunctionsCodeAuth.Codeunit.al │ │ ├── AzureFunctionsImpl.Codeunit.al │ │ ├── AzureFunctionsOAuth2.Codeunit.al │ │ ├── AzureFunctionsOAuth2Cert.Codeunit.al │ │ ├── AzureFunctionsResponse.Codeunit.al │ │ └── app.json │ ├── Azure Key Vault │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AzureKeyVault.Codeunit.al │ │ │ ├── AzureKeyVaultImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Azure Storage Services Authorization │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AuthFormatHelper.Codeunit.al │ │ │ ├── ReadySAS │ │ │ └── StorServAuthReadySAS.Codeunit.al │ │ │ ├── SAS │ │ │ ├── SASParameters.Table.al │ │ │ ├── SASPermission.Enum.al │ │ │ ├── SASResourceType.Enum.al │ │ │ ├── SASServiceType.Enum.al │ │ │ └── StorServAuthSAS.Codeunit.al │ │ │ ├── SharedKey │ │ │ └── StorServAuthSharedKey.Codeunit.al │ │ │ ├── StorServAuthImpl.Codeunit.al │ │ │ ├── StorageServiceAPIVersion.Enum.al │ │ │ ├── StorageServiceAuthorization.Codeunit.al │ │ │ └── StorageServiceAuthorization.Interface.al │ ├── BLOB Storage │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── BLOBStorageExec.PermissionSet.al │ │ └── src │ │ │ ├── PersistentBlob.Codeunit.al │ │ │ ├── PersistentBlob.Table.al │ │ │ ├── PersistentBlobImpl.Codeunit.al │ │ │ ├── TempBlob.Codeunit.al │ │ │ ├── TempBlob.Table.al │ │ │ ├── TempBlobImpl.Codeunit.al │ │ │ ├── TempBlobList.Codeunit.al │ │ │ └── TempBlobListImpl.Codeunit.al │ ├── Barcode │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Barcode Provider 2D │ │ │ ├── BarcodeEncodeSettings2D.Table.al │ │ │ ├── BarcodeSymbology2D.Enum.al │ │ │ ├── Font │ │ │ │ ├── BarcodeFontEncoder2D.Interface.al │ │ │ │ ├── BarcodeFontProvider2D.Interface.al │ │ │ │ └── BarcodeFontProvider2D.enum.al │ │ │ └── Image │ │ │ │ ├── BarcodeImageEncoder2D.Interface.al │ │ │ │ ├── BarcodeImageProvider2D.Interface.al │ │ │ │ └── BarcodeImageProvider2D.enum.al │ │ │ ├── Barcode Provider │ │ │ ├── BarcodeEncodeSettings.Table.al │ │ │ ├── BarcodeSymbology.Enum.al │ │ │ └── Font │ │ │ │ ├── BarcodeFontEncoder.Interface.al │ │ │ │ ├── BarcodeFontProvider.Enum.al │ │ │ │ └── BarcodeFontProvider.Interface.al │ │ │ ├── Dynamics Barcode Provider │ │ │ ├── Dynamics2DProvider.Codeunit.al │ │ │ └── Encoders │ │ │ │ └── Dynamics2DQRCodeEncoder.Codeunit.al │ │ │ ├── IDAutomation 1D Provider │ │ │ ├── Encoders │ │ │ │ ├── IDA1DCodabarEncoder.Codeunit.al │ │ │ │ ├── IDA1DCode128Encoder.Codeunit.al │ │ │ │ ├── IDA1DCode39Encoder.Codeunit.al │ │ │ │ ├── IDA1DCode93Encoder.Codeunit.al │ │ │ │ ├── IDA1DEAN13Encoder.Codeunit.al │ │ │ │ ├── IDA1DEAN8Encoder.Codeunit.al │ │ │ │ ├── IDA1DI2of5Encoder.Codeunit.al │ │ │ │ ├── IDA1DMSIEncoder.Codeunit.al │ │ │ │ ├── IDA1DPostnetEncoder.Codeunit.al │ │ │ │ ├── IDA1DUPCAEncoder.Codeunit.al │ │ │ │ └── IDA1DUPCEEncoder.Codeunit.al │ │ │ └── IDAutomation1DProvider.Codeunit.al │ │ │ └── IDAutomation 2D Provider │ │ │ ├── Encoders │ │ │ ├── IDA2DAztecEncoder.Codeunit.al │ │ │ ├── IDA2DDataMatrixEncoder.Codeunit.al │ │ │ ├── IDA2DMaxiCodeEncoder.Codeunit.al │ │ │ ├── IDA2DPDF417Encoder.Codeunit.al │ │ │ └── IDA2DQRCodeEncoder.Codeunit.al │ │ │ └── IDAutomation2DProvider.Codeunit.al │ ├── Base64 Convert │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Base64Convert.Codeunit.al │ │ │ └── Base64ConvertImpl.Codeunit.al │ ├── Business Chart │ │ ├── app.json │ │ └── src │ │ │ ├── BusinessChart.Codeunit.al │ │ │ ├── BusinessChartDataType.Enum.al │ │ │ ├── BusinessChartImpl.Codeunit.al │ │ │ └── BusinessChartType.Enum.al │ ├── Camera and Media Interaction │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Camera.Codeunit.al │ │ │ ├── Camera.Page.al │ │ │ ├── CameraImpl.Codeunit.al │ │ │ ├── CameraPageImpl.Codeunit.al │ │ │ ├── FileHelper.Codeunit.al │ │ │ ├── ImageEncoding.Enum.al │ │ │ ├── MediaType.Enum.al │ │ │ ├── MediaUpload.Page.al │ │ │ ├── MediaUploadPageImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Caption Class │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── CaptionClass.Codeunit.al │ │ │ └── CaptionClassImpl.Codeunit.al │ ├── Client Type Management │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ClientTypeManagement.Codeunit.al │ │ │ └── ClientTypeMgtImpl.Codeunit.al │ ├── Confirm Management │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ConfirmManagement.Codeunit.al │ │ │ └── ConfirmManagementImpl.Codeunit.al │ ├── ControlAddIns │ │ ├── Resources │ │ │ ├── BusinessChart │ │ │ │ ├── js │ │ │ │ │ ├── BusinessChartAddIn.js │ │ │ │ │ ├── Recreate.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ └── Startup.js │ │ │ │ └── stylesheets │ │ │ │ │ └── BusinessChartAddIn.css │ │ │ ├── CustomerExperienceSurvey │ │ │ │ └── js │ │ │ │ │ ├── CustomerExperienceSurvey.js │ │ │ │ │ └── CustomerExperienceSurveyStartup.js │ │ │ ├── FlowIntegration │ │ │ │ └── js │ │ │ │ │ ├── FlowIntegration.js │ │ │ │ │ ├── Recreate.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ └── Startup.js │ │ │ ├── OAuthIntegration │ │ │ │ ├── js │ │ │ │ │ ├── OAuthIntegration.js │ │ │ │ │ └── Startup.js │ │ │ │ └── stylesheets │ │ │ │ │ └── OAuthIntegration.css │ │ │ ├── PageReady │ │ │ │ ├── js │ │ │ │ │ └── PageReady.js │ │ │ │ └── stylesheets │ │ │ │ │ └── PageReady.css │ │ │ ├── PowerBIManagement │ │ │ │ ├── js │ │ │ │ │ ├── PowerBIManagement.js │ │ │ │ │ ├── Startup.js │ │ │ │ │ └── powerbi.js │ │ │ │ └── stylesheets │ │ │ │ │ └── PowerBIManagement.css │ │ │ ├── RoleCenterSelector │ │ │ │ ├── js │ │ │ │ │ ├── Recreate.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ ├── RoleCenterSelector.js │ │ │ │ │ └── Startup.js │ │ │ │ └── stylesheets │ │ │ │ │ └── RoleCenterSelector.css │ │ │ ├── SatisfactionSurveyAsync │ │ │ │ └── js │ │ │ │ │ └── SATAsync.js │ │ │ ├── VideoPlayer │ │ │ │ ├── js │ │ │ │ │ ├── Startup.js │ │ │ │ │ └── VideoPlayer.js │ │ │ │ └── stylesheets │ │ │ │ │ └── VideoPlayer.css │ │ │ ├── WaitSpinner │ │ │ │ ├── images │ │ │ │ │ └── spinner.gif │ │ │ │ ├── js │ │ │ │ │ └── WaitSpinner.js │ │ │ │ └── stylesheets │ │ │ │ │ └── spinner.css │ │ │ ├── WebPageViewer │ │ │ │ ├── images │ │ │ │ │ ├── Callback.html │ │ │ │ │ └── Loader.gif │ │ │ │ ├── js │ │ │ │ │ ├── Recreate.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ ├── Startup.js │ │ │ │ │ ├── WebPageViewer.js │ │ │ │ │ └── WebPageViewerHelper.js │ │ │ │ └── stylesheets │ │ │ │ │ └── WebPageViewer.css │ │ │ ├── WelcomeWizard │ │ │ │ ├── images │ │ │ │ │ ├── 01_welcome.png │ │ │ │ │ ├── 02_introduction.png │ │ │ │ │ ├── 03_outlook.png │ │ │ │ │ ├── 04_extensions.png │ │ │ │ │ ├── 05_rolecenter.png │ │ │ │ │ └── GoChecked.png │ │ │ │ ├── js │ │ │ │ │ ├── Recreate.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ ├── Startup.js │ │ │ │ │ └── WelcomeWizard.js │ │ │ │ └── stylesheets │ │ │ │ │ └── WelcomeWizard.css │ │ │ └── emptyScript.js │ │ ├── app.json │ │ └── src │ │ │ ├── BarcodeFailure.Enum.al │ │ │ ├── BarcodeScannerProviderAddIn.ControlAddIn.al │ │ │ ├── BusinessChart.ControlAddin.al │ │ │ ├── CameraBarcodeScannerProviderAddIn.ControlAddIn.al │ │ │ ├── CustomerExperienceSurvey.ControlAddIn.al │ │ │ ├── OAuthControlAddIn.ControlAddIn.al │ │ │ ├── OAuthIntegration.Controladdin.al │ │ │ ├── PageReady.ControlAddin.al │ │ │ ├── PowerBIManagement.ControlAddin.al │ │ │ ├── RoleCenterSelector.ControlAddin.al │ │ │ ├── SatisfactionSurvey.ControlAddin.al │ │ │ ├── SatisfactionSurveyAsync.ControlAddIn.al │ │ │ ├── VideoPlayer.ControlAddin.al │ │ │ ├── WaitSpinner.ControlAddIn.al │ │ │ ├── WebPageViewer.ControlAddin.al │ │ │ └── WelcomeWizard.ControlAddin.al │ ├── Cryptography Management │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── CryptographyMgtObjects.PermissionSet.al │ │ └── src │ │ │ ├── AesCryptoServiceProviderImpl.Codeunit.al │ │ │ ├── CertificateRequest.Codeunit.al │ │ │ ├── CertificateRequestImpl.Codeunit.al │ │ │ ├── CryptographyManagement.Codeunit.al │ │ │ ├── CryptographyManagementImpl.Codeunit.al │ │ │ ├── DESCryptoServiceProvider.Codeunit.al │ │ │ ├── DESCryptoServiceProviderImpl.Codeunit.al │ │ │ ├── DSACryptoServiceProvider.Codeunit.al │ │ │ ├── DSACryptoServiceProviderImpl.Codeunit.al │ │ │ ├── DataEncryptionManagement.Page.al │ │ │ ├── HashAlgorithm.Enum.al │ │ │ ├── RSA.Codeunit.al │ │ │ ├── RSACryptoServiceProvider.Codeunit.al │ │ │ ├── RSACryptoServiceProviderImpl.Codeunit.al │ │ │ ├── RSAImpl.Codeunit.al │ │ │ ├── RSASignaturePadding.Enum.al │ │ │ ├── Rfc2898DeriveBytes.Codeunit.al │ │ │ ├── RijndaelCryptography.Codeunit.al │ │ │ ├── SignatureAlgorithm.Enum.al │ │ │ ├── SignatureAlgorithmv2.Interface.al │ │ │ ├── SignatureKey.Codeunit.al │ │ │ ├── SignatureKeyImpl.Codeunit.al │ │ │ ├── SymmetricAlgorithm.Enum.al │ │ │ ├── SymmetricAlgorithm.Interface.al │ │ │ ├── TripleDESCryptoSvcProvImpl.Codeunit.al │ │ │ ├── X509Certificate2.Codeunit.al │ │ │ ├── X509Certificate2Impl.Codeunit.al │ │ │ ├── X509ContentType.Enum.al │ │ │ ├── Xml │ │ │ ├── EncryptedXml.Codeunit.al │ │ │ ├── EncryptedXmlImpl.Codeunit.al │ │ │ ├── SignedXml.Codeunit.al │ │ │ ├── SignedXmlImpl.Codeunit.al │ │ │ └── XmlDotNetConvert.Codeunit.al │ │ │ └── dotnet.al │ ├── Cues and KPIs │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── CuesandKPIsEdit.PermissionSet.al │ │ │ ├── CuesandKPIsObjects.PermissionSet.al │ │ │ ├── CuesandKPIsRead.PermissionSet.al │ │ │ └── CuesandKPIsView.PermissionSet.al │ │ └── src │ │ │ ├── CueSetup.Table.al │ │ │ ├── CueSetupAdministrator.Page.al │ │ │ ├── CueSetupEndUser.Page.al │ │ │ ├── CuesAndKPIs.Codeunit.al │ │ │ ├── CuesAndKPIsImpl.Codeunit.al │ │ │ └── CuesAndKPIsStyle.Enum.al │ ├── Customer Experience Survey │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── CustomerExperienceSurvey.Codeunit.al │ │ │ ├── CustomerExperienceSurvey.Page.al │ │ │ └── CustomerExperienceSurvey.Table.al │ ├── Data Administration │ │ ├── app.json │ │ ├── permissions │ │ │ ├── DataCleanupAdmin.PermissionSet.al │ │ │ ├── DataCleanupObjects.PermissionSet.al │ │ │ └── DataCleanupView.PermissionSet.al │ │ └── src │ │ │ ├── DetachedMediaCleanup.Page.al │ │ │ ├── MediaCleanup.Codeunit.al │ │ │ ├── MediaCleanupFactbox.Page.al │ │ │ ├── MediaCleanupImpl.Codeunit.al │ │ │ └── MediaCleanupRunner.Codeunit.al │ ├── Data Archive │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── DataArchive.codeunit.al │ │ │ ├── DataArchiveImplementation.codeunit.al │ │ │ └── DataArchiveProvider.Interface.al │ ├── Data Classification │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── DataClassificationEdit.PermissionSet.al │ │ │ ├── DataClassificationObjects.PermissionSet.al │ │ │ └── DataClassificationRead.PermissionSet.al │ │ └── src │ │ │ ├── DataClassificationMgt.Codeunit.al │ │ │ ├── DataClassificationMgtImpl.Codeunit.al │ │ │ ├── DataClassificationWizard.Page.al │ │ │ ├── DataClassificationWorksheet.Page.al │ │ │ ├── DataPrivacyEntities.Table.al │ │ │ ├── DataPrivacyEntitiesMgt.Codeunit.al │ │ │ ├── FieldContentBuffer.Page.al │ │ │ ├── FieldContentBuffer.Table.al │ │ │ ├── FieldDataClassification.Page.al │ │ │ ├── FieldsSyncStatus.Table.al │ │ │ └── FieldsSyncStatusManagement.Codeunit.al │ ├── Data Compression │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── DataCompression.Codeunit.al │ │ │ ├── DataCompressionImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Date and Time │ │ ├── app.json │ │ └── src │ │ │ ├── TimeZone.Codeunit.al │ │ │ ├── TimeZoneImpl.Codeunit.al │ │ │ ├── UnixTimestamp.Codeunit.al │ │ │ └── UnixTimestampImpl.Codeunit.al │ ├── Date-Time Dialog │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── DateTimeDialog.Page.al │ ├── Default Role Center │ │ ├── Permissions │ │ │ ├── DefaultRoleCenterRead.PermissionSet.al │ │ │ └── DefaultRoleCenterView.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Blank.Profile.al │ │ │ ├── BlankRoleCenter.Page.al │ │ │ ├── DefaultRoleCenter.Codeunit.al │ │ │ └── DefaultRoleCenterImpl.Codeunit.al │ ├── Device │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── Device.Query.al │ ├── Document Sharing │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── DocumentSharingObjects.PermissionSet.al │ │ └── src │ │ │ ├── DocSharingConflictBehavior.Enum.al │ │ │ ├── DocumentSharing.Codeunit.al │ │ │ ├── DocumentSharing.Page.al │ │ │ ├── DocumentSharing.Table.al │ │ │ ├── DocumentSharingImpl.Codeunit.al │ │ │ ├── DocumentSharingIntent.Enum.al │ │ │ └── DocumentSharingSource.Enum.al │ ├── DotNet Aliases │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── dotnet.al │ ├── Edit in Excel │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── EditInExcelAdmin.PermissionSet.al │ │ │ ├── EditInExcelRead.PermissionSet.al │ │ │ ├── EditInExcelView.PermissionSet.al │ │ │ └── EditinExcelObjects.PermissionSet.al │ │ └── src │ │ │ ├── EditInExcel.Codeunit.al │ │ │ ├── EditInExcelWorkbook.Codeunit.al │ │ │ ├── EditInExcelWorkbookImpl.Codeunit.al │ │ │ ├── EditinExcelImpl.Codeunit.al │ │ │ ├── EditinExcelSettings.Table.al │ │ │ ├── ExcelCentralizedDeplWizard.Page.al │ │ │ ├── ExcelFilterNodeType.Enum.al │ │ │ └── Filters │ │ │ ├── EditInExcelEdmType.Enum.al │ │ │ ├── EditInExcelFieldFilterv2.Interface.al │ │ │ ├── EditInExcelFilterCollectionType.Enum.al │ │ │ ├── EditInExcelFilterType.Enum.al │ │ │ ├── EditInExcelFilters.Codeunit.al │ │ │ ├── EditInExcelFiltersImpl.Codeunit.al │ │ │ └── EditInExcelFldFilterImpl.Codeunit.al │ ├── Email │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── EmailAdmin.PermissionSet.al │ │ │ ├── EmailEdit.PermissionSet.al │ │ │ ├── EmailObjects.PermissionSet.al │ │ │ └── EmailRead.PermissionSet.al │ │ └── src │ │ │ ├── Account │ │ │ ├── EmailAccount.Codeunit.al │ │ │ ├── EmailAccount.Table.al │ │ │ ├── EmailAccountFolders.Page.al │ │ │ ├── EmailAccountImpl.Codeunit.al │ │ │ ├── EmailAccountWizard.Page.al │ │ │ └── EmailAccounts.Page.al │ │ │ ├── Connector │ │ │ ├── DefaultEmailConnectorv2.Codeunit.al │ │ │ ├── DefaultEmailRateLimit.Codeunit.al │ │ │ ├── DefaultEmailRateLimit.Interface.al │ │ │ ├── EmailConnector.Enum.al │ │ │ ├── EmailConnector.Interface.al │ │ │ ├── EmailConnector.Table.al │ │ │ ├── EmailConnectorLogo.Table.al │ │ │ ├── EmailConnectorv2.Interface.al │ │ │ ├── EmailConnectorv3.Interface.al │ │ │ └── EmailConnectorv4.Interface.al │ │ │ ├── Email │ │ │ ├── Email.Codeunit.al │ │ │ ├── EmailActivities.Codeunit.al │ │ │ ├── EmailActivities.Page.al │ │ │ ├── EmailAttachmens │ │ │ │ ├── EmailAttachments.Table.al │ │ │ │ ├── EmailAttachmentsImpl.Codeunit.al │ │ │ │ ├── EmailChooseScenarioAttach.Page.al │ │ │ │ ├── EmailScenarioAttachImpl.Codeunit.al │ │ │ │ ├── EmailScenarioAttachSetup.Page.al │ │ │ │ └── EmailScenarioAttachments.Table.al │ │ │ ├── EmailDispatcher.Codeunit.al │ │ │ ├── EmailErrorHandler.Codeunit.al │ │ │ ├── EmailImpl.Codeunit.al │ │ │ ├── EmailRecordReferenceImpl.Codeunit.al │ │ │ ├── EmailRelatedRecord.Table.al │ │ │ ├── EmailRelationOrigin.Enum.al │ │ │ ├── EmailRelationPicker.Page.al │ │ │ ├── EmailRelationType.Enum.al │ │ │ ├── EmailRetry.Table.al │ │ │ ├── EmailRetryDetail.Page.al │ │ │ ├── EmailRetryImpl.Codeunit.al │ │ │ ├── Inbox │ │ │ │ ├── EmailFolders.Table.al │ │ │ │ ├── EmailInbox.Table.al │ │ │ │ └── EmailRetrievalFilters.Table.al │ │ │ ├── Outbox │ │ │ │ ├── EmailAction.Enum.al │ │ │ │ ├── EmailEditor.Codeunit.al │ │ │ │ ├── EmailEditor.Page.al │ │ │ │ ├── EmailError.Table.al │ │ │ │ ├── EmailOutbox.Page.al │ │ │ │ ├── EmailOutbox.Table.al │ │ │ │ ├── EmailStatus.Enum.al │ │ │ │ └── OutboxEmails.Query.al │ │ │ ├── SendEmail.Codeunit.al │ │ │ ├── Sent │ │ │ │ ├── EmailViewer.Codeunit.al │ │ │ │ ├── EmailViewer.Page.al │ │ │ │ ├── SentEmail.Table.al │ │ │ │ ├── SentEmails.Page.al │ │ │ │ ├── SentEmails.Query.al │ │ │ │ └── SentEmailsListPart.Page.al │ │ │ └── View Policy │ │ │ │ ├── EmailRelatedRecord.Query.al │ │ │ │ ├── EmailViewPolicy.Codeunit.al │ │ │ │ ├── EmailViewPolicy.Enum.al │ │ │ │ ├── EmailViewPolicy.Interface.al │ │ │ │ ├── EmailViewPolicy.Table.al │ │ │ │ ├── EmailViewPolicyList.Page.al │ │ │ │ └── Policies │ │ │ │ ├── ViewAllEmailsPolicy.Codeunit.al │ │ │ │ ├── ViewIfAllRelatedRecords.Codeunit.al │ │ │ │ ├── ViewIfAnyRelatedRecords.Codeunit.al │ │ │ │ └── ViewOnlyOwnEmailsPolicy.Codeunit.al │ │ │ ├── EmailAttachmentUpgrade.Codeunit.al │ │ │ ├── EmailInstaller.Codeunit.al │ │ │ ├── EmailLogsDelete.Codeunit.al │ │ │ ├── EmailUpgrade.Codeunit.al │ │ │ ├── Lookup │ │ │ ├── EmailAddressEntity.Enum.al │ │ │ ├── EmailAddressLookup.Codeunit.al │ │ │ ├── EmailAddressLookup.Page.al │ │ │ ├── EmailAddressLookup.Table.al │ │ │ └── EmailAddressLookupImpl.Codeunit.al │ │ │ ├── Message │ │ │ ├── EmailAttachments.Page.al │ │ │ ├── EmailMessage.Codeunit.al │ │ │ ├── EmailMessage.Table.al │ │ │ ├── EmailMessageAttachment.Table.al │ │ │ ├── EmailMessageImpl.Codeunit.al │ │ │ ├── EmailRecipient.Table.al │ │ │ ├── EmailRecipientType.Enum.al │ │ │ ├── EmailRelatedAttachment.Table.al │ │ │ └── EmailRelatedAttachments.Page.al │ │ │ ├── RateLimit │ │ │ ├── EmailRateLimit.Table.al │ │ │ ├── EmailRateLimitImpl.Codeunit.al │ │ │ └── EmailRateLimitWizard.Page.al │ │ │ ├── Scenario │ │ │ ├── EmailAccountScenario.Table.al │ │ │ ├── EmailScenario.Codeunit.al │ │ │ ├── EmailScenario.Enum.al │ │ │ ├── EmailScenario.Table.al │ │ │ ├── EmailScenarioImpl.Codeunit.al │ │ │ ├── EmailScenarioSetup.Page.al │ │ │ ├── EmailScenariosFactBox.Page.al │ │ │ └── EmailScenariosForAccount.Page.al │ │ │ └── Test Email │ │ │ ├── EmailTestMail.Codeunit.al │ │ │ └── EmailUserSpecifiedAddress.Page.al │ ├── Encoding │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Encoding.Codeunit.al │ │ │ └── EncodingImpl.Codeunit.al │ ├── Entitlements │ │ ├── AzureADApplicationApi.Entitlement.al │ │ ├── AzureADApplicationAutomation.Entitlement.al │ │ ├── D365BusinessCentralInfrastructure.Entitlement.al │ │ ├── DelegatedAdminagentPartner.Entitlement.al │ │ ├── DelegatedBCAdminAgentPartner.Entitlement.al │ │ ├── DelegatedHelpdeskagentPartner.Entitlement.al │ │ ├── Dynamics365AccountantHub.Entitlement.al │ │ ├── Dynamics365AdminPartner.Entitlement.al │ │ ├── Dynamics365Administrator.Entitlement.al │ │ ├── Dynamics365BusinessCentralBasicFinancials.Entitlement.al │ │ ├── Dynamics365BusinessCentralDevice.Entitlement.al │ │ ├── Dynamics365BusinessCentralDeviceEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentialAttach.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentialEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralEssentials.Entitlement.al │ │ ├── Dynamics365BusinessCentralExternalAccountant.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremium.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremiumEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralPremiumPartnerSandbox.Entitlement.al │ │ ├── Dynamics365BusinessCentralTeamMember.Entitlement.al │ │ ├── Dynamics365BusinessCentralTeamMemberEmbedded.Entitlement.al │ │ ├── Dynamics365BusinessCentralforIWs.Entitlement.al │ │ ├── InternalAdministrator.Entitlement.al │ │ ├── InternalBCAdministrator.Entitlement.al │ │ └── Microsoft365.Entitlement.al │ ├── Entity Text │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── EntityTextEdit.PermissionSet.al │ │ │ ├── EntityTextObjects.PermissionSet.al │ │ │ └── EntityTextView.PermissionSet.al │ │ └── src │ │ │ ├── AzureOpenAiSettings.Table.al │ │ │ ├── EntityText.Codeunit.al │ │ │ ├── EntityTextAIInstall.Codeunit.al │ │ │ ├── EntityTextAIUpgrade.Codeunit.al │ │ │ ├── EntityTextAOAISettings.Codeunit.al │ │ │ ├── EntityTextActions.Enum.al │ │ │ ├── EntityTextCapability.EnumExt.al │ │ │ ├── EntityTextEmphasis.Enum.al │ │ │ ├── EntityTextFactboxPart.Page.al │ │ │ ├── EntityTextFormat.Enum.al │ │ │ ├── EntityTextImpl.Codeunit.al │ │ │ ├── EntityTextPrompts.Codeunit.al │ │ │ ├── EntityTextTone.Enum.al │ │ │ └── FunctionsImpl │ │ │ ├── GenerateProdMktAdFunction.Codeunit.al │ │ │ └── MagicFunction.Codeunit.al │ ├── Environment Cleanup │ │ ├── Permissions │ │ │ └── EnvironmentCleanupRead.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── EnvironmentCleanup.Codeunit.al │ │ │ ├── EnvironmentCleanupImpl.Codeunit.al │ │ │ └── EnvironmentType.Enum.al │ ├── Environment Information │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── EnvInfNotificationImpl.Codeunit.al │ │ │ ├── EnvironmentInformation.Codeunit.al │ │ │ ├── EnvironmentInformationImpl.Codeunit.al │ │ │ ├── TenantInformation.Codeunit.al │ │ │ ├── TenantInformationImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Extension Management │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── ExtenMgtAdmin.PermissionSet.al │ │ │ ├── ExtensionManagementObjects.PermissionSet.al │ │ │ ├── ExtensionManagementRead.PermissionSet.al │ │ │ └── ExtensionManagementView.PermissionSet.al │ │ └── src │ │ │ ├── DataOutOfGeoApp.Codeunit.al │ │ │ ├── DataOutOfGeoAppImpl.Codeunit.al │ │ │ ├── DeleteOrphanedExtensionData.Page.al │ │ │ ├── Extension Generation │ │ │ ├── DataverseTableBuilder.Codeunit.al │ │ │ └── DataverseTableBuilderImpl.Codeunit.al │ │ │ ├── ExtensionDeployTo.Enum.al │ │ │ ├── ExtensionDeploymentStatus.Page.al │ │ │ ├── ExtensionDeploymentStatus.Table.al │ │ │ ├── ExtensionDetails.Page.al │ │ │ ├── ExtensionDetailsPart.Page.al │ │ │ ├── ExtensionInstallation.Page.al │ │ │ ├── ExtensionInstallation.Table.al │ │ │ ├── ExtensionInstallationImpl.Codeunit.al │ │ │ ├── ExtensionLicenseImpl.Codeunit.al │ │ │ ├── ExtensionLogoPart.Page.al │ │ │ ├── ExtensionManagement.Codeunit.al │ │ │ ├── ExtensionManagement.Page.al │ │ │ ├── ExtensionMarketplace.Codeunit.al │ │ │ ├── ExtensionOperationImpl.Codeunit.al │ │ │ ├── ExtensionPendingSetup.Table.al │ │ │ ├── ExtensionSettings.Page.al │ │ │ ├── ExtensionSetupLauncher.Page.al │ │ │ ├── ExtensionSyncMode.Enum.al │ │ │ ├── ExtnDeploymentStatusDetail.Page.al │ │ │ ├── ExtnInstallationProgress.Page.al │ │ │ ├── ExtnOrphanedAppDetails.Page.al │ │ │ ├── MarketplaceExtnDeployment.Page.al │ │ │ ├── UploadAndDeployExtension.Page.al │ │ │ └── dotnet.al │ ├── ExtensionLogo.png │ ├── External File Storage │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── FileStorageAdmin.PermissionSet.al │ │ │ ├── FileStorageEdit.PermissionSet.al │ │ │ ├── FileStorageObjects.PermissionSet.al │ │ │ └── FileStorageRead.PermissionSet.al │ │ └── src │ │ │ ├── Account │ │ │ ├── FileAccount.Codeunit.al │ │ │ ├── FileAccount.Table.al │ │ │ ├── FileAccountImpl.Codeunit.al │ │ │ ├── FileAccountWizard.Page.al │ │ │ └── FileAccounts.Page.al │ │ │ ├── Connector │ │ │ ├── ExtFileStorageConnector.Enum.al │ │ │ ├── ExtFileStorageConnector.Table.al │ │ │ ├── ExternalFileStorageConnector.Interface.al │ │ │ └── FileStorageConnectorLogo.Table.al │ │ │ ├── FileStorage │ │ │ ├── ExternalFileStorage.Codeunit.al │ │ │ └── ExternalFileStorageImpl.Codeunit.al │ │ │ ├── Lookup │ │ │ ├── ExtFileStorageFileType.Enum.al │ │ │ ├── FileAccountBrowserMgt.Codeunit.al │ │ │ ├── FileAccountContent.Table.al │ │ │ ├── FilePaginationData.Codeunit.al │ │ │ ├── FilePaginationDataImpl.Codeunit.al │ │ │ ├── FolderNameInput.Page.al │ │ │ └── StorageBrowser.Page.al │ │ │ └── Scenario │ │ │ ├── FileAccountEntryType.Enum.al │ │ │ ├── FileAccountScenario.Table.al │ │ │ ├── FileScenario.Codeunit.al │ │ │ ├── FileScenario.Enum.al │ │ │ ├── FileScenario.Table.al │ │ │ ├── FileScenarioImpl.Codeunit.al │ │ │ ├── FileScenarioSetup.Page.al │ │ │ ├── FileScenariosFactBox.Page.al │ │ │ └── FileScenariosForAccount.Page.al │ ├── Feature Configuration │ │ ├── app.json │ │ └── src │ │ │ ├── FeatureConfiguration.Codeunit.al │ │ │ └── FeatureConfigurationImpl.Codeunit.al │ ├── Feature Key │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── FeatureKeyAdmin.PermissionSet.al │ │ │ ├── FeatureKeyObjects.PermissionSet.al │ │ │ ├── FeatureKeyRead.PermissionSet.al │ │ │ ├── FeatureKeyView.PermissionSet.al │ │ │ └── FeatureMgtAdmin.PermissionSet.al │ │ └── src │ │ │ ├── FeatureDataErrorHandler.Codeunit.al │ │ │ ├── FeatureDataUpdate.Interface.al │ │ │ ├── FeatureDataUpdateStatus.Table.al │ │ │ ├── FeatureDependency.Table.al │ │ │ ├── FeatureKeyBuffer.Table.al │ │ │ ├── FeatureManagement.Interface.al │ │ │ ├── FeatureManagement.Page.al │ │ │ ├── FeatureManagementFacade.Codeunit.al │ │ │ ├── FeatureManagementImpl.Codeunit.al │ │ │ ├── FeatureStatus.Enum.al │ │ │ ├── FeatureToUpdate.Enum.al │ │ │ ├── ScheduleFeatureDataUpdate.Page.al │ │ │ └── UpdateFeatureData.Codeunit.al │ ├── Field Selection │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── FieldSelectionRead.PermissionSet.al │ │ └── src │ │ │ ├── FieldSelection.Codeunit.al │ │ │ ├── FieldSelectionImpl.Codeunit.al │ │ │ └── FieldsLookup.Page.al │ ├── Filter Tokens │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── FilterTokens.Codeunit.al │ │ │ └── FilterTokensImpl.Codeunit.al │ ├── Geolocation │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Geolocation.Codeunit.al │ │ │ ├── Geolocation.Page.al │ │ │ ├── GeolocationImpl.Codeunit.al │ │ │ └── GeolocationStatus.Enum.al │ ├── Guided Experience │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── GuidedExperienceEdit.PermissionSet.al │ │ │ ├── GuidedExperienceObjects.PermissionSet.al │ │ │ ├── GuidedExperienceRead.PermissionSet.al │ │ │ └── GuidedExperienceView.PermissionSet.al │ │ └── src │ │ │ ├── App Setup │ │ │ └── AppSetupList.Page.al │ │ │ ├── Assisted Setup │ │ │ ├── AssistedSetup.Page.al │ │ │ ├── AssistedSetupGroup.Enum.al │ │ │ ├── AssistedSetupInstallation.Codeunit.al │ │ │ ├── AssistedSetupUpgrade.Codeunit.al │ │ │ └── AssistedSetupUpgradeTag.Codeunit.al │ │ │ ├── Checklist Administration │ │ │ ├── Checklist.Page.al │ │ │ ├── ChecklistAdministration.Codeunit.al │ │ │ ├── ChecklistAdministration.Page.al │ │ │ ├── ChecklistItemRoles.Page.al │ │ │ └── ChecklistItemUsers.Page.al │ │ │ ├── Checklist Banner │ │ │ ├── ChecklistBanner.Codeunit.al │ │ │ ├── ChecklistBanner.Page.al │ │ │ ├── ChecklistBannerImpl.Codeunit.al │ │ │ ├── ChecklistItemBuffer.Table.al │ │ │ └── ChecklistResurfacing.Page.al │ │ │ ├── Checklist Initialization │ │ │ └── ChecklistSetup.Table.al │ │ │ ├── Checklist │ │ │ ├── Checklist.Codeunit.al │ │ │ ├── ChecklistCompletionRequirements.Enum.al │ │ │ ├── ChecklistImplementation.Codeunit.al │ │ │ ├── ChecklistItem.Table.al │ │ │ ├── ChecklistItemRole.Table.al │ │ │ ├── ChecklistItemStatus.Enum.al │ │ │ ├── ChecklistItemUser.Table.al │ │ │ ├── ChecklistStatus.Enum.al │ │ │ └── UserChecklistStatus.Table.al │ │ │ ├── Guided Experience │ │ │ ├── GuidedExperience.Codeunit.al │ │ │ ├── GuidedExperienceImpl.Codeunit.al │ │ │ ├── GuidedExperienceItem.Table.al │ │ │ ├── GuidedExperienceItemCleanup.Codeunit.al │ │ │ ├── GuidedExperienceItemCleanup.Page.al │ │ │ ├── GuidedExperienceItemList.Page.al │ │ │ ├── GuidedExperienceObjectType.Enum.al │ │ │ ├── GuidedExperienceType.Enum.al │ │ │ ├── GuidedExperienceUpgrade.Codeunit.al │ │ │ ├── GuidedExperienceUpgradeTag.Codeunit.al │ │ │ └── PrimaryGuidedExperienceItem.Table.al │ │ │ ├── Manual Setup │ │ │ ├── ManualSetup.Page.al │ │ │ └── ManualSetupCategory.Enum.al │ │ │ ├── Tour │ │ │ ├── SpotlightTour.Codeunit.al │ │ │ ├── SpotlightTourImpl.Codeunit.al │ │ │ ├── SpotlightTourText.Enum.al │ │ │ ├── SpotlightTourText.Table.al │ │ │ └── SpotlightTourType.Enum.al │ │ │ └── dotnet.al │ ├── Headlines │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── HeadlinesRead.PermissionSet.al │ │ └── src │ │ │ ├── Headlines.Codeunit.al │ │ │ └── HeadlinesImpl.Codeunit.al │ ├── Image │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Image.Codeunit.al │ │ │ ├── ImageFormat.Enum.al │ │ │ ├── ImageImpl.Codeunit.al │ │ │ └── RotateFlipType.Enum.al │ ├── Json │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Json.Codeunit.al │ │ │ └── JsonImpl.Codeunit.al │ ├── Language │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── LanguageEdit.PermissionSet.al │ │ │ ├── LanguageObjects.PermissionSet.al │ │ │ └── LanguageView.PermissionSet.al │ │ └── src │ │ │ ├── AllowedLanguage.Table.al │ │ │ ├── AllowedLanguages.Page.al │ │ │ ├── Language.Codeunit.al │ │ │ ├── Language.Table.al │ │ │ ├── LanguageImpl.Codeunit.al │ │ │ ├── Languages.Page.al │ │ │ └── WindowsLanguages.Page.al │ ├── MCP │ │ ├── Permissions │ │ │ ├── MCPAdmin.PermissionSet.al │ │ │ ├── MCPObjects.PermissionSet.al │ │ │ └── MCPRead.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── Configuration │ │ │ ├── Codeunits │ │ │ ├── MCPConfig.Codeunit.al │ │ │ ├── MCPConfigImplementation.Codeunit.al │ │ │ └── MCPInstall.Codeunit.al │ │ │ ├── Pages │ │ │ ├── MCPAPIConfigToolLookup.Page.al │ │ │ ├── MCPAPIPublisherLookup.Page.al │ │ │ ├── MCPConfigCard.Page.al │ │ │ ├── MCPConfigList.Page.al │ │ │ ├── MCPConfigToolList.Page.al │ │ │ ├── MCPCopyConfig.Page.al │ │ │ └── MCPToolsByAPIGroup.Page.al │ │ │ └── Tables │ │ │ └── MCPAPIPublisherGroup.Table.al │ ├── Math │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── Math.Codeunit.al │ ├── Microsoft User Feedback │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── MicrosoftUserFeedback.Codeunit.al │ │ │ └── MicrosoftUserFeedbackImpl.Codeunit.al │ ├── MicrosoftGraph │ │ ├── app.json │ │ └── src │ │ │ ├── Authorization │ │ │ ├── GraphAuthClientCredentials.Codeunit.al │ │ │ ├── GraphAuthorization.Codeunit.al │ │ │ ├── GraphAuthorization.Interface.al │ │ │ └── GraphAuthorizationImpl.Codeunit.al │ │ │ ├── GraphAPIVersion.Enum.al │ │ │ ├── GraphClient.Codeunit.al │ │ │ ├── GraphClientImpl.Codeunit.al │ │ │ ├── GraphConflictBehavior.Enum.al │ │ │ ├── GraphODataQueryParameter.Enum.al │ │ │ ├── GraphOptionalParameters.Codeunit.al │ │ │ ├── GraphOptionalParametersImpl.Codeunit.al │ │ │ ├── GraphPaginationData.Codeunit.al │ │ │ ├── GraphPaginationDataImpl.Codeunit.al │ │ │ ├── GraphRequestHeader.Enum.al │ │ │ └── helper │ │ │ ├── GraphPaginationHelper.Codeunit.al │ │ │ ├── GraphRequestHelper.Codeunit.al │ │ │ └── GraphUriBuilder.Codeunit.al │ ├── Navigation Bar Subscribers │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── NavigationBarSubImpl.Codeunit.al │ │ │ └── NavigationBarSubscribers.Codeunit.al │ ├── OAuth │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── HttpRequestType.Enum.al │ │ │ ├── OAuth.Codeunit.al │ │ │ └── OAuthImpl.Codeunit.al │ ├── OAuth2 │ │ ├── OAuth2.Codeunit.al │ │ ├── OAuth2ControlAddIn.Page.al │ │ ├── OAuth2Impl.Codeunit.al │ │ ├── PromptInteraction.Enum.al │ │ ├── README.md │ │ └── app.json │ ├── Object Selection │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── ObjectSelectionRead.PermissionSet.al │ │ └── src │ │ │ └── Objects.Page.al │ ├── Page Action Provider │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── PageActionProviderRead.PermissionSet.al │ │ └── src │ │ │ ├── ActionContainerType.Enum.al │ │ │ ├── PageActionProvider.Codeunit.al │ │ │ ├── PageActionProviderImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Page Summary Provider │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── PageSummaryAdmin.PermissionSet.al │ │ │ ├── PageSummaryProviderObj.PermissionSet.al │ │ │ └── PageSummaryProviderRead.PermissionSet.al │ │ └── src │ │ │ ├── PageSummaryParameters.Table.al │ │ │ ├── PageSummaryProvider.Codeunit.al │ │ │ ├── PageSummaryProviderImpl.Codeunit.al │ │ │ ├── PageSummarySettings.Codeunit.al │ │ │ ├── PageSummarySettings.Page.al │ │ │ ├── PageSummarySettings.Table.al │ │ │ ├── PageSummarySettingsImpl.Codeunit.al │ │ │ ├── SummaryType.Enum.al │ │ │ └── dotnet.al │ ├── Password │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ChangePassword.Report.al │ │ │ ├── PasswordDialog.Page.al │ │ │ ├── PasswordDialogImpl.Codeunit.al │ │ │ ├── PasswordDialogManagement.Codeunit.al │ │ │ ├── PasswordHandler.Codeunit.al │ │ │ ├── PasswordHandlerImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Pdf │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── PDFAttachDataRelationship.Enum.al │ │ │ ├── PDFDocument.Codeunit.al │ │ │ ├── PDFDocumentImpl.Codeunit.al │ │ │ └── PDFSaveFormat.Enum.al │ ├── Performance Profiler │ │ ├── app.json │ │ ├── permissions │ │ │ ├── PerfProfilerTablesEdit.permissionset.al │ │ │ ├── PerfProfilerTablesView.permissionset.al │ │ │ └── PerformanceProfilerObjects.PermissionSet.al │ │ └── src │ │ │ ├── PerfProfActivityMapper.Codeunit.al │ │ │ ├── PerfProfileActivityType.enum.al │ │ │ ├── PerfProfilerScheduleCard.Page.al │ │ │ ├── PerfProfilerSchedulesList.Page.al │ │ │ ├── PerformanceProfileList.Page.al │ │ │ ├── PerformanceProfiler.Page.al │ │ │ ├── PerformanceProfilerDelete.Codeunit.al │ │ │ ├── PerformanceProfilerInstaller.Codeunit.al │ │ │ ├── ProfilingAggregationType.Enum.al │ │ │ ├── ProfilingCallTree.Page.al │ │ │ ├── ProfilingChartHelper.Codeunit.al │ │ │ ├── ProfilingDataProcessor.Codeunit.al │ │ │ ├── ProfilingDurationByMethod.Page.al │ │ │ ├── ProfilingDurationByObject.Page.al │ │ │ ├── ProfilingFullTimeChart.Page.al │ │ │ ├── ProfilingNode.Table.al │ │ │ ├── ProfilingSelfTimeChart.Page.al │ │ │ ├── SamplingInterval.Enum.al │ │ │ ├── SamplingPerfProfilerImpl.Codeunit.al │ │ │ ├── SamplingPerformanceProfiler.Codeunit.al │ │ │ ├── ScheduledPerfProfiler.Codeunit.al │ │ │ ├── ScheduledPerfProfilerImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Permission Sets │ │ ├── app.json │ │ └── src │ │ │ ├── ExpandedPermissions.Page.al │ │ │ ├── ExpandedPermissionsFactbox.Page.al │ │ │ ├── IncludedPermissionSetFactBox.Page.al │ │ │ ├── LogActivityPermissions.Codeunit.al │ │ │ ├── MetadataPermissionSubForm.Page.al │ │ │ ├── PermissionImpl.Codeunit.al │ │ │ ├── PermissionLookupBuffer.table.al │ │ │ ├── PermissionLookupList.Page.al │ │ │ ├── PermissionSet.Page.al │ │ │ ├── PermissionSetBuffer.Table.al │ │ │ ├── PermissionSetCopyImpl.Codeunit.al │ │ │ ├── PermissionSetCopyType.Enum.al │ │ │ ├── PermissionSetLookupList.Page.al │ │ │ ├── PermissionSetRelation.Codeunit.al │ │ │ ├── PermissionSetRelationBuffer.Table.al │ │ │ ├── PermissionSetRelationImpl.Codeunit.al │ │ │ ├── PermissionSetSubForm.Page.al │ │ │ ├── PermissionSetTree.Page.al │ │ │ ├── TenantPermissionSubForm.page.al │ │ │ ├── UserSubformPermissions.PageExt.al │ │ │ ├── permissions │ │ │ └── PermissionSetsObjects.PermissionSet.al │ │ │ └── xmlports │ │ │ ├── ExportPermissionSetsSystem.XmlPort.al │ │ │ ├── ExportPermissionSetsTenant.XmlPort.al │ │ │ └── ImportPermissionSets.xmlport.al │ ├── Permissions │ │ ├── ExcelExportAction.PermissionSet.al │ │ ├── LOGIN.PermissionSet.al │ │ ├── MetadataRead.PermissionSet.al │ │ ├── Security.PermissionSet.al │ │ ├── SystemAppAdmin.PermissionSet.al │ │ ├── SystemAppBasic.PermissionSet.al │ │ ├── SystemApplicationAdmin.PermissionSet.al │ │ ├── SystemApplicationBasic.PermissionSet.al │ │ ├── SystemApplicationEdit.PermissionSet.al │ │ ├── SystemApplicationObjects.PermissionSet.al │ │ ├── SystemApplicationRead.PermissionSet.al │ │ ├── SystemApplicationView.PermissionSet.al │ │ └── SystemTablesBasic.PermissionSet.al │ ├── Printer Management │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── PrinterManagementObjects.PermissionSet.al │ │ │ └── PrinterManagementRead.PermissionSet.al │ │ └── src │ │ │ ├── PrinterManagement.Page.al │ │ │ ├── PrinterPaperSourceKind.Enum.al │ │ │ ├── PrinterPaperkind.Enum.al │ │ │ ├── PrinterSetup.Codeunit.al │ │ │ ├── PrinterSetupImpl.Codeunit.al │ │ │ ├── PrinterType.Enum.al │ │ │ └── PrinterUnit.Enum.al │ ├── Privacy Notice │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── PrivNoticeAdmin.PermissionSet.al │ │ │ ├── PrivNoticeView.PermissionSet.al │ │ │ ├── PrivacyNoticeObjects.PermissionSet.al │ │ │ └── PrivacyNoticeRead.PermissionSet.al │ │ └── src │ │ │ ├── MicrosoftLearn │ │ │ ├── MicrosoftLearnPrivacyNotice.Codeunit.al │ │ │ └── MicrosoftLearnPrivacyNotice.Page.al │ │ │ ├── PowerAutomate │ │ │ ├── PowerAutomatePrivacyNotice.Codeunit.al │ │ │ └── PowerAutomatePrivacyNotice.Page.al │ │ │ ├── PrivacyNotice.Codeunit.al │ │ │ ├── PrivacyNotice.Page.al │ │ │ ├── PrivacyNoticeApproval.Codeunit.al │ │ │ ├── PrivacyNoticeApprovalState.Enum.al │ │ │ ├── PrivacyNoticeApprovals.Page.al │ │ │ ├── PrivacyNoticeImpl.Codeunit.al │ │ │ ├── PrivacyNotices.Page.al │ │ │ ├── SystemPrivacyNoticeReg.Codeunit.al │ │ │ └── SystemUpgradePrivacyNotices.Codeunit.al │ ├── README.md │ ├── Record Link Management │ │ ├── Permissions │ │ │ ├── RecordLinkManagementObj.PermissionSet.al │ │ │ ├── RecordLinkManagementRead.PermissionSet.al │ │ │ └── RecordLinkManagementView.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── RecordLinkImpl.Codeunit.al │ │ │ ├── RecordLinkManagement.Codeunit.al │ │ │ └── RemoveOrphanedRecordLinks.Codeunit.al │ ├── Record Reference │ │ ├── app.json │ │ └── src │ │ │ ├── RecordReference.Codeunit.al │ │ │ ├── RecordReference.Interface.al │ │ │ ├── RecordReferenceDefaultImpl.Codeunit.al │ │ │ └── RecordReferenceImpl.Codeunit.al │ ├── Record Selection │ │ ├── app.json │ │ └── src │ │ │ ├── RecordLookup.Page.al │ │ │ ├── RecordSelection.Codeunit.al │ │ │ ├── RecordSelectionBuffer.Table.al │ │ │ └── RecordSelectionImpl.Codeunit.al │ ├── Recurrence Schedule │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── RecurrenceDayOfWeek.Enum.al │ │ │ ├── RecurrenceMonth.Enum.al │ │ │ ├── RecurrenceMonthlyPattern.Enum.al │ │ │ ├── RecurrenceOrdinalNo.Enum.al │ │ │ ├── RecurrencePattern.Enum.al │ │ │ ├── RecurrenceSchedule.Codeunit.al │ │ │ ├── RecurrenceSchedule.Table.al │ │ │ ├── RecurrenceScheduleCard.Page.al │ │ │ └── RecurrenceScheduleImpl.Codeunit.al │ ├── Regex │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Captures.Table.al │ │ │ ├── Groups.Table.al │ │ │ ├── Matches.Table.al │ │ │ ├── Regex.Codeunit.al │ │ │ ├── RegexImpl.Codeunit.al │ │ │ ├── RegexOptions.Enum.al │ │ │ └── RegexOptions.Table.al │ ├── Resources │ │ ├── BusinessChart │ │ │ ├── js │ │ │ │ ├── BusinessChartAddIn.js │ │ │ │ ├── Recreate.js │ │ │ │ ├── Refresh.js │ │ │ │ └── Startup.js │ │ │ └── stylesheets │ │ │ │ └── BusinessChartAddIn.css │ │ ├── CustomerExperienceSurvey │ │ │ └── js │ │ │ │ ├── CustomerExperienceSurvey.js │ │ │ │ └── CustomerExperienceSurveyStartup.js │ │ ├── FlowIntegration │ │ │ └── js │ │ │ │ ├── FlowIntegration.js │ │ │ │ ├── Recreate.js │ │ │ │ ├── Refresh.js │ │ │ │ └── Startup.js │ │ ├── OAuthIntegration │ │ │ ├── js │ │ │ │ ├── OAuthIntegration.js │ │ │ │ └── Startup.js │ │ │ └── stylesheets │ │ │ │ └── OAuthIntegration.css │ │ ├── PageReady │ │ │ ├── js │ │ │ │ └── PageReady.js │ │ │ └── stylesheets │ │ │ │ └── PageReady.css │ │ ├── PowerBIManagement │ │ │ ├── js │ │ │ │ ├── PowerBIManagement.js │ │ │ │ ├── Startup.js │ │ │ │ └── powerbi.js │ │ │ └── stylesheets │ │ │ │ └── PowerBIManagement.css │ │ ├── RoleCenterSelector │ │ │ ├── js │ │ │ │ ├── Recreate.js │ │ │ │ ├── Refresh.js │ │ │ │ ├── RoleCenterSelector.js │ │ │ │ └── Startup.js │ │ │ └── stylesheets │ │ │ │ └── RoleCenterSelector.css │ │ ├── SatisfactionSurveyAsync │ │ │ └── js │ │ │ │ └── SATAsync.js │ │ ├── VideoPlayer │ │ │ ├── js │ │ │ │ ├── Startup.js │ │ │ │ └── VideoPlayer.js │ │ │ └── stylesheets │ │ │ │ └── VideoPlayer.css │ │ ├── WaitSpinner │ │ │ ├── images │ │ │ │ └── spinner.gif │ │ │ ├── js │ │ │ │ └── WaitSpinner.js │ │ │ └── stylesheets │ │ │ │ └── spinner.css │ │ ├── WebPageViewer │ │ │ ├── images │ │ │ │ ├── Callback.html │ │ │ │ └── Loader.gif │ │ │ ├── js │ │ │ │ ├── Recreate.js │ │ │ │ ├── Refresh.js │ │ │ │ ├── Startup.js │ │ │ │ ├── WebPageViewer.js │ │ │ │ └── WebPageViewerHelper.js │ │ │ └── stylesheets │ │ │ │ └── WebPageViewer.css │ │ ├── WelcomeWizard │ │ │ ├── images │ │ │ │ ├── 01_welcome.png │ │ │ │ ├── 02_introduction.png │ │ │ │ ├── 03_outlook.png │ │ │ │ ├── 04_extensions.png │ │ │ │ ├── 05_rolecenter.png │ │ │ │ └── GoChecked.png │ │ │ ├── js │ │ │ │ ├── Recreate.js │ │ │ │ ├── Refresh.js │ │ │ │ ├── Startup.js │ │ │ │ └── WelcomeWizard.js │ │ │ └── stylesheets │ │ │ │ └── WelcomeWizard.css │ │ └── emptyScript.js │ ├── Rest Client │ │ ├── app.json │ │ └── src │ │ │ ├── Authentication │ │ │ ├── HttpAuthOAuthClientCredentials.Codeunit.al │ │ │ ├── HttpAuthentication.Interface.al │ │ │ ├── HttpAuthenticationAnonymous.Codeunit.al │ │ │ └── HttpAuthenticationBasic.Codeunit.al │ │ │ ├── ExceptionHandling │ │ │ ├── RestClientException.Enum.al │ │ │ └── RestClientExceptionBuilder.Codeunit.al │ │ │ ├── HttpClientHandler │ │ │ ├── HttpClientHandler.Codeunit.al │ │ │ └── HttpClientHandler.Interface.al │ │ │ ├── HttpContent.Codeunit.al │ │ │ ├── HttpContentImpl.Codeunit.al │ │ │ ├── HttpMethod.Enum.al │ │ │ ├── HttpRequestMessage.Codeunit.al │ │ │ ├── HttpRequestMessageImpl.Codeunit.al │ │ │ ├── HttpResponseMessage.Codeunit.al │ │ │ ├── HttpResponseMessageImpl.Codeunit.al │ │ │ ├── RestClient.Codeunit.al │ │ │ └── RestClientImpl.Codeunit.al │ ├── Retention Policy │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── RetentionPolAdmin.PermissionSet.al │ │ │ ├── RetentionPolView.PermissionSet.al │ │ │ ├── RetentionPolicyAdmin.PermissionSet.al │ │ │ ├── RetentionPolicyObjects.PermissionSet.al │ │ │ ├── RetentionPolicyRead.PermissionSet.al │ │ │ └── RetentionPolicyView.PermissionSet.al │ │ └── src │ │ │ ├── Apply Retention Policy │ │ │ ├── ApplyRetentionPolicy.Codeunit.al │ │ │ ├── ApplyRetentionPolicyImpl.Codeunit.al │ │ │ ├── RetenPolDeleteImpl.Codeunit.al │ │ │ ├── RetenPolDeleting.Enum.al │ │ │ ├── RetenPolDeleting.Interface.al │ │ │ ├── RetenPolDeletingParam.Table.al │ │ │ ├── RetenPolFiltering.Enum.al │ │ │ ├── RetenPolFiltering.Interface.al │ │ │ ├── RetenPolFilteringImpl.Codeunit.al │ │ │ ├── RetenPolFilteringParam.Table.al │ │ │ └── RetentionPolicyLogsDelete.Codeunit.al │ │ │ ├── Install │ │ │ └── RetentionPolicyInstaller.Codeunit.al │ │ │ ├── Retention Period │ │ │ ├── RetentionPeriod.Interface.al │ │ │ ├── RetentionPeriod.Table.al │ │ │ ├── RetentionPeriodCustomImpl.Codeunit.al │ │ │ ├── RetentionPeriodEnum.Enum.al │ │ │ ├── RetentionPeriodImpl.Codeunit.al │ │ │ └── RetentionPeriods.Page.al │ │ │ ├── Retention Policy Allowed Tables │ │ │ ├── RetenPolAllowedTables.Codeunit.al │ │ │ ├── RetenPolAllowedTblImpl.Codeunit.al │ │ │ └── RetentionPolicyAllowedTable.Table.al │ │ │ ├── Retention Policy Log │ │ │ ├── RetenPolRecordRefImpl.Codeunit.al │ │ │ ├── RetenPolicyTelemetryImpl.Codeunit.al │ │ │ ├── RetentionPolicyLog.Codeunit.al │ │ │ ├── RetentionPolicyLogCategory.Enum.al │ │ │ ├── RetentionPolicyLogEntries.Page.al │ │ │ ├── RetentionPolicyLogEntry.Table.al │ │ │ ├── RetentionPolicyLogImpl.Codeunit.al │ │ │ └── RetentionPolicyLogMessageType.Enum.al │ │ │ ├── Retention Policy Setup │ │ │ ├── PBTExpiredRecordCount.Codeunit.al │ │ │ ├── RetenPolicySetupListPart.Page.al │ │ │ ├── RetentionPolicySetup.Codeunit.al │ │ │ ├── RetentionPolicySetup.Table.al │ │ │ ├── RetentionPolicySetupCard.Page.al │ │ │ ├── RetentionPolicySetupImpl.Codeunit.al │ │ │ ├── RetentionPolicySetupLine.Table.al │ │ │ ├── RetentionPolicySetupLines.Page.al │ │ │ └── RetentionPolicySetupList.Page.al │ │ │ └── Upgrade │ │ │ └── RetentionPolicyUpgrade.Codeunit.al │ ├── Satisfaction Survey │ │ ├── ControlAddIns │ │ │ └── js │ │ │ │ └── SATAsync.js │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── SatisfactionSurveyRead.PermissionSet.al │ │ │ └── SatisfactionSurveyView.PermissionSet.al │ │ └── src │ │ │ ├── NetPromoterScore.Table.al │ │ │ ├── NetPromoterScoreSetup.Table.al │ │ │ ├── SatisfactionSurvey.Page.al │ │ │ ├── SatisfactionSurveyImpl.Codeunit.al │ │ │ ├── SatisfactionSurveyMgt.Codeunit.al │ │ │ └── dotnet.al │ ├── Secrets │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AppKeyVaultSecretPrImpl.Codeunit.al │ │ │ ├── AppKeyVaultSecretProvider.Codeunit.al │ │ │ ├── InMemorySecretProvImpl.Codeunit.al │ │ │ ├── InMemorySecretProvider.Codeunit.al │ │ │ ├── SecretProviderv2.Interface.al │ │ │ └── dotnet.al │ ├── Security Groups │ │ ├── app.json │ │ ├── permissions │ │ │ ├── SecurityGroupsAdmin.PermissionSet.al │ │ │ ├── SecurityGroupsObjects.PermissionSet.al │ │ │ └── SecurityGroupsRead.PermissionSet.al │ │ └── src │ │ │ ├── CopySecurityGroup.Page.al │ │ │ ├── ExportImportSecurityGroups.XmlPort.al │ │ │ ├── InheritedPermissionSetsPart.Page.al │ │ │ ├── NewSecurityGroup.Page.al │ │ │ ├── SecGroupPermissionsPart.Page.al │ │ │ ├── SecurityGroup.Codeunit.al │ │ │ ├── SecurityGroup.Table.al │ │ │ ├── SecurityGroupBuffer.Table.al │ │ │ ├── SecurityGroupImpl.Codeunit.al │ │ │ ├── SecurityGroupLookup.Page.al │ │ │ ├── SecurityGroupMemberBuffer.Table.al │ │ │ ├── SecurityGroupMembers.Page.al │ │ │ ├── SecurityGroupMembersPart.Page.al │ │ │ ├── SecurityGroupPermissionSets.Page.al │ │ │ ├── SecurityGroupUpgrade.Codeunit.al │ │ │ ├── SecurityGroups.Page.al │ │ │ └── UserSecurityGroupsPart.Page.al │ ├── Server Settings │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ServerSetting.Codeunit.al │ │ │ ├── ServerSettingImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── SharePoint Authorization │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AuthorizationCode │ │ │ └── SharePointAuthorizationCode.Codeunit.al │ │ │ ├── SharePointAuth.Codeunit.al │ │ │ ├── SharePointAuthImpl.Codeunit.al │ │ │ ├── SharePointAuthorization.Interface.al │ │ │ └── SharePointClientCredentials.Codeunit.al │ ├── SharePoint │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── SharePointApiObjects.PermissionSet.al │ │ └── src │ │ │ ├── Diagnostics │ │ │ ├── HTTPDiagnostics.Interface.al │ │ │ └── SharePointDiagnostics.codeunit.al │ │ │ ├── SharePointClient.Codeunit.al │ │ │ ├── SharePointClientImpl.Codeunit.al │ │ │ ├── helpers │ │ │ ├── SharePointHttpContent.Codeunit.al │ │ │ ├── SharePointOperationResponse.Codeunit.al │ │ │ ├── SharePointRequestHelper.Codeunit.al │ │ │ └── SharePointUriBuilder.Codeunit.al │ │ │ └── model │ │ │ ├── file │ │ │ ├── SharePointFile.Codeunit.al │ │ │ └── SharePointFile.Table.al │ │ │ ├── folder │ │ │ ├── SharePointFolder.Codeunit.al │ │ │ └── SharePointFolder.Table.al │ │ │ ├── list │ │ │ ├── SharePointList.Codeunit.al │ │ │ └── SharePointList.Table.al │ │ │ ├── listitem │ │ │ ├── SharePointListItem.Codeunit.al │ │ │ └── SharePointListItem.Table.al │ │ │ └── listitemattachment │ │ │ ├── SharePointListItemAtch.Codeunit.al │ │ │ └── SharePointListItemAtch.Table.al │ ├── SmartList Designer Subscribers │ │ ├── README.md │ │ └── app.json │ ├── System Initialization │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ └── SystemInitializationExec.PermissionSet.al │ │ └── src │ │ │ ├── SignupContext.Enum.al │ │ │ ├── SignupContextValues.Table.al │ │ │ ├── SystemInitialization.Codeunit.al │ │ │ └── SystemInitializationImpl.Codeunit.al │ ├── System Permissions │ │ ├── app.json │ │ └── permissions │ │ │ ├── AddRelatedFields.Permissionset.al │ │ │ ├── ApplicationObjectsExec.PermissionSet.al │ │ │ ├── AutomateExec.PermissionSet.al │ │ │ ├── CompanyEdit.Permissionset.al │ │ │ ├── CompanyRead.Permissionset.al │ │ │ ├── CopilotSysFeatures.PermissionSet.al │ │ │ ├── D365AttachDebug.PermissionSet.al │ │ │ ├── D365BackupRestore.PermissionSet.al │ │ │ ├── D365SnapshotDebug.PermissionSet.al │ │ │ ├── DataAnalysisExec.Permissionset.al │ │ │ ├── ExportReportExcel.PermissionSet.al │ │ │ ├── MediaRead.PermissionSet.al │ │ │ ├── MediaView.PermissionSet.al │ │ │ ├── PageScriptingPlay.Permissionset.al │ │ │ ├── PageScriptingRec.Permissionset.al │ │ │ ├── PermissionsLicensesEdit.PermissionSet.al │ │ │ ├── PermissionsLicensesRead.PermissionSet.al │ │ │ ├── PowerBiRead.Permissionset.al │ │ │ ├── ReportingEdit.PermissionSet.al │ │ │ ├── SecuritySystem.PermissionSet.al │ │ │ ├── SessionEdit.Permissionset.al │ │ │ ├── SessionRead.PermissionSet.al │ │ │ ├── Super.PermissionSet.al │ │ │ ├── SuperData.PermissionSet.al │ │ │ ├── SystemExecuteBasic.PermissionSet.al │ │ │ ├── SystemObjectsExec.PermissionSet.al │ │ │ ├── UserPersonalizationEdit.PermissionSet.al │ │ │ ├── UserPersonalizationRead.PermissionSet.al │ │ │ ├── WebhookEdit.PermissionSet.al │ │ │ ├── WebhookRead.PermissionSet.al │ │ │ └── troubleshoottools.PermissionSet.al │ ├── Table Information │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── TableInformationObjects.PermissionSet.al │ │ │ ├── TableInformationRead.PermissionSet.al │ │ │ └── TableInformationView.PermissionSet.al │ │ └── src │ │ │ ├── CompanySizeCache.Table.al │ │ │ ├── CompanySizeCachePart.Page.al │ │ │ ├── TableInformation.Page.al │ │ │ ├── TableInformationCache.Codeunit.al │ │ │ ├── TableInformationCache.Table.al │ │ │ ├── TableInformationCacheImpl.Codeunit.al │ │ │ └── TableInformationCachePart.Page.al │ ├── Table Keys │ │ ├── app.json │ │ ├── permissions │ │ │ └── TableKeyObjects.PermissionSet.al │ │ └── src │ │ │ ├── TableKey.Codeunit.al │ │ │ └── TableKeyImpl.Codeunit.al │ ├── Telemetry │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Additional Custom Dimensions │ │ │ ├── TelemetryCustomDimensions.Codeunit.al │ │ │ └── TelemetryCustomDimsImpl.Codeunit.al │ │ │ ├── AuditLog │ │ │ ├── AuditLog.Codeunit.al │ │ │ └── AuditLogImplementation.Codeunit.al │ │ │ ├── Feature Telemetry │ │ │ ├── FeatureTelemetry.Codeunit.al │ │ │ ├── FeatureTelemetryImpl.Codeunit.al │ │ │ ├── FeatureUptake.Table.al │ │ │ ├── FeatureUptakeStatus.Enum.al │ │ │ └── FeatureUptakeStatusImpl.Codeunit.al │ │ │ └── Logging │ │ │ ├── ALTelemetryScope.Enum.al │ │ │ ├── SystemTelemetryLogger.Codeunit.al │ │ │ ├── Telemetry.Codeunit.al │ │ │ ├── TelemetryImpl.Codeunit.al │ │ │ ├── TelemetryLogger.Interface.al │ │ │ ├── TelemetryLoggers.Codeunit.al │ │ │ └── TelemetryLoggersImpl.Codeunit.al │ ├── Tenant License State │ │ ├── Permissions │ │ │ └── TenantLicenseStateRead.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── TenantLicenseState.Codeunit.al │ │ │ ├── TenantLicenseState.Enum.al │ │ │ ├── TenantLicenseStateImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Time Zone Selection │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── TimeZoneSelection.Codeunit.al │ │ │ ├── TimeZoneSelectionImpl.Codeunit.al │ │ │ └── TimeZonesLookup.Page.al │ ├── Translation │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── TranslationEdit.PermissionSet.al │ │ │ ├── TranslationObjects.PermissionSet.al │ │ │ └── TranslationRead.PermissionSet.al │ │ └── src │ │ │ ├── Translation.Codeunit.al │ │ │ ├── Translation.Page.al │ │ │ ├── Translation.Table.al │ │ │ └── TranslationImplementation.Codeunit.al │ ├── URI │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── Uri.Codeunit.al │ │ │ ├── UriBuilder.Codeunit.al │ │ │ ├── UriBuilderImpl.Codeunit.al │ │ │ ├── UriKind.Enum.al │ │ │ ├── UriQueryDuplicateBehaviour.Enum.al │ │ │ └── dotnet.al │ ├── Upgrade Tags │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── UpgradeTag.Codeunit.al │ │ │ ├── UpgradeTagBackup.Table.al │ │ │ ├── UpgradeTagImpl.Codeunit.al │ │ │ ├── UpgradeTagInstall.Codeunit.al │ │ │ ├── UpgradeTagTags.Codeunit.al │ │ │ ├── UpgradeTags.Page.al │ │ │ └── UpgradeTags.Table.al │ ├── User Details │ │ ├── Permissions │ │ │ ├── UserDetailsObjects.PermissionSet.al │ │ │ └── UserDetailsView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── UserDetails.Codeunit.al │ │ │ ├── UserDetails.Page.al │ │ │ ├── UserDetails.Table.al │ │ │ └── UserDetailsImpl.Codeunit.al │ ├── User Login Times │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── UserEnvironmentLogin.Table.al │ │ │ ├── UserLogin.Table.al │ │ │ ├── UserLoginTimeTracker.Codeunit.al │ │ │ ├── UserLoginTimeTrackerImpl.Codeunit.al │ │ │ └── UserLoginTimesUpgrade.Codeunit.al │ ├── User Permissions │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── UserPermissionsObjects.PermissionSet.al │ │ │ ├── UserPermissionsRead.PermissionSet.al │ │ │ └── UserPermissionsView.PermissionSet.al │ │ └── src │ │ │ ├── LookupPermissionSet.Page.al │ │ │ ├── UserPermissions.Codeunit.al │ │ │ ├── UserPermissionsImpl.Codeunit.al │ │ │ └── UserSubform.Page.al │ ├── User Selection │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── UserSelectionObjects.PermissionSet.al │ │ │ └── UserSelectionRead.PermissionSet.al │ │ └── src │ │ │ ├── UserLookup.Page.al │ │ │ ├── UserSelection.Codeunit.al │ │ │ └── UserSelectionImpl.Codeunit.al │ ├── User Settings │ │ ├── Permissions │ │ │ ├── UserSettingsObjects.PermissionSet.al │ │ │ └── UserSettingsView.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AccessibleCompanies.Page.al │ │ │ ├── ApplicationUserSettings.Table.al │ │ │ ├── Roles.Page.al │ │ │ ├── UserPersonalization.Page.al │ │ │ ├── UserSettings.Codeunit.al │ │ │ ├── UserSettings.Page.al │ │ │ ├── UserSettings.Table.al │ │ │ ├── UserSettingsFactBox.Page.al │ │ │ ├── UserSettingsImpl.Codeunit.al │ │ │ ├── UserSettingsList.Page.al │ │ │ └── UserSettingsUpgrade.Codeunit.al │ ├── VS Code Integration │ │ ├── Permissions │ │ │ └── VSCIntgrAdmin.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── VsCodeIntegration.Codeunit.al │ │ │ ├── VsCodeIntegrationImpl.Codeunit.al │ │ │ └── dotnet.al │ ├── Video │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── ProductVideoBuffer.Table.al │ │ │ ├── ProductVideos.Page.al │ │ │ ├── Video.Codeunit.al │ │ │ ├── VideoCategory.Enum.al │ │ │ ├── VideoImpl.Codeunit.al │ │ │ └── Videolink.Page.al │ ├── Web Service Management │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── WebServiceManagementAdmin.Permissionset.al │ │ │ ├── WebServiceManagementObj.PermissionSet.al │ │ │ ├── WebServiceManagementRead.Permissionset.al │ │ │ └── WebServiceManagementView.Permissionset.al │ │ └── src │ │ │ ├── ClientType.Enum.al │ │ │ ├── ODataProtocolVersion.Enum.al │ │ │ ├── TenantWebServiceColumns.Table.al │ │ │ ├── TenantWebServiceFilter.Table.al │ │ │ ├── TenantWebServiceOData.Table.al │ │ │ ├── WebServiceAggregate.Table.al │ │ │ ├── WebServiceManagement.Codeunit.al │ │ │ └── WebServiceManagementImpl.Codeunit.al │ ├── Word Templates │ │ ├── README.md │ │ ├── app.json │ │ ├── permissions │ │ │ ├── WordTemplatesEdit.PermissionSet.al │ │ │ ├── WordTemplatesObjects.PermissionSet.al │ │ │ └── WordTemplatesRead.PermissionSet.al │ │ └── src │ │ │ ├── CustomMergeFields │ │ │ ├── WordTemplateCustFieldImpl.Codeunit.al │ │ │ ├── WordTemplateCustomField.Codeunit.al │ │ │ ├── WordTemplateCustomField.Table.al │ │ │ ├── WordTemplateFieldValue.Codeunit.al │ │ │ └── WordTemplateFieldValueImpl.Codeunit.al │ │ │ ├── WordTemplate.Codeunit.al │ │ │ ├── WordTemplate.Table.al │ │ │ ├── WordTemplateCreationWizard.Page.al │ │ │ ├── WordTemplateField.Table.al │ │ │ ├── WordTemplateFieldSelection.Codeunit.al │ │ │ ├── WordTemplateImpl.Codeunit.al │ │ │ ├── WordTemplateSelectionWizard.Page.al │ │ │ ├── WordTemplateToTextWizard.Page.al │ │ │ ├── WordTemplates.Page.al │ │ │ ├── WordTemplatesFieldSelection.Page.al │ │ │ ├── WordTemplatesRelatedBuffer.Table.al │ │ │ ├── WordTemplatesRelatedCard.Page.al │ │ │ ├── WordTemplatesRelatedEdit.Page.al │ │ │ ├── WordTemplatesRelatedFactbox.Page.al │ │ │ ├── WordTemplatesRelatedPart.Page.al │ │ │ ├── WordTemplatesRelatedTable.Table.al │ │ │ ├── WordTemplatesSaveFormat.Enum.al │ │ │ ├── WordTemplatesTable.Table.al │ │ │ ├── WordTemplatesTableLookup.Page.al │ │ │ └── WordTemplatesTablesPart.Page.al │ ├── XML Validation │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── XmlValidation.Codeunit.al │ │ │ └── XmlValidationImpl.Codeunit.al │ ├── XmlWriter │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── XmlWriter.Codeunit.al │ │ │ └── XmlWriterImpl.Codeunit.al │ └── app.json ├── Partner Test │ ├── AI │ │ ├── app.json │ │ └── src │ │ │ ├── AOAIPartnerCapability.EnumExt.al │ │ │ ├── AzureOpenAITestPartner.Codeunit.al │ │ │ └── CopilotTestPartner.Codeunit.al │ ├── ExtensionLogo.png │ └── app.json ├── README.md ├── Test Library │ ├── AI │ │ ├── app.json │ │ └── src │ │ │ ├── AzureOpenAITestLibrary.Codeunit.al │ │ │ ├── CopilotSettingsTestLibrary.Codeunit.al │ │ │ └── CopilotTestLibrary.Codeunit.al │ ├── Advanced Settings │ │ ├── Permissions │ │ │ └── AdvSettingsView.PermissionSet.al │ │ └── app.json │ ├── AppSource Gallery │ │ ├── app.json │ │ └── src │ │ │ ├── AppSourceMockDepsProvider.Codeunit.al │ │ │ └── AppSrcProductMgrTestImpl.Codeunit.al │ ├── Azure AD Graph │ │ ├── app.json │ │ └── src │ │ │ └── AzureADGraphTestLibrary.Codeunit.al │ ├── Azure AD Licensing │ │ ├── Permissions │ │ │ └── AADLicensingExec.PermissionSet.al │ │ └── app.json │ ├── Azure AD Plan │ │ ├── Permissions │ │ │ ├── AADPlanAdmin.PermissionSet.al │ │ │ └── AADPlanView.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AzureADPlanTestLibrary.Codeunit.al │ │ │ └── PlanConfigurationLibrary.Codeunit.al │ ├── Azure AD User Management │ │ ├── Permissions │ │ │ └── AADUserMgtExec.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── AzureADUserMgtTestLibrary.Codeunit.al │ ├── Azure AD User │ │ ├── Permissions │ │ │ └── AADUserView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── AzureADUserTestLibrary.Codeunit.al │ ├── Azure Key Vault │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── AzureKeyVaultTestLibrary.Codeunit.al │ ├── Blob Storage │ │ ├── Permissions │ │ │ └── BlobStorageExec.PermissionSet.al │ │ └── app.json │ ├── Business Chart │ │ ├── app.json │ │ └── src │ │ │ └── BusinessChartTestLibrary.Codeunit.al │ ├── Camera and Media Interaction │ │ ├── app.json │ │ └── src │ │ │ └── CameraTestLibrary.Codeunit.al │ ├── Client Type Management │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── TestClientTypeSubscriber.Codeunit.al │ ├── Confirm Management │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── ConfirmTestLibrary.Codeunit.al │ ├── Cues And KPIs │ │ ├── Permissions │ │ │ └── CuesAndKPIsEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── CuesAndKPIsTest1Cue.Table.al │ │ │ ├── CuesAndKPIsTest2Cue.Table.al │ │ │ └── CuesAndKPIsTestLibrary.Codeunit.al │ ├── Data Classification │ │ ├── Permissions │ │ │ └── DataClassEdit.PermissionSet.al │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── LibraryDataClassification.Codeunit.al │ ├── DotNet Aliases │ │ ├── app.json │ │ └── src │ │ │ └── dotnet.al │ ├── Edit in Excel │ │ ├── Permissions │ │ │ ├── EditInExcelTestLibAdm.PermissionSet.al │ │ │ └── EditInExcelTestLibObj.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── EditInExcelTestTable.Table.al │ │ │ └── EditinExcelTestLibrary.Codeunit.al │ ├── Email │ │ ├── Permissions │ │ │ ├── EmailAdmin.PermissionSet.al │ │ │ ├── EmailEdit.PermissionSet.al │ │ │ ├── EmailRelatedRecord.PermissionSet.al │ │ │ ├── EmailViewLowPerm.PermissionSet.al │ │ │ ├── EmailViewPerm.PermissionSet.al │ │ │ └── EmailWordTemplate.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── ConnectorMock.Codeunit.al │ │ │ ├── EmailRelatedRecordTest.Table.al │ │ │ ├── EmailScenarioMock.Codeunit.al │ │ │ ├── LibraryEmailMock.Codeunit.al │ │ │ ├── TestEmailAccount.Table.al │ │ │ ├── TestEmailConnector.Codeunit.al │ │ │ ├── TestEmailConnector.EnumExt.al │ │ │ ├── TestEmailConnectorSetup.Table.al │ │ │ ├── TestEmailConnectorv2.Codeunit.al │ │ │ ├── TestEmailConnectorv3.Codeunit.al │ │ │ ├── TestEmailConnectorv4.Codeunit.al │ │ │ └── TestEmailScenario.EnumExt.al │ ├── Environment Information │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── EnvironmentInfoTestLibrary.Codeunit.al │ ├── Extension Management │ │ ├── .resources │ │ │ └── MockProxyTableSchema.txt │ │ ├── Permissions │ │ │ └── MockProxyEdit.PermissionSet.al │ │ ├── app.json │ │ ├── src │ │ │ ├── Extension Generation │ │ │ │ ├── DVTableBuilderTestLibrary.Codeunit.al │ │ │ │ └── MockProxy.Table.al │ │ │ └── ExtensionMgtTestLibrary.Codeunit.al │ │ └── testArtifacts │ │ │ ├── PT_EmptyExtension_no1_1.0.0.0.app │ │ │ ├── PT_EmptyExtension_no2_1.0.0.0.app │ │ │ └── SampleSetupForTest.Codeunit.al │ ├── ExtensionLogo.png │ ├── External File Storage │ │ ├── Permissions │ │ │ ├── FileStorageAdmin.PermissionSet.al │ │ │ └── FileStorageEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── ExtFileStorageTestLib.Codeunit.al │ │ │ ├── Mock │ │ │ ├── ExtFileStorageAccSelMock.Codeunit.al │ │ │ ├── FileConnectorMock.Codeunit.al │ │ │ └── FileScenarioMock.Codeunit.al │ │ │ ├── TestFileAccount.Table.al │ │ │ ├── TestFileConnectorSetup.Table.al │ │ │ ├── TestFileScenario.EnumExt.al │ │ │ ├── TestFileStorageConnector.Codeunit.al │ │ │ └── TestFileStorageConnector.EnumExt.al │ ├── Feature Configuration │ │ ├── app.json │ │ └── src │ │ │ └── FeatureConfigTestLib.Codeunit.al │ ├── Feature Key │ │ ├── Permissions │ │ │ └── FeatureKeyAdmin.PermissionSet.al │ │ └── app.json │ ├── Field Selection │ │ ├── Permissions │ │ │ └── FieldSelectionRead.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── TestTableA.Table.al │ │ │ └── TestTableB.Table.al │ ├── Geolocation │ │ ├── app.json │ │ └── src │ │ │ └── GeolocationTestLibrary.Codeunit.al │ ├── Guided Experience │ │ ├── Permissions │ │ │ └── GuidedExpEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── Assisted Setup │ │ │ ├── AssistedSetupTestGroup.EnumExt.al │ │ │ ├── AssistedSetupTestLibrary.Codeunit.al │ │ │ ├── AssistedSetupVisibleTransName.PageExt.al │ │ │ ├── MyAssistedSetupTestPage.Page.al │ │ │ └── OtherAssistedSetupTestPage.Page.al │ │ │ ├── Guided Experience │ │ │ ├── ChecklistSetupTestLibrary.Codeunit.al │ │ │ ├── ChecklistTestLibrary.Codeunit.al │ │ │ └── GuidedExperienceTestLibrary.Codeunit.al │ │ │ └── Manual Setup │ │ │ └── MyManualSetup.Page.al │ ├── Headlines │ │ ├── Permissions │ │ │ └── HeadlinesRead.PermissionSet.al │ │ └── app.json │ ├── Language │ │ ├── Permissions │ │ │ └── LanguageEdit.PermissionSet.al │ │ └── app.json │ ├── MCP │ │ ├── Permissions │ │ │ └── MockAPIEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── MCPConfigTestLibrary.Codeunit.al │ │ │ ├── MockAPI.Page.al │ │ │ ├── MockAPI.Table.al │ │ │ ├── MockAPIV2.Page.al │ │ │ └── MockCard.Page.al │ ├── MockGraphQuery │ │ ├── app.json │ │ └── src │ │ │ ├── MockGraphQueryTestLibrary.Codeunit.al │ │ │ └── dotnet.al │ ├── Page Action Provider │ │ ├── Permissions │ │ │ └── PageActionRead.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── EmptyCardPageActionTest.Page.al │ │ │ ├── HomeItemsPageActionTest.Page.al │ │ │ ├── PageActionProviderTest.Enum.al │ │ │ ├── PageActionProviderTest.Table.al │ │ │ └── ViewsPageActionTest.Page.al │ ├── Page Summary Provider │ │ ├── Permissions │ │ │ ├── PageSumAdminTest.PermissionSet.al │ │ │ └── PageSummaryRead.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── PageProviderSummaryTest.Enum.al │ │ │ ├── PageProviderSummaryTest.Table.al │ │ │ ├── PageProviderSummaryTest2.Table.al │ │ │ ├── PageProviderSummaryTest3.Table.al │ │ │ ├── PageSummaryEmptyPage.Page.al │ │ │ ├── PageSummaryMediaTestCard.Page.al │ │ │ └── PageSummaryTestCard.Page.al │ ├── Password │ │ ├── app.json │ │ └── src │ │ │ └── LibraryPassword.Codeunit.al │ ├── Performance Profiler │ │ ├── app.json │ │ └── src │ │ │ ├── PerfProfilerTestLibrary.Codeunit.al │ │ │ └── TestProfAggregationType.Enum.al │ ├── Permission Sets │ │ ├── Permissions │ │ │ ├── PermissionSetsObj.PermissionSet.al │ │ │ ├── TestSetA.PermissionSet.al │ │ │ ├── TestSetB.PermissionSet.al │ │ │ ├── TestSetC.PermissionSet.al │ │ │ └── TestSetD.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── LibraryPermissionSet.codeunit.al │ ├── Permissions │ │ └── SystemApplicationTestTables.PermissionSet.al │ ├── Record Link Management │ │ ├── Permissions │ │ │ └── RecordLinkView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── OnAfterCopyLinksMonitor.Codeunit.al │ │ │ ├── RecordLinkRecordTest.Table.al │ │ │ └── RecordLinkTestCrossCompany.Table.al │ ├── Record Selection │ │ ├── RecordSelectionTestPage.Page.al │ │ ├── RecordSelectionTestTable.Table.al │ │ ├── app.json │ │ └── permissions │ │ │ └── RecSelectionRead.Permissionset.al │ ├── Recurrence Schedule │ │ ├── Permissions │ │ │ └── RecurrenceView.PermissionSet.al │ │ └── app.json │ ├── Retention Policy │ │ ├── Permissions │ │ │ ├── RetenPolAdmin.PermissionSetExt.al │ │ │ └── RetenPolView.PermissionSetExt.al │ │ ├── app.json │ │ └── src │ │ │ ├── RetenPolTestInstaller.Codeunit.al │ │ │ ├── RetentionPolicyTestData.Table.al │ │ │ ├── RetentionPolicyTestData3.Table.al │ │ │ ├── RetentionPolicyTestData4.Table.al │ │ │ ├── RetentionPolicyTestDataTwo.Table.al │ │ │ └── RetentionPolicyTestLibrary.Codeunit.al │ ├── Security Groups │ │ ├── app.json │ │ └── src │ │ │ └── SecurityGroupsTestLibrary.Codeunit.al │ ├── SharePoint │ │ ├── app.json │ │ └── src │ │ │ ├── DummySharePointAuthorization.Codeunit.al │ │ │ └── SharePointTestLibrary.Codeunit.al │ ├── System Initialization │ │ ├── Permissions │ │ │ └── SystemInitExec.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── LibrarySignupContext.Codeunit.al │ │ │ └── SignupContextTestValue.EnumExt.al │ ├── Telemetry │ │ ├── Permissions │ │ │ └── TelemetryExec.PermissionSet.al │ │ └── app.json │ ├── Tenant License State │ │ ├── Permissions │ │ │ └── TenantLicenseRead.PermissionSet.al │ │ └── app.json │ ├── Time Zone Selection │ │ ├── Permissions │ │ │ └── TimeZoneRead.PermissionSet.al │ │ └── app.json │ ├── Translation │ │ ├── Permissions │ │ │ └── TranslationEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── TranslationTestPage.Page.al │ │ │ └── TranslationTestTable.Table.al │ ├── Upgrade Tags │ │ ├── Permissions │ │ │ └── UpgradeTagsView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── SetAllUpgradeTagsMock.Codeunit.al │ │ │ └── UpgradeTagLibrary.Codeunit.al │ ├── User Details │ │ ├── app.json │ │ └── src │ │ │ └── UserDetailsTestLibrary.Codeunit.al │ ├── User Login Times │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── UserLoginTestLibrary.Codeunit.al │ ├── User Permissions │ │ ├── Permissions │ │ │ └── UserPermissionView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── TestUserPermissionsSubs.Codeunit.al │ │ │ └── UserPermissionsLibrary.Codeunit.al │ ├── User Selection │ │ ├── Permissions │ │ │ └── UserSelectionRead.PermissionSet.al │ │ └── app.json │ ├── User Settings │ │ ├── Permissions │ │ │ └── UserSettingsView.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── LibraryUserSettings.Codeunit.al │ ├── Video │ │ ├── Permissions │ │ │ └── VideoRead.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ └── MyVideoSource.Table.al │ ├── Web Service Management │ │ ├── Permissions │ │ │ └── WebServiceAdmin.Permissionset.al │ │ ├── app.json │ │ └── src │ │ │ ├── DummyCodeunit.Codeunit.al │ │ │ ├── DummyPage.Page.al │ │ │ ├── DummyPage2.Page.al │ │ │ └── DummyQuery.Query.al │ ├── Word Templates │ │ ├── Permissions │ │ │ └── WordTemplatesEdit.PermissionSet.al │ │ ├── app.json │ │ └── src │ │ │ ├── WordTemplateCreator.Codeunit.al │ │ │ ├── WordTemplatesTestTable.Table.al │ │ │ ├── WordTemplatesTestTable2.Table.al │ │ │ ├── WordTemplatesTestTable3.Table.al │ │ │ ├── WordTemplatesTestTable4.Table.al │ │ │ └── WordTemplatesTestTable5.Table.al │ └── app.json └── Test │ ├── AI │ ├── app.json │ └── src │ │ ├── AzureDITest.Codeunit.al │ │ ├── AzureOpenAICapability.EnumExt.al │ │ ├── AzureOpenAITest.Codeunit.al │ │ ├── AzureOpenAIToolsTest.Codeunit.al │ │ ├── CopilotTest.Codeunit.al │ │ └── Functions │ │ ├── BadTestFunction1.Codeunit.al │ │ ├── BadTestFunction2.Codeunit.al │ │ ├── TestFunction1.Codeunit.al │ │ └── TestFunction2.Codeunit.al │ ├── Advanced Settings │ ├── app.json │ └── src │ │ └── AdvancedSettingsTest.Codeunit.al │ ├── AppSource Gallery │ ├── app.json │ └── src │ │ └── AppSourceGalleryTest.Codeunit.al │ ├── Auto Format │ ├── app.json │ └── src │ │ ├── AutoFormatTest.Codeunit.al │ │ ├── AutoFormatTest.EnumExt.al │ │ └── AutoFormatTestPage.Page.al │ ├── Azure AD Graph │ ├── app.json │ └── src │ │ └── AzureADGraphTest.Codeunit.al │ ├── Azure AD Licensing │ ├── app.json │ └── src │ │ └── AzureADLicensingTest.Codeunit.al │ ├── Azure AD Plan │ ├── app.json │ └── src │ │ ├── AzureADPlanTests.Codeunit.al │ │ ├── PlanConfigurationE2ETest.Codeunit.al │ │ └── PlanConfigurationTest.Codeunit.al │ ├── Azure AD User Management │ ├── app.json │ └── src │ │ ├── AzureADUserManagementTest.Codeunit.al │ │ └── AzureADUserSyncTest.Codeunit.al │ ├── Azure AD User │ ├── app.json │ └── src │ │ └── AzureADGraphUserTest.Codeunit.al │ ├── Azure Blob Services API │ ├── app.json │ └── src │ │ ├── ABSBlobClientTest.Codeunit.al │ │ ├── ABSContainerClientTest.Codeunit.al │ │ ├── ABSTestLibrary.Codeunit.al │ │ └── AzuriteTestLibrary.Codeunit.al │ ├── Azure File Services API │ ├── app.json │ └── src │ │ ├── AFSFileClientTest.Codeunit.al │ │ ├── AFSGetTestStorageAuth.Codeunit.al │ │ └── AFSInitTestStorage.Codeunit.al │ ├── Azure Key Vault │ ├── app.json │ └── src │ │ └── AzureKeyVaultTest.Codeunit.al │ ├── Azure Storage Services Authorization │ ├── app.json │ └── src │ │ ├── StorServAccountSASTest.Codeunit.al │ │ └── StorServSharedKeyTest.Codeunit.al │ ├── BLOB Storage │ ├── app.json │ └── src │ │ ├── PersistentBlobTest.Codeunit.al │ │ ├── TempBlobListTest.Codeunit.al │ │ └── TempBlobTest.Codeunit.al │ ├── Barcode │ ├── app.json │ └── src │ │ ├── Dynamics2D │ │ └── Dynamics2DQrCodeTest.Codeunit.al │ │ └── IDAutomation1D │ │ ├── GenericBarcodeTestHelper.Codeunit.al │ │ ├── IDA1DCodabarTest.Codeunit.al │ │ ├── IDA1DCode128Test.Codeunit.al │ │ ├── IDA1DCode39Test.Codeunit.al │ │ ├── IDA1DCode93Test.Codeunit.al │ │ ├── IDA1DEAN13Test.Codeunit.al │ │ ├── IDA1DEAN8Test.Codeunit.al │ │ ├── IDA1DI2of5Test.Codeunit.al │ │ ├── IDA1DMSITest.Codeunit.al │ │ ├── IDA1DPostnetTest.Codeunit.al │ │ ├── IDA1DUPCATest.Codeunit.al │ │ ├── IDA1DUPCETest.Codeunit.al │ │ ├── IDAutomation1DTest.Codeunit.al │ │ ├── IDAutomation2DTest.Codeunit.al │ │ ├── UnsupportedSymbology.EnumExt.al │ │ └── UnsupportedSymbology2D.EnumExt.al │ ├── Base64 Convert │ ├── app.json │ └── src │ │ └── Base64ConvertTest.Codeunit.al │ ├── Business Chart │ ├── app.json │ └── src │ │ └── BusinessChartTest.Codeunit.al │ ├── Camera and Media Interaction │ ├── app.json │ └── src │ │ └── CameraTest.Codeunit.al │ ├── Caption Class │ ├── app.json │ └── src │ │ ├── CaptionClassTest.Codeunit.al │ │ └── CaptionClassTestPage.Page.al │ ├── Client Type Management │ ├── app.json │ └── src │ │ └── TestClientTypeManagement.Codeunit.al │ ├── Confirm Management │ ├── app.json │ └── src │ │ └── ConfirmManagementTest.Codeunit.al │ ├── Cryptography Management │ ├── app.json │ └── src │ │ ├── CertificateRequestTest.Codeunit.al │ │ ├── CryptographyManagementTest.Codeunit.al │ │ ├── DESCryptoServiceProviderTest.Codeunit.al │ │ ├── GenerateBase64KeyedHashTest.Codeunit.al │ │ ├── RSACryptoServiceProviderTests.Codeunit.al │ │ ├── RSATest.Codeunit.al │ │ ├── Rfc2898DeriveBytesTest.Codeunit.al │ │ ├── RijndaelCryptographyTest.Codeunit.al │ │ ├── X509Certificate2Test.Codeunit.al │ │ ├── Xml │ │ ├── EncryptedXmlTest.Codeunit.al │ │ └── SignedXmlModuleTest.Codeunit.al │ │ └── dotnet.al │ ├── Cues and KPIs │ ├── app.json │ └── src │ │ └── CuesAndKPIsTest.Codeunit.al │ ├── Data Administration │ ├── app.json │ └── src │ │ ├── MediaCleanupTest.Codeunit.al │ │ └── TestMediaCleanup.Table.al │ ├── Data Classification │ ├── app.json │ └── src │ │ ├── DataClassWorksheetTests.Codeunit.al │ │ └── DataClassificationMgtTests.Codeunit.al │ ├── Data Compression │ ├── app.json │ └── src │ │ └── DataCompressionTests.Codeunit.al │ ├── Date and Time │ ├── app.json │ └── src │ │ ├── DateAndTimeTest.Codeunit.al │ │ └── UnixTimestampTest.Codeunit.al │ ├── Date-Time Dialog │ ├── app.json │ └── src │ │ └── DateTimeDialogTest.Codeunit.al │ ├── DisabledTests │ ├── ABSBlobClientTest.json │ ├── ABSContainerClientTest.json │ ├── AFSFileClient.json │ ├── AzureADUserManagementTest.json │ ├── AzureADUserSyncTest.json │ ├── AzureOpenAITest.json │ ├── CuesAndKPIsTest.json │ ├── DataClass.WorksheetTests.json │ ├── ExtensionManagementTest.json │ ├── FeatureKeyTest.json │ ├── IDAutomation2DTest.DisabledTest.json │ ├── ImageTests.DisabledTest.json │ ├── MediaCleanupTest.json │ ├── SecurityGroupsTest.json │ └── UserPermissionsTest.json │ ├── Document Sharing │ ├── app.json │ └── src │ │ └── DocumentSharingTest.Codeunit.al │ ├── Edit in Excel │ ├── app.json │ └── src │ │ ├── EditInExcelFiltersTest.Codeunit.al │ │ ├── EditInExcelJson.Page.al │ │ ├── EditInExcelList.Page.al │ │ ├── EditInExcelList2.Page.al │ │ ├── EditInExcelTest.Codeunit.al │ │ └── EditInExcelWorkbookTest.Codeunit.al │ ├── Email │ ├── app.json │ └── src │ │ ├── EmailAccountsTest.Codeunit.al │ │ ├── EmailAddressLookupTests.Codeunit.al │ │ ├── EmailDefaultAttachmentTests.Codeunit.al │ │ ├── EmailE2ETests.Codeunit.al │ │ ├── EmailEditorValidationTests.Codeunit.al │ │ ├── EmailMessageUnitTest.Codeunit.al │ │ ├── EmailRateLimitPageTest.Codeunit.al │ │ ├── EmailRetentionPolicyTests.Codeunit.al │ │ ├── EmailRetryTest.Codeunit.al │ │ ├── EmailScenarioPageTest.Codeunit.al │ │ ├── EmailScenarioTest.Codeunit.al │ │ ├── EmailTest.Codeunit.al │ │ ├── EmailViewPolicyTests.Codeunit.al │ │ ├── Extensions │ │ ├── EmailEditorExt.PageExt.al │ │ └── EmailEditorValues.Codeunit.al │ │ └── Mocks │ │ ├── EmailAccountsSelectionMock.Codeunit.al │ │ ├── EmailAddressLookupMock.Codeunit.al │ │ └── EmailMessageEventsMock.Codeunit.al │ ├── Encoding │ ├── app.json │ └── src │ │ └── EncodingTest.Codeunit.al │ ├── Environment Information │ ├── app.json │ └── src │ │ └── EnvironmentInformationTest.Codeunit.al │ ├── Extension Management │ ├── app.json │ ├── readme.md │ └── src │ │ ├── DataOutOfGeoAppTest.Codeunit.al │ │ ├── DataverseTableBuilderTest.Codeunit.al │ │ └── ExtensionManagementTest.Codeunit.al │ ├── ExtensionLogo.png │ ├── External File Storage │ ├── app.json │ └── src │ │ ├── FileAccountsTest.Codeunit.al │ │ ├── FileScenarioPageTest.Codeunit.al │ │ └── FileScenarioTest.Codeunit.al │ ├── Feature Key │ ├── app.json │ └── src │ │ ├── FeatureKeyTest.Codeunit.al │ │ └── FeatureKeyTestHandler.Codeunit.al │ ├── Field Selection │ ├── app.json │ └── src │ │ └── FieldSelectionTest.Codeunit.al │ ├── Filter Tokens │ ├── app.json │ └── src │ │ └── FilterTokensTest.Codeunit.al │ ├── Geolocation │ ├── app.json │ └── src │ │ └── GeolocationTest.Codeunit.al │ ├── Guided Experience │ ├── app.json │ └── src │ │ ├── AssistedSetupTest.Codeunit.al │ │ ├── AssistedSetupWizard.Page.al │ │ ├── ChecklistAdministrationTest.Codeunit.al │ │ ├── ChecklistBannerContainer.Page.al │ │ ├── ChecklistBannerFacadeTest.Codeunit.al │ │ ├── ChecklistBannerTest.Codeunit.al │ │ ├── ChecklistFacadeTest.Codeunit.al │ │ ├── ChecklistTestCodeunit.Codeunit.al │ │ ├── ChecklistTestReport.Report.al │ │ ├── CustomizeBannerLabel.codeunit.al │ │ ├── DuplicatedGuidedExpItem.Codeunit.al │ │ ├── GuidedExperienceTest.Codeunit.al │ │ ├── ManualSetupTest.Codeunit.al │ │ └── SkipWelcomeBanner.codeunit.al │ ├── Headlines │ ├── app.json │ └── src │ │ └── HeadlinesTest.Codeunit.al │ ├── Image │ ├── app.json │ └── src │ │ └── ImageTests.Codeunit.al │ ├── Json │ ├── app.json │ └── src │ │ └── JsonTest.Codeunit.al │ ├── Language │ ├── app.json │ └── src │ │ └── LanguageTest.Codeunit.al │ ├── MCP │ ├── app.json │ └── src │ │ └── MCPConfigTest.Codeunit.al │ ├── MicrosoftGraph │ ├── app.json │ └── src │ │ ├── GraphAuthSpy.Codeunit.al │ │ ├── GraphClientTest.Codeunit.al │ │ ├── GraphPaginationDataTest.Codeunit.al │ │ ├── GraphPaginationHelperTest.Codeunit.al │ │ ├── GraphPaginationIntegTest.Codeunit.al │ │ ├── MockHttpClientHandler.Codeunit.al │ │ └── MockHttpClientHandlerMulti.Codeunit.al │ ├── Navigation Bar Subscribers │ ├── app.json │ └── src │ │ └── NavigationBarSubTest.codeunit.al │ ├── Page Action Provider │ ├── app.json │ └── src │ │ └── PageActionProviderTest.Codeunit.al │ ├── Page Summary Provider │ ├── app.json │ └── src │ │ ├── PageSummaryProviderTest.Codeunit.al │ │ └── PageSummarySetupTest.Codeunit.al │ ├── Password │ ├── app.json │ └── src │ │ ├── PasswordDialogTest.Codeunit.al │ │ └── PasswordHandlerTest.Codeunit.al │ ├── Pdf │ ├── .resources │ │ ├── XRechnung.pdf │ │ └── test.pdf │ ├── app.json │ └── src │ │ └── PDFDocumentTest.Codeunit.al │ ├── Performance Profiler │ ├── app.json │ └── src │ │ ├── PerfProfilerChartTest.Codeunit.al │ │ ├── ProfilingDataProcessorTest.Codeunit.al │ │ ├── SamplingPerfProfilerTest.Codeunit.al │ │ └── ScheduledPerfProfilingTest.Codeunit.al │ ├── Permission Sets │ ├── app.json │ ├── permissions │ │ ├── PermissionSetA.permissionset.al │ │ ├── PermissionSetB.permissionset.al │ │ └── PermissionSetC.permissionset.al │ └── src │ │ ├── CopyPermissionSetsTests.Codeunit.al │ │ ├── PermissionImportExportTests.Codeunit.al │ │ ├── PermissionRelationTests.Codeunit.al │ │ └── UpdatingPermissionTests.Codeunit.al │ ├── Privacy Notice │ ├── app.json │ └── src │ │ ├── PowerAutomate │ │ └── PrivacyNoticeAutomateTest.Codeunit.al │ │ └── PrivacyNoticeTest.Codeunit.al │ ├── Record Link Management │ ├── app.json │ └── src │ │ └── RecordLinkMgtTest.Codeunit.al │ ├── Record Reference │ ├── Permissions │ │ ├── RecRefTestDelete.PermissionSet.al │ │ ├── RecRefTestInsert.PermissionSet.al │ │ ├── RecRefTestModify.PermissionSet.al │ │ ├── RecRefTestObject.PermissionSet.al │ │ └── RecRefTestRead.PermissionSet.al │ ├── app.json │ └── src │ │ ├── RecordReferenceInterfTest.Codeunit.al │ │ ├── RecordReferenceNormalTest.Codeunit.al │ │ ├── RecordReferenceTest.Table.al │ │ └── RecordReferenceTestImpl.Codeunit.al │ ├── Record Selection │ ├── app.json │ └── src │ │ └── RecordSelectionTest.Codeunit.al │ ├── Recurrence Schedule │ ├── app.json │ └── src │ │ └── RecurrenceScheduleTest.Codeunit.al │ ├── Regex │ ├── app.json │ └── src │ │ ├── RegexPerformanceTests.Codeunit.al │ │ └── RegexTests.Codeunit.al │ ├── Rest Client │ ├── app.json │ └── src │ │ ├── HttpAuthenticationTests.Codeunit.al │ │ ├── HttpContentTests.Codeunit.al │ │ ├── HttpExceptionTests.Codeunit.al │ │ ├── MockRestClientService.Codeunit.al │ │ ├── RequestMessageTests.Codeunit.al │ │ ├── RestClientTests.Codeunit.al │ │ └── TestHttpClientHandler.Codeunit.al │ ├── Retention Policy │ ├── app.json │ └── src │ │ ├── RetenPolAllowedTblTest.Codeunit.al │ │ ├── RetenPolicySetupTest.Codeunit.al │ │ ├── RetentionPeriodTest.Codeunit.al │ │ ├── RetentionPolicyLogTest.Codeunit.al │ │ └── RetentionPolicyTest.Codeunit.al │ ├── Secrets │ ├── app.json │ └── src │ │ ├── AppKeyVaultSecretProTest.Codeunit.al │ │ └── InMemorySecretProviderTest.Codeunit.al │ ├── Security Groups │ ├── app.json │ └── src │ │ ├── SecurityGroupsTest.Codeunit.al │ │ └── SecurityGroupsUpgradeTest.Codeunit.al │ ├── SharePoint Authorization │ ├── app.json │ └── src │ │ ├── SharePointAuthSubscription.Codeunit.al │ │ └── SharePointAuthorizationTest.Codeunit.al │ ├── SharePoint │ ├── app.json │ └── src │ │ └── SharePointClientTest.Codeunit.al │ ├── System Initialization │ ├── app.json │ └── src │ │ └── SystemInitializationTest.Codeunit.al │ ├── Telemetry │ ├── app.json │ └── src │ │ ├── CustomDimensionsTest.Codeunit.al │ │ ├── ErrorTelemetryLogger.Codeunit.al │ │ ├── FeatureUptakeTelemetryTest.Codeunit.al │ │ ├── TelemetryLoggersTest.Codeunit.al │ │ └── TestTelemetryLogger.Codeunit.al │ ├── Tenant License State │ ├── app.json │ └── src │ │ └── TenantLicenseStateTest.Codeunit.al │ ├── Time Zone Selection │ ├── app.json │ └── src │ │ └── TimeZoneSelectionTests.Codeunit.al │ ├── Translation │ ├── app.json │ └── src │ │ └── TranslationTests.Codeunit.al │ ├── URI │ ├── app.json │ └── src │ │ ├── UriBuilderQueryTest.Codeunit.al │ │ ├── UriBuilderTest.Codeunit.al │ │ └── UriTest.Codeunit.al │ ├── Upgrade Tags │ ├── app.json │ └── src │ │ └── UpgradeTagTest.Codeunit.al │ ├── User Details │ ├── app.json │ └── src │ │ └── UserDetailsTest.Codeunit.al │ ├── User Login Times │ ├── app.json │ └── src │ │ └── UserLoginTimeTrackerTest.Codeunit.al │ ├── User Permissions │ ├── app.json │ └── src │ │ └── UserPermissionsTest.Codeunit.al │ ├── User Selection │ ├── app.json │ └── src │ │ └── UserSelectionTest.Codeunit.al │ ├── User Settings │ ├── app.json │ └── src │ │ └── UserSettingsTests.Codeunit.al │ ├── Video │ ├── app.json │ └── src │ │ └── VideoTest.Codeunit.al │ ├── Vs Code Integration │ ├── app.json │ └── src │ │ └── VSCodeIntegrationTest.Codeunit.al │ ├── Web Service Management │ ├── app.json │ └── src │ │ └── WebServiceManagementTest.Codeunit.al │ ├── Word Templates │ ├── app.json │ └── src │ │ ├── WordTemplatesCustFieldTest.Codeunit.al │ │ ├── WordTemplatesRelatedTest.Codeunit.al │ │ └── WordTemplatesTest.Codeunit.al │ ├── XML Validation │ ├── app.json │ └── src │ │ ├── XmlValidationTest.Codeunit.al │ │ └── XmlValidationTestHelper.Codeunit.al │ ├── XmlWriter │ ├── app.json │ └── src │ │ └── XmlWriterTest.Codeunit.al │ └── app.json ├── SystemApplication.code-workspace ├── Tools ├── AI Test Toolkit │ ├── AITestSummary.xlsx │ ├── Permissions │ │ ├── AITestToolKitRead.PermissionSet.al │ │ ├── AITestToolKitView.PermissionSet.al │ │ ├── AITestToolkit.PermissionSet.al │ │ └── AITestToolkitObj.PermissionSet.al │ ├── README.md │ ├── app.json │ ├── logo │ │ └── ExtensionLogo.png │ └── src │ │ ├── AITCommandLineCard.Page.al │ │ ├── AITInstall.Codeunit.al │ │ ├── AITTestContext.Codeunit.al │ │ ├── AITTestContextImpl.Codeunit.al │ │ ├── AITTestRunInputHandler.Codeunit.al │ │ ├── AITTestRunIteration.Codeunit.al │ │ ├── API │ │ ├── AITLogEntryAPI.Page.al │ │ └── AITTestMethodLinesAPI.Page.al │ │ ├── Evaluation │ │ ├── AITColumnMapping.Table.al │ │ ├── AITColumnMappings.Page.al │ │ ├── AITEvaluator.Table.al │ │ ├── AITEvaluatorType.Enum.al │ │ └── AITEvaluators.Page.al │ │ ├── Logs │ │ ├── AITLogEntries.Page.al │ │ ├── AITLogEntry.Codeunit.al │ │ ├── AITLogEntry.Table.al │ │ ├── AITRunHistory.Codeunit.al │ │ ├── AITRunHistory.Page.al │ │ ├── AITRunHistory.Table.al │ │ ├── AITRunHistoryViewBy.Enum.al │ │ ├── AITTestData.Codeunit.al │ │ ├── AITTestData.Page.al │ │ ├── AITTestDataCompare.Page.al │ │ ├── AITTestInputView.Enum.al │ │ ├── AITTestMethodLinesCompare.Page.al │ │ ├── AITTestOutputView.Enum.al │ │ ├── AITTestSuiteCompare.Page.al │ │ └── AITTestSummary.Report.al │ │ └── TestSuite │ │ ├── AITALTestSuiteMgt.Codeunit.al │ │ ├── AITBatchRunDialog.Page.al │ │ ├── AITLineStatus.Enum.al │ │ ├── AITTestMethodLine.Table.al │ │ ├── AITTestMethodLines.Page.al │ │ ├── AITTestMethodLinesLookup.Page.al │ │ ├── AITTestSuite.Page.al │ │ ├── AITTestSuite.Table.al │ │ ├── AITTestSuiteImportExport.XmlPort.al │ │ ├── AITTestSuiteList.Page.al │ │ ├── AITTestSuiteMgt.Codeunit.al │ │ └── AITTestSuiteStatus.Enum.al ├── Performance Toolkit │ ├── App │ │ ├── Permissions │ │ │ ├── BCPerfToolkit.PermissionSet.al │ │ │ └── BCPerfToolkitObj.PermissionSet.al │ │ ├── README.md │ │ ├── WSPublishing.xml │ │ ├── app.json │ │ ├── logo │ │ │ └── ExtensionLogo.png │ │ └── src │ │ │ ├── BCPTCommandLineCard.Page.al │ │ │ ├── BCPTHeader.Codeunit.al │ │ │ ├── BCPTHeader.Table.al │ │ │ ├── BCPTHeaderStatus.Enum.al │ │ │ ├── BCPTImportExport.xmlport.al │ │ │ ├── BCPTInstall.Codeunit.al │ │ │ ├── BCPTLine.Codeunit.al │ │ │ ├── BCPTLine.Table.al │ │ │ ├── BCPTLineDelayType.Enum.al │ │ │ ├── BCPTLineStatus.Enum.al │ │ │ ├── BCPTLines.Page.al │ │ │ ├── BCPTLogEntries.Page.al │ │ │ ├── BCPTLogEntries.XmlPort.al │ │ │ ├── BCPTLogEntry.Table.al │ │ │ ├── BCPTLogEntryAPI.Page.al │ │ │ ├── BCPTLookupCodeunits.Page.al │ │ │ ├── BCPTParameterLine.Table.al │ │ │ ├── BCPTParameters.Page.al │ │ │ ├── BCPTRoleWrapper.Codeunit.al │ │ │ ├── BCPTRunType.Enum.al │ │ │ ├── BCPTSetupCard.Page.al │ │ │ ├── BCPTSetupList.Page.al │ │ │ ├── BCPTStartTests.Codeunit.al │ │ │ ├── BCPTSuiteAPI.Page.al │ │ │ ├── BCPTSuiteLineAPI.Page.al │ │ │ ├── BCPTTestContext.Codeunit.al │ │ │ ├── BCPTTestParamEnum.Enum.al │ │ │ ├── BCPTTestParamProvider.Interface.al │ │ │ └── BCPTTestSuite.Codeunit.al │ ├── PerformanceToolkit.code-workspace │ └── Test │ │ ├── app.json │ │ ├── logo │ │ └── ExtensionLogo.png │ │ └── src │ │ ├── BCPTSetupCardTest.Codeunit.al │ │ ├── BCPTTestLibrary.Codeunit.al │ │ └── Mock Tests │ │ ├── BCPTCodeunitWith1Sql.Codeunit.al │ │ ├── BCPTCodeunitWithError.Codeunit.al │ │ ├── BCPTCodeunitWithLog.Codeunit.al │ │ └── BCPTEmptyCodeunit.Codeunit.al └── Test Framework │ ├── Test Libraries │ ├── Any │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── Any.Codeunit.al │ ├── Assert │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ └── LibraryAssert.Codeunit.al │ ├── Permissions Mock │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ │ ├── AllObjects.PermissionSet.al │ │ │ ├── PermissionsMock.Codeunit.al │ │ │ └── dotnet.al │ └── Variable Storage │ │ ├── ExtensionLogo.png │ │ ├── README.md │ │ ├── app.json │ │ └── src │ │ └── LibraryVariableStorage.Codeunit.al │ ├── Test Runner │ ├── ExtensionLogo.png │ ├── README.md │ ├── app.json │ ├── permissions │ │ ├── TestRunner.PermissionSet.al │ │ ├── TestRunnerExec.PermissionSet.al │ │ └── TestRunnerObj.PermissionSet.al │ └── src │ │ ├── ALTestRunnerResetEnvironment.Codeunit.al │ │ ├── ALTestSuite.Table.al │ │ ├── ALTestSuites.Page.al │ │ ├── ALTestTool.Page.al │ │ ├── CodeCoverage │ │ ├── ALCodeCoverage.Page.al │ │ ├── ALCodeCoverageMap.Table.al │ │ ├── ALCodeCoverageMap.XmlPort.al │ │ ├── ALCodeCoverageMgt.Codeunit.al │ │ ├── ALCodeCoverageSubscribers.Codeunit.al │ │ ├── CodeCoverageDetailed.XmlPort.al │ │ ├── CodeCoverageResults.Xmlport.al │ │ └── TestCodeCoverageResult.Table.al │ │ ├── CommandLineTestTool.Page.al │ │ ├── DataDrivenTest │ │ ├── DDTCommandLineTestTool.PageExt.al │ │ ├── DataDrivenTestTool.PageExt.al │ │ ├── DataInputs │ │ │ ├── ExpandDataDrivenTests.Codeunit.al │ │ │ ├── TestInput.Codeunit.al │ │ │ ├── TestInput.Page.al │ │ │ ├── TestInput.Table.al │ │ │ ├── TestInputGroup.Table.al │ │ │ ├── TestInputGroups.Page.al │ │ │ ├── TestInputJson.Codeunit.al │ │ │ ├── TestInputMethodLine.TableExt.al │ │ │ ├── TestInputPart.Page.al │ │ │ └── TestInputsManagement.Codeunit.al │ │ └── DataOutputs │ │ │ ├── TestOutput.Codeunit.al │ │ │ ├── TestOutput.Table.al │ │ │ ├── TestOutputJson.Codeunit.al │ │ │ └── TestOutputs.Page.al │ │ ├── SelectTestRunner.Page.al │ │ ├── SelectTests.Page.al │ │ ├── SelectTestsByRange.Page.al │ │ ├── TestMethodLine.Table.al │ │ ├── TestProfileManagement.Codeunit.al │ │ ├── TestRoleCenter.Page.al │ │ ├── TestRoleCenter.Profile.al │ │ ├── TestRunnerGetMethods.Codeunit.al │ │ ├── TestRunnerIsolCodeunit.Codeunit.al │ │ ├── TestRunnerIsolDisabled.Codeunit.al │ │ ├── TestRunnerMgt.Codeunit.al │ │ ├── TestRunnerProgressDialog.Codeunit.al │ │ └── TestSuiteMgt.Codeunit.al │ └── Test Stability Tools │ └── Prevent Metadata Updates │ ├── ExtensionLogo.png │ ├── Permissions │ └── PrevMtdUpdObj.PermissionSet.al │ ├── README.md │ ├── app.json │ └── src │ └── BlockChangesToSystemTables.Codeunit.al └── rulesets ├── Analyzer.ruleset.json ├── AppSourceCop.ruleset.json ├── CodeCop.ruleset.json ├── Compiler.ruleset.json ├── PTECop.ruleset.json ├── UICop.ruleset.json ├── internal.module.ruleset.json ├── minorrelease.ruleset.json └── ruleset.json /.azuredevops/SyncMirroredRepository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.azuredevops/SyncMirroredRepository.yml -------------------------------------------------------------------------------- /.azuredevops/security-tools.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.azuredevops/security-tools.gdnsuppress -------------------------------------------------------------------------------- /.azuredevops/security-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.azuredevops/security-tools.yml -------------------------------------------------------------------------------- /.azuredevops/variables-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.azuredevops/variables-common.yml -------------------------------------------------------------------------------- /.devcontainer/BCApps/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.devcontainer/BCApps/devcontainer.json -------------------------------------------------------------------------------- /.github/AL-Go-Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/AL-Go-Settings.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bcidea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/ISSUE_TEMPLATE/bcidea.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contribution_bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/ISSUE_TEMPLATE/contribution_bug.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASENOTES.copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/RELEASENOTES.copy.md -------------------------------------------------------------------------------- /.github/Update AL-Go System Files.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/Update AL-Go System Files.settings.json -------------------------------------------------------------------------------- /.github/actions/GetGitBranches/action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/GetGitBranches/action.ps1 -------------------------------------------------------------------------------- /.github/actions/GetGitBranches/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/GetGitBranches/action.yaml -------------------------------------------------------------------------------- /.github/actions/RunAutomation/HowToAddAnAutomation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/HowToAddAnAutomation.md -------------------------------------------------------------------------------- /.github/actions/RunAutomation/SubmitStabilityJob/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/SubmitStabilityJob/run.ps1 -------------------------------------------------------------------------------- /.github/actions/RunAutomation/UpdateAppBaselines/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/UpdateAppBaselines/run.ps1 -------------------------------------------------------------------------------- /.github/actions/RunAutomation/UpdateAppTranslations/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/UpdateAppTranslations/run.ps1 -------------------------------------------------------------------------------- /.github/actions/RunAutomation/UpdateBCArtifact/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/UpdateBCArtifact/run.ps1 -------------------------------------------------------------------------------- /.github/actions/RunAutomation/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/action.yaml -------------------------------------------------------------------------------- /.github/actions/RunAutomation/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/RunAutomation/run.ps1 -------------------------------------------------------------------------------- /.github/actions/TestObjectIdsAndManifests/action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/TestObjectIdsAndManifests/action.ps1 -------------------------------------------------------------------------------- /.github/actions/TestObjectIdsAndManifests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/TestObjectIdsAndManifests/action.yaml -------------------------------------------------------------------------------- /.github/actions/TestPreprocessorSymbols/action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/TestPreprocessorSymbols/action.ps1 -------------------------------------------------------------------------------- /.github/actions/TestPreprocessorSymbols/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/actions/TestPreprocessorSymbols/action.yaml -------------------------------------------------------------------------------- /.github/agents/EngSys-VersionChange.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/agents/EngSys-VersionChange.agent.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/CICD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/CICD.yaml -------------------------------------------------------------------------------- /.github/workflows/DeployReferenceDocumentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/DeployReferenceDocumentation.yaml -------------------------------------------------------------------------------- /.github/workflows/IncrementVersionNumber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/IncrementVersionNumber.yaml -------------------------------------------------------------------------------- /.github/workflows/PowerShell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/PowerShell.yaml -------------------------------------------------------------------------------- /.github/workflows/PullRequestHandler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/PullRequestHandler.yaml -------------------------------------------------------------------------------- /.github/workflows/PullRequestLabeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/PullRequestLabeler.yaml -------------------------------------------------------------------------------- /.github/workflows/SubmitStabilityJobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/SubmitStabilityJobs.yaml -------------------------------------------------------------------------------- /.github/workflows/Troubleshooting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/Troubleshooting.yaml -------------------------------------------------------------------------------- /.github/workflows/UpdateALGoProjects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/UpdateALGoProjects.yaml -------------------------------------------------------------------------------- /.github/workflows/UpdateBCArtifactVersion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/UpdateBCArtifactVersion.yaml -------------------------------------------------------------------------------- /.github/workflows/UpdateGitHubGoSystemFiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/UpdateGitHubGoSystemFiles.yaml -------------------------------------------------------------------------------- /.github/workflows/UpdatePackageVersions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/UpdatePackageVersions.yaml -------------------------------------------------------------------------------- /.github/workflows/VerifyAppChanges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/VerifyAppChanges.yaml -------------------------------------------------------------------------------- /.github/workflows/WorkitemValidation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/WorkitemValidation.yaml -------------------------------------------------------------------------------- /.github/workflows/_BuildALGoProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/_BuildALGoProject.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.github/workflows/scorecard-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/LICENSE -------------------------------------------------------------------------------- /LOCAL_DEV_ENV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/LOCAL_DEV_ENV.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /src/Apps/W1/APIReportsFinance/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/APIReportsFinance/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/APIReportsFinance/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/APIReportsFinance/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/APIReportsFinance/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/APIReportsFinance/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/APIReportsFinance/App/src/APIFinanceVendor.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/APIReportsFinance/App/src/APIFinanceVendor.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchive.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchive.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveList.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveMediaField.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveMediaField.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveNewArchive.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveNewArchive.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveProvider.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveProvider.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveTable.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveTable.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/App/src/DataArchiveTableList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/App/src/DataArchiveTableList.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/Test/TestDataArchiveImpl.codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/Test/TestDataArchiveImpl.codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataArchive/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataArchive/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/DataCorrectionFA/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataCorrectionFA/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/DataCorrectionFA/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataCorrectionFA/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/DataCorrectionFA/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataCorrectionFA/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearch.page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearch.page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchDefaults.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchDefaults.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchEvents.codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchEvents.codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchInTable.codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchInTable.codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchInvocation.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchInvocation.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchLines.page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchLines.page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchObjectMapping.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchObjectMapping.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchResult.table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchResult.table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchResultRecords.page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchResultRecords.page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupChanges.codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupChanges.codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupField.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupField.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupFieldList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupFieldList.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupFieldPart.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupFieldPart.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupLists.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupLists.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupTable.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupTable.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/DataSearchSetupTableList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/DataSearchSetupTableList.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/Test/TestDataSearch.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/Test/TestDataSearch.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/Test/TestDataSearch.codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/Test/TestDataSearch.codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/Test/TestDataSearchExtension.PageExt.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/Test/TestDataSearchExtension.PageExt.al -------------------------------------------------------------------------------- /src/Apps/W1/DataSearch/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/DataSearch/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/README.md -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/ControlAddIn/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/ControlAddIn/script.js -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/ControlAddIn/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/ControlAddIn/startup.js -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/ControlAddIn/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/ControlAddIn/stylesheet.css -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocument.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocument.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocument.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocument.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocumentFormat.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocumentFormat.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocumentType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocumentType.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocuments.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocuments.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Document/EDocumentsSetup.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Document/EDocumentsSetup.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/EDocumentInstall.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/EDocumentInstall.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Logging/EDocDataStorage.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Logging/EDocDataStorage.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Logging/EDocFileFormat.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Logging/EDocFileFormat.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Logging/EDocumentLog.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Logging/EDocumentLog.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Logging/EDocumentLog.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Logging/EDocumentLog.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Logging/EDocumentLogs.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Logging/EDocumentLogs.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocChangesPart.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocChangesPart.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMapping.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMappingLog.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMappingLog.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMappingLogs.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMappingLogs.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Mapping/EDocMappingPart.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Mapping/EDocMappingPart.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Processing/EDocExport.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Processing/EDocExport.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Processing/EDocImport.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Processing/EDocImport.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Service/EDocumentService.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Service/EDocumentService.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Service/EDocumentServices.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Service/EdocumentService.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Service/EdocumentService.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/App/src/Setup/EDocumentSetup.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/App/src/Setup/EDocumentSetup.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Demo Data/EDocumentModuleSetup.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Demo Data/EDocumentModuleSetup.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Demo Data/EDocumentModuleSetup.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Demo Data/EDocumentModuleSetup.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Demo Data/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Demo Data/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Demo Data/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Demo Data/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/EDocumentCore.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/EDocumentCore.code-workspace -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/.resources/API/base64file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/.resources/API/base64file.txt -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/.resources/peppol/PEPPOL1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/.resources/peppol/PEPPOL1.xml -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/DisabledTests/CopilotTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/DisabledTests/CopilotTests.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/DisabledTests/EDocAPITest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/DisabledTests/EDocAPITest.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/DisabledTests/EDocEmailTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/DisabledTests/EDocEmailTests.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/EDOCTestsInstall.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/EDOCTestsInstall.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/Flow/EDocFlowTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/Flow/EDocFlowTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/LibraryEDocument.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/LibraryEDocument.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/Mock/EDocFormatMock.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/Mock/EDocFormatMock.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/Mock/EDocFormatMock.EnumExt.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/Mock/EDocFormatMock.EnumExt.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/Mock/EDocImplState.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/Mock/EDocImplState.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocument/Test/src/Mock/EDocTestBuffer.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocument/Test/src/Mock/EDocTestBuffer.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/Avalara/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/Avalara/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/Avalara/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/Avalara/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/Avalara/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/Avalara/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/Avalara/Test/HttpResponseFiles/SubmitDocument.txt: -------------------------------------------------------------------------------- 1 | {"id":"52f60401-44d0-4667-ad47-4afe519abb53"} -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/Avalara/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/Avalara/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/App/AppSourceCop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/App/AppSourceCop.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/Test/AppSourceCop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/Test/AppSourceCop.json -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EDocumentConnectors/ForNAV/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EDocumentConnectors/ForNAV/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/ErrorMessagesWithRecommendations/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ErrorMessagesWithRecommendations/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/ErrorMessagesWithRecommendations/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ErrorMessagesWithRecommendations/App/README.md -------------------------------------------------------------------------------- /src/Apps/W1/ErrorMessagesWithRecommendations/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ErrorMessagesWithRecommendations/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/ErrorMessagesWithRecommendations/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ErrorMessagesWithRecommendations/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EssentialBusinessHeadlines/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EssentialBusinessHeadlines/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/EssentialBusinessHeadlines/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EssentialBusinessHeadlines/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EssentialBusinessHeadlines/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EssentialBusinessHeadlines/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/EssentialBusinessHeadlines/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EssentialBusinessHeadlines/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/EssentialBusinessHeadlines/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/EssentialBusinessHeadlines/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/ExcelReports/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ExcelReports/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/ExcelReports/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ExcelReports/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/ExcelReports/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ExcelReports/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/ExcelReports/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/ExcelReports/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/External File Storage - Azure Blob Service Connector/Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/External File Storage - Azure File Service Connector/Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/External File Storage - SharePoint Connector/Test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/PaymentPractices/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PaymentPractices/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/PaymentPractices/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PaymentPractices/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/PaymentPractices/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PaymentPractices/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/PaymentPractices/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PaymentPractices/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/PaymentPractices/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PaymentPractices/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/ContactsPBIAPI.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/ContactsPBIAPI.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/Customers.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/Customers.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/DateSetup.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/DateSetup.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/Dimensions.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/Dimensions.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/ItemsPBIAPI.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/ItemsPBIAPI.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/Locations.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/Locations.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/VendorsPBIAPI.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/VendorsPBIAPI.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/APIs/WorkingDays.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/APIs/WorkingDays.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Core/Tables/WorkingDay.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Core/Tables/WorkingDay.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Finance/APIs/GLAccounts.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Finance/APIs/GLAccounts.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Finance/APIs/GLBudgets.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Finance/APIs/GLBudgets.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Finance/AccountCategory.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Finance/AccountCategory.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Finance/Embedded/EBITDA.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Finance/SetupFinance.TableExt.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Finance/SetupFinance.TableExt.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Inventory/APIs/Bins.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Inventory/APIs/Bins.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Inventory/APIs/Zones.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Inventory/APIs/Zones.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Projects/APIs/JobTasks.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Projects/APIs/JobTasks.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Projects/APIs/Jobs.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Projects/APIs/Jobs.Query.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/Sales/SetupSales.TableExt.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/Sales/SetupSales.TableExt.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Finance app/Finance app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Inventory Valuation app/Inventory Valuation app.SemanticModel/DAXQueries/Query 1.dax: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Inventory Valuation app/Inventory Valuation app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Inventory app/Inventory app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Manufacturing app/Manufacturing app.SemanticModel/DAXQueries/Query 1.dax: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Manufacturing app/Manufacturing app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Projects app/Projects app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Purchase app/Purchase app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Sales app/Sales app.SemanticModel/DAXQueries/Query 1.dax: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Sales app/Sales app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1601 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Subscription Billing app/Subscription Billing app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/README.md -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test Library/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test Library/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test Library/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test Library/app.json -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test/DisabledTests/E2EAPITests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test/DisabledTests/E2EAPITests.json -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test/E2EPowerBISalesTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test/E2EPowerBISalesTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test/PowerBICoreTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test/PowerBICoreTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/PowerBIReports/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/PowerBIReports/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Quality Management/QMWorkspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Quality Management/QMWorkspace.code-workspace -------------------------------------------------------------------------------- /src/Apps/W1/Quality Management/app/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Quality Management/app/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Quality Management/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Quality Management/app/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Quality Management/test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Quality Management/test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Quality Management/test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Quality Management/test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/SendToEmailPrinter/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SendToEmailPrinter/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/SendToEmailPrinter/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SendToEmailPrinter/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/SendToEmailPrinter/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SendToEmailPrinter/App/README.md -------------------------------------------------------------------------------- /src/Apps/W1/SendToEmailPrinter/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SendToEmailPrinter/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/.resources/data/provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/.resources/data/provinces.yml -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Enums/ShpfyLoggingMode.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Enums/ShpfyLoggingMode.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Enums/ShpfyWeightUnit.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Enums/ShpfyWeightUnit.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyActivities.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyActivities.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyShopCard.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyShopCard.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyShops.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyShops.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyTagFactbox.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyTagFactbox.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyTags.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Pages/ShpfyTags.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyCue.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyCue.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyShop.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyShop.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyTag.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Base/Tables/ShpfyTag.Table.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Customers/Enums/ShpfyTaxBy.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Customers/Enums/ShpfyTaxBy.Enum.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/App/src/Logs/Pages/ShpfyLogEntries.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/App/src/Logs/Pages/ShpfyLogEntries.Page.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/README.md -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Shopify.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Shopify.code-workspace -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/.resources/Logs/CustomersResult.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/.resources/Logs/CustomersResult.txt -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/.resources/Staff/StaffMembers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/.resources/Staff/StaffMembers.txt -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/Base/ShpfyFilterMgtTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/Base/ShpfyFilterMgtTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/Base/ShpfyTestShopify.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/Base/ShpfyTestShopify.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/Helpers/ShpfyBase64Test.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/Helpers/ShpfyBase64Test.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/Helpers/ShpfyHashTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/Helpers/ShpfyHashTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/Staff/ShpfyStaffTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/Staff/ShpfyStaffTest.Codeunit.al -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Shopify/extensibility_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Shopify/extensibility_examples.md -------------------------------------------------------------------------------- /src/Apps/W1/SimplifiedBankStatementImport/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SimplifiedBankStatementImport/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/SimplifiedBankStatementImport/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SimplifiedBankStatementImport/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/SimplifiedBankStatementImport/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/SimplifiedBankStatementImport/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/Demo Data/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/Demo Data/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/Demo Data/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/Demo Data/app.json -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/Subscription Billing/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/Subscription Billing/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/TransactionStorage/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/TransactionStorage/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Apps/W1/TransactionStorage/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/TransactionStorage/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/UKSendRemittanceAdvice/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/UKSendRemittanceAdvice/App/.objidconfig -------------------------------------------------------------------------------- /src/Apps/W1/UKSendRemittanceAdvice/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/UKSendRemittanceAdvice/App/app.json -------------------------------------------------------------------------------- /src/Apps/W1/UKSendRemittanceAdvice/App/extensionlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/UKSendRemittanceAdvice/App/extensionlogo.png -------------------------------------------------------------------------------- /src/Apps/W1/UKSendRemittanceAdvice/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/UKSendRemittanceAdvice/Test/app.json -------------------------------------------------------------------------------- /src/Apps/W1/UKSendRemittanceAdvice/Test/extensionlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Apps/W1/UKSendRemittanceAdvice/Test/extensionlogo.png -------------------------------------------------------------------------------- /src/Business Foundation/App/AuditCodes/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/AuditCodes/app.json -------------------------------------------------------------------------------- /src/Business Foundation/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Business Foundation/App/NoSeries/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/NoSeries/app.json -------------------------------------------------------------------------------- /src/Business Foundation/App/NoSeries/readme_refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/NoSeries/readme_refactoring.md -------------------------------------------------------------------------------- /src/Business Foundation/App/NoSeriesCopilot/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Business Foundation/App/NoSeriesCopilot/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/NoSeriesCopilot/app.json -------------------------------------------------------------------------------- /src/Business Foundation/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/README.md -------------------------------------------------------------------------------- /src/Business Foundation/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/App/app.json -------------------------------------------------------------------------------- /src/Business Foundation/Test Library/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test Library/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Business Foundation/Test Library/NoSeries/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test Library/NoSeries/app.json -------------------------------------------------------------------------------- /src/Business Foundation/Test Library/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test Library/app.json -------------------------------------------------------------------------------- /src/Business Foundation/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Business Foundation/Test/NoSeries/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test/NoSeries/app.json -------------------------------------------------------------------------------- /src/Business Foundation/Test/NoSeriesCopilot/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test/NoSeriesCopilot/app.json -------------------------------------------------------------------------------- /src/Business Foundation/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Business Foundation/Test/app.json -------------------------------------------------------------------------------- /src/BusinessFoundation.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/BusinessFoundation.code-workspace -------------------------------------------------------------------------------- /src/System Application/App/.objidconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/.objidconfig -------------------------------------------------------------------------------- /src/System Application/App/AI/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/App/AI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/AI/app.json -------------------------------------------------------------------------------- /src/System Application/App/ActivityLog/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/ActivityLog/app.json -------------------------------------------------------------------------------- /src/System Application/App/Advanced Settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Advanced Settings/README.md -------------------------------------------------------------------------------- /src/System Application/App/Advanced Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Advanced Settings/app.json -------------------------------------------------------------------------------- /src/System Application/App/Agent/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/ExtensionLogo.png -------------------------------------------------------------------------------- /src/System Application/App/Agent/Setup/Agent.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/Setup/Agent.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Agent/Setup/AgentCard.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/Setup/AgentCard.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Agent/Setup/AgentImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/Setup/AgentImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Agent/Setup/AgentList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/Setup/AgentList.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Agent/TaskPane/AgentTasks.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/TaskPane/AgentTasks.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Agent/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/app.json -------------------------------------------------------------------------------- /src/System Application/App/Agent/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Agent/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/AppSource Gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/AppSource Gallery/README.md -------------------------------------------------------------------------------- /src/System Application/App/AppSource Gallery/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/AppSource Gallery/app.json -------------------------------------------------------------------------------- /src/System Application/App/Auto Format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Auto Format/README.md -------------------------------------------------------------------------------- /src/System Application/App/Auto Format/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Auto Format/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Graph/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Graph/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Graph/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Licensing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Licensing/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Licensing/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Licensing/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/src/Plan.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/src/Plan.Query.al -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/src/Plan.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/src/Plan.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/src/Plans.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/src/Plans.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Plan/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Plan/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Tenant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Tenant/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure AD Tenant/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD Tenant/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD User Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD User Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure AD User/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD User/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure AD User/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure AD User/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure Blob Services API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Blob Services API/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure Blob Services API/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Blob Services API/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure File Services API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure File Services API/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure File Services API/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure File Services API/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure Function/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Function/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure Key Vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Key Vault/README.md -------------------------------------------------------------------------------- /src/System Application/App/Azure Key Vault/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Key Vault/app.json -------------------------------------------------------------------------------- /src/System Application/App/Azure Key Vault/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Azure Key Vault/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/BLOB Storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/BLOB Storage/README.md -------------------------------------------------------------------------------- /src/System Application/App/BLOB Storage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/BLOB Storage/app.json -------------------------------------------------------------------------------- /src/System Application/App/Barcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Barcode/README.md -------------------------------------------------------------------------------- /src/System Application/App/Barcode/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Barcode/app.json -------------------------------------------------------------------------------- /src/System Application/App/Base64 Convert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Base64 Convert/README.md -------------------------------------------------------------------------------- /src/System Application/App/Base64 Convert/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Base64 Convert/app.json -------------------------------------------------------------------------------- /src/System Application/App/Business Chart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Business Chart/app.json -------------------------------------------------------------------------------- /src/System Application/App/Caption Class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Caption Class/README.md -------------------------------------------------------------------------------- /src/System Application/App/Caption Class/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Caption Class/app.json -------------------------------------------------------------------------------- /src/System Application/App/Client Type Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Client Type Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Client Type Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Client Type Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Confirm Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Confirm Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Confirm Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Confirm Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/BusinessChart/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Refresh(); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/BusinessChart/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Refresh(); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/BusinessChart/js/Startup.js: -------------------------------------------------------------------------------- 1 | Initialize(); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/FlowIntegration/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/FlowIntegration/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/FlowIntegration/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/OAuthIntegration/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/PageReady/js/PageReady.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('AddInReady', null); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/PageReady/stylesheets/PageReady.css: -------------------------------------------------------------------------------- 1 | * { 2 | display:none 3 | } -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/PowerBIManagement/js/Startup.js: -------------------------------------------------------------------------------- 1 | Initialize(); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/RoleCenterSelector/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady', null); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/VideoPlayer/js/Startup.js: -------------------------------------------------------------------------------- 1 | RaiseAddInReady(); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/WelcomeWizard/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/WelcomeWizard/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/Resources/WelcomeWizard/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/ControlAddIns/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/ControlAddIns/app.json -------------------------------------------------------------------------------- /src/System Application/App/Cryptography Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Cryptography Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Cryptography Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Cryptography Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Cues and KPIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Cues and KPIs/README.md -------------------------------------------------------------------------------- /src/System Application/App/Cues and KPIs/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Cues and KPIs/app.json -------------------------------------------------------------------------------- /src/System Application/App/Data Administration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Administration/app.json -------------------------------------------------------------------------------- /src/System Application/App/Data Archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Archive/README.md -------------------------------------------------------------------------------- /src/System Application/App/Data Archive/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Archive/app.json -------------------------------------------------------------------------------- /src/System Application/App/Data Classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Classification/README.md -------------------------------------------------------------------------------- /src/System Application/App/Data Classification/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Classification/app.json -------------------------------------------------------------------------------- /src/System Application/App/Data Compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Compression/README.md -------------------------------------------------------------------------------- /src/System Application/App/Data Compression/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Compression/app.json -------------------------------------------------------------------------------- /src/System Application/App/Data Compression/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Data Compression/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Date and Time/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Date and Time/app.json -------------------------------------------------------------------------------- /src/System Application/App/Date-Time Dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Date-Time Dialog/README.md -------------------------------------------------------------------------------- /src/System Application/App/Date-Time Dialog/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Date-Time Dialog/app.json -------------------------------------------------------------------------------- /src/System Application/App/Default Role Center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Default Role Center/README.md -------------------------------------------------------------------------------- /src/System Application/App/Default Role Center/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Default Role Center/app.json -------------------------------------------------------------------------------- /src/System Application/App/Device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Device/README.md -------------------------------------------------------------------------------- /src/System Application/App/Device/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Device/app.json -------------------------------------------------------------------------------- /src/System Application/App/Device/src/Device.Query.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Device/src/Device.Query.al -------------------------------------------------------------------------------- /src/System Application/App/Document Sharing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Document Sharing/README.md -------------------------------------------------------------------------------- /src/System Application/App/Document Sharing/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Document Sharing/app.json -------------------------------------------------------------------------------- /src/System Application/App/DotNet Aliases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/DotNet Aliases/README.md -------------------------------------------------------------------------------- /src/System Application/App/DotNet Aliases/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/DotNet Aliases/app.json -------------------------------------------------------------------------------- /src/System Application/App/DotNet Aliases/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/DotNet Aliases/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Edit in Excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Edit in Excel/README.md -------------------------------------------------------------------------------- /src/System Application/App/Edit in Excel/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Edit in Excel/app.json -------------------------------------------------------------------------------- /src/System Application/App/Email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Email/README.md -------------------------------------------------------------------------------- /src/System Application/App/Email/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Email/app.json -------------------------------------------------------------------------------- /src/System Application/App/Email/src/Email/Email.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Email/src/Email/Email.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Encoding/README.md -------------------------------------------------------------------------------- /src/System Application/App/Encoding/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Encoding/app.json -------------------------------------------------------------------------------- /src/System Application/App/Encoding/src/Encoding.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Encoding/src/Encoding.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Entity Text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Entity Text/README.md -------------------------------------------------------------------------------- /src/System Application/App/Entity Text/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Entity Text/app.json -------------------------------------------------------------------------------- /src/System Application/App/Environment Cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Environment Cleanup/README.md -------------------------------------------------------------------------------- /src/System Application/App/Environment Cleanup/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Environment Cleanup/app.json -------------------------------------------------------------------------------- /src/System Application/App/Environment Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Environment Information/README.md -------------------------------------------------------------------------------- /src/System Application/App/Environment Information/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Environment Information/app.json -------------------------------------------------------------------------------- /src/System Application/App/Extension Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Extension Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Extension Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Extension Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/ExtensionLogo.png -------------------------------------------------------------------------------- /src/System Application/App/External File Storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/External File Storage/README.md -------------------------------------------------------------------------------- /src/System Application/App/External File Storage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/External File Storage/app.json -------------------------------------------------------------------------------- /src/System Application/App/Feature Configuration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Feature Configuration/app.json -------------------------------------------------------------------------------- /src/System Application/App/Feature Key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Feature Key/README.md -------------------------------------------------------------------------------- /src/System Application/App/Feature Key/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Feature Key/app.json -------------------------------------------------------------------------------- /src/System Application/App/Field Selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Field Selection/README.md -------------------------------------------------------------------------------- /src/System Application/App/Field Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Field Selection/app.json -------------------------------------------------------------------------------- /src/System Application/App/Filter Tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Filter Tokens/README.md -------------------------------------------------------------------------------- /src/System Application/App/Filter Tokens/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Filter Tokens/app.json -------------------------------------------------------------------------------- /src/System Application/App/Geolocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Geolocation/README.md -------------------------------------------------------------------------------- /src/System Application/App/Geolocation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Geolocation/app.json -------------------------------------------------------------------------------- /src/System Application/App/Guided Experience/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/App/Guided Experience/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Guided Experience/app.json -------------------------------------------------------------------------------- /src/System Application/App/Guided Experience/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Guided Experience/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Headlines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Headlines/README.md -------------------------------------------------------------------------------- /src/System Application/App/Headlines/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Headlines/app.json -------------------------------------------------------------------------------- /src/System Application/App/Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/README.md -------------------------------------------------------------------------------- /src/System Application/App/Image/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/app.json -------------------------------------------------------------------------------- /src/System Application/App/Image/src/Image.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/src/Image.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Image/src/ImageFormat.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/src/ImageFormat.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/Image/src/ImageImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/src/ImageImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Image/src/RotateFlipType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Image/src/RotateFlipType.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/Json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Json/README.md -------------------------------------------------------------------------------- /src/System Application/App/Json/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Json/app.json -------------------------------------------------------------------------------- /src/System Application/App/Json/src/Json.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Json/src/Json.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Json/src/JsonImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Json/src/JsonImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Language/README.md -------------------------------------------------------------------------------- /src/System Application/App/Language/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Language/app.json -------------------------------------------------------------------------------- /src/System Application/App/Language/src/Language.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Language/src/Language.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Language/src/Language.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Language/src/Language.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Language/src/Languages.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Language/src/Languages.Page.al -------------------------------------------------------------------------------- /src/System Application/App/MCP/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/MCP/app.json -------------------------------------------------------------------------------- /src/System Application/App/Math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Math/README.md -------------------------------------------------------------------------------- /src/System Application/App/Math/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Math/app.json -------------------------------------------------------------------------------- /src/System Application/App/Math/src/Math.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Math/src/Math.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Microsoft User Feedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Microsoft User Feedback/README.md -------------------------------------------------------------------------------- /src/System Application/App/Microsoft User Feedback/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Microsoft User Feedback/app.json -------------------------------------------------------------------------------- /src/System Application/App/MicrosoftGraph/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/MicrosoftGraph/app.json -------------------------------------------------------------------------------- /src/System Application/App/OAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth/README.md -------------------------------------------------------------------------------- /src/System Application/App/OAuth/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth/app.json -------------------------------------------------------------------------------- /src/System Application/App/OAuth/src/HttpRequestType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth/src/HttpRequestType.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth/src/OAuth.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth/src/OAuth.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth/src/OAuthImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth/src/OAuthImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/OAuth2.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/OAuth2.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/OAuth2ControlAddIn.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/OAuth2ControlAddIn.Page.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/OAuth2Impl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/OAuth2Impl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/PromptInteraction.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/PromptInteraction.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/README.md -------------------------------------------------------------------------------- /src/System Application/App/OAuth2/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/OAuth2/app.json -------------------------------------------------------------------------------- /src/System Application/App/Object Selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Object Selection/README.md -------------------------------------------------------------------------------- /src/System Application/App/Object Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Object Selection/app.json -------------------------------------------------------------------------------- /src/System Application/App/Page Action Provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Page Action Provider/README.md -------------------------------------------------------------------------------- /src/System Application/App/Page Action Provider/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Page Action Provider/app.json -------------------------------------------------------------------------------- /src/System Application/App/Page Summary Provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Page Summary Provider/README.md -------------------------------------------------------------------------------- /src/System Application/App/Page Summary Provider/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Page Summary Provider/app.json -------------------------------------------------------------------------------- /src/System Application/App/Password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Password/README.md -------------------------------------------------------------------------------- /src/System Application/App/Password/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Password/app.json -------------------------------------------------------------------------------- /src/System Application/App/Password/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Password/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Pdf/README.md -------------------------------------------------------------------------------- /src/System Application/App/Pdf/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Pdf/app.json -------------------------------------------------------------------------------- /src/System Application/App/Pdf/src/PDFDocument.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Pdf/src/PDFDocument.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Pdf/src/PDFSaveFormat.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Pdf/src/PDFSaveFormat.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/Performance Profiler/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Performance Profiler/app.json -------------------------------------------------------------------------------- /src/System Application/App/Permission Sets/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Permission Sets/app.json -------------------------------------------------------------------------------- /src/System Application/App/Printer Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Printer Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Printer Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Printer Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Privacy Notice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Privacy Notice/README.md -------------------------------------------------------------------------------- /src/System Application/App/Privacy Notice/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Privacy Notice/app.json -------------------------------------------------------------------------------- /src/System Application/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/README.md -------------------------------------------------------------------------------- /src/System Application/App/Record Link Management/README.md: -------------------------------------------------------------------------------- 1 | Helper functions on RecordLinks. 2 | 3 | -------------------------------------------------------------------------------- /src/System Application/App/Record Link Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Record Link Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Record Reference/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Record Reference/app.json -------------------------------------------------------------------------------- /src/System Application/App/Record Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Record Selection/app.json -------------------------------------------------------------------------------- /src/System Application/App/Recurrence Schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Recurrence Schedule/README.md -------------------------------------------------------------------------------- /src/System Application/App/Recurrence Schedule/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Recurrence Schedule/app.json -------------------------------------------------------------------------------- /src/System Application/App/Regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/README.md -------------------------------------------------------------------------------- /src/System Application/App/Regex/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/app.json -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/Captures.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/Captures.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/Groups.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/Groups.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/Matches.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/Matches.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/Regex.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/Regex.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/RegexImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/RegexImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/RegexOptions.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/RegexOptions.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/Regex/src/RegexOptions.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Regex/src/RegexOptions.Table.al -------------------------------------------------------------------------------- /src/System Application/App/Resources/BusinessChart/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Refresh(); -------------------------------------------------------------------------------- /src/System Application/App/Resources/BusinessChart/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Refresh(); -------------------------------------------------------------------------------- /src/System Application/App/Resources/BusinessChart/js/Startup.js: -------------------------------------------------------------------------------- 1 | Initialize(); -------------------------------------------------------------------------------- /src/System Application/App/Resources/FlowIntegration/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/FlowIntegration/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/FlowIntegration/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/OAuthIntegration/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/PageReady/js/PageReady.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('AddInReady', null); -------------------------------------------------------------------------------- /src/System Application/App/Resources/PageReady/stylesheets/PageReady.css: -------------------------------------------------------------------------------- 1 | * { 2 | display:none 3 | } -------------------------------------------------------------------------------- /src/System Application/App/Resources/PowerBIManagement/js/Startup.js: -------------------------------------------------------------------------------- 1 | Initialize(); -------------------------------------------------------------------------------- /src/System Application/App/Resources/RoleCenterSelector/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady', null); -------------------------------------------------------------------------------- /src/System Application/App/Resources/VideoPlayer/js/Startup.js: -------------------------------------------------------------------------------- 1 | RaiseAddInReady(); -------------------------------------------------------------------------------- /src/System Application/App/Resources/WebPageViewer/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh', [WebPageViewerHelper.GetCallbackURL()]); -------------------------------------------------------------------------------- /src/System Application/App/Resources/WebPageViewer/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh', [WebPageViewerHelper.GetCallbackURL()]); -------------------------------------------------------------------------------- /src/System Application/App/Resources/WelcomeWizard/js/Recreate.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/WelcomeWizard/js/Refresh.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('Refresh'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/WelcomeWizard/js/Startup.js: -------------------------------------------------------------------------------- 1 | Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('ControlAddInReady'); -------------------------------------------------------------------------------- /src/System Application/App/Resources/emptyScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Resources/emptyScript.js -------------------------------------------------------------------------------- /src/System Application/App/Rest Client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Rest Client/app.json -------------------------------------------------------------------------------- /src/System Application/App/Retention Policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Retention Policy/README.md -------------------------------------------------------------------------------- /src/System Application/App/Retention Policy/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Retention Policy/app.json -------------------------------------------------------------------------------- /src/System Application/App/Satisfaction Survey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Satisfaction Survey/README.md -------------------------------------------------------------------------------- /src/System Application/App/Satisfaction Survey/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Satisfaction Survey/app.json -------------------------------------------------------------------------------- /src/System Application/App/Satisfaction Survey/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Satisfaction Survey/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Secrets/README.md -------------------------------------------------------------------------------- /src/System Application/App/Secrets/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Secrets/app.json -------------------------------------------------------------------------------- /src/System Application/App/Secrets/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Secrets/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Security Groups/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Security Groups/app.json -------------------------------------------------------------------------------- /src/System Application/App/Server Settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Server Settings/README.md -------------------------------------------------------------------------------- /src/System Application/App/Server Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Server Settings/app.json -------------------------------------------------------------------------------- /src/System Application/App/Server Settings/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Server Settings/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/SharePoint Authorization/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/SharePoint Authorization/app.json -------------------------------------------------------------------------------- /src/System Application/App/SharePoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/SharePoint/README.md -------------------------------------------------------------------------------- /src/System Application/App/SharePoint/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/SharePoint/app.json -------------------------------------------------------------------------------- /src/System Application/App/System Initialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/System Initialization/README.md -------------------------------------------------------------------------------- /src/System Application/App/System Initialization/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/System Initialization/app.json -------------------------------------------------------------------------------- /src/System Application/App/System Permissions/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/System Permissions/app.json -------------------------------------------------------------------------------- /src/System Application/App/Table Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Table Information/README.md -------------------------------------------------------------------------------- /src/System Application/App/Table Information/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Table Information/app.json -------------------------------------------------------------------------------- /src/System Application/App/Table Keys/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Table Keys/app.json -------------------------------------------------------------------------------- /src/System Application/App/Telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Telemetry/README.md -------------------------------------------------------------------------------- /src/System Application/App/Telemetry/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Telemetry/app.json -------------------------------------------------------------------------------- /src/System Application/App/Tenant License State/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Tenant License State/README.md -------------------------------------------------------------------------------- /src/System Application/App/Tenant License State/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Tenant License State/app.json -------------------------------------------------------------------------------- /src/System Application/App/Time Zone Selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Time Zone Selection/README.md -------------------------------------------------------------------------------- /src/System Application/App/Time Zone Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Time Zone Selection/app.json -------------------------------------------------------------------------------- /src/System Application/App/Translation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Translation/README.md -------------------------------------------------------------------------------- /src/System Application/App/Translation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Translation/app.json -------------------------------------------------------------------------------- /src/System Application/App/URI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/README.md -------------------------------------------------------------------------------- /src/System Application/App/URI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/app.json -------------------------------------------------------------------------------- /src/System Application/App/URI/src/Uri.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/src/Uri.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/URI/src/UriBuilder.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/src/UriBuilder.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/URI/src/UriKind.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/src/UriKind.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/URI/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/URI/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Upgrade Tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Upgrade Tags/README.md -------------------------------------------------------------------------------- /src/System Application/App/Upgrade Tags/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Upgrade Tags/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Details/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Details/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Login Times/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Login Times/README.md -------------------------------------------------------------------------------- /src/System Application/App/User Login Times/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Login Times/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Permissions/README.md -------------------------------------------------------------------------------- /src/System Application/App/User Permissions/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Permissions/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Selection/README.md -------------------------------------------------------------------------------- /src/System Application/App/User Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Selection/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Settings/README.md -------------------------------------------------------------------------------- /src/System Application/App/User Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Settings/app.json -------------------------------------------------------------------------------- /src/System Application/App/User Settings/src/Roles.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/User Settings/src/Roles.Page.al -------------------------------------------------------------------------------- /src/System Application/App/VS Code Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/VS Code Integration/README.md -------------------------------------------------------------------------------- /src/System Application/App/VS Code Integration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/VS Code Integration/app.json -------------------------------------------------------------------------------- /src/System Application/App/VS Code Integration/src/dotnet.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/VS Code Integration/src/dotnet.al -------------------------------------------------------------------------------- /src/System Application/App/Video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/README.md -------------------------------------------------------------------------------- /src/System Application/App/Video/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/app.json -------------------------------------------------------------------------------- /src/System Application/App/Video/src/ProductVideos.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/src/ProductVideos.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Video/src/Video.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/src/Video.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Video/src/VideoCategory.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/src/VideoCategory.Enum.al -------------------------------------------------------------------------------- /src/System Application/App/Video/src/VideoImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/src/VideoImpl.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/App/Video/src/Videolink.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Video/src/Videolink.Page.al -------------------------------------------------------------------------------- /src/System Application/App/Web Service Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Web Service Management/README.md -------------------------------------------------------------------------------- /src/System Application/App/Web Service Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Web Service Management/app.json -------------------------------------------------------------------------------- /src/System Application/App/Word Templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Word Templates/README.md -------------------------------------------------------------------------------- /src/System Application/App/Word Templates/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/Word Templates/app.json -------------------------------------------------------------------------------- /src/System Application/App/XML Validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/XML Validation/README.md -------------------------------------------------------------------------------- /src/System Application/App/XML Validation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/XML Validation/app.json -------------------------------------------------------------------------------- /src/System Application/App/XmlWriter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/XmlWriter/README.md -------------------------------------------------------------------------------- /src/System Application/App/XmlWriter/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/XmlWriter/app.json -------------------------------------------------------------------------------- /src/System Application/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/App/app.json -------------------------------------------------------------------------------- /src/System Application/Partner Test/AI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Partner Test/AI/app.json -------------------------------------------------------------------------------- /src/System Application/Partner Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Partner Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/System Application/Partner Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Partner Test/app.json -------------------------------------------------------------------------------- /src/System Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/README.md -------------------------------------------------------------------------------- /src/System Application/Test Library/AI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/AI/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure AD Graph/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Azure AD Graph/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure AD Plan/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure AD Plan/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Azure AD Plan/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure AD User/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Azure AD User/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure Key Vault/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/Azure Key Vault/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Azure Key Vault/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Blob Storage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Blob Storage/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Business Chart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Business Chart/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Client Type Management/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/Confirm Management/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/Cues And KPIs/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Cues And KPIs/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Data Classification/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/DotNet Aliases/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/DotNet Aliases/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Edit in Excel/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Edit in Excel/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Email/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Email/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Environment Information/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/ExtensionLogo.png -------------------------------------------------------------------------------- /src/System Application/Test Library/Feature Key/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Feature Key/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Field Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Field Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Geolocation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Geolocation/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Headlines/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Headlines/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Language/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Language/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/MCP/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/MCP/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/MCP/src/MockAPI.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/MCP/src/MockAPI.Page.al -------------------------------------------------------------------------------- /src/System Application/Test Library/MCP/src/MockAPI.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/MCP/src/MockAPI.Table.al -------------------------------------------------------------------------------- /src/System Application/Test Library/MCP/src/MockCard.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/MCP/src/MockCard.Page.al -------------------------------------------------------------------------------- /src/System Application/Test Library/MockGraphQuery/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/MockGraphQuery/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Password/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Password/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Permission Sets/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Permission Sets/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Security Groups/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Security Groups/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/SharePoint/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/SharePoint/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Telemetry/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Telemetry/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Translation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Translation/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Upgrade Tags/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Upgrade Tags/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/User Details/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/User Details/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/User Login Times/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System Application/Test Library/User Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/User Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/User Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/User Settings/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Video/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Video/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/Word Templates/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/Word Templates/app.json -------------------------------------------------------------------------------- /src/System Application/Test Library/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test Library/app.json -------------------------------------------------------------------------------- /src/System Application/Test/AI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/AI/app.json -------------------------------------------------------------------------------- /src/System Application/Test/AI/src/AzureDITest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/AI/src/AzureDITest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/AI/src/CopilotTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/AI/src/CopilotTest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Advanced Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Advanced Settings/app.json -------------------------------------------------------------------------------- /src/System Application/Test/AppSource Gallery/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/AppSource Gallery/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Auto Format/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Auto Format/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure AD Graph/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure AD Graph/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure AD Licensing/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure AD Licensing/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure AD Plan/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure AD Plan/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure AD User/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure AD User/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure Blob Services API/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure Blob Services API/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure File Services API/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure File Services API/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Azure Key Vault/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Azure Key Vault/app.json -------------------------------------------------------------------------------- /src/System Application/Test/BLOB Storage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/BLOB Storage/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Barcode/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Barcode/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Base64 Convert/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Base64 Convert/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Business Chart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Business Chart/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Caption Class/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Caption Class/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Client Type Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Client Type Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Confirm Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Confirm Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Cryptography Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Cryptography Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Cues and KPIs/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Cues and KPIs/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Data Administration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Data Administration/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Data Classification/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Data Classification/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Data Compression/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Data Compression/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Date and Time/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Date and Time/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Date-Time Dialog/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Date-Time Dialog/app.json -------------------------------------------------------------------------------- /src/System Application/Test/DisabledTests/AFSFileClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/DisabledTests/AFSFileClient.json -------------------------------------------------------------------------------- /src/System Application/Test/Document Sharing/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Document Sharing/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Edit in Excel/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Edit in Excel/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Email/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Email/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Email/src/EmailTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Email/src/EmailTest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Encoding/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Encoding/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Environment Information/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Environment Information/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Extension Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Extension Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Extension Management/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Extension Management/readme.md -------------------------------------------------------------------------------- /src/System Application/Test/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/ExtensionLogo.png -------------------------------------------------------------------------------- /src/System Application/Test/External File Storage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/External File Storage/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Feature Key/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Feature Key/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Field Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Field Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Filter Tokens/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Filter Tokens/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Geolocation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Geolocation/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Guided Experience/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Guided Experience/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Headlines/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Headlines/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Image/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Image/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Image/src/ImageTests.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Image/src/ImageTests.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Json/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Json/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Json/src/JsonTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Json/src/JsonTest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Language/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Language/app.json -------------------------------------------------------------------------------- /src/System Application/Test/MCP/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/MCP/app.json -------------------------------------------------------------------------------- /src/System Application/Test/MicrosoftGraph/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/MicrosoftGraph/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Page Action Provider/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Page Action Provider/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Page Summary Provider/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Page Summary Provider/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Password/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Password/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Pdf/.resources/XRechnung.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Pdf/.resources/XRechnung.pdf -------------------------------------------------------------------------------- /src/System Application/Test/Pdf/.resources/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Pdf/.resources/test.pdf -------------------------------------------------------------------------------- /src/System Application/Test/Pdf/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Pdf/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Performance Profiler/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Performance Profiler/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Permission Sets/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Permission Sets/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Privacy Notice/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Privacy Notice/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Record Link Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Record Link Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Record Reference/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Record Reference/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Record Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Record Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Recurrence Schedule/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Recurrence Schedule/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Regex/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Regex/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Regex/src/RegexTests.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Regex/src/RegexTests.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Rest Client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Rest Client/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Retention Policy/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Retention Policy/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Secrets/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Secrets/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Security Groups/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Security Groups/app.json -------------------------------------------------------------------------------- /src/System Application/Test/SharePoint/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/SharePoint/app.json -------------------------------------------------------------------------------- /src/System Application/Test/System Initialization/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/System Initialization/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Telemetry/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Telemetry/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Tenant License State/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Tenant License State/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Time Zone Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Time Zone Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Translation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Translation/app.json -------------------------------------------------------------------------------- /src/System Application/Test/URI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/URI/app.json -------------------------------------------------------------------------------- /src/System Application/Test/URI/src/UriTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/URI/src/UriTest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Upgrade Tags/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Upgrade Tags/app.json -------------------------------------------------------------------------------- /src/System Application/Test/User Details/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/User Details/app.json -------------------------------------------------------------------------------- /src/System Application/Test/User Login Times/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/User Login Times/app.json -------------------------------------------------------------------------------- /src/System Application/Test/User Permissions/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/User Permissions/app.json -------------------------------------------------------------------------------- /src/System Application/Test/User Selection/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/User Selection/app.json -------------------------------------------------------------------------------- /src/System Application/Test/User Settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/User Settings/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Video/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Video/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Video/src/VideoTest.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Video/src/VideoTest.Codeunit.al -------------------------------------------------------------------------------- /src/System Application/Test/Vs Code Integration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Vs Code Integration/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Web Service Management/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Web Service Management/app.json -------------------------------------------------------------------------------- /src/System Application/Test/Word Templates/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/Word Templates/app.json -------------------------------------------------------------------------------- /src/System Application/Test/XML Validation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/XML Validation/app.json -------------------------------------------------------------------------------- /src/System Application/Test/XmlWriter/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/XmlWriter/app.json -------------------------------------------------------------------------------- /src/System Application/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/System Application/Test/app.json -------------------------------------------------------------------------------- /src/SystemApplication.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/SystemApplication.code-workspace -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/AITestSummary.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/AITestSummary.xlsx -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/README.md -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/app.json -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/logo/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/logo/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/AITCommandLineCard.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/AITCommandLineCard.Page.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/AITInstall.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/AITInstall.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITLogEntries.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITLogEntries.Page.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Page.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITRunHistory.Table.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITTestData.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITTestData.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITTestData.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITTestData.Page.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITTestInputView.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITTestInputView.Enum.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITTestOutputView.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITTestOutputView.Enum.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/Logs/AITTestSummary.Report.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/Logs/AITTestSummary.Report.al -------------------------------------------------------------------------------- /src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/README.md -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/WSPublishing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/WSPublishing.xml -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/app.json -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/logo/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/logo/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTHeader.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTHeader.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTHeader.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTHeader.Table.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLine.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLine.Codeunit.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLine.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLine.Table.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLineStatus.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLineStatus.Enum.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLines.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLines.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLogEntries.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLogEntries.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTLogEntry.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTLogEntry.Table.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTParameters.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTParameters.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTRunType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTRunType.Enum.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTSetupCard.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTSetupCard.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTSetupList.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTSetupList.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/App/src/BCPTSuiteAPI.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/App/src/BCPTSuiteAPI.Page.al -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/Test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/Test/app.json -------------------------------------------------------------------------------- /src/Tools/Performance Toolkit/Test/logo/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Performance Toolkit/Test/logo/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Libraries/Any/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Libraries/Any/README.md -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Libraries/Any/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Libraries/Any/app.json -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Libraries/Assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Libraries/Assert/README.md -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Libraries/Assert/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Libraries/Assert/app.json -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Runner/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Runner/ExtensionLogo.png -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Runner/README.md -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Runner/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Runner/app.json -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Runner/src/ALTestTool.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Runner/src/ALTestTool.Page.al -------------------------------------------------------------------------------- /src/Tools/Test Framework/Test Runner/src/SelectTests.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/Tools/Test Framework/Test Runner/src/SelectTests.Page.al -------------------------------------------------------------------------------- /src/rulesets/Analyzer.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/Analyzer.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/AppSourceCop.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/AppSourceCop.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/CodeCop.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/CodeCop.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/Compiler.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/Compiler.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/PTECop.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/PTECop.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/UICop.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/UICop.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/internal.module.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/internal.module.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/minorrelease.ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/minorrelease.ruleset.json -------------------------------------------------------------------------------- /src/rulesets/ruleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BCApps/HEAD/src/rulesets/ruleset.json --------------------------------------------------------------------------------