Skip to main content

Hi there,

I am trying to add a string to the beginning of the Description (remarks) in ETM but when I do the formatting is lost. It will look something like this …

“New String ” + outbound.self.remarks 

Is there a way to maintain the formatting.
 

Can you try using a richRemarks field in the datamapper, and test something along these lines? 
 

"<p><b> Test </b> </p>" + outbound.self.richRemarks.content

Does that work for you?

 

You might have to add remarks as a field in the Record to Update to not get an error when using the outbound.self.richremarks etc.
ScriptException - TypeError: Cannot read property "content" from undefined 

Adding the remarks to the Record to Update should fix this.