Hi Vincent,
Do you need to get all the modified fields on the owning mbo? So you've created a worklog on work order for example, and on save you want to know that the workorder duration, and failure code were changed for example?
You could loop through the fields to check if they've changed using
longdesc = ""
workorder = mbo.getOwner()
loop through the attributes
if (workorder.isModified(attribute))
longdesc = longdesc + "<br/>" + attribute +" : " + workorder.getString(attribute)
mbo.setValue("DESCRIPTION_LONGDESCRIPTION",longdesc);
Sorry if I've misunderstood that requirement!
Paul
------------------------------
Paul Irving
Product Development Manager
BPD Zenith Ltd
------------------------------