Options

show user ID in Invoicing

jannenjannen Member Posts: 1
Hello,
I would like to see the user id for all invoice postings. Is there a way to make this visible?
thanks.

Comments

  • Options
    aceXaceX Member Posts: 166
    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:

    SalesInvHdr."Posted by User ID" := USERID;

    Regards
Sign In or Register to comment.