Friday, October 18, 2024

SQL code to upate one Legal entity banner to all the legal entity in D365

 Hi,


update companyimage
set 

companyimage.Image  = companyimageA.Image 

from

 ( select Image from companyimage where dataAreaid = 'USFM' and imagetype = 1) as companyimageA 
where

 dataAreaid != 'USFM' and imagetype = 1

 

Regards

No comments:

Post a Comment