Schedulebyday
A schedule by day [Schedulebyday
] is an employee's work schedule on a specific date.
Review the Usage Guidelines for the Schedulebyday
object.
— |
XML |
SOAP |
REST |
Database table |
---|---|---|---|---|
Object |
|
|
— |
|
Supported Commands |
— |
— |
The Schedulebyday
object has the following properties:
XML / SOAP |
Database |
Description |
---|---|---|
|
|
[Read-only] The number of base hours on this date for this user. |
|
|
[Read-only] Time the record was created. See Date Fields. |
|
|
[Read-only] The date. See Date Fields. |
|
|
[Read-only] The number of schedule hours on this date for this user, including exceptions. |
|
|
[Read-only] Unique ID. Automatically assigned by SuiteProjects Pro.
Important:
Entries in the The |
|
|
[Read-only] The number of target base hours for this user on this date Target_utilization.percentage * base_hours. |
|
|
[Read-only] The number of target hours for this user on this date. Target_utilization.percentage * hours. |
|
|
[Read-only] Time the record was last updated or modified. See Date Fields. |
|
|
[Read-only] The ID of the associated user. |
Usage Guidelines
Review the following guidelines:
-
You must use the following read attributes when reading
Schedulebyday
objects using theall
read method:start_date
,end_date
anduser_filter
. See Read Attributes. -
When using the XML API, reading
Schedulebyday
objects using theall
read method only returns exceptions to the base schedule. That is, the response includes onlySchedulebyday
objects for whichhours
is not equal tobase_hours
.For example, the following request, returns all schedule exceptions for the employees with internal ID 145 and 146, or the exceptions to the company work schedule associated with these employees, between October 1st and October 31st, 2023.
<Read type="Schedulebyday" method="all" start_date="2023-10-01" end_date="2023-10-31" user_filter="145,146" limit="10"> ...</Read>
To return all records instead of exceptions only use the
equal to
read method. See Read Methods.