hey so I'm trying to add more than line header comments it needs to show all 3 instead of one.
this is the code i had before //purchPurchaseOrderHeader.WQ_HeaderLineNotes = DocuRef::findTableIdRecId(purchTable.DataAreaId, purchTable.TableId, purchTable.RecId).Notes; - that was showing one comment
I was told to use
public static void main(Args _args)
{
DocuRef docuRef;
DocuType DocuType;
select docuRef
// index hint RefIdx
// where docuRef.RefCompanyId == refDataareaId &&
// docuRef.RefTableId == refTableId &&
// docuRef.RefRecId == refRecId
join DocuType
where DocuType.TypeId == docuRef.TypeId &&
DocuType.TypeGroup == DocuTypeGroup::Note;
}
but I'm confused on how to code it into my class extension I already have
