Hi
Is there a way by which we can fetch a recently updated fragment of a ManagedObject in an EPL app? I know ManagedObjects params have a string attribute called “PARAM_NOTIFICATION” whose value can be either “CREATED” or “UPDATED”, using which we can know if a particular MO is a new MO (CREATED) or an existing one which has just been updated (UPDATED). But the limitation of this parameter is that it only tells about the whole MO in general and doesn’t tell which specific fragment of that MO was actually updated.
Use Case:
Suppose an MO has 3 Fragments: A, B and C.
I want to monitor for any change in the fragment C of the MOs and then perform a set of functions when C is updated, but can’t figure out a way to know if there are any changes made in that particular fragment C.
Currently, by checking the PARAM_NOTIFICATION value, I am filtering out the existing MOs, but this gives me all the updated MOs (where any fragment is updated), and not the ones where specifically fragment C is updated.
I want to filter out those MOs where fragment C is updated.
Any help would be appreciated.
Thanks.