editDepartment
This method allows deleting the data of a department or business unit (if FGDEPTTYPE = 2). To edit these data, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\admin\EditDepartmentRequestType.java |
Return | web\wwwroot\ws\java\admin\EditDepartmentResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
ID | X | Department ID # |
DESC | X | Department description |
IDUPPER | Upper level department ID # | |
IDCOMPANY | ID # of the company where the department is defined | |
FGDEPTTYPE | Department type: 1 - Department; 2 - Business unit. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:admin">
<soapenv:Header/>
<soapenv:Body>
<urn:editDepartment>
<!--You may enter the following 5 items in any order-->
<urn:ID>?</urn:ID>
<urn:DESC>?</urn:DESC>
<urn:IDUPPER>?</urn:IDUPPER>
<urn:IDCOMPANY>?</urn:IDCOMPANY>
<urn:FGDEPTTYPE>?</urn:FGDEPTTYPE>
</urn:editDepartment>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Return | SUCCESS: Â Primary key of the department (CDDEPARTMENT) FAILURE: -1 |
Status | SUCCESS: SUCCESS FAILURE: FAILURE |
Detail | SUCCESS: Record(s) updated. FAILURE: message regarding the error that occurred. |
Code | SUCCESS: 1. FAILURE: Code regarding the error that occurred: â–ª 15 - Inexistent department â–ª 43 - The ID # has no value. â–ª 52 - Inexistent organizational unit. â–ª 53 - Inexistent upper level organizational unit. â–ª 54 - The [%s1] unit is a sublevel of [%s2]. â–ª 63 - The DESC field cannot be empty. â–ª 64 - Inexistent upper level department. |