Saturday, November 19, 2022

Power Apps

Dataverse - Create Custom API https://softchief.com/2021/08/19/step-by-step-custom-api-in-microsoft-dataverse-dynamics-365-configuration-and-demo-with-plugin/ CLI for Microsoft 365 - How to use in Power apps? https://www.m365princess.com/blogs/cli-microsoft-365-power-platform/

Power app coding

-----------------------------

https://powerusers.microsoft.com/t5/Building-Power-Apps/Edit-each-record-in-Powerapps-SharePoint/td-p/412728


Edit a record

-----------------------------------------------------


https://searchcontentmanagement.techtarget.com/tip/Follow-6-Power-Apps-best-practices-to-build-business-apps


https://powerapps.microsoft.com/en-us/roadmap/

After creating First Portal App, it adds 16 solutions to our Tenants.


WHEN TO USE MODEL DRIVEN APP, CANVAS OR PORTAL

https://devoworx.net/canvas-app-vs-model-driven-app-vs-portal-app/#canvas-app-in-powerapps


POWER APP PRICING

https://powerapps.microsoft.com/en-us/pricing/

  • Although, Power Apps per app plans appear in the Microsoft 365 admin center, you shouldn't attempt to assign them to users there. Power Apps per app plans must be allocated to an environment (and not to users) by an admin in the Power Platform admin center. After per app plans are allocated to an environment, they are assigned when apps are shared with users in the environment.
  • Power Apps for Windows isn't supported if you have the Power Apps per app plan

PER APP PLANS:
https://docs.microsoft.com/en-us/power-platform/admin/about-powerapps-perapp

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/share-app-guests#frequently-asked-questions

Canvas or Model DRiven apps can be shared to Guest accounts. 
A guest is someone outside the same Tenant, but part of another Tenant.

Portals can be accessed by Anonymous users and external customer with fb,google..etc

Portal wil work only on Browsers
Canvas apps will work on either Mobile or Tablet, can create custom UI, can have many data sources, but not responsive

Model Driven Apps can work in Browser or any device, can use only Dataverse as source, limited UI


WHY POWER APPS LICENCING IS CONFUSING

http://powerappsguide.com/blog/post/why-microsoft-365-licensing-confusing


Canvas APp with sp list - securtiy

https://www.spguides.com/powerapps-role-based-security/


QR CODE IN POWER APPS

https://powerusers.microsoft.com/t5/Community-App-Samples/QR-Code-generator/td-p/199745


DYNAMICALLY LIST ROWS FROM ANY DATAVERSE TABLE WITH FETCHXML IN POWER AUTOMATE


https://linnzawwin.blogspot.com/2022/11/dynamically-list-rows-from-any.html?m=1

DLP

https://learn.microsoft.com/en-us/power-automate/prevent-data-loss


Thursday, February 17, 2022

GIT

 

https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup


GIT LEARNING:

cd repofolder

git checkout - to checkout current branch

git checkout -b feature/test1 - create a local copy of staging branch

git commit -a -m "message"

git checkout staging --- pointing back to staging

$ git branch -d hotfix -  delete the new branch