HistoryNotes
An approval history event [HistoryNotes
] is an event in the chain of approval for an expense report or timesheet.
Review the Usage Guidelines for the HistoryNotes
object.
— |
XML |
SOAP |
REST |
Database table |
---|---|---|---|---|
Object |
|
|
— |
|
Supported Commands |
|
— |
— |
— |
The HistoryNotes
object supports the equal to
read method only.
The HistoryNotes
has the following properties:
XML |
Database |
Description |
---|---|---|
|
|
[Read-only] The approval action: S -Submittal, P -Pending, A -Acceptance, R -Rejection, U -unapproval. |
|
|
[Read-only] The date associated with this history event. See Date Fields. |
|
|
[Read-only] Unique ID. Automatically assigned by SuiteProjects Pro. |
|
|
[Read-only] Notes associated with the history event. |
|
— |
[Read-only] The internal ID of the object. |
|
— |
[Read-only] The object type – Supports " |
Usage Guidelines
Review the following guidelines:
-
The
HistoryNotes
object type is listed in the SuiteProjects Pro WSDL but the SOAP API does not support this object type. Use theHistory
object type instead with the SOAP API. -
When reading
HistoryNotes
object with theequal to
method, the argument object must be anEnvelope
or aTimeSheet
object with a validid
property.Important:When reading the approval history of a timesheet, the argument object must be a
TimeSheet
(with an uppercaseS
) and not aTimesheet
(with an lowercases
) like you would use when working with timesheets.The following example shows the syntax used to read the approval history of an expense report with the XML API:
-
<Read type="HistoryNotes" method="equal to" limit="100"> <Envelope> <id>471</id> </Envelope> </Read>
The following example shows the syntax used to read the approval history of a timesheet with the XML API:
<Read type="HistoryNotes" method="equal to" limit="100"> <TimeSheet> <id>471</id> </TimeSheet> </Read>