-
By using below code, you can copy a record dynamically by using its URL property. You can execute this workflow activity from Javascript with WEB API or you can execute it inside of an Workflow and implement to any required business logic easily. All you have to do is create a new custom Workflow Activity…
-
Whether you are Developer, Analyst or Consultant, there may be requirements for to add multiple users to a team. For instance, the company has created a couple of new teams in its organization chart and want you to implement this new teams to Dynamics 365. Do you prefer navigating through 20 User records by hand…
-
Power Automate flows have significant advantages over the classic background workflow model. Using Power Automate for automated processes instead of classic workflow gives you better control, error handling and manage for your cases. With out-of-box connectors of Power Automate you can integrate with popular Microsoft, Amazon, Google, Azure services as well as many other services…
-
If you have a custom ribbon button and you want to hide/show it by a condition, this is what you need to do; Open Ribbon Workbench and navigate to your button Select Command of your button. Under Command properties scroll down to Enable Rules. Click “Add Enable Rule” button. Select “Add New Enable Rule“ to…
-
It is very easy to get OptionSet text and value :
-
To set a lookup field value, you need 3 parameters. Id of the lookup record name of the lookup record entity name of the lookup entity Here is how to use these values to set an account lookup field. var lookupValue = new Array();lookupValue[0] = new Object();lookupValue[0].id = myAccountId;lookupValue[0].name = myAccountName;lookupValue[0].entityType = “account”;Xrm.Page.getAttribute(“mylookupfield”).setValue(lookupValue);