User Review
( votes)Recently I worked on a project where not a single line of code was allowed. It was only configuration project. I had a requirement to create number of custom tasks at run time based on the task template. Since plugin was not allowed, used Power Automate(Flow).
While I started working on power Automate, I had to check the syntax for all small things which are on my finger tips when I write the plugin. Hence thought of posting about such syntaxes. Here are few quick help when we create a power automate instead of plugin.
Updating entity reference field
in Plugin if I am updating the regarding field of the task with the case ID
ActivityEntity.regardingobjectid= new EntityReference("incident", targetIncident.Id);
If we want to do same thing in Power Automate, we need to set it in different way
We need to either enter something like below
incidents(Guid) or /incidents/Guid
Updating Owner…
View original post 134 more words