If you are using the
NetSuite2.com schema, it's possible to query system notes like this:
SELECT record, field, oldValue, newValue, context, date
FROM systemNote
WHERE recordTypeId = -9
AND field = 'ENTITY.SNAME'
AND recordId = 123
Which can give you changes to the value of a particular field.