Let’s imagine you added a custom action under an existing folder:
However, you are not satisfied with the order of these actions. In my example, I wanted it to appear at the end:
To achieve this, you can override the Configure method in the Acumatica Graph and place the action where you want.
I...
Hello everybody,
today I want to describe following use case. Quite often it is needed to persist to database one or another DAC class, which is filled by some data.
As usually I see people do this via hard coding of DAC class inside of the Graph. But today I want to share with you a way of...
Hello,
today I want to note how to create new instance of Graph. Lets say you need to create instance of graph PRPaySlipManager.
In that case you can get instance of that graph in the following way:
PRPaySlipManager manager = PXGraph.CreateInstance<PRPaySlipManager>();
Ready to take your Ac...