Requisition Entry - Total Value of all Lines in Header JSON help needed

You could do the sum client-side without a need for the UD column like so:

Textbox > epBinding > TransView.TotalLineValue
Event: trigger on KeyValue changed
Row-update > TransView.TotalLineValue

Expression:

trans.dataView('ReqDetail').data.reduce((sum, item) => sum + item.DocExtCost, 0)
5 Likes