Loading ...

Maintenance Pages In Acumatica

Hello everybody. Here goes some my notes of Maintenance pages.  First convention is that maintenance pages has number start of 20. For example pr203000.aspx means that it is maintenance page for pr, and I make this conclusion on basis that numbers start from 20. As usually they are placed un...

Create Graph Instance

Hello everybody, today I want to notice how to create graph. There are two ways:   PXGraph.CreateInstance<BaseBLC>(); PXGraph.CreateInstance(typeof(BaseBLC));   If you want to get extention class, from base class, you can use following function: GraphInstance.GetExtension<Exten...

Neural Networks Teaching

Hello everybody, today I watched vidoe of Dr. James McCaffrey about traing neural netwoks.  So, few interesting details, which was useful for me.  1. As usually it is more then enough one hidden layer.  2. Imagine, that you need to feed into your neural network some data. Let's say...

Custom Selector In Acumatica

Greetings to everybody, today I want to document how to make selector in Acumatica.  I had the following use case: 1. Acumatica dropdown, which can have three values ( for example a, b, c) .   1.1 In case if user select option a, I need to show in PXSelector values from Table A with som...