deleteSupplySupplier
This method allows deleting:
- Data of the association between supply and supplier.
To delete each of these items, the standard documented below must be followed.
Java class | |
---|---|
Request | web\wwwroot\ws\java\supply\DeleteSupplySupplierRequestType.java |
Return | web\wwwroot\ws\java\supply\DeleteSupplySupplierResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDOBJECT | X | Supply ID #. |
IDCOMMERCIAL | X¹ | Supplier company ID. |
NMCOMPANY | X¹ | Supplier company name. |
IDCOMPANY | X² | Supplier code. |
info
- X¹ - Field required if "Supplier code" is empty.
- X² - Field required if “Company ID” and/or “Company name” are empty.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sp">
<soapenv:Header/>
<soapenv:Body>
<urn:deleteSupplySupplier>
<!--You may enter the following 4 items in any order-->
<urn:IDOBJECT>?</urn:IDOBJECT>
<urn:IDCOMMERCIAL>?</urn:IDCOMMERCIAL>
<urn:NMCOMPANY>?</urn:NMCOMPANY>
<urn:IDCOMPANY>?</urn:IDCOMPANY>
</urn:deleteSupplySupplier>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: 1. FAILURE: Message describing the failure. |