Skip to main content
Answer

Fill created by field manually

  • November 13, 2025
  • 4 replies
  • 45 views

Forum|alt.badge.img+1

I am fill created by field by some user. But when document saved “created by” filled by user which run process screen. 

Best answer by bihalivan15

ARInvoice arInvoice = arInvoiceGraph.Document.Insert(
                   new ARInvoice
                   {
                       DocType = ARInvoiceType.CreditMemo,

                   });

                arInvoice.CreatedByID = amazonStore.Creator; //(user from setting)

its work for me

4 replies

Forum|alt.badge.img+3

CreatedByID is an Acumatica system field.
For custom purposes, you probably need to create your own custom field and store the required information there.


Forum|alt.badge.img+1
  • Author
  • Semi-Pro II
  • November 13, 2025

CreatedByID is an Acumatica system field.
For custom purposes, you probably need to create your own custom field and store the required information there.

I need fill system field by my special ,,user” value , when document created from my process screen 


Forum|alt.badge.img+3

Can you please share more details about why you need to populate the system CreatedByID field with your special “user” value?


Forum|alt.badge.img+1
  • Author
  • Semi-Pro II
  • Answer
  • November 14, 2025

ARInvoice arInvoice = arInvoiceGraph.Document.Insert(
                   new ARInvoice
                   {
                       DocType = ARInvoiceType.CreditMemo,

                   });

                arInvoice.CreatedByID = amazonStore.Creator; //(user from setting)

its work for me