- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2017 05:15 AM
I have built a Standard Change using a Record Producer to capture the information to populate various fields.
I then use a Workflow to generate tasks. I'm using the Advance Script section in the Task Workflow Activity to creat the content of the Short description and Description within the Task similar to this.
This is fine and delivers an end product like:-
"Deploy & configure GTA Package V19.20 on SERVERNAME for DATABASE located on SERVER"
I would like to be able to add more content, starting on the next line.
How do I add a Line Break to add a new sentence on the next line?
Solved! Go to Solution.
- Labels:
-
Change Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2017 05:20 AM
Hi Simon,
Add '\n' to end where you want to go to Next line.
Thank you,
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2017 05:20 AM
Please use '\n' in your code for inserting a new line.
eg : var resoNotes = "Line1\n";
resoNotes+="Line2\n";
current.resoultion_notes = resoNotes ;
You can insert \n in a single line also like "Line1\nLine2", but the readability would be higher if you follow as per example.
The output would be :
Line1
Line2
Regards aditya Telidevara

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2017 05:20 AM
Hi Simon,
Add '\n' to end where you want to go to Next line.
Thank you,
Ashutosh