Created date in java action

0
How can I retrieve created date for an entity in a java action?
asked
2 answers
4

You can access the createdDate, changedDate, changedBy and owner attributes on the MendixObject (not on the proxy object):

myEntity.getMendixObject().getCreatedDate(context);
answered
0

from the top of my head, if object is an IMendixObject:

Date created = (Date) object.getValue(this.getContext(), "system.createdDate");
answered