cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

There's no Description field in the Absence DTO

SAPSupport
Employee
Employee

Accepted Solutions (1)

Accepted Solutions (1)

SAPSupport
Employee
Employee
0 Kudos

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;

Answers (0)