1. With the help of a Aranda Service Management (ASMS) Get the IDs of the values for the property Impact required for integration; as described in the Register impact.
2. The property Impact will relate to the Impact ASMS domain, to view the property information in ServiceNow you must right-click on the name and select “Show” to display this dialog box.

3. Look for property values Impact in the entity “Choice” as shown in the image:

4. Match the values of Impact of ServiceNow with the ID of the property Impact ASMS script, as shown below:
Impact ServiceNow | Impact ASMS | GO IMPACT ASMS | VALUE IMPACT SERVICENOW |
---|---|---|---|
1 - High | CRITICAL | 3 | 1 |
2 - Medium | HIGH | 2 | 2 |
3 - Low | LOW | 1 | 3 |
5. Write the relationship on the property impact of the configuration file as follows:
{
"impact": [
{
"table": "",
"mapping": [
{
"value": "1",
"id": 3
},
{
"value": "2",
"id": 2
},
{
"value": "3",
"id": 1
}
],
"field": ""
}
]
}
6. On the property table type the name of the ServiceNow table (incident, problem, change_request) where the cases will be taken, as follows, in the upper left you can see that for this example we are working with a incident

{
"impact": [
{
"table": "incident",
"mapping": [
{
"value": "1",
"id": 3
},
{
"value": "2",
"id": 2
},
{
"value": "3",
"id": 1
}
],
"field": ""
}
]
}
7. On the property field Type the name of the field Impact in ServiceNow, as follows:

{
"impact": [
{
"table": "incident",
"mapping": [
{
"value": "1",
"id": 3
},
{
"value": "2",
"id": 2
},
{
"value": "3",
"id": 1
}
],
"field": "impact"
}
]
}
Continue: Register the “case” property (step 3) ↪