Hi All,
I'm trying display purchase receipt header information on Get Receipt Lines (purchase receipt lines list page), function on item charge so user can see additional information. Created a table extension with flowfield and page extension but no data is shown on the new field. Not sure if there is a better way to do this without a table extension and only a page extension
Sample code for table extension and page ext:
tableextension 50136 PurchaseReceiptLine extends "Purch. Rcpt. Line"
{
fields
{
field(50133; "My Order No."; Text[50])
{
FieldClass = FlowField;
CalcFormula = lookup("Purch. Rcpt. Header"."Order No." where("No." = field("No.")));
}
}
}
pageextension 50145 PurchaseReceiptLineList extends "Purch. Receipt Lines"
{
layout
{
addafter("No.")
{
field("My Order No."; "My Order No.")
{
ApplicationArea = Basic, Suite;
}
}
}