Hi all,
i am working on report extension on Standard Sales - Pro Forma Inv (Report 1302)
i want to display the serial no. for each /Sales Line/ item, the no. showed in Item /Item Tracking Line/, after my study, it should store in Table /Reservation Entry/ actually.
i tried with below coding, but there is nothing to show in RDLC report, anyone can help? thanks
addfirst(Line)
{
dataitem(/Reservation Entry/; /Reservation Entry/)
{
DataItemLink = /Source ID/ = field(/Document No./), /Source Ref. No./ = field(/Line No./), /Item No./ = field(/No./);
DataItemLinkReference = Line;
column(Serial_No_; /Reservation Entry/./Serial No./)
{
}
trigger OnPreDataItem();
begin
end;
}
}