on 2023 Nov 07 7:11 AM
Request clarification before answering.
Dear Customer,
the name/description of the WorkTime (Absence) is stored in the WorkTimeTask DTO. Therefore you can link the WorkTime and WorkTimeTask DTO's with each other to access the name/description. Below you can find an example query which can be used in Query API to retrieve the data :
select w.createDateTime, w.endDateTime, w.id, w.startDateTime, w.remarks, wt.code, wt.name
from WorkTime w
inner join WorkTimeTask wt on wt.id = w.task;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.