Yes it is possible but not historically. (Historically you can see this in Change Log).
You need to create new field in table Sales Invoice Header (or if you like to see in all documents like shipments and credit memos you need to open the same in all of them).
In Codeunit 80 you need to find line where is created transferfields and to add manually your new field for example (Posted by User ID) to get the value from the current user:
Comments
You need to create new field in table Sales Invoice Header (or if you like to see in all documents like shipments and credit memos you need to open the same in all of them).
In Codeunit 80 you need to find line where is created transferfields and to add manually your new field for example (Posted by User ID) to get the value from the current user:
SalesInvHdr."Posted by User ID" := USERID;
Regards