Hi,
I try to patch the data into 2 different places first patch save the data to SQL it's works, 2nd patch Update the SharePoint list
I have created lookup for ID check
SharePoint list contains 18000 row, I'm getting delegation Warning, data was not updated to SharePoint
This my code
ForAll(
Filter('Mechanical-Gallery'.AllItems, Toggle2_3.Value=true),
Patch('cadtracker.Mechanical',{ID:Value(ThisRecord.ID)},
{
Model_Name: TextInput6_10.Text,
Insert_from_CSYS:TextInput6_11.Text,
Part_Type:TextInput6_12.Text
}
);
Patch('Parts requests', LookUp('Parts requests',ID2 = TextInput2_3.Text),
{
'Request status':Concatallstatus.Text,
'MD Completed' :DateTimeValue(MDTime.Text)
}
)
);
Delegation Screenshot

Could you please help me how I can solve this issue?
Thanks