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

Month: March 2023

How to decide when to use Dataverse Web API

Deciding when to use Dataverse Web API is very important to keep your code better quality. This post explains the same. The below image helps to decide.

Using PowerFX in custom pages

Here are some sample PowerFX you can use in Custom Page. Show Notification in Custom Page Navigate to another custom page Navigate to the default view of the table Navigate to specific system view of the table Navigate to the default form of the table for a selected item from gallery Navigate to a specific…
Read more

[Solved] Portal provisioning failed. You can retry portal provisioning or contact Microsoft support if this issue persists. while creating power pages site or power portal

Sometimes if you get errors while creating a custom portal or power page website like below then follow the procedure to solve this. The ERROR: Resolution: To solve this issue, navigate to https://portal.azure.com/ and then navigate to Azure Active Directory. Click Users and select the user who is trying to create the Portal/ Power Page…
Read more

Marketing content management in Dynamics 365

You can manage Images, videos and documents inside Dynamics 365 Marketing and tag them with keywords, so that you can use these library contents in marketing executions. Watch the below video for details walkthrough. Hope this helps.

[Solved] We’re having trouble communicating with the server – Event management registration Emulate payment

While Clicking Emulate Payment in Event Registration screen for demo marketing event, you can get below error. “We’re having trouble communicating with the server.” Check the resolution below. Resolution To resolve this add an Event Administration Settings record as below. In Marketing APP, navigate to Sitemap and select Settings then Event Administration and add new…
Read more

Event Planning in Dynamics 365 Marketing

Event Planning is a very important module in Dynamics 365 Marketing. In event planning you can manage Events, Participants, Venue, Logistics & Sponsors. Below diagram gives a full picture of event management practice. The Event Management module includes many concepts required for organizing events, bootcamps etc. Read the below points to understand details configuration. Venue…
Read more

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

With function in PowerFX Canvas App

In Canvas App PowerFX, you can use with function to define variables with a limited scope. Without using Local or Global variable or Collection Variable, you can scoped variables using WITH function. Here sample PowerFX mentioned using variables and corresponding with function. Scenario : Extract all accounts with name MS and update all records with…
Read more

Download File using PowerFX in Power Apps Canvas App

You can download online Files to your local machine using PowerFX. Follow below steps. Step 1 : Create a Canvas App with components In Power Apps maker, create a canvas app and add a button component on screen and add below PowerFX in OnSelect property. Download(“https://grad.illinois.edu/sites/default/files/pdfs/cvsamples.pdf”) Hope this helps.