Please see the below video to know , why we need custom connector in Power Platform and how to create a custom connector
Author: Sree
Power Virtual Agent – Tutorial
Creating Covid tracker – chat bot to integrate with free open source API
Find records with date range in Model driven app using Advance Find
When you work in Model driven app – especially around date field, you may need to search record based on certain conditions.
Some of the options are shown in below image

The most often used filter criterias are “On”, “On or after” and “On or before”.
If we want to search records based on two date fields such as by using between operator, we need to use Advance search.
Before that, let see how “On or after” and “On or before” filter works. This is required to build our between filteration criteria.
On or after :
Consider the below records and see the published date in these records.

To get records after 1st of Aug 2021, the filteration shows three records


On or before:
To get records on or before 1st of Aug 2021, the filteration shows only one record


If we need to get record between 1st Aug to 7th Aug 2021, we need to use advanced search or using advance filteration.
Advance Search:
Click on the advance search icon on the right hand corner . By using both “On or after” and “One or before”, we can achieve the between date range functionality.

Add the date range as shown below

Result shows records within the selected range of dates.

Advance Filter:
Click on the “Advance filter” option

Select the same filteration that we have discussed above

Records will be filtered out with the date range

Looking for a video demo? I have explained the same in the video below.
Multi-Table lookup – Power Platform – PowerApps Feature – July 2021
When we are trying to create a lookup field that lets you check out media to the users.
We will have a table of Books with book publilsher details, a table of Audio offerings with audio type, and a table of Video offerings with video type.
There was no easy way to create a lookup that would pull data from all three tables at once.
We may end up with three separate lookups as shown below.

The solution is to have a single lookup, that can search data from all the media tables.

Watch this full video with a demo on this.
Fix to change Dynamics 365 – database to multi user mode
Sometimes when you try to restore the AX database, it will be converted into a Single User mode. And it will now allow you to perform any task against the AX database.
To rectify that, please try to execute the below query.
ALTER DATABASE AXDB SET MULTI_USER WITH ROLLBACK IMMEDIATE
If you have any deadlock on the database, you will receive the below error.
To rectify this issue, we need to kill the dependent process on the database. To identify the process please use the below sql script.
- Get the database id
(select dbid from sysdatabases where [name] =’AxDB’)
- Find all the process on the database id
select spID from sysprocesses where dbid IN 5
Once, you find the spID of the process, you should kill the process by using below code
Kill <spID>
Now execute alter table to change the database to multi user mode using below query.
ALTER DATABASE AXDB SET MULTI_USER WITH ROLLBACK IMMEDIATE
Alternatively, you can use the below script to find lock processes
SELECT * FROM sys.dm_tran_locks WHERE resource_database_id = DB_ID(‘AxDB’)
And kill the process with the request_session_id as shown below code
kill 53
kill 51
ALTER DATABASE AXDB SET MULTI_USER WITH ROLLBACK IMMEDIATE