Glide List field not transfoming "List" type fields for field mapping if the field is not set to a reference table.Issue If we use LIST type column without any reference in the transform map filed mapping, target record is not updating. Reproducible in a Madrid and New York instance1) Create a transform map from a staging table to a target table with a 'List' type column with no reference association2) In the transform map, Create a field map between a source list to a target list type* After transform, Notice the target column is not manipulatedReleaseMadrid and New YorkResolutionPlease use this workaround : Remove the mapping in the Transform Map and use OnBefore Script ===== (function runTransformScript(source, map, log, target /*undefined onStart*/ ) { target.setDisplayValue('<TARGET_FIELD_NAME>', source.<SOURCE_FIELD_NAME>); })(source, map, log, target); =====Related LinksThis is fixed in Orlando