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

Author: Sanjaya Pradhan

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.

Open record as popup dialog on command button click using JavaScript DataVerse power apps

To Open record as popup dialog on command button click using JavaScript DataVerse power apps use below code.

Open Entity List view as popup dialog in power apps DataVerse using JavaScript

If you want Open Entity List view as popup dialog in power apps data verse using JavaScript using command button then use below code. Here I am opening student view as popup.

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.

Filter record using Lookup Field Power Automate Dataverse

When you are using LIST ROWS action in DataVerse connector and want to filter records using Lookup Field then use following way. If your lookup logical name is fbs_student then in filter use _fbs_student_value eq ‘<Dynamic value>’ Hope it helps.

Auto Populate Lookup Field in Power Page/Power Portal

Step1 – Create JSON Web Template to get Server Data First create a Web Template with JSON response type and get all required server data using Liquid code. Sample code given below. Step2 – Create a Page Template and call the Web Template Create a new Page Template and use the created Web Template without…
Read more

[Resolved] Time zone issues in date time field with Power Automate

Learn how to handle time zone issues in date time fields with Power Automate.

Different in hours between two date time fields in Power Automate

Different in hours between two date time fields in Power Automate. Use below Expression. div(sub(ticks(body(‘Convert_time_zone_2’)),ticks(body(‘Convert_time_zone’))),36000000000)

Change style using CSS of Entity List in Power Pages or Power Portal

You can use below CSS to change styles of an Entity List. Put the below code in the Web Template of the Web Page where you have placed the Entity List. Here We have added Padding, Border, Border-Radius for the Entity List. To know the exact html tag rendering of entity list, use Browser Developer…
Read more

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.

Handle error in form submission in canvas app power apps

Handle error in form submission in canvas app power apps. watch below video.

Performance improvement in Power Apps Canvas APP

WATCH the video below to learn more.

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.

Trigger Condition in Power Automate

To stop running power automate for unnecessary purpose, use Trigger Condition to save Quota. Watch the below video to learn. 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.