I created a flowfield to the payment journal that pulls in information from the invoice that is being applied with the check. I have the field show up just fine on the payment journal. I created a report extension to have it come onto the check, but it comes in blank. The field shows up on the report so I can add it, but the field is always printing blank. Any idea if it because it is flowfield, or some other idea?
Hi,
In the data item GenJnlLine you need to add Calcfield in the OnaftergetRecord procedure.
It will look something like this:
Modify(GenJnlLine)
{
trigger OnAfterGetRecord()
{
Rec.Calcfields(PayDescription)
}
}
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.