I'm creating a task time table as a learning project. And I want to put a today's date as a placeholder for one of the fields that can be changed if needed. How can I do that?
All I can find is 'Value placeholder' field, but I have no idea how to make it dynamic.
Hm, aren't you - actually - talking about item's default value? If so,
to_char(sysdate, 'dd.mm.yyyy')
, orreturn sysdate;
If that's not it, could you post some more info? Screenshot of what you're doing is welcome.