/
audit_get (session, id)

audit_get (session, id)

audit_get (session, id)

Is a function that returns the content from a audit except the XML of the transaction (used in AUDIT)

Input

parameters:

session: is the toke obtained in the session_init call

id: reference to the audit

Output

parameters:

result: an xml with the audit transaction (if the transaction is set, delete or update, then the XML will contains 2 XML (pre-operation & post-operation) )

ErrorMsg: any fault in the call, either in the validation of input parameters, errors in the connection to the database or any other error, this parameter returns the error message produced

Request

sample:

audti_get_XML ("LC0000001", 11111)

Response

sample:

<audit>
<ref>718</ref>
<user>
 <ref>12539</ref>
 <full_name>ALEXEY</full_name>
</user>
<object>form</object>
<method>form_delete</method>
<type>delete</type>
<purged>true</purged> <!-- optional tag, only show if the type is delete and the object is completely deleted -->
<date>20-FEB-15</date>
<error>
</error>
<affected>
 <case>13937</case>
 <admission>22129</admission>
 <task>58481</task>
 <form>87521</form>
 <team>
 </team>
 <user>
 </user>
 <event>
 </event>
 <library_program>
 </library_program>
</affected>
</audit>

Notes:

 

 

Related content