Hi @Kushal79,
Have you solved your problem?
Do you want to patch all the records in an entity to another Dataverse table?
Could you please share a bit more about the scenario?
Actually, if you want to transfer data from one Dataverse table to another Dataverse table, it is easy to achieve this using the ForAll() function.
Firstly, please consider saving the entity data into a collection:
ClearCollect(YourCollectionData,EntityName)
Then add a save button and set the OnSelect property as below:
ForAll(
YourCollectionData,
Patch(
'YourDataverseTable',
Defaults('YourDataverseTable'),
{
TableColumn1: CollectionColumn1,
TableColumn2: CollectionColumn2,
TableColumn3: CollectionColumn3,
...
}
)
)