import_asset_oee
This import template allows adding:
- Parameter data to calculate OEE
To insert the data, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\asset\Import_asset_oeeRequestType.java |
| Return | web\wwwroot\ws\java\asset\Import_asset_oeeResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDOBJECT | X | Asset ID # |
| DTSTART | X | Start date. Date format must be Y-M-D (Year-Month-Day) |
| DTEND | X | End date. Date format must be Y-M-D (Year-Month-Day) |
| QTQUALITY | X | Quality parts |
| QTTOTAL | X | Total parts |
| QTPRODUCED | X | Amount produced |
| QTPLANNED | X | Planned quantity |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:asset">
<soapenv:Header/>
<soapenv:Body>
<urn:import_asset_oee>
<!--You may enter the following 7 items in any order-->
<urn:idobject>?</urn:idobject>
<urn:dtstart>?</urn:dtstart>
<urn:dtend>?</urn:dtend>
<urn:qtquality>?</urn:qtquality>
<urn:qttotal>?</urn:qttotal>
<urn:qtproduced>?</urn:qtproduced>
<urn:qtplanned>?</urn:qtplanned>
</urn:import_asset_oee>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |