AFAIK transferfields cannot be used for MediaSet DataTypes. Instead you can copy the media related to the MediaSet from one table to another.
FOR index := 1 TO mediaSourceTable.MediaSetField.COUNT DO
mediaTargetTable.MediaSetField.INSERT(mediaSourceTable.MediaSetField.ITEM(index));
MediaTargetTable.Modify(true);
AFAIK transferfields cannot be used for MediaSet DataTypes. Instead you can copy the media related to the MediaSet from one table to another.
FOR index := 1 TO mediaSourceTable.MediaSetField.COUNT DO
mediaTargetTable.MediaSetField.INSERT(mediaSourceTable.MediaSetField.ITEM(index));
MediaTargetTable.Modify(true);
Answers
Source: https://docs.microsoft.com/en-us/dynamics-nav/working-with-media-on-records#example
thanks for the help.
I managed to solve the issue.
by empty the company name from Tenant Media and Tenant Media Set table.