OQL Query based on created by

0
Hello, I am trying to write a OQL query based on the created by. But in the boject attribute i can see only change date not change or created by. how can i achieve it?  
asked
1 answers
1

The OQL Engine can run an OQL like

 

FROM Sample.Customer C
Where C/System.changedBy='[%CurrentUser%]'
SELECT C/Name AS CNAME

But the DataSet/OQL autocomplete does not support this. You have to enter it by hand. The syntax is allowed and recognized.

answered