├── AboutTheLabs.pdf ├── LICENSE ├── README.md └── Student ├── Extras ├── BBSPA_ListGenerator │ ├── BBSPA_ListGenerator.sln │ └── BBSPA_ListGenerator │ │ ├── App.config │ │ ├── BBSPA_ListGenerator.csproj │ │ ├── Models │ │ ├── RandomCustomerGenerator.cs │ │ └── SharePointListFactory.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── CustomerFactoryAPI.swagger.json ├── Demos │ ├── CptLabsDatabase.sql │ └── CustomerOrderingwithAzureSQL.zip ├── ProductCatalog.xlsx └── ProductImages │ ├── batman.jpg │ ├── captainamerica.jpg │ ├── coloringbook.jpg │ ├── crateocrayons.jpg │ ├── crayons.jpg │ ├── easel.jpg │ ├── etchasketch.jpg │ ├── flyingsquirrel.jpg │ ├── gijoe.jpg │ ├── godzilla.jpg │ ├── greenhornet.jpg │ ├── helicopter.jpg │ ├── hulk.jpg │ ├── indyracecar.jpg │ ├── speedboat.jpg │ ├── stomperbully.jpg │ └── twitterfollower.jpg └── Modules ├── 01_GettingStarted ├── Lab.pdf ├── Lab.xps ├── Lab │ ├── CategoriesAllowedValues.txt │ ├── Customers.xlsx │ ├── Expenses.xlsx │ └── Solution │ │ ├── Lab1-CustomerSearchSolution.zip │ │ └── Lab1-ExpenseTrackerSolution.zip ├── Slides.pdf └── Slides.xps ├── 02_DataDrivenCanvasApps ├── Demo │ └── RelativeStylingDemo.zip ├── Lab.pdf ├── Lab.xps ├── Lab │ └── Solution │ │ ├── CustomerOrdering-SolutionForLab2Exercise2.zip │ │ ├── CustomerOrdering-SolutionForLab2Exercise3.zip │ │ ├── CustomerOrdering-SolutionForLab2Exercise4.zip │ │ ├── CustomerOrdering-SolutionForLab2Exercise5.zip │ │ └── CustomerOrdering-SolutionForLab2Final.zip ├── Slides.pdf └── Slides.xps ├── 03_ShoppingCart ├── Demo │ ├── Component Demo.msapp │ └── EditFormsversusPatchDemo.zip ├── Lab.pdf ├── Lab.xps ├── Lab │ └── Solution │ │ ├── CustomerOrdering-SolutionForLab3Exercise2.zip │ │ └── CustomerOrdering-SolutionforLab3Final.zip ├── Slides.pdf ├── Slides.xps └── readme.txt ├── 04_DesigningFlows ├── Demo │ ├── GenerateWordDocumentwithCustomerLetter.zip │ └── SendEmailcontainingHTMLTablewithCustomerData.zip ├── Lab.pdf ├── Lab.xps ├── Lab │ ├── CustomerLetterTemplate.docx │ ├── Solution │ │ └── TrackTweetsabout#PowerApps-Lab4.zip │ └── Tweets.xlsx ├── Slides.pdf └── Slides.xps ├── 05_Approvals ├── Demo │ └── CleanUpSharePointCustomerListContent.zip ├── Lab.pdf ├── Lab.xps ├── Slides.pdf └── Slides.xps ├── 06_ExternalSystems ├── Demo │ ├── Power-BI-Datasets-API.swagger.json │ └── UseHTTPActiontoImportDataintoSharePointCustomersList.zip ├── Lab.pdf ├── Lab.xps ├── Lab │ ├── AppIcon.png │ ├── CustomConnectorInfo.txt │ ├── Power-BI-Datasets-API.swagger.json │ ├── PowerBIDatasetManger.zip │ └── Solution │ │ └── CustomersAPI.swagger.json ├── Slides.pdf └── Slides.xps ├── 07_CommonDataService ├── Lab.pdf ├── Lab.xps ├── Lab │ └── ProductManagement.zip ├── Slides.pdf └── Slides.xps ├── 08_PowerAppsPortals ├── Lab.pdf ├── Lab.xps ├── Lab │ ├── DisplayProductsUsingLiquid.html │ ├── landingpage.png │ └── wingtip_logo.png ├── Slides.pdf └── Slides.xps └── 09_PowerBI ├── Lab.pdf ├── Lab.xps ├── Lab └── Wingtip Sales Analysis.pbix ├── Slides.pdf └── Slides.xps /AboutTheLabs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/AboutTheLabs.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/README.md -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator.sln -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/App.config -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/BBSPA_ListGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/BBSPA_ListGenerator.csproj -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Models/RandomCustomerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Models/RandomCustomerGenerator.cs -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Models/SharePointListFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Models/SharePointListFactory.cs -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Program.cs -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/BBSPA_ListGenerator/BBSPA_ListGenerator/packages.config -------------------------------------------------------------------------------- /Student/Extras/CustomerFactoryAPI.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/CustomerFactoryAPI.swagger.json -------------------------------------------------------------------------------- /Student/Extras/Demos/CptLabsDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/Demos/CptLabsDatabase.sql -------------------------------------------------------------------------------- /Student/Extras/Demos/CustomerOrderingwithAzureSQL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/Demos/CustomerOrderingwithAzureSQL.zip -------------------------------------------------------------------------------- /Student/Extras/ProductCatalog.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductCatalog.xlsx -------------------------------------------------------------------------------- /Student/Extras/ProductImages/batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/batman.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/captainamerica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/captainamerica.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/coloringbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/coloringbook.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/crateocrayons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/crateocrayons.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/crayons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/crayons.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/easel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/easel.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/etchasketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/etchasketch.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/flyingsquirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/flyingsquirrel.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/gijoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/gijoe.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/godzilla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/godzilla.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/greenhornet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/greenhornet.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/helicopter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/helicopter.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/hulk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/hulk.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/indyracecar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/indyracecar.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/speedboat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/speedboat.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/stomperbully.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/stomperbully.jpg -------------------------------------------------------------------------------- /Student/Extras/ProductImages/twitterfollower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Extras/ProductImages/twitterfollower.jpg -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab/CategoriesAllowedValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab/CategoriesAllowedValues.txt -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab/Customers.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab/Customers.xlsx -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab/Expenses.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab/Expenses.xlsx -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab/Solution/Lab1-CustomerSearchSolution.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab/Solution/Lab1-CustomerSearchSolution.zip -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Lab/Solution/Lab1-ExpenseTrackerSolution.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Lab/Solution/Lab1-ExpenseTrackerSolution.zip -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/01_GettingStarted/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/01_GettingStarted/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Demo/RelativeStylingDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Demo/RelativeStylingDemo.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise2.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise3.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise4.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Exercise5.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Final.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Lab/Solution/CustomerOrdering-SolutionForLab2Final.zip -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/02_DataDrivenCanvasApps/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/02_DataDrivenCanvasApps/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Demo/Component Demo.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Demo/Component Demo.msapp -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Demo/EditFormsversusPatchDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Demo/EditFormsversusPatchDemo.zip -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Lab/Solution/CustomerOrdering-SolutionForLab3Exercise2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Lab/Solution/CustomerOrdering-SolutionForLab3Exercise2.zip -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Lab/Solution/CustomerOrdering-SolutionforLab3Final.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Lab/Solution/CustomerOrdering-SolutionforLab3Final.zip -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/03_ShoppingCart/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/03_ShoppingCart/readme.txt: -------------------------------------------------------------------------------- 1 | this is just a placeholder file -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Demo/GenerateWordDocumentwithCustomerLetter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Demo/GenerateWordDocumentwithCustomerLetter.zip -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Demo/SendEmailcontainingHTMLTablewithCustomerData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Demo/SendEmailcontainingHTMLTablewithCustomerData.zip -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Lab/CustomerLetterTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Lab/CustomerLetterTemplate.docx -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Lab/Solution/TrackTweetsabout#PowerApps-Lab4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Lab/Solution/TrackTweetsabout#PowerApps-Lab4.zip -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Lab/Tweets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Lab/Tweets.xlsx -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/04_DesigningFlows/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/04_DesigningFlows/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/05_Approvals/Demo/CleanUpSharePointCustomerListContent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/05_Approvals/Demo/CleanUpSharePointCustomerListContent.zip -------------------------------------------------------------------------------- /Student/Modules/05_Approvals/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/05_Approvals/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/05_Approvals/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/05_Approvals/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/05_Approvals/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/05_Approvals/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/05_Approvals/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/05_Approvals/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Demo/Power-BI-Datasets-API.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Demo/Power-BI-Datasets-API.swagger.json -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Demo/UseHTTPActiontoImportDataintoSharePointCustomersList.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Demo/UseHTTPActiontoImportDataintoSharePointCustomersList.zip -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab/AppIcon.png -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab/CustomConnectorInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab/CustomConnectorInfo.txt -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab/Power-BI-Datasets-API.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab/Power-BI-Datasets-API.swagger.json -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab/PowerBIDatasetManger.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab/PowerBIDatasetManger.zip -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Lab/Solution/CustomersAPI.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Lab/Solution/CustomersAPI.swagger.json -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/06_ExternalSystems/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/06_ExternalSystems/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/07_CommonDataService/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/07_CommonDataService/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/07_CommonDataService/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/07_CommonDataService/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/07_CommonDataService/Lab/ProductManagement.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/07_CommonDataService/Lab/ProductManagement.zip -------------------------------------------------------------------------------- /Student/Modules/07_CommonDataService/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/07_CommonDataService/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/07_CommonDataService/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/07_CommonDataService/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Lab/DisplayProductsUsingLiquid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Lab/DisplayProductsUsingLiquid.html -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Lab/landingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Lab/landingpage.png -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Lab/wingtip_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Lab/wingtip_logo.png -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/08_PowerAppsPortals/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/08_PowerAppsPortals/Slides.xps -------------------------------------------------------------------------------- /Student/Modules/09_PowerBI/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/09_PowerBI/Lab.pdf -------------------------------------------------------------------------------- /Student/Modules/09_PowerBI/Lab.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/09_PowerBI/Lab.xps -------------------------------------------------------------------------------- /Student/Modules/09_PowerBI/Lab/Wingtip Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/09_PowerBI/Lab/Wingtip Sales Analysis.pbix -------------------------------------------------------------------------------- /Student/Modules/09_PowerBI/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/09_PowerBI/Slides.pdf -------------------------------------------------------------------------------- /Student/Modules/09_PowerBI/Slides.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CriticalPathTraining/PowerPlatformMasterClass/HEAD/Student/Modules/09_PowerBI/Slides.xps --------------------------------------------------------------------------------