Loading ...

How To Extend Persist Of Your Own Graph In Acumatica

Hello everybody,

here I want to leave a short line on how to extend Perist method of your own graph.

I described once long time ago how to override Save action in your extension, but sometime it can be needed to override Persist in your own graph.

Sometime it can be necessary. Below goes sample of code for this purpose:

public override void Persist()
{
	//Some other custom business logic
 
	base.Persist();
}

Here you go.

If you’re looking to extend the Persist method for your custom Acumatica solution, or need other specific customizations tailored to your business needs, don't hesitate to reach out! Our team is here to help you create seamless integrations and optimized workflows. Submit a customization request today, and let’s build something great together!

Be the first to rate this post

  • Currently 0.0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5