deleteSupplyWarehouse
This method allows deleting:
- The association of a storeroom with a supply.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\supply\DeleteSupplyWarehouseRequestType.java |
Return | web\wwwroot\ws\java\supply\DeleteSupplyWarehouseResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDOBJECT | X | Object ID # |
IDSTOREROOM | X | ID # of the storeroom to be associated |
VLOPTIMUM | Ideal quantity | |
VLREPLACEMENT | Minimum reorder quantity |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sp">
<soapenv:Header/>
<soapenv:Body>
<urn:deleteSupplyWarehouse>
<!--You may enter the following 4 items in any order-->
<urn:IDOBJECT>?</urn:IDOBJECT>
<urn:IDSTOREROOM>?</urn:IDSTOREROOM>
<urn:VLOPTIMUM>?</urn:VLOPTIMUM>
<urn:VLREPLACEMENT>?</urn:VLREPLACEMENT>
</urn:deleteSupplyWarehouse>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS:Â Return regarding the executed item FAILURE: -1 |