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

Category: Power Apps

Using Pipeline (Deployment) in Power Apps Solution

In today’s fast-paced digital landscape, rapid and reliable deployment of applications is crucial for maintaining a competitive edge. Power Apps, Microsoft’s low-code development platform, offers a robust deployment pipeline feature that streamlines the process of deploying apps and updates across environments. In this blog post, we will explore what a deployment pipeline is, its benefits,…
Read more

Solution Dependency in Power Apps Solution Mangement

Power Apps is Microsoft’s suite of apps, services, connectors, and data platform that provides a rapid application development environment. One of the key features that make Power Apps powerful is its ability to manage and deploy solutions across different environments efficiently. When working with multiple components or customizations within Power Apps, understanding solution dependency becomes…
Read more

HTML Web Resource – Add on Form as control and pass data from Form to HTML and back to Form

Here you will come to how to Add HTML web resource on Form as control and pass data from Form to HTML and back to Form. Step 1 : Create a HTML Web resource and add the web resource on Form use below code for HTMl Web resource Step 2 : Call form load script…
Read more

System Jobs in Dataverse/ Dynamics 365 Status Information

Here is a list of status information you can refer for better understanding System Jobs. In Dynamics 365, a system job refers to background processes or tasks that are executed by the system to perform various operations within the application. These jobs are typically initiated by the system itself or by users through configurations such…
Read more

[Sample Code] Set Lookup View dynamically in Dynamics 365 or Power Apps Model driven app form

Here is a sample code you can use to dynamically set the lookup view conditionally in Dynamics 365 or Model driven power apps. Remember to pass execution context from FORM to JS. Hope this helps.

Top 20 Best Practices in Dynamics 365 & Power Platform while working with plugins, custom workflows, javscript, web resources

Here you will find some important best Practices you can folow while working with Power Paltform and Dynamics 365 Apps. All these Best Practices are recommended by Microsoft for better solution management and performance. Sl No. Description 1 Avoid duplicate Dataverse plug-in registrations.Duplicate plug-in step registration will cause the plug-in to fire multiple times on…
Read more

Open an entity view in javascript power apps model driven app

Below code can be used to Open an entity view in javascript power apps model driven app. Hope this helps.

Open an existing entity record within a dialog box in model driven app power Apps

The below code can be used to Open an existing entity record within a dialog box in model driven app power Apps. hope it helps.

Open an entity form in the create mode within a dialog box pop-up in model driven app power apps javascript

The below code will be used to Open an entity form in the create mode within a dialog box pop-up. Hope it helps.

Open an HTML web resource in a dialog pop-up box

Here is a sample code to Open an HTML web resource in a dialog. Hope it helps.

How to redirect view when record deleted in javaScript in Power Apps

Here is the cide. You have to use NavigateTo API.

Navigation Property for Lookup Field in Xrm.WebAPI Create – How to use

In this below blog, you will come to know how to use assign value to single lookup field and polymorphic lookup field while passing data in Xrm.WebAPI request in Javascript for Dataverse Power Apps Single Entity Lookup If you want to assign value of a lookup field which is associated with a single entity then…
Read more

ConfirmDialog in Power Apps using JavaScript

Using below code you can shoe a confirmation box using JavaScript which will display OK and Cancel Button. You can write your logic whn cancel button clicked and ok button clicked. Below code calls from On Save and restrict save operation if Cancel is clicked and OK button allowed to save the record. Pass executionContext…
Read more

OpenAlertDialog in JavaScript for Model Driven Power Apps – Display Pop-up Dilog

Using below code, you can open a dialog with dynamics values from the form in JavaScript in Model Driven App Power Apps Form. Watch video or scroll to read.

How to show a recommendation in Business Rule with demo

Introduction: In the dynamic landscape of Dynamics 365, the ability to guide users through data entry and decision-making is paramount. Business Rules in Dynamics 365 offer a versatile toolkit, and one often overlooked feature is the capability to show recommendations. In this blog post, we will explore how to leverage Business Rules to display recommendations…
Read more

Pass Parent form ID and sellected record ids from a subgrid command button in Model driven power apps

You can pass Parent form ID and sellected record ids from a subgrid command button in Model driven power apps Follow below method. Step 1 : Create a JS Step 2 : Add Command Button & Call JS with Parameter Now open the Model Driven App and Edit Command Bar. Select Subgrid command for Child…
Read more

Xrm WEBAPI Calls as Syncronous sample code using Promise

By default XRm WebAPI are asynchronous and to make this synchronous you can use below code structrure with using Promise. Hope this helps.

Difference between Model Driven App and Canvas App

Here is a list of diferences between Model Driven App and canvas App. Category Model-driven apps Canvas apps Data Source Dataverse only Dataverse + many others diversified cloud and on-premise data sources using connectors Design experience No-code component focused design Manipulation of control properties using Power Fx expressions UI control Limited, predominantly customization Full control…
Read more

Dynamics 365 Scenario Based Questions and Answers Part -1

Here You can download Dynamics 365 Scenario Based Questions and Answers Part -1. Hope this helps.

How to Free up storage space in Dataverse

You can delete notes, attachments, import history, and other data to free up storage space. Before you delete data, be sure that the data is no longer needed because you cannot retrieve deleted data. There is no “undo” to restore your data once it has been deleted. Follow below articles where the explanation given how…
Read more

Open HTML Web Resource and Pass Parameter using navigateTo Client API Power Apps

Here in this example you will learn how to open a HTML Web Resource and pass parameters tot web resource and use of navigateTo function. JS Code below. HTML Web Resource

Preferred solution in Power Platform

Preferred solution will help you to automatically add your component changes to a specific solution selected as preferred. So that any solution or default solution you use to change component, those will be added in the preferred solution. Follow the process below to work with preferred solution Step 1 – Enable Preferred Solution option Feature…
Read more

Trigger onchange event of DateTime field in power pages /power portal using JQuery

Handling change event in jQuery for Date Time fields is not straight forward like normal text fields. Use following method to handle onchange. Hope this helps.

Plugin Development Best Practices in Dynamics 365/ Dataverse/ Power Apps

While developing Plugins in Dynamics 365/Dataverse you have to follow some important Best Practices as explained by Microsoft. Here is a list of Best Practices. Hope this helps.

Set Field Error Notification using JavaScript by checking related parent entity record info in Dataverse Model driven app power apps

Sometimes you need to show error against form fields if some field value of parent record not met the required value. You can use below script and modify for your project. Hope this helps.

Retrieve Environment Variable’s ‘Current’ and ‘Default’ value using C# code in Dataverse

You can use environment variables to store temporary configurable values for a specific environment but if you want to read using C# code you can use the below code.