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...

Make Grid To Have All Screen

Hello everybody, today I want to share how to make grid item to feet all container. For this purpose you just can use property AutoSize. It makes grid to feet entire area of parent container  

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...

Debug Executeselect In Extentsion Graph Of Acumatica

Hello everybody, today I want to share how to debug method ExecuteSelect from Base in extension class: public delegate IEnumerable exSelectDelegate(string viewName, object[] parameters, object[] searches, string[] sortcolumns, bool[] descendings, PXFilterRow[] filters, ref int startRow, int maxi...

How To Deal With Cases When Decimal Is Not Enough

Hello everybody, today I want to drop a note about cases when you need high precision, and C# type decimal is not enough for your needs. I discovered for myself GNU MP library, which has also wrapper in C#.  Amongh feautures which GNU MP library proposes are the following: 1. High number pre...

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...

Acumatica Cache Inserted Updated Objects

Hello everybody, today I want to share one simple technic of how to filter inserted items in cache from other objects. I discovered it with reflector, while diffing in code of APInvoiceEntry.  Here it is:  Adjustments.Cache.Inserted - this item will give you which items were inserted in...