I have an event handler that is trying to get all of the *notes* associated with a Row Pointer. There could be multiple notes and I want to get all of them. This is the Load Collection:
IDO("SLObjectNotes")
PROPERTIES("SpcnNoteDesc, SpcnNoteContent, RefRowPointer")
DISTINCT(FALSE)
FILTER(SUBSTITUTE("RefRowPointer= '{0}'", V(vSRORow)))
SET(R(Notes) = RESULT)
What I cannot seem to figure out is how to then get each of the notes and put them all into a string so that I can add them to the body of an email that gets sent. Does anyone have some suggestions about how to do this?