How to display the customer name on Ledger Entries screen?

Can anyone help me on this?

I need to display the customer name as a table box field on the Customer Ledger Entries form (Form No. 25). Is there an option on Nav to do this?

Thanks,

Vinod

You need to write some code. Do you have a developer license?

Yes I do have a developer license.

Can you please advice on how to achieve this?

Thanks,

In the form 25 add a global variable Cust with type Record, subtype Customer; in OnAfterGetRecord trigger write the code Cust.GET(“Customer No.”); add a TextBox with SourceExpr=Cust.Name

or maybe add a flowfield to the cust.ledger entry table, that looks up customer name.

then add that field to form 25

This works [:)]

Many thanks