I was searching for a way to find which notes have been implemented ordered by date and based on the helpful information provided by Raymond I put the following SQL statement together:
select ea.REFERENCE, e.AS4DATE, n.STEXT
FROM SAPSR3.E070 e JOIN SAPSR3.E070A ea ON e.TRKORR = ea.TRKORR
JOIN SAPSR3.CWBNTSTXT n ON n.NUMM = ea.REFERENCE
WHERE ea.ATTRIBUTE = 'SAPNOTE'
ORDER BY e.AS4DATE
Works on my Oracle and ASE test systems, for IBM the schema owner has to changed.
Sebastian