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

How to find out if model is recently updated?

Former Member

Accepted Solutions (1)

Accepted Solutions (1)

arvind-kumar_avinash
Active Contributor
0 Likes

If ModelContextUtils.getItemModelContext(yourModel).isDirty() returns true, it means that model has been modified. I am not sure if it is what you are looking for. If you are looking for the last timestamp when a model has been modified, you can use a Flexible Search Query like

 SELECT max({modifiedtime}) FROM {Product}

Answers (1)

Answers (1)

Former Member
0 Likes

Thanks Arvind

arvind-kumar_avinash
Active Contributor
0 Likes

You are most welcome.