Hi,
following a previous thread with @abm
I'm trying to copy an image from one image column in one entity to another image column in another entity in order to sync data between two model driven apps used by two different teams here in my company.
The destination field is read only (i.e. the team A upload a picture in a model driven app and saves, then a flow is triggered and the image must be copied into the image column of another entity used by a different model driven app used by team B which should not change the image).
Also when team A changes the image, i have to delete and upload again the new image in the destination entity.
My problem is that once i tried to update it with a new image i'm not able to gain authorization to delete the old one in the destination entity even if i'm correctly taking the token from Azure.
Thank you!
Giovanni
Hi @Gprior
Can't you use the below trigger
Then when you delete the image then flow will run and check the image id is blank or not. If its blank you can delete the image from your other table. For adding a new image will generate a new GUID. So you can use this for the update to other table using the below action step to retrieve the image.
Thanks