I am having an issue with the form initially not showing the notes. On the form there is a notes field in the grid that is pulled from the movement journal posted. When I go into Inventory Management>Inquiries>Transactions>Transactions and scroll to the part/transaction where its suppose to show it does not unless I click on it. But then it repeats in the other notes above or below when I scroll over it.
First load of the form/grid:

Once I click

Code on the datamethod:
display Description getSMCNotes()
{
InventTransOrigin _inventTransOrigin;
InventJournalTrans _inventJournalTrans;
str SMCNotes;
select SMC_InvJournalNotes from _inventJournalTrans
join _inventTransOrigin
where _inventTransOrigin.InventTransId == _inventJournalTrans.InventTransId
&& _inventTransOrigin.RecId == InventTrans.InventTransOrigin;
return _inventJournalTrans.SMC_InvJournalNotes;
}

