EN
Español
English
Português
    Suppliers

    On the property provider the suppliers associated with the IC in the CMDB of Aranda are related to the suppliers in the CMDB of ServiceNow.

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

    {
      "provider": [
        {
          "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 suppliers


    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: Supplier list in Aranda CMDB / ServiceNow CMDB

    To create the list of suppliers, follow the instructions below:

    1. Get the IDs of the Aranda CMDB providers.
    2. Get sys_id or value from ServiceNow CMDB vendors.
    3. Assign the following supplier equivalence:

      Suppliers in ServiceNow Suppliers in Aranda ID BRAND ARANDA SYS_ID BRAND SERVICENOW
      Apple Apple 1 sys_id_item1
      Toshiba Toshiba 13 sys_id_item2
    • Type the ID BRAND ARANDA On Property “id” and the SYS_ID BRAND SERVICENOW of its equivalent taken from the CMDB de ServiceNow On Property value
          {
            "provider": [
              {
                "id": 1,
                "value": "sys_id_item1"
              },
              {
                "id": 13,
                "value": "sys_id_item2"
              }
            ]
          }
    



    ↩ Back to Settings