addAttribProfileValue
This method allows adding/editing:
- Employee profile attribute values.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\admin\AddAttribProfileValueRequestType.java |
Return | web\wwwroot\ws\java\admin\AddAttribProfileValueResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDUSER | X | Employee ID #. |
NmAttribute | X | Attribute ID # |
DSATTRIBUTE | X¹ | Attribute value (Non-discrete, memo) |
VLATTRIBUTE | X² | Attribute value. Standards to enter date type data: ▪dd/mm/aaaa ▪yyyy-mm-dd. |
info
- X¹ - Required when the attribute data type is MEMO and attribute type is INDETERMINATE.
- X² - Required whenever the
DSATTRIBUTE
is not required.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:admin">
<soapenv:Header/>
<soapenv:Body>
<urn:addAttribProfileValue>
<!--You may enter the following 4 items in any order-->
<urn:IDUSER>?</urn:IDUSER>
<urn:NMATTRIBUTE>?</urn:NMATTRIBUTE>
<urn:VLATTRIBUTE>?</urn:VLATTRIBUTE>
<urn:DSATTRIBUTE>?</urn:DSATTRIBUTE>
</urn:addAttribProfileValue>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: 1. FAILURE: Message detailing the error. |