- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014 07:26 AM
Hello implement community,
A new server request has been implemented in the Service Catalog.
To get new server requests out of the emails and hallway conversations
the Service Catalog item was kept simple so it could be implemented
immediately. Right now the Service Catalog item creates a Request,
a Request Item, a Notification and a Request Task.
The task and notification goes to the engineer that coordinates new servers who
then uses an application developed for this purpose called Operational
Projects or Ops Projects. The engineer creates nine tasks associated
with the Ops Project.
The tasks would be created from the OnSubmit event at the Ops Project
form when the field labeled 'Project Type' equals "New Server'.
Business rule condition
u_ops_project.u_project_type.indexOf("New System") == 0
Several of the fields from the Ops Project form will auto populate
in the Ops Projects Tasks.
If the Sys Admin training is remembered correctly, the way to get the
tasks created by the system would be a business rule as opposed to a client script
because the script must run at the server to create the tasks.
Any tips, tricks or pitfalls? Syntax for creating tasks in business rule?
Thank
Allen Pitts
LHP Hospital Group
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014 07:31 AM
Personally I would recommend using a Workflow to handle this type of activity, as you can template your individual tasks without the need for using code. However, if you do need to script these events, use a Glide Record to create the tasks. Article:
Cheers, Adam

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014 07:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2014 01:39 AM
Uncheck the "Client callable" field, as this may be stopping your business rule from running. The client callable field is only required for Global business rules that would get called from a client action, for instance a list filter.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2014 05:30 AM
Hello Adam,
Thanks.
That made it work.
Allen Pitts
LHP Hospital Group

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2014 07:32 AM
Didn't notice the Client Callable...my bad.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2014 12:42 PM
Hello Derek
Your input is appreciated.
Allen Pitts