Skip to the content.

ServiceNow - Usage

Configuring Service Now to Trigger Deployments in UCD

Service Now can be configured so that making a change to a Change Request, Incident, or any other table can kick off a deployment in UrbanCode Deploy automatically.This can be done by the following steps:

  1. Under System Web Services -> Outbound -> REST Message, Create a new REST Message for calling your UCD Application Process.

Screenshot showing a new outbound UCD REST Message Object

  1. Name the message, and set up the Endpoint field to direct to your UrbanCode Deploy server, using the proper path for requesting an Application Process. This can also be used with any other UCD REST Endpoint if desired.

  2. Create a New HTTP Method. Define the parameters based on the UrbanCode Deploy REST API reference for your rest call. For this case of requesting an application process, the HTTP Method will look something like this using Run an application process template:

Example HTTP Method for Requesting Application Process

  1. Now that we have our Outbound REST Message, we need to configure a Business Rule.In the side panel, under System Definition -> Business Rules.Here we can configure a table that we want to trigger the REST Call from, as well as the conditions to do so.This depends on user preferences.For this case, the following parameters are set to trigger a deployment when a Change Request table has its approval status set to Approved.

Business Rule for Deployment to UCD

  1. To reference the REST Message within the Business Rule, ensure that the Advanced box is checked.Now, under the Advanced tab, a Script box can be seen.To retrieve the script required to call our REST Message, we must return to our Http Method, scroll down to Related Links, and select Preview Script Usage.From here, we copy and paste the script as is, and paste it over the // Add your code here text.

  2. Now our settings are complete.We can go into a Change Request item, change its approval status to Approved using the proper roles, and we can see that our REST call was made and our Deployment started in UrbanCode Deploy.

Example: Check the status of a Change Request

Note: For checking records in the change_request table, this process was combined into one step in Version 18 of the ServiceNow plug-in, in the step Check Change Request Fields.

  1. Open the change record that contains the child change tasks to check.
  2. Right-click the child task to check, and then click Show Matching.
  3. Copy the query. Right-click the end of the query and then select Copy Query.

  4. In the process editor, add a Run Encoded Query step.
  5. Paste the query into the step.

  6. Add a Check Records step.
  7. Enter {p:EncodedQueryStepName/recordSystemIDs}`` in the Record System IDs field.

  8. For Check Fields, enter status=1.

The final process design should look like this:

Note: The status value in the last step is an integer key that corresponds to the state value-key pair that is used by ServiceNow. By default, -5 is Pending, 1 is Open, 2 is Work in Progress, 3 is Closed Complete, 4 is Closed Incomplete, and 7 is Closed Skipped. To find your specific key-value pairs, open a task in ServiceNow. Click Additional actions next to the task title, then click Configure > Form Design. Click edit this field, which is displayed when you select the state field.

Component and Agent Configuration

Defining the ServiceNow plug-in as a separate component to interface your ServiceNow environment allows you to reuse the ServiceNow steps in other processes. You can map components to an agent or agent pool that has access to the ServiceNow environment.

Additional information on agent pools can be found on the Creating and managing agent pools topic in IBM Documentation.

We will use the JPetStore Application in the graphic below to demonstrate the use of the ServiceNow agent pool in a deployment. The JPetStore Application example represents a project deployment strategy with three environments. The environments are shown on the Applications tab: Dev, QA, and Prod. The Components tab contains the various deployable items and concepts, that make up the application. In this example, it contains the ServiceNow component. The Processes tab contains deployment flows, when combined with the other component processes used to make dynamic decisions based on ServiceNow queried responses.

jpetstoreapp

The Resource Tree tab shows a typical design for an agent pool. Notice the high-level folder called ServiceNow Agents. The folder contains three agent pools: Dev Pool, Prod Pool and QA Pool.Agents are assign to a pool and configured for the environment.

resourcetree-1024x255

The Environments page for a specific environment displays the agent pools associated with the environment.As shown in the graphic below, the agent pool named Dev Pool is mapped to the Dev environment. With this configuration, the application process runs only on the available agents in the Dev Pool agent pool associated with the environment.

sampleenvironment

Back to …   Latest Version ServiceNow        
All Plugins Deploy Plugins 39.1161576 Readme Overview Troubleshooting Steps Downloads