RE: 'System created at' field
Hi Ibakordor Kharmih,
Please note that the "System created at" field is automatically added to every table in Business Central. If you're looking to add this field to the "General Ledger Entries" page, then you can add it like this..
pageextension 50148 GLEntriesExt extends "General Ledger Entries"
{
layout
{
addafter("Entry No.")
{
field(SystemCreatedBy; Rec.SystemCreatedBy)
{
ApplicationArea = All;
}
}
}
}
I hope this helps, and please let me know if it did not solve your problem.
Regards.