
Announcements
I created a Model-Driven PowerApp.
In this PowerApp, I added the Dataverse table: TEAMS, in which I included the subgrid: MEMBERS of the related table: SYSTEMUSER.
I created a PowerAutomate flow that creates Dataverse teams with some users (records from the systemuser table).
Problem: sometimes the subgrid appears empty!
How Can i solve this problem??
Solution1 = I found that one possible solution is to go to Administration Interface > Environment > Check app access > enter the email address of the users in that team and click SEARCH
I want to āautomateā this Solution1 via a PowerAutomate flow.
Solution2 = using the PowerAutomate action: FORCE USER SYNCHRONIZATION Solution3: making a POST and a GET to the systemuser table
POST https://{tenant}/api/data/v9.2/systemusers CallerObjectId: ReplaceWithAzureObjectID Accept: application/json Content-Type: application/json; charset=utf-8 OData-MaxVersion: 4.0 OData-Version: 4.0
{āaFieldLogicNameā:āSample Account created using impersonationā}
GET https://{tenant}/api/data/v9.2/systemusers ?$select={aFieldLogicName}
ISSUE: it doesnāt always work! Sometimes the calls fail, and the subgrid appears empty in the PowerApp.