Bhubaneswar, Odisha, India
+91-8328865778
support@softchief.com

Category: Power Apps

Open quick create from on command button click model driven power apps code

to open quick create form on command button click use below code. watch video here. Open quick create form on command button click JS power apps hope it helps.

ER Diagram – Health Care Project (Medical Domain)

Here is a ER Diagram for the typical Health Care Project.

Form Validation to allow only Numbers or decimals in Power Pages Basic Form

To use form validation, to allow only numeric values in a field you can use Regular Expression in Form Metadata. Use below Regular Expression in Form Metadata. Now once you see live site you will see the result. Hope this helps.

Custom Workflow v/s Custom Action v/s Custom API Explanation

Custom Workflow v/s Custom Action v/s Custom API    Custom Workflow  Custom Action  Custom API  Private Scope  Not Applicable  No Support  Supported  API Type  Not Applicable  No Support – Always Action Supported – Function/Action  Code First Approach  Not Applicable  No Support  Supported  Data Types of parameters  More Data Types  Less Data Types  More Data Types  setup …
Read more

Debug Model Driven App using Monitor Tool

You can now debug model driven app using monitor tool. Watch the video to know more in practical. Hope this helps.

Business Rule Execution Order in Dataverse Power Apps

As you know, You can create multiple Business Rules on same entity or table, its important to understand how the business rules are executing in order. Normally the Business Rules executes in order depending on the modified on field value. To check this, Navigate to advanced Find and do the query for Processes table and…
Read more

Hide show command button using JavaScript in power apps

use below code in Enable Rule.

Pass Form Context from Form to HTML web resource ;in model driven power apps dataverse

Follow below steps. step 1 – Pass context from Form to Web Resource using Form on load on Form on load call the below method. make sure to use correct web resource name. Step 2 – Edit HTML Web resource to read the form context you can now use script to read context and declare…
Read more

open dashboard on command click dataverse power apps

to open dashboard on command button click use below code.

Open Child Form from parent form and prepopulate field in form javascript dataverse power apps

you can open a child table form and prepopulate field in child from parent record, use the below code. Here I am opening student enrollment form in create mode with prepopulate student lookup and other details.

Automatically open lookup search screen using Xrm.Utility.lookupobject and assign selected value to lookup field in Power Apps

Automatically open lookup search screen using Xrm.Utility.lookupobject and assign selected value to lookup field in Power Apps hope it helps.

Set Lookup field using Xrm.WebAPI Javascript in dataverse power apps

When you call Create or Update methods using Xrm.WebAPI client objects, you need to take special care while setting value of lookup fields. Follow below method to do this. Step 1 – Identify Navigation Property Name of the Lookup Column Open the METADATA url and search the column. The metadata url is like this https://devboxsoftchief.crm8.dynamics.com/api/data/v9.2/$metadata…
Read more

Parallel wait in workflow for dynamics 365 power apps

you can use parallel wait for multiple business use cases. below video explains in details.

Use Record URL in Email using Workflow Dynamics 365/ Power Apps

You can Use Record URL in Email using Workflow Dynamics 365/ Power Apps so that User can click the link to open the record directly. In workflow, open send email property and in the body select a location and click Insert Hyperlink. In pop up window mention the link title and in URL add dynamic…
Read more

How users can own records from multiple business units in Dataverse

In the below video, I will demonstrate how you can assign security roles to an user from multiple business units.

Business Rule vs JavaScript in Power Apps

Here are the differences between Business Rule and JavaScript.

Launch external URL and pass parameter in command button powerfx

use the below code. hope this helps.

Confirm Dialog Box with Custom Button uses PowerFX in Model Driven App

Confirm Dialog Box with Custom Button uses PowerFX in Model Driven App. Watch the video below. Hope this helps.

Command Button to use multiple related tables in Model Driven app powerfx

Here is the code to act on related table records from command button on model driven app. Watch the video below or scroll for powerfx. Conditional Visibility Code Action Code Hope this helps.

Handle Error in Canvas App While calling Power Automate from Canvas App

Handle Error in Canvas App While calling Power Automate from Canvas App. Hope this helps.

Power Apps Error Handling in PowerFX with Patch function

Here is the code. Hope this helps.

Custom API in Power Apps / Dynamics 365 Tutorial step by step using Plugin registration tool

Watch the video below to learn developing custom API in Dataverse. Hope this helps.

Model Driven Apps v/s Canvas Apps

Features Model Driven Apps Canvas Apps Data Source Dataverse Can connect multiple data sources such as SharePoint, SQL Server etc. User Interface UI is restricted as per Form Design. Full control on Layout Design. No restrictions on Page designs. Responsive By default Responsive Need to configure the Responsiveness using special components. Search Functionality Out-of-the-box search…
Read more

Hide Columns in Quick View conditionally with child form field value

Using Quick View form you can display parent table record info on child table form. But if there is a business need to hide some fields on child form conditionally by checking child record data then you have to write below script. Update above code as per your business need. hope this helps.

Bind Choice field to combo box in canvas app power apps

To bind combo box control with choice field from Dataverse, you need to use below PowerFX in the items property of the control. Now all the items will display as items of the combo box. But by default combo box allows to select multiple items at a time. if you want to restrict users to…
Read more