Update Equipment Location

You use the Update Equipment Location orchestration to update the location of equipment. This orchestration processes the data forwarded by a location sensor and updates the Equipment Master Location Details table (F17311).

For example, a service technician might need to know the physical location of equipment to quickly and easily locate the equipment that requires maintenance. In such a situation, you can use an IoT location sensor attached to the equipment to record the equipment's geopositioning data, including the latitude and longitude. The Update Equipment Location orchestration then processes the sensor data and updates the F17311 table.

This table includes information that the Update Equipment Location orchestration uses to process IoT data:

Application Invoked

Application Version

Endpoint URL

Equipment Master Address Location Revisions (P1704)

ZJDE0001

http://<server>:<host>/jderest/orchestrator/JDE_ORCH_17C_UpdateEquipmentLocation

This is an example of an input message defined for the Update Equipment Location orchestration:

{
     "inputs": [
         {
            "name": "EquipmentNumber",
            "value": "34665"
         },
         {
            "name": "CustomerNumber",
            "value": "4244"
         },
         {
            "name": "SiteNumber",
            "value": "4244"
         },
         {
            "name": "Remark",
            "value": "Orchestration Test"
         },
         {
            "name": "Latitude",
            "value": "39.632080"
         },
         {
            "name": "Longitude",
            "value": "-104.900376"
         },
     ]
}