The first macola icr's are linked differently than the current ones at the subreport level. The comment subreport now links the oeordlin_sql.line_no to that parameter in the subreport & the data is selected in the subreport based on field oelincmt_sql.line_seq_no. I had started with oeqtefrm.rpt from 11/2001 & the comments & notes subreports were returning the notes & comments to the wrong line items on the order. Tori sent me a new report from 4/2003 & it works correctly. I haven't done anything with the pick ticket or the order edit lists as yet on notes & comments, so I'm not sure if they have been corrected or not. If you have access to support, have Tori find out if they have corrected it or not. I tried to take the corrected subreport for notes & comments into a form I had spent a great deal of time on, but bringing in the new sub didn't work in my case (probably my own lack of expertise on subreports). So I ended up starting over with the 4/7 ICR & rebuilt my form & everything works fine now.
Here is the select statement from the new notes subreport that is working (if that helps):
{OELINCMT_SQL.Ord_No} = {?Pm-OEORDLIN_SQL.Ord_No} and
{OELINCMT_SQL.Cmt_Type} = "I" and
({OELINCMT_SQL.Doc_Type} = "O" OR {OELINCMT_SQL.Doc_Type} = "Q"

and
{OELINCMT_SQL.Ord_Type} = {?Pm-OEORDLIN_SQL.Ord_Type} and
{OELINCMT_SQL.Line_Seq_No} = {?Pm-OEORDLIN_SQL.Line_Seq_No}
and here is the one in the old ICR:
{OELINCMT_SQL.Ord_No} = {?Pm-OEORDLIN_SQL.Ord_No} and
{OELINCMT_SQL.Cmt_Type} in ["I","Q","O"] and
{OELINCMT_SQL.Doc_Type} in ["O", "Q"] and
{OELINCMT_SQL.Line_Seq_No} = {?Pm-OEORDLIN_SQL.Line_No} and
{OELINCMT_SQL.Ord_Type} = {?Pm-OEORDLIN_SQL.Ord_Type}