EN
Español
English
Português
    Cost Center

    On the property costCenter the cost centers associated with the CI in the Aranda CMDB are related to the cost centers in the ServiceNow CMDB.

    The structure of the “costCenter” object is described below;

    {
      "costCenter": [
        {
          "reference": "",
          "mapping": [
            {
              "value": "",
              "id": 0
            }
          ]
        }
      ]
    }
    

    Where:

    properties description
    Reference It corresponds to the name/alias (a pseudoname given to the ServiceNow class) of the ServiceNow class with which we will relate the category of the Aranda CI
    mapping Represents the relationship of cost centers


    mapping

    {
      "id": "",
      "value": ""
    }
    


    A continuación se describen las propiedades id, value que son utilizadas dentro de la definición mapping (relación de valores)

    Properties Description
    Id Identifier of the supplier in the CMDB of Aranda
    value Vendor identifier (sys_id or value) in the ServiceNow CMDB


    EXAMPLE: Cost Center Relationship in Aranda CMDB / ServiceNow CMDB

    To create the cost center relationship, follow the instructions below:

    1. Get the IDs of the cost centers of the Aranda CMDB.
    2. Get sys_id or value from ServiceNow’s CMDB cost centers.
    3. Assign the following cost center equivalence:

      Cost Center in ServiceNow Aranda Cost Center ARANDA cost center ID SYS_ID SERVICENOW Cost Center
      Cost Center 1 Cost Center 1 1 sys_id_item1
      Cost Center 2 Cost Center 2 13 sys_id_item2
    • Type the ARANDA cost center ID On Property “id” and the SYS_ID SERVICENOW Cost Center of its equivalent taken from the CMDB de ServiceNow On Property value
          {
            "costCenter": [
              {
                "id": 1,
                "value": "sys_id_item1"
              },
              {
                "id": 13,
                "value": "sys_id_item2"
              }
            ]
          }    
    


    ↩ Back to Settings