hi expert, I have a strange situation , we have two customized table, salesTableArrivale(header table) ,SalesTableArrivaleLines (line table) which have relation with custTable.
now we want to display customer postal address and customer name on customized report.
the report designed from AOT Query, not RDP Base.
so we just created display method on header level table(salesTableArrival)
for Customer name:
Display name customerName()
{
;
return CustTable::find(this.CustAccount).name();
}
and for customer Address :
display LogisticsAddressing partyAddress()
{
;
return CustTable::find(this.CustAccount).address();
}
now the problem is that customer name is displaying on report while address for same customer doesn't display.
please advise where is the problem in code.?
thanks And Regards.
*This post is locked for comments