SetValue
The <SetValue> element updates the value of the current context field or attribute.
| Attribute | Description | 
|---|---|
| value | The new field or attribute value. | 
The following example changes a field value:
<FieldStandardization>
    <Field name="myField">
         <SetValue value="newValue" />
    </Field>
</FieldStandardization>
                                                The following example changes an attribute value:
<FieldStandardization>
    <Field name="myField">
        <Attribute name=myAttribute">
            <SetValue value="newValue" />
        </Attribute>
    </Field>
</FieldStandardization>