How can I add text after a variable box to appear?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2015 11:34 AM
I have been asked to add some text AFTER an answer to a variable is entered. Such as:
Alias name for email:
__________________ @arccorp.com
The requestor would only need to include the first part of the email address. Is there a way to do this?
Thanks.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2015 11:49 AM
Hi Patty,
You can create a business rule on the table. You can have a script like
var str = current.short_description+'@arccorp.com'; // I am assuming short_description is my field column name of the short description.
current.update();
NOTE: Don't use current.update() if you are creating a before business rule.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2015 12:15 PM