├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Allfiles ├── Demos │ ├── OnChange.js │ ├── PL400Demos_1_0_11_0.zip │ ├── PL400Demos_1_0_12_0.zip │ ├── PL400Demos_1_0_13_0.zip │ ├── PL400Demos_1_0_14_0.zip │ ├── PL400Demos_1_0_15_0.zip │ ├── PL400Demos_1_0_16_0.zip │ ├── PL400Demos_1_0_17_0.zip │ ├── PL400Demos_1_0_18_0.zip │ ├── PL400Demos_1_0_20_0.zip │ ├── PL400Demos_1_0_22_0.zip │ ├── PL400Demos_1_0_23_0.zip │ ├── PL400Demos_1_0_24_0.zip │ ├── ValidatePetTrick.cs │ └── openapi.json ├── Labs │ ├── L01 │ │ ├── DataModel.pdf │ │ ├── DataModel_image1.png │ │ ├── PermitManagement.xml │ │ ├── PermitManagement_1.0.0.0.zip │ │ └── PermitManagementdata.zip │ ├── L02 │ │ └── Completed │ │ │ └── PermitManagement_1_0_0_2.zip │ ├── L03 │ │ ├── Completed │ │ │ ├── PermitManagement_1_0_0_3.zip │ │ │ └── PermitManagement_1_0_0_3_managed.zip │ │ └── Starter │ │ │ └── PermitManagement_1_0_0_2.zip │ ├── L04 │ │ ├── Resources │ │ │ ├── permit.xml │ │ │ └── permitdata.zip │ │ └── Starter │ │ │ └── PermitManagement_1_0_0_3.zip │ ├── L05 │ │ ├── Resources │ │ │ ├── PL400.postman_collection.json │ │ │ ├── permitconsole - early bound.cs │ │ │ ├── permitconsole - late bound.cs │ │ │ └── permitconsole - starter.cs │ │ └── Starter │ │ │ └── PermitManagement_1_0_0_3.zip │ ├── L06 │ │ ├── Resources │ │ │ ├── PermitFormFunctions - step 1.js │ │ │ ├── PermitFormFunctions - step 2.js │ │ │ ├── PermitFormFunctions - step 3.js │ │ │ └── PermitFormFunctions.js │ │ └── Starter │ │ │ └── PermitManagement_1_0_0_3.zip │ ├── L07 │ │ └── Resources │ │ │ ├── .eslintrc.json │ │ │ ├── ControlManifest.Input.xml │ │ │ ├── index.ts │ │ │ ├── testdata.csv │ │ │ └── timelinecontrol.css │ ├── L08 │ │ └── Resources │ │ │ ├── LockPermitCancelInspections.cs │ │ │ └── PreOperationPermitCreate.cs │ └── L09 │ │ ├── PermitManagementAzuredata.zip │ │ ├── PermitManagement_1.0.0.0.zip │ │ └── Resources │ │ ├── CPMCalculator.csx │ │ └── WebHook.csx └── Setup │ ├── PL400Demos_1_0_11_0.zip │ ├── PL400Demos_1_0_3_0.zip │ ├── PL400Demos_1_0_4_0.zip │ ├── PL400Demos_1_0_5_0.zip │ ├── PL400Demos_1_0_6_0.zip │ ├── PL400Demos_1_0_8_0.zip │ ├── PL400Demos_1_0_9_0.zip │ └── Resources │ └── ContosoComponents.msapp ├── Instructions ├── Demos │ ├── DEMO[PL-400]_Demo00_Learn.md │ ├── DEMO[PL-400]_Demo01_Environment.md │ ├── DEMO[PL-400]_Demo02_Solution.md │ ├── DEMO[PL-400]_Demo03_Component.md │ ├── DEMO[PL-400]_Demo04_Patch.md │ ├── DEMO[PL-400]_Demo05_PowerAutomate.md │ ├── DEMO[PL-400]_Demo06_Relationships.md │ ├── DEMO[PL-400]_Demo07_Developing.md │ ├── DEMO[PL-400]_Demo08_Command.md │ ├── DEMO[PL-400]_Demo09_JavaScript.md │ ├── DEMO[PL-400]_Demo10_PCF.md │ ├── DEMO[PL-400]_Demo11_Plugin.md │ ├── DEMO[PL-400]_Demo12_ServiceBus.md │ ├── DEMO[PL-400]_Demo13_CustomConnector.md │ └── DEMO[PL-400]_Demo_readme.md ├── Labs │ ├── LAB[PL-400]_Lab00_Validate_lab_environment.md │ ├── LAB[PL-400]_Lab01_ImportSolution.md │ ├── LAB[PL-400]_Lab02_Advanced_Canvas_app..md │ ├── LAB[PL-400]_Lab03_Flow.md │ ├── LAB[PL-400]_Lab04_Tools.md │ ├── LAB[PL-400]_Lab05_APIs.md │ ├── LAB[PL-400]_Lab06_Client_Scripting.md │ ├── LAB[PL-400]_Lab07_PCF.md │ ├── LAB[PL-400]_Lab08_Plugins.md │ └── LAB[PL-400]_Lab09_Azure.md ├── Setup │ ├── DEMO[PL-400]_Setup01_Solution.md │ ├── DEMO[PL-400]_Setup02_Tables.md │ ├── DEMO[PL-400]_Setup03_Columns.md │ ├── DEMO[PL-400]_Setup04_Relationships.md │ ├── DEMO[PL-400]_Setup05_Buinessrule.md │ ├── DEMO[PL-400]_Setup06_MDA.md │ ├── DEMO[PL-400]_Setup07_Forms.md │ ├── DEMO[PL-400]_Setup08_Views.md │ ├── DEMO[PL-400]_Setup09_CreateMDA.md │ ├── DEMO[PL-400]_Setup10_Canvas.md │ ├── LAB[PL-400]_Setup00_Environment.md │ ├── LAB[PL-400]_Setup01_Data_Modeling.md │ ├── LAB[PL-400]_Setup02_Model_Driven_App.md │ └── LAB[PL-400]_Setup03_Canvas_App.md └── images │ ├── Demos │ ├── DemoERD-dbdiaggram.txt │ ├── badge.png │ ├── demo-erd.png │ └── learn-sign-in.png │ ├── L00 │ ├── add-licenses-dev.png │ ├── add-licenses.png │ ├── azure-subscription.png │ ├── ellipses-settings-dev.png │ ├── environments-all.png │ ├── labfiles-folder.png │ ├── marketplace.png │ ├── mod-administrator-dev.png │ ├── mod-administrator.png │ ├── new-environment.png │ ├── per-user-plan.png │ ├── powershell-commands.png │ ├── ppac-environments-dev.png │ ├── ppac-environments.png │ ├── premium_plan.png │ ├── purchase-services.png │ ├── select-users.png │ └── start-powershell.png │ ├── L01 │ ├── configuration-migration-step1.png │ ├── configuration-migration-step2.png │ ├── configuration-migration-step3.png │ ├── configuration-migration-step3a.png │ ├── configuration-migration-step4.png │ ├── connections-for-solution.png │ ├── solution-imported.png │ ├── solution-objects.png │ ├── solution-overview.png │ ├── solution-to-import.png │ └── test-data-inspections.png │ ├── L02 │ ├── add-button.png │ ├── failed-button.png │ ├── failed-inspection.png │ ├── onstart-formula.png │ └── run-onstart.png │ ├── L03 │ ├── add-flow-to-app.png │ ├── business-process-flow-actions.png │ ├── business-process-flow-build-site-stage.png │ ├── business-process-flow-data-steps.png │ ├── business-process-flow-inspection-stage.png │ ├── business-process-flow-name.png │ ├── business-process-flow-new-record.png │ ├── business-process-flow-permit-stage.png │ ├── business-process-flow-required-step.png │ ├── business-process-flow-stages.png │ ├── clear-button.png │ ├── configure-loop.png │ ├── dynamic-content-ask-in-powerapps.png │ ├── dynamic-content-inspection.png │ ├── dynamic-content-permit.png │ ├── dynamic-content-start-date.png │ ├── dynamic-content-use-input.png │ ├── inspections-list-rows-step.png │ ├── instant-flow-name.png │ ├── new-scheduled-flow.png │ ├── null-expression.png │ ├── pending-inspections.png │ ├── powerapps-trigger.png │ ├── rename-flow-step.png │ ├── reset-inspections-flow.png │ ├── scheduled-flow-name.png │ ├── select-list-rows-action.png │ └── test-flow.png │ ├── L04 │ ├── developer-resources.png │ ├── fetchxml-builder.png │ ├── fetchxml-query-builder.png │ ├── maker-portal-settings.png │ ├── pac-tool-cmt-build-site.png │ ├── pac-tool-cmt-export.png │ ├── pac-tool-cmt.png │ ├── pac-tool-list.png │ ├── pac-tools-environments.png │ ├── pac-tools-login.png │ ├── xrmtoolbox-app.png │ ├── xrmtoolbox-tool-library.png │ └── xrmtoolbox-website.png │ ├── L05 │ ├── console-output.png │ ├── console-whoami-output.png │ ├── early-bound-entities-whitelist.png │ ├── early-bound-entity-classes.png │ ├── early-bound-tool.png │ ├── organization-service-endpoint.png │ ├── postman-authorization.png │ ├── postman-create-permit.png │ ├── postman-environment.png │ ├── postman-headers.png │ ├── postman-newtab.png │ ├── source-code-folder.png │ ├── visual-studio-configure-project.png │ ├── visual-studio-create-project.png │ └── visual-studio-welcome.png │ ├── L06 │ ├── edit-app-add-command.png │ ├── edit-app-command-bar-main-form.png │ ├── edit-app-command-bar.png │ ├── edit-app.png │ ├── edit-command-bar.png │ ├── lock-permit-command.png │ ├── mod-01-client-scripting-01.png │ ├── mod-01-client-scripting-02.png │ ├── mod-01-client-scripting-03.png │ ├── mod-01-client-scripting-04.png │ ├── mod-01-client-scripting-05.png │ ├── mod-01-client-scripting-06.png │ ├── mod-01-client-scripting-07.png │ ├── mod-01-client-scripting-08.png │ ├── mod-01-client-scripting-09.png │ ├── mod-01-client-scripting-10.png │ ├── mod-01-client-scripting-100.png │ ├── mod-01-client-scripting-101.png │ ├── mod-01-client-scripting-102.png │ ├── mod-01-client-scripting-103.png │ ├── mod-01-client-scripting-104.png │ ├── mod-01-client-scripting-105.png │ ├── mod-01-client-scripting-106.png │ ├── mod-01-client-scripting-107.png │ ├── mod-01-client-scripting-108.png │ ├── mod-01-client-scripting-12.png │ ├── mod-01-client-scripting-13.png │ ├── mod-01-client-scripting-14.png │ ├── mod-01-client-scripting-15.png │ ├── mod-01-client-scripting-16.png │ ├── mod-01-client-scripting-18.png │ ├── mod-01-client-scripting-19.png │ ├── mod-01-client-scripting-20.png │ ├── mod-01-client-scripting-21.png │ ├── mod-01-client-scripting-22.png │ ├── mod-01-client-scripting-23.png │ ├── mod-01-client-scripting-24.png │ ├── mod-01-client-scripting-25.png │ ├── mod-01-client-scripting-26.png │ ├── mod-01-client-scripting-27.png │ ├── mod-01-client-scripting-28.png │ ├── mod-01-client-scripting-29.png │ ├── mod-01-client-scripting-30.png │ ├── mod-01-client-scripting-31.png │ ├── mod-01-client-scripting-32.png │ ├── mod-01-client-scripting-33.png │ ├── mod-01-client-scripting-34.png │ ├── mod-01-client-scripting-35.png │ ├── mod-01-client-scripting-36.png │ ├── mod-01-client-scripting-37.png │ ├── mod-01-client-scripting-38.png │ ├── mod-01-client-scripting-39.png │ ├── mod-01-client-scripting-41.png │ ├── mod-01-client-scripting-42.png │ ├── mod-01-client-scripting-43.png │ ├── mod-01-client-scripting-44.png │ ├── mod-01-client-scripting-46.png │ ├── mod-01-client-scripting-47.png │ ├── mod-01-client-scripting-48.png │ ├── mod-01-client-scripting-49.png │ ├── mod-01-client-scripting-50.png │ ├── mod-01-client-scripting-51.png │ ├── mod-01-client-scripting-52.png │ ├── mod-01-client-scripting-53.png │ ├── mod-01-client-scripting-54.png │ ├── mod-01-client-scripting-55.png │ ├── mod-01-client-scripting-56.png │ ├── mod-01-client-scripting-57.png │ ├── mod-01-client-scripting-58.png │ ├── mod-01-client-scripting-60.png │ ├── mod-01-client-scripting-61.png │ ├── mod-01-client-scripting-62.png │ ├── mod-01-client-scripting-63.png │ ├── mod-01-client-scripting-65.png │ ├── mod-01-client-scripting-66.png │ ├── mod-01-client-scripting-67.png │ ├── mod-01-client-scripting-68.png │ ├── mod-01-client-scripting-69.png │ ├── mod-01-client-scripting-70.png │ ├── mod-01-client-scripting-71.png │ ├── mod-01-client-scripting-72.png │ ├── mod-01-client-scripting-73.png │ ├── mod-01-client-scripting-74.png │ ├── mod-01-client-scripting-75.png │ ├── mod-01-client-scripting-76.png │ ├── mod-01-client-scripting-77.png │ ├── mod-01-client-scripting-78.png │ ├── mod-01-client-scripting-79.png │ ├── mod-01-client-scripting-80.png │ ├── mod-01-client-scripting-81.png │ ├── mod-01-client-scripting-82.png │ ├── mod-01-client-scripting-83.png │ ├── mod-01-client-scripting-84.png │ ├── mod-01-client-scripting-85.png │ ├── mod-01-client-scripting-86.png │ ├── mod-01-client-scripting-87.png │ ├── mod-01-client-scripting-88.png │ ├── mod-01-client-scripting-89.png │ ├── mod-01-client-scripting-90.png │ ├── mod-01-client-scripting-91.png │ ├── mod-01-client-scripting-92.png │ ├── mod-01-client-scripting-93.png │ ├── mod-01-client-scripting-94.png │ ├── mod-01-client-scripting-95.png │ ├── mod-01-client-scripting-96.png │ ├── mod-01-client-scripting-97.png │ ├── mod-01-client-scripting-98.png │ ├── mod-01-client-scripting-99.png │ ├── mod-01-client-scripting.png │ ├── new-web-resource.png │ ├── permits-view.png │ ├── scripts-folder-in-vscode.png │ └── scripts-folder.png │ ├── L07 │ ├── add-component-to-subgrid.png │ ├── build-result.png │ ├── dev-tools-search.png │ ├── export-solution-managed.png │ ├── export-solution-unmanaged.png │ ├── get-more-components.png │ ├── import-solution-file.png │ ├── mod-02-pcf-1-01.png │ ├── mod-02-pcf-1-02.png │ ├── mod-02-pcf-1-03.png │ ├── mod-02-pcf-1-04.png │ ├── mod-02-pcf-1-05.png │ ├── mod-02-pcf-1-06.png │ ├── mod-02-pcf-1-07.png │ ├── mod-02-pcf-1-08.png │ ├── mod-02-pcf-1-09.png │ ├── mod-02-pcf-1-10.png │ ├── mod-02-pcf-1-11.png │ ├── mod-02-pcf-1-12.png │ ├── mod-02-pcf-1-13.png │ ├── mod-02-pcf-1-14.png │ ├── mod-02-pcf-1-15.png │ ├── mod-02-pcf-1-16.png │ ├── mod-02-pcf-1-17.png │ ├── mod-02-pcf-1-18.png │ ├── mod-02-pcf-1-19.png │ ├── mod-02-pcf-1-20.png │ ├── mod-02-pcf-1-21.png │ ├── mod-02-pcf-1-22.png │ ├── mod-02-pcf-1-23.png │ ├── mod-02-pcf-1-24.png │ ├── mod-02-pcf-1-25.png │ ├── mod-02-pcf-1-26.png │ ├── mod-02-pcf-1-27.png │ ├── mod-02-pcf-1-28.png │ ├── mod-02-pcf-1-29.png │ ├── mod-02-pcf-1-30.png │ ├── mod-02-pcf-1-31.png │ ├── mod-02-pcf-1-32.png │ ├── mod-02-pcf-1-33.png │ ├── mod-02-pcf-1-34.png │ ├── mod-02-pcf-1-35.png │ ├── mod-02-pcf-1-36.png │ ├── mod-02-pcf-1-37.png │ ├── mod-02-pcf-1-38.png │ ├── mod-02-pcf-1-39.png │ ├── mod-02-pcf-1-40.png │ ├── mod-02-pcf-1-41.png │ ├── mod-02-pcf-1-42.png │ ├── mod-02-pcf-1-43.png │ ├── mod-02-pcf-1-44.png │ ├── mod-02-pcf-1-45.png │ ├── mod-02-pcf-1-46.png │ ├── mod-02-pcf-1-47.png │ ├── mod-02-pcf-1-48.png │ ├── mod-02-pcf-1-51.png │ ├── mod-02-pcf-1-52.png │ ├── mod-02-pcf-1-54.png │ ├── mod-02-pcf-1-55.png │ ├── mod-02-pcf-1-56.png │ ├── mod-02-pcf-1-57.png │ ├── mod-02-pcf-1-58.png │ ├── mod-02-pcf-1-59.png │ ├── mod-02-pcf-1-60.png │ ├── mod-02-pcf-1-61.png │ ├── mod-02-pcf-1-62.png │ ├── mod-02-pcf-1-63.png │ ├── mod-02-pcf-1-64.png │ ├── mod-02-pcf-1-65.png │ ├── mod-02-pcf-1-66.png │ ├── mod-02-pcf-1-67.png │ ├── mod-02-pcf-1-68.png │ ├── mod-02-pcf-1-69.png │ ├── mod-02-pcf-1-70.png │ ├── mod-02-pcf-1-71.png │ ├── mod-02-pcf-1-72.png │ ├── mod-02-pcf-1-73.png │ ├── mod-02-pcf-1-74.png │ ├── mod-02-pcf-1-75.png │ ├── mod-02-pcf-1-76.png │ ├── mod-02-pcf-1-77.png │ ├── mod-02-pcf-1-79.png │ ├── mod-02-pcf-1-80.png │ ├── mod-02-pcf-1-81.png │ ├── mod-02-pcf-1-82.png │ ├── mod-02-pcf-1-83.png │ ├── mod-02-pcf-1-84.png │ ├── mod-02-pcf-1-85.png │ ├── mod-02-pcf-1-86.png │ ├── node-js-download.png │ ├── output-path.png │ ├── pcf-folder.png │ ├── pcf-solution-folder.png │ ├── permit-table-forms.png │ ├── solution-reference-added.png │ ├── test-data-inspections.png │ └── timelinecontrol-on-form.png │ ├── L08 │ ├── Mod_01_Plugin_image1.png │ ├── Mod_01_Plugin_image10.png │ ├── Mod_01_Plugin_image11.png │ ├── Mod_01_Plugin_image12.png │ ├── Mod_01_Plugin_image13.png │ ├── Mod_01_Plugin_image14.png │ ├── Mod_01_Plugin_image15.png │ ├── Mod_01_Plugin_image16.png │ ├── Mod_01_Plugin_image17.png │ ├── Mod_01_Plugin_image18.png │ ├── Mod_01_Plugin_image19.png │ ├── Mod_01_Plugin_image2-10.png │ ├── Mod_01_Plugin_image2-8.png │ ├── Mod_01_Plugin_image2-9.png │ ├── Mod_01_Plugin_image2.png │ ├── Mod_01_Plugin_image20.png │ ├── Mod_01_Plugin_image21.png │ ├── Mod_01_Plugin_image22.png │ ├── Mod_01_Plugin_image23.png │ ├── Mod_01_Plugin_image24.png │ ├── Mod_01_Plugin_image25.png │ ├── Mod_01_Plugin_image26.png │ ├── Mod_01_Plugin_image27.png │ ├── Mod_01_Plugin_image28.png │ ├── Mod_01_Plugin_image29.png │ ├── Mod_01_Plugin_image3.png │ ├── Mod_01_Plugin_image30.png │ ├── Mod_01_Plugin_image31.png │ ├── Mod_01_Plugin_image32.png │ ├── Mod_01_Plugin_image33.png │ ├── Mod_01_Plugin_image34.png │ ├── Mod_01_Plugin_image35.png │ ├── Mod_01_Plugin_image36.png │ ├── Mod_01_Plugin_image37.png │ ├── Mod_01_Plugin_image38.png │ ├── Mod_01_Plugin_image39.png │ ├── Mod_01_Plugin_image4.png │ ├── Mod_01_Plugin_image40.png │ ├── Mod_01_Plugin_image41.png │ ├── Mod_01_Plugin_image42.png │ ├── Mod_01_Plugin_image43.png │ ├── Mod_01_Plugin_image44.png │ ├── Mod_01_Plugin_image45.png │ ├── Mod_01_Plugin_image46.png │ ├── Mod_01_Plugin_image47.png │ ├── Mod_01_Plugin_image48.png │ ├── Mod_01_Plugin_image49.png │ ├── Mod_01_Plugin_image5.png │ ├── Mod_01_Plugin_image50.png │ ├── Mod_01_Plugin_image51.png │ ├── Mod_01_Plugin_image52.png │ ├── Mod_01_Plugin_image53.png │ ├── Mod_01_Plugin_image54.png │ ├── Mod_01_Plugin_image55.png │ ├── Mod_01_Plugin_image56.png │ ├── Mod_01_Plugin_image57.png │ ├── Mod_01_Plugin_image58.png │ ├── Mod_01_Plugin_image59.png │ ├── Mod_01_Plugin_image6.png │ ├── Mod_01_Plugin_image60.png │ ├── Mod_01_Plugin_image61.png │ ├── Mod_01_Plugin_image62.png │ ├── Mod_01_Plugin_image63.png │ ├── Mod_01_Plugin_image64.png │ ├── Mod_01_Plugin_image65.png │ ├── Mod_01_Plugin_image66.png │ ├── Mod_01_Plugin_image67.png │ ├── Mod_01_Plugin_image68.png │ ├── Mod_01_Plugin_image69.png │ ├── Mod_01_Plugin_image7.png │ ├── Mod_01_Plugin_image70.png │ ├── Mod_01_Plugin_image71.png │ ├── Mod_01_Plugin_image72.png │ ├── Mod_01_Plugin_image73.png │ ├── Mod_01_Plugin_image74.png │ ├── Mod_01_Plugin_image75.png │ ├── Mod_01_Plugin_image76.png │ ├── Mod_01_Plugin_image77.png │ ├── Mod_01_Plugin_image8.png │ ├── Mod_01_Plugin_image9.png │ ├── add-timeline.png │ ├── create-note-record.png │ ├── enable-attachments.png │ ├── enable-trace-logs.png │ ├── foreach-code.png │ ├── general-tab-properties.png │ ├── inspection-statuscodes.png │ ├── inspections-data.png │ ├── locked-note-attachment.png │ ├── permit-create-code.png │ ├── permit-statuscodes.png │ ├── plugin-init.png │ ├── prt-register-assembly-plugin.png │ ├── prt-register-assembly.png │ ├── prt-register-step-details.png │ ├── prt-register-step.png │ ├── prt-registered-plugin.png │ ├── prt-select-assembly.png │ ├── prt-update-assembly.png │ ├── prt-updated-plugin.png │ ├── query-expression-code.png │ ├── select-general-tab.png │ ├── set-custom-api-response.png │ ├── trace-logs.png │ ├── update-permit-code.png │ └── vs-add-class.png │ ├── L09 │ ├── Mod_01_Web_Hook_image1.png │ ├── Mod_01_Web_Hook_image10.png │ ├── Mod_01_Web_Hook_image11.png │ ├── Mod_01_Web_Hook_image12.png │ ├── Mod_01_Web_Hook_image13.png │ ├── Mod_01_Web_Hook_image14.png │ ├── Mod_01_Web_Hook_image15.png │ ├── Mod_01_Web_Hook_image16.png │ ├── Mod_01_Web_Hook_image17.png │ ├── Mod_01_Web_Hook_image19.png │ ├── Mod_01_Web_Hook_image2.png │ ├── Mod_01_Web_Hook_image20.png │ ├── Mod_01_Web_Hook_image21.png │ ├── Mod_01_Web_Hook_image22.png │ ├── Mod_01_Web_Hook_image23.png │ ├── Mod_01_Web_Hook_image24.png │ ├── Mod_01_Web_Hook_image25.png │ ├── Mod_01_Web_Hook_image26.png │ ├── Mod_01_Web_Hook_image27.png │ ├── Mod_01_Web_Hook_image28.png │ ├── Mod_01_Web_Hook_image29.png │ ├── Mod_01_Web_Hook_image3.png │ ├── Mod_01_Web_Hook_image30.png │ ├── Mod_01_Web_Hook_image31.png │ ├── Mod_01_Web_Hook_image32.png │ ├── Mod_01_Web_Hook_image33.png │ ├── Mod_01_Web_Hook_image34.png │ ├── Mod_01_Web_Hook_image36.png │ ├── Mod_01_Web_Hook_image37.png │ ├── Mod_01_Web_Hook_image38.png │ ├── Mod_01_Web_Hook_image39.png │ ├── Mod_01_Web_Hook_image4.png │ ├── Mod_01_Web_Hook_image40.png │ ├── Mod_01_Web_Hook_image41.png │ ├── Mod_01_Web_Hook_image42.png │ ├── Mod_01_Web_Hook_image43.png │ ├── Mod_01_Web_Hook_image44.png │ ├── Mod_01_Web_Hook_image45.png │ ├── Mod_01_Web_Hook_image46.png │ ├── Mod_01_Web_Hook_image5.png │ ├── Mod_01_Web_Hook_image6.png │ ├── Mod_01_Web_Hook_image7.png │ ├── Mod_01_Web_Hook_image8.png │ ├── Mod_01_Web_Hook_image9.png │ ├── Mod_2_Custom_Connector_image1.png │ ├── Mod_2_Custom_Connector_image10.png │ ├── Mod_2_Custom_Connector_image11.png │ ├── Mod_2_Custom_Connector_image12.png │ ├── Mod_2_Custom_Connector_image13.png │ ├── Mod_2_Custom_Connector_image14.png │ ├── Mod_2_Custom_Connector_image15.png │ ├── Mod_2_Custom_Connector_image17.png │ ├── Mod_2_Custom_Connector_image18.png │ ├── Mod_2_Custom_Connector_image19.png │ ├── Mod_2_Custom_Connector_image2.png │ ├── Mod_2_Custom_Connector_image20.png │ ├── Mod_2_Custom_Connector_image21.png │ ├── Mod_2_Custom_Connector_image22.png │ ├── Mod_2_Custom_Connector_image23.png │ ├── Mod_2_Custom_Connector_image24.png │ ├── Mod_2_Custom_Connector_image25.png │ ├── Mod_2_Custom_Connector_image26.png │ ├── Mod_2_Custom_Connector_image27.png │ ├── Mod_2_Custom_Connector_image28.png │ ├── Mod_2_Custom_Connector_image29.png │ ├── Mod_2_Custom_Connector_image30.png │ ├── Mod_2_Custom_Connector_image31.png │ ├── Mod_2_Custom_Connector_image32-1.png │ ├── Mod_2_Custom_Connector_image32.png │ ├── Mod_2_Custom_Connector_image33.png │ ├── Mod_2_Custom_Connector_image34.png │ ├── Mod_2_Custom_Connector_image35.png │ ├── Mod_2_Custom_Connector_image36.png │ ├── Mod_2_Custom_Connector_image37.png │ ├── Mod_2_Custom_Connector_image38.png │ ├── Mod_2_Custom_Connector_image39.png │ ├── Mod_2_Custom_Connector_image4.png │ ├── Mod_2_Custom_Connector_image40.png │ ├── Mod_2_Custom_Connector_image41.png │ ├── Mod_2_Custom_Connector_image42.png │ ├── Mod_2_Custom_Connector_image43.png │ ├── Mod_2_Custom_Connector_image44.png │ ├── Mod_2_Custom_Connector_image45.png │ ├── Mod_2_Custom_Connector_image46.png │ ├── Mod_2_Custom_Connector_image47.png │ ├── Mod_2_Custom_Connector_image48.png │ ├── Mod_2_Custom_Connector_image49.png │ ├── Mod_2_Custom_Connector_image5.png │ ├── Mod_2_Custom_Connector_image50.png │ ├── Mod_2_Custom_Connector_image51.png │ ├── Mod_2_Custom_Connector_image52.png │ ├── Mod_2_Custom_Connector_image53.png │ ├── Mod_2_Custom_Connector_image54.png │ ├── Mod_2_Custom_Connector_image55-1.png │ ├── Mod_2_Custom_Connector_image55.png │ ├── Mod_2_Custom_Connector_image56.png │ ├── Mod_2_Custom_Connector_image57.png │ ├── Mod_2_Custom_Connector_image58.png │ ├── Mod_2_Custom_Connector_image59.png │ ├── Mod_2_Custom_Connector_image6.png │ ├── Mod_2_Custom_Connector_image60.png │ ├── Mod_2_Custom_Connector_image61.png │ ├── Mod_2_Custom_Connector_image62.png │ ├── Mod_2_Custom_Connector_image63.png │ ├── Mod_2_Custom_Connector_image64.png │ ├── Mod_2_Custom_Connector_image65.png │ ├── Mod_2_Custom_Connector_image66.png │ ├── Mod_2_Custom_Connector_image67.png │ ├── Mod_2_Custom_Connector_image68.png │ ├── Mod_2_Custom_Connector_image69.png │ ├── Mod_2_Custom_Connector_image7.png │ ├── Mod_2_Custom_Connector_image70-1.png │ ├── Mod_2_Custom_Connector_image70.png │ ├── Mod_2_Custom_Connector_image71.png │ ├── Mod_2_Custom_Connector_image72.png │ ├── Mod_2_Custom_Connector_image73.png │ ├── Mod_2_Custom_Connector_image74.png │ ├── Mod_2_Custom_Connector_image75-1.png │ ├── Mod_2_Custom_Connector_image75.png │ ├── Mod_2_Custom_Connector_image76.png │ ├── Mod_2_Custom_Connector_image8.png │ ├── Mod_2_Custom_Connector_image9.png │ ├── add-class.png │ ├── azure-function-logs.png │ ├── azure-function-monitor.png │ ├── azure-function-overview.png │ ├── azure-function-result1.png │ ├── azure-portal-create-function-custom-connector.png │ ├── azure-portal-create-function.png │ ├── azure-portal-create-function1.png │ ├── azure-portal-create-function2.png │ ├── azure-portal-function-breadcrumb.png │ ├── azure-portal-function-code-test-custom-connector.png │ ├── azure-portal-function-code-test.png │ ├── azure-portal-function-code.png │ ├── azure-portal-function-get-url-custom-connector.png │ ├── azure-portal-function-get-url.png │ ├── azure-portal-function-integration.png │ ├── azure-portal-function-keys-custom-connector.png │ ├── azure-portal-function-keys.png │ ├── azure-portal-function-test.png │ ├── azure-portal-function-url-custom-connector.png │ ├── azure-portal-function-url.png │ ├── azure-portal-get-function-url.png │ ├── azure-portal-go-to-resource.png │ ├── azure-storage-account-create.png │ ├── canvas-app-add-screen.png │ ├── custom-connector-connection.png │ ├── custom-connector-host.png │ ├── custom-connector-import-from-sample.png │ ├── prt-image-parameters.png │ ├── prt-register-image.png │ ├── webhook-endpoint-url.png │ ├── webhook-output.png │ ├── webhook-register-step.png │ ├── webhook-url.png │ └── webhook-value.png │ ├── S01 │ ├── Mod_01_Data_Modeling_image1.png │ ├── Mod_01_Data_Modeling_image10.png │ ├── Mod_01_Data_Modeling_image11.png │ ├── Mod_01_Data_Modeling_image12.png │ ├── Mod_01_Data_Modeling_image13.png │ ├── Mod_01_Data_Modeling_image14.png │ ├── Mod_01_Data_Modeling_image15.png │ ├── Mod_01_Data_Modeling_image16.png │ ├── Mod_01_Data_Modeling_image17.png │ ├── Mod_01_Data_Modeling_image18.png │ ├── Mod_01_Data_Modeling_image19.png │ ├── Mod_01_Data_Modeling_image20.png │ ├── Mod_01_Data_Modeling_image21.png │ ├── Mod_01_Data_Modeling_image22.png │ ├── Mod_01_Data_Modeling_image23.png │ ├── Mod_01_Data_Modeling_image24.png │ ├── Mod_01_Data_Modeling_image25.png │ ├── Mod_01_Data_Modeling_image26.png │ ├── Mod_01_Data_Modeling_image27.png │ ├── Mod_01_Data_Modeling_image28.png │ ├── Mod_01_Data_Modeling_image29.png │ ├── Mod_01_Data_Modeling_image30.png │ ├── Mod_01_Data_Modeling_image31.png │ ├── Mod_01_Data_Modeling_image32.png │ ├── Mod_01_Data_Modeling_image33.png │ ├── Mod_01_Data_Modeling_image34.png │ ├── Mod_01_Data_Modeling_image35.png │ ├── Mod_01_Data_Modeling_image36.png │ ├── Mod_01_Data_Modeling_image37.png │ ├── Mod_01_Data_Modeling_image4.png │ ├── Mod_01_Data_Modeling_image5.png │ ├── Mod_01_Data_Modeling_image6.png │ ├── Mod_01_Data_Modeling_image7.png │ ├── Mod_01_Data_Modeling_image8.png │ ├── Mod_01_Data_Modeling_image9.png │ ├── add-existing.png │ ├── city-column.png │ ├── inspection-status-reason-column.png │ ├── inspection-status-reasons.png │ ├── new-solution.png │ ├── permit-status-reasons.png │ ├── permit-table.png │ ├── select-dev-environment.png │ ├── solutions-list.png │ ├── status-reason-label-new-request.png │ └── status-reason-labels.png │ ├── S02 │ ├── Mod_02_Model_Driven_App_image1.png │ ├── Mod_02_Model_Driven_App_image10.png │ ├── Mod_02_Model_Driven_App_image11.png │ ├── Mod_02_Model_Driven_App_image12.png │ ├── Mod_02_Model_Driven_App_image13.png │ ├── Mod_02_Model_Driven_App_image14.png │ ├── Mod_02_Model_Driven_App_image15.png │ ├── Mod_02_Model_Driven_App_image16.png │ ├── Mod_02_Model_Driven_App_image17.png │ ├── Mod_02_Model_Driven_App_image18.png │ ├── Mod_02_Model_Driven_App_image19.png │ ├── Mod_02_Model_Driven_App_image2.png │ ├── Mod_02_Model_Driven_App_image20.png │ ├── Mod_02_Model_Driven_App_image21.png │ ├── Mod_02_Model_Driven_App_image22.png │ ├── Mod_02_Model_Driven_App_image23.png │ ├── Mod_02_Model_Driven_App_image24.png │ ├── Mod_02_Model_Driven_App_image25.png │ ├── Mod_02_Model_Driven_App_image26.png │ ├── Mod_02_Model_Driven_App_image27.png │ ├── Mod_02_Model_Driven_App_image28.png │ ├── Mod_02_Model_Driven_App_image29.png │ ├── Mod_02_Model_Driven_App_image3.png │ ├── Mod_02_Model_Driven_App_image30.png │ ├── Mod_02_Model_Driven_App_image31.png │ ├── Mod_02_Model_Driven_App_image32.png │ ├── Mod_02_Model_Driven_App_image33.png │ ├── Mod_02_Model_Driven_App_image34.png │ ├── Mod_02_Model_Driven_App_image35.png │ ├── Mod_02_Model_Driven_App_image36.png │ ├── Mod_02_Model_Driven_App_image37.png │ ├── Mod_02_Model_Driven_App_image38.png │ ├── Mod_02_Model_Driven_App_image39.png │ ├── Mod_02_Model_Driven_App_image4.png │ ├── Mod_02_Model_Driven_App_image40.png │ ├── Mod_02_Model_Driven_App_image41.png │ ├── Mod_02_Model_Driven_App_image42.png │ ├── Mod_02_Model_Driven_App_image43.png │ ├── Mod_02_Model_Driven_App_image44.png │ ├── Mod_02_Model_Driven_App_image45.png │ ├── Mod_02_Model_Driven_App_image46.png │ ├── Mod_02_Model_Driven_App_image47.png │ ├── Mod_02_Model_Driven_App_image48.png │ ├── Mod_02_Model_Driven_App_image49.png │ ├── Mod_02_Model_Driven_App_image5.png │ ├── Mod_02_Model_Driven_App_image6.png │ ├── Mod_02_Model_Driven_App_image7.png │ ├── Mod_02_Model_Driven_App_image8.png │ ├── Mod_02_Model_Driven_App_image9.png │ ├── add-subgrid.png │ ├── app-designer.png │ ├── app-navigation-enable-areas.png │ ├── app-navigation-settings.png │ ├── app-navigation.png │ ├── contact-list.png │ ├── edit-area-properties.png │ ├── form-components.png │ ├── inspections-view.png │ ├── new-view-button.png │ ├── permit-default-main-form.png │ ├── permit-forms.png │ └── permit-views.png │ └── S03 │ ├── Mod_03_Canvas_App_image1.png │ ├── Mod_03_Canvas_App_image10.png │ ├── Mod_03_Canvas_App_image11.png │ ├── Mod_03_Canvas_App_image12.png │ ├── Mod_03_Canvas_App_image13.png │ ├── Mod_03_Canvas_App_image14.png │ ├── Mod_03_Canvas_App_image15.png │ ├── Mod_03_Canvas_App_image17.png │ ├── Mod_03_Canvas_App_image18.png │ ├── Mod_03_Canvas_App_image19.png │ ├── Mod_03_Canvas_App_image2.png │ ├── Mod_03_Canvas_App_image20.png │ ├── Mod_03_Canvas_App_image21.png │ ├── Mod_03_Canvas_App_image22.png │ ├── Mod_03_Canvas_App_image23.png │ ├── Mod_03_Canvas_App_image24.png │ ├── Mod_03_Canvas_App_image25.png │ ├── Mod_03_Canvas_App_image26.png │ ├── Mod_03_Canvas_App_image27.png │ ├── Mod_03_Canvas_App_image28.png │ ├── Mod_03_Canvas_App_image29.png │ ├── Mod_03_Canvas_App_image3.png │ ├── Mod_03_Canvas_App_image30.png │ ├── Mod_03_Canvas_App_image31.png │ ├── Mod_03_Canvas_App_image32.png │ ├── Mod_03_Canvas_App_image33.png │ ├── Mod_03_Canvas_App_image34.png │ ├── Mod_03_Canvas_App_image35.png │ ├── Mod_03_Canvas_App_image36.png │ ├── Mod_03_Canvas_App_image37.png │ ├── Mod_03_Canvas_App_image38.png │ ├── Mod_03_Canvas_App_image39.png │ ├── Mod_03_Canvas_App_image4.png │ ├── Mod_03_Canvas_App_image40.png │ ├── Mod_03_Canvas_App_image41.png │ ├── Mod_03_Canvas_App_image43.png │ ├── Mod_03_Canvas_App_image44.png │ ├── Mod_03_Canvas_App_image45.png │ ├── Mod_03_Canvas_App_image46.png │ ├── Mod_03_Canvas_App_image47.png │ ├── Mod_03_Canvas_App_image48.png │ ├── Mod_03_Canvas_App_image49.png │ ├── Mod_03_Canvas_App_image5.png │ ├── Mod_03_Canvas_App_image50.png │ ├── Mod_03_Canvas_App_image51.png │ ├── Mod_03_Canvas_App_image52.png │ ├── Mod_03_Canvas_App_image53.png │ ├── Mod_03_Canvas_App_image54.png │ ├── Mod_03_Canvas_App_image55.png │ ├── Mod_03_Canvas_App_image56.png │ ├── Mod_03_Canvas_App_image57.png │ ├── Mod_03_Canvas_App_image58.png │ ├── Mod_03_Canvas_App_image59.png │ ├── Mod_03_Canvas_App_image6.png │ ├── Mod_03_Canvas_App_image60.png │ ├── Mod_03_Canvas_App_image61.png │ ├── Mod_03_Canvas_App_image62.png │ ├── Mod_03_Canvas_App_image63.png │ ├── Mod_03_Canvas_App_image64.png │ ├── Mod_03_Canvas_App_image65.png │ ├── Mod_03_Canvas_App_image66.png │ ├── Mod_03_Canvas_App_image67.png │ ├── Mod_03_Canvas_App_image68.png │ ├── Mod_03_Canvas_App_image69.png │ ├── Mod_03_Canvas_App_image7.png │ ├── Mod_03_Canvas_App_image70.png │ ├── Mod_03_Canvas_App_image71.png │ ├── Mod_03_Canvas_App_image72.png │ ├── Mod_03_Canvas_App_image73.png │ ├── Mod_03_Canvas_App_image74.png │ ├── Mod_03_Canvas_App_image75.png │ ├── Mod_03_Canvas_App_image77.png │ ├── Mod_03_Canvas_App_image8.png │ ├── Mod_03_Canvas_App_image9.png │ ├── add-button.png │ ├── custom-header-control.png │ ├── export-solution-download.png │ ├── export-solution-managed.png │ ├── export-solution-publish.png │ ├── export-solution-unmanaged.png │ ├── import-solution-file.png │ ├── new-screen.png │ ├── save-icon.png │ ├── select-solution.png │ ├── solution-checker-run.png │ ├── solution-checker-sero-issues.png │ ├── solution-checker-view-results.png │ ├── solution-overview-export.png │ └── solution-overview-tab.png ├── LICENSE ├── _build.yml ├── _config.yml ├── index.md └── readme.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Module: 00 2 | ## Lab/Demo: 00 3 | ### Task: 00 4 | #### Step: 00 5 | 6 | Description of issue 7 | 8 | Repro steps: 9 | 10 | 1. 11 | 1. 12 | 1. -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Module: 00 2 | ## Lab/Demo: 00 3 | 4 | Fixes # . 5 | 6 | Changes proposed in this pull request: 7 | 8 | - 9 | - 10 | - -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_11_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_11_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_12_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_12_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_13_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_13_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_14_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_14_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_15_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_15_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_16_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_16_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_17_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_17_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_18_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_18_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_20_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_20_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_22_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_22_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_23_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_23_0.zip -------------------------------------------------------------------------------- /Allfiles/Demos/PL400Demos_1_0_24_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Demos/PL400Demos_1_0_24_0.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L01/DataModel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L01/DataModel.pdf -------------------------------------------------------------------------------- /Allfiles/Labs/L01/DataModel_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L01/DataModel_image1.png -------------------------------------------------------------------------------- /Allfiles/Labs/L01/PermitManagement_1.0.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L01/PermitManagement_1.0.0.0.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L01/PermitManagementdata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L01/PermitManagementdata.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L02/Completed/PermitManagement_1_0_0_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L02/Completed/PermitManagement_1_0_0_2.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L03/Completed/PermitManagement_1_0_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L03/Completed/PermitManagement_1_0_0_3.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L03/Starter/PermitManagement_1_0_0_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L03/Starter/PermitManagement_1_0_0_2.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L04/Resources/permitdata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L04/Resources/permitdata.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L04/Starter/PermitManagement_1_0_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L04/Starter/PermitManagement_1_0_0_3.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L05/Starter/PermitManagement_1_0_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L05/Starter/PermitManagement_1_0_0_3.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L06/Starter/PermitManagement_1_0_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L06/Starter/PermitManagement_1_0_0_3.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L09/PermitManagementAzuredata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L09/PermitManagementAzuredata.zip -------------------------------------------------------------------------------- /Allfiles/Labs/L09/PermitManagement_1.0.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Labs/L09/PermitManagement_1.0.0.0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_11_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_11_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_3_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_3_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_4_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_4_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_5_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_5_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_6_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_6_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_8_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_8_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/PL400Demos_1_0_9_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/PL400Demos_1_0_9_0.zip -------------------------------------------------------------------------------- /Allfiles/Setup/Resources/ContosoComponents.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Allfiles/Setup/Resources/ContosoComponents.msapp -------------------------------------------------------------------------------- /Instructions/images/Demos/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/Demos/badge.png -------------------------------------------------------------------------------- /Instructions/images/Demos/demo-erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/Demos/demo-erd.png -------------------------------------------------------------------------------- /Instructions/images/Demos/learn-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/Demos/learn-sign-in.png -------------------------------------------------------------------------------- /Instructions/images/L00/add-licenses-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/add-licenses-dev.png -------------------------------------------------------------------------------- /Instructions/images/L00/add-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/add-licenses.png -------------------------------------------------------------------------------- /Instructions/images/L00/azure-subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/azure-subscription.png -------------------------------------------------------------------------------- /Instructions/images/L00/ellipses-settings-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/ellipses-settings-dev.png -------------------------------------------------------------------------------- /Instructions/images/L00/environments-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/environments-all.png -------------------------------------------------------------------------------- /Instructions/images/L00/labfiles-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/labfiles-folder.png -------------------------------------------------------------------------------- /Instructions/images/L00/marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/marketplace.png -------------------------------------------------------------------------------- /Instructions/images/L00/mod-administrator-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/mod-administrator-dev.png -------------------------------------------------------------------------------- /Instructions/images/L00/mod-administrator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/mod-administrator.png -------------------------------------------------------------------------------- /Instructions/images/L00/new-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/new-environment.png -------------------------------------------------------------------------------- /Instructions/images/L00/per-user-plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/per-user-plan.png -------------------------------------------------------------------------------- /Instructions/images/L00/powershell-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/powershell-commands.png -------------------------------------------------------------------------------- /Instructions/images/L00/ppac-environments-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/ppac-environments-dev.png -------------------------------------------------------------------------------- /Instructions/images/L00/ppac-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/ppac-environments.png -------------------------------------------------------------------------------- /Instructions/images/L00/premium_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/premium_plan.png -------------------------------------------------------------------------------- /Instructions/images/L00/purchase-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/purchase-services.png -------------------------------------------------------------------------------- /Instructions/images/L00/select-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/select-users.png -------------------------------------------------------------------------------- /Instructions/images/L00/start-powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L00/start-powershell.png -------------------------------------------------------------------------------- /Instructions/images/L01/connections-for-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/connections-for-solution.png -------------------------------------------------------------------------------- /Instructions/images/L01/solution-imported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/solution-imported.png -------------------------------------------------------------------------------- /Instructions/images/L01/solution-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/solution-objects.png -------------------------------------------------------------------------------- /Instructions/images/L01/solution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/solution-overview.png -------------------------------------------------------------------------------- /Instructions/images/L01/solution-to-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/solution-to-import.png -------------------------------------------------------------------------------- /Instructions/images/L01/test-data-inspections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L01/test-data-inspections.png -------------------------------------------------------------------------------- /Instructions/images/L02/add-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L02/add-button.png -------------------------------------------------------------------------------- /Instructions/images/L02/failed-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L02/failed-button.png -------------------------------------------------------------------------------- /Instructions/images/L02/failed-inspection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L02/failed-inspection.png -------------------------------------------------------------------------------- /Instructions/images/L02/onstart-formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L02/onstart-formula.png -------------------------------------------------------------------------------- /Instructions/images/L02/run-onstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L02/run-onstart.png -------------------------------------------------------------------------------- /Instructions/images/L03/add-flow-to-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/add-flow-to-app.png -------------------------------------------------------------------------------- /Instructions/images/L03/business-process-flow-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/business-process-flow-name.png -------------------------------------------------------------------------------- /Instructions/images/L03/business-process-flow-stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/business-process-flow-stages.png -------------------------------------------------------------------------------- /Instructions/images/L03/clear-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/clear-button.png -------------------------------------------------------------------------------- /Instructions/images/L03/configure-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/configure-loop.png -------------------------------------------------------------------------------- /Instructions/images/L03/dynamic-content-inspection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/dynamic-content-inspection.png -------------------------------------------------------------------------------- /Instructions/images/L03/dynamic-content-permit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/dynamic-content-permit.png -------------------------------------------------------------------------------- /Instructions/images/L03/dynamic-content-start-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/dynamic-content-start-date.png -------------------------------------------------------------------------------- /Instructions/images/L03/dynamic-content-use-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/dynamic-content-use-input.png -------------------------------------------------------------------------------- /Instructions/images/L03/inspections-list-rows-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/inspections-list-rows-step.png -------------------------------------------------------------------------------- /Instructions/images/L03/instant-flow-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/instant-flow-name.png -------------------------------------------------------------------------------- /Instructions/images/L03/new-scheduled-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/new-scheduled-flow.png -------------------------------------------------------------------------------- /Instructions/images/L03/null-expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/null-expression.png -------------------------------------------------------------------------------- /Instructions/images/L03/pending-inspections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/pending-inspections.png -------------------------------------------------------------------------------- /Instructions/images/L03/powerapps-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/powerapps-trigger.png -------------------------------------------------------------------------------- /Instructions/images/L03/rename-flow-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/rename-flow-step.png -------------------------------------------------------------------------------- /Instructions/images/L03/reset-inspections-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/reset-inspections-flow.png -------------------------------------------------------------------------------- /Instructions/images/L03/scheduled-flow-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/scheduled-flow-name.png -------------------------------------------------------------------------------- /Instructions/images/L03/select-list-rows-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/select-list-rows-action.png -------------------------------------------------------------------------------- /Instructions/images/L03/test-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L03/test-flow.png -------------------------------------------------------------------------------- /Instructions/images/L04/developer-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/developer-resources.png -------------------------------------------------------------------------------- /Instructions/images/L04/fetchxml-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/fetchxml-builder.png -------------------------------------------------------------------------------- /Instructions/images/L04/fetchxml-query-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/fetchxml-query-builder.png -------------------------------------------------------------------------------- /Instructions/images/L04/maker-portal-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/maker-portal-settings.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tool-cmt-build-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tool-cmt-build-site.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tool-cmt-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tool-cmt-export.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tool-cmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tool-cmt.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tool-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tool-list.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tools-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tools-environments.png -------------------------------------------------------------------------------- /Instructions/images/L04/pac-tools-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/pac-tools-login.png -------------------------------------------------------------------------------- /Instructions/images/L04/xrmtoolbox-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/xrmtoolbox-app.png -------------------------------------------------------------------------------- /Instructions/images/L04/xrmtoolbox-tool-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/xrmtoolbox-tool-library.png -------------------------------------------------------------------------------- /Instructions/images/L04/xrmtoolbox-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L04/xrmtoolbox-website.png -------------------------------------------------------------------------------- /Instructions/images/L05/console-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/console-output.png -------------------------------------------------------------------------------- /Instructions/images/L05/console-whoami-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/console-whoami-output.png -------------------------------------------------------------------------------- /Instructions/images/L05/early-bound-entity-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/early-bound-entity-classes.png -------------------------------------------------------------------------------- /Instructions/images/L05/early-bound-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/early-bound-tool.png -------------------------------------------------------------------------------- /Instructions/images/L05/postman-authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/postman-authorization.png -------------------------------------------------------------------------------- /Instructions/images/L05/postman-create-permit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/postman-create-permit.png -------------------------------------------------------------------------------- /Instructions/images/L05/postman-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/postman-environment.png -------------------------------------------------------------------------------- /Instructions/images/L05/postman-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/postman-headers.png -------------------------------------------------------------------------------- /Instructions/images/L05/postman-newtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/postman-newtab.png -------------------------------------------------------------------------------- /Instructions/images/L05/source-code-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/source-code-folder.png -------------------------------------------------------------------------------- /Instructions/images/L05/visual-studio-create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/visual-studio-create-project.png -------------------------------------------------------------------------------- /Instructions/images/L05/visual-studio-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L05/visual-studio-welcome.png -------------------------------------------------------------------------------- /Instructions/images/L06/edit-app-add-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/edit-app-add-command.png -------------------------------------------------------------------------------- /Instructions/images/L06/edit-app-command-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/edit-app-command-bar.png -------------------------------------------------------------------------------- /Instructions/images/L06/edit-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/edit-app.png -------------------------------------------------------------------------------- /Instructions/images/L06/edit-command-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/edit-command-bar.png -------------------------------------------------------------------------------- /Instructions/images/L06/lock-permit-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/lock-permit-command.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-01.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-02.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-03.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-04.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-05.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-06.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-07.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-08.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-09.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-10.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-100.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-101.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-102.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-103.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-104.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-105.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-106.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-107.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-108.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-12.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-13.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-14.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-15.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-16.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-18.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-19.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-20.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-21.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-22.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-23.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-24.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-25.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-26.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-27.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-28.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-29.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-30.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-31.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-32.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-33.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-34.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-35.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-36.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-37.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-38.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-39.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-41.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-42.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-43.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-44.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-46.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-47.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-48.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-49.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-50.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-51.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-52.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-53.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-54.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-55.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-56.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-57.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-58.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-60.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-61.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-62.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-63.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-65.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-66.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-67.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-68.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-69.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-70.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-71.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-72.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-73.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-74.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-75.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-76.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-77.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-78.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-79.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-80.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-81.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-82.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-83.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-84.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-85.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-86.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-87.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-88.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-89.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-90.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-91.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-92.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-93.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-94.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-95.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-96.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-97.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-98.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting-99.png -------------------------------------------------------------------------------- /Instructions/images/L06/mod-01-client-scripting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/mod-01-client-scripting.png -------------------------------------------------------------------------------- /Instructions/images/L06/new-web-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/new-web-resource.png -------------------------------------------------------------------------------- /Instructions/images/L06/permits-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/permits-view.png -------------------------------------------------------------------------------- /Instructions/images/L06/scripts-folder-in-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/scripts-folder-in-vscode.png -------------------------------------------------------------------------------- /Instructions/images/L06/scripts-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L06/scripts-folder.png -------------------------------------------------------------------------------- /Instructions/images/L07/add-component-to-subgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/add-component-to-subgrid.png -------------------------------------------------------------------------------- /Instructions/images/L07/build-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/build-result.png -------------------------------------------------------------------------------- /Instructions/images/L07/dev-tools-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/dev-tools-search.png -------------------------------------------------------------------------------- /Instructions/images/L07/export-solution-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/export-solution-managed.png -------------------------------------------------------------------------------- /Instructions/images/L07/export-solution-unmanaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/export-solution-unmanaged.png -------------------------------------------------------------------------------- /Instructions/images/L07/get-more-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/get-more-components.png -------------------------------------------------------------------------------- /Instructions/images/L07/import-solution-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/import-solution-file.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-01.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-02.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-03.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-04.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-05.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-06.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-07.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-08.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-09.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-10.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-11.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-12.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-13.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-14.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-15.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-16.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-17.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-18.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-19.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-20.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-21.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-22.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-23.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-24.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-25.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-26.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-27.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-28.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-29.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-30.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-31.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-32.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-33.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-34.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-35.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-36.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-37.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-38.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-39.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-40.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-41.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-42.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-43.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-44.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-45.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-46.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-47.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-48.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-51.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-52.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-54.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-55.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-56.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-57.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-58.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-59.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-60.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-61.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-62.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-63.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-64.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-65.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-66.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-67.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-68.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-69.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-70.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-71.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-72.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-73.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-74.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-75.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-76.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-77.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-79.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-80.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-81.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-82.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-83.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-84.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-85.png -------------------------------------------------------------------------------- /Instructions/images/L07/mod-02-pcf-1-86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/mod-02-pcf-1-86.png -------------------------------------------------------------------------------- /Instructions/images/L07/node-js-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/node-js-download.png -------------------------------------------------------------------------------- /Instructions/images/L07/output-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/output-path.png -------------------------------------------------------------------------------- /Instructions/images/L07/pcf-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/pcf-folder.png -------------------------------------------------------------------------------- /Instructions/images/L07/pcf-solution-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/pcf-solution-folder.png -------------------------------------------------------------------------------- /Instructions/images/L07/permit-table-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/permit-table-forms.png -------------------------------------------------------------------------------- /Instructions/images/L07/solution-reference-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/solution-reference-added.png -------------------------------------------------------------------------------- /Instructions/images/L07/test-data-inspections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/test-data-inspections.png -------------------------------------------------------------------------------- /Instructions/images/L07/timelinecontrol-on-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L07/timelinecontrol-on-form.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image1.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image10.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image11.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image12.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image13.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image14.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image15.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image16.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image17.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image18.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image19.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image2-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image2-10.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image2-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image2-8.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image2-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image2-9.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image2.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image20.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image21.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image22.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image23.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image24.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image25.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image26.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image27.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image28.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image29.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image3.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image30.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image31.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image32.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image33.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image34.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image35.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image36.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image37.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image38.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image39.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image4.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image40.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image41.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image42.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image43.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image44.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image45.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image46.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image47.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image48.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image49.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image5.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image50.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image51.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image52.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image53.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image54.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image55.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image56.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image57.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image58.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image59.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image6.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image60.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image61.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image62.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image63.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image64.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image65.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image66.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image67.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image68.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image69.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image7.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image70.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image71.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image72.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image73.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image74.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image75.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image76.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image77.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image8.png -------------------------------------------------------------------------------- /Instructions/images/L08/Mod_01_Plugin_image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/Mod_01_Plugin_image9.png -------------------------------------------------------------------------------- /Instructions/images/L08/add-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/add-timeline.png -------------------------------------------------------------------------------- /Instructions/images/L08/create-note-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/create-note-record.png -------------------------------------------------------------------------------- /Instructions/images/L08/enable-attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/enable-attachments.png -------------------------------------------------------------------------------- /Instructions/images/L08/enable-trace-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/enable-trace-logs.png -------------------------------------------------------------------------------- /Instructions/images/L08/foreach-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/foreach-code.png -------------------------------------------------------------------------------- /Instructions/images/L08/general-tab-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/general-tab-properties.png -------------------------------------------------------------------------------- /Instructions/images/L08/inspection-statuscodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/inspection-statuscodes.png -------------------------------------------------------------------------------- /Instructions/images/L08/inspections-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/inspections-data.png -------------------------------------------------------------------------------- /Instructions/images/L08/locked-note-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/locked-note-attachment.png -------------------------------------------------------------------------------- /Instructions/images/L08/permit-create-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/permit-create-code.png -------------------------------------------------------------------------------- /Instructions/images/L08/permit-statuscodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/permit-statuscodes.png -------------------------------------------------------------------------------- /Instructions/images/L08/plugin-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/plugin-init.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-register-assembly-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-register-assembly-plugin.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-register-assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-register-assembly.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-register-step-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-register-step-details.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-register-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-register-step.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-registered-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-registered-plugin.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-select-assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-select-assembly.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-update-assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-update-assembly.png -------------------------------------------------------------------------------- /Instructions/images/L08/prt-updated-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/prt-updated-plugin.png -------------------------------------------------------------------------------- /Instructions/images/L08/query-expression-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/query-expression-code.png -------------------------------------------------------------------------------- /Instructions/images/L08/select-general-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/select-general-tab.png -------------------------------------------------------------------------------- /Instructions/images/L08/set-custom-api-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/set-custom-api-response.png -------------------------------------------------------------------------------- /Instructions/images/L08/trace-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/trace-logs.png -------------------------------------------------------------------------------- /Instructions/images/L08/update-permit-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/update-permit-code.png -------------------------------------------------------------------------------- /Instructions/images/L08/vs-add-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L08/vs-add-class.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image1.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image10.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image11.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image12.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image13.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image14.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image15.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image16.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image17.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image19.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image2.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image20.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image21.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image22.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image23.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image24.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image25.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image26.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image27.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image28.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image29.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image3.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image30.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image31.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image32.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image33.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image34.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image36.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image37.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image38.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image39.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image4.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image40.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image41.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image42.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image43.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image44.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image45.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image46.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image5.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image6.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image7.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image8.png -------------------------------------------------------------------------------- /Instructions/images/L09/Mod_01_Web_Hook_image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/Mod_01_Web_Hook_image9.png -------------------------------------------------------------------------------- /Instructions/images/L09/add-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/add-class.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-function-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-function-logs.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-function-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-function-monitor.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-function-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-function-overview.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-function-result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-function-result1.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-create-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-create-function.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-function-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-function-code.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-function-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-function-keys.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-function-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-function-test.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-function-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-function-url.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-portal-go-to-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-portal-go-to-resource.png -------------------------------------------------------------------------------- /Instructions/images/L09/azure-storage-account-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/azure-storage-account-create.png -------------------------------------------------------------------------------- /Instructions/images/L09/canvas-app-add-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/canvas-app-add-screen.png -------------------------------------------------------------------------------- /Instructions/images/L09/custom-connector-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/custom-connector-connection.png -------------------------------------------------------------------------------- /Instructions/images/L09/custom-connector-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/custom-connector-host.png -------------------------------------------------------------------------------- /Instructions/images/L09/prt-image-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/prt-image-parameters.png -------------------------------------------------------------------------------- /Instructions/images/L09/prt-register-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/prt-register-image.png -------------------------------------------------------------------------------- /Instructions/images/L09/webhook-endpoint-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/webhook-endpoint-url.png -------------------------------------------------------------------------------- /Instructions/images/L09/webhook-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/webhook-output.png -------------------------------------------------------------------------------- /Instructions/images/L09/webhook-register-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/webhook-register-step.png -------------------------------------------------------------------------------- /Instructions/images/L09/webhook-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/webhook-url.png -------------------------------------------------------------------------------- /Instructions/images/L09/webhook-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/L09/webhook-value.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image1.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image10.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image11.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image12.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image13.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image14.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image15.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image16.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image17.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image18.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image19.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image20.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image21.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image22.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image23.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image24.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image25.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image26.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image27.png -------------------------------------------------------------------------------- /Instructions/images/S01/Mod_01_Data_Modeling_image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/Mod_01_Data_Modeling_image28.png -------------------------------------------------------------------------------- /Instructions/images/S01/add-existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/add-existing.png -------------------------------------------------------------------------------- /Instructions/images/S01/city-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/city-column.png -------------------------------------------------------------------------------- /Instructions/images/S01/inspection-status-reasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/inspection-status-reasons.png -------------------------------------------------------------------------------- /Instructions/images/S01/new-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/new-solution.png -------------------------------------------------------------------------------- /Instructions/images/S01/permit-status-reasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/permit-status-reasons.png -------------------------------------------------------------------------------- /Instructions/images/S01/permit-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/permit-table.png -------------------------------------------------------------------------------- /Instructions/images/S01/select-dev-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/select-dev-environment.png -------------------------------------------------------------------------------- /Instructions/images/S01/solutions-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/solutions-list.png -------------------------------------------------------------------------------- /Instructions/images/S01/status-reason-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S01/status-reason-labels.png -------------------------------------------------------------------------------- /Instructions/images/S02/add-subgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/add-subgrid.png -------------------------------------------------------------------------------- /Instructions/images/S02/app-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/app-designer.png -------------------------------------------------------------------------------- /Instructions/images/S02/app-navigation-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/app-navigation-settings.png -------------------------------------------------------------------------------- /Instructions/images/S02/app-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/app-navigation.png -------------------------------------------------------------------------------- /Instructions/images/S02/contact-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/contact-list.png -------------------------------------------------------------------------------- /Instructions/images/S02/edit-area-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/edit-area-properties.png -------------------------------------------------------------------------------- /Instructions/images/S02/form-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/form-components.png -------------------------------------------------------------------------------- /Instructions/images/S02/inspections-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/inspections-view.png -------------------------------------------------------------------------------- /Instructions/images/S02/new-view-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/new-view-button.png -------------------------------------------------------------------------------- /Instructions/images/S02/permit-default-main-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/permit-default-main-form.png -------------------------------------------------------------------------------- /Instructions/images/S02/permit-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/permit-forms.png -------------------------------------------------------------------------------- /Instructions/images/S02/permit-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S02/permit-views.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image1.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image10.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image11.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image12.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image13.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image14.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image15.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image17.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image18.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image19.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image2.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image20.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image21.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image22.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image23.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image24.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image25.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image26.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image27.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image28.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image29.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image3.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image30.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image31.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image32.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image33.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image34.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image35.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image36.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image37.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image38.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image39.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image4.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image40.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image41.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image43.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image44.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image45.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image46.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image47.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image48.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image49.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image5.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image50.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image51.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image52.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image53.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image54.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image55.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image56.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image57.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image58.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image59.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image6.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image60.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image61.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image62.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image63.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image64.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image65.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image66.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image67.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image68.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image69.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image7.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image70.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image71.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image72.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image73.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image74.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image75.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image77.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image8.png -------------------------------------------------------------------------------- /Instructions/images/S03/Mod_03_Canvas_App_image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/Mod_03_Canvas_App_image9.png -------------------------------------------------------------------------------- /Instructions/images/S03/add-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/add-button.png -------------------------------------------------------------------------------- /Instructions/images/S03/custom-header-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/custom-header-control.png -------------------------------------------------------------------------------- /Instructions/images/S03/export-solution-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/export-solution-download.png -------------------------------------------------------------------------------- /Instructions/images/S03/export-solution-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/export-solution-managed.png -------------------------------------------------------------------------------- /Instructions/images/S03/export-solution-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/export-solution-publish.png -------------------------------------------------------------------------------- /Instructions/images/S03/export-solution-unmanaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/export-solution-unmanaged.png -------------------------------------------------------------------------------- /Instructions/images/S03/import-solution-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/import-solution-file.png -------------------------------------------------------------------------------- /Instructions/images/S03/new-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/new-screen.png -------------------------------------------------------------------------------- /Instructions/images/S03/save-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/save-icon.png -------------------------------------------------------------------------------- /Instructions/images/S03/select-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/select-solution.png -------------------------------------------------------------------------------- /Instructions/images/S03/solution-checker-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/solution-checker-run.png -------------------------------------------------------------------------------- /Instructions/images/S03/solution-overview-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/solution-overview-export.png -------------------------------------------------------------------------------- /Instructions/images/S03/solution-overview-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/PL-400_Microsoft-Power-Platform-Developer/da89f0423dc23edf1e71ccabda71518282127de7/Instructions/images/S03/solution-overview-tab.png --------------------------------------------------------------------------------