Previously I have used the syntax below to put a newline in a string but this is not currently working for me. History attribute is an unlimited string. Does anyone have any thoughts?
$Employee/History + '
' +
$historyString
[Edit]
The result I am getting is one long string:
10/16/2017 05:50:56 PM - Employee Profile created 10/16/2017 06:10:34 PMAdded vpn-ac by ESAT Addition Request. 10/17/2017 01:51:30 PMAdded New Network Account by ESAT Name Change Request. 10/17/2017 01:51:30 PM - Employee Profile updated with Name Change
I would like each entry to be on its own line such as:
10/16/2017 05:50:56 PM - Employee Profile created
10/16/2017 06:10:34 PM - Added vpn-ac by ESAT Addition Request.
10/17/2017 01:51:30 PM - Added New Network Account by ESAT Name Change Request.
10/17/2017 01:51:30 PM - Employee Profile updated with Name Change