Loading ...

Why Columnwidth Can Be Ignored Or Another Gotcha

I discovered recently another gotcha in Acumatica. The ColumnWidthproperty value is never applied to the UI controls if the Merge property is set to True for the same PSLayoutRule component. Encountered a tricky Acumatica development scenario like the ColumnWidth and Merge property...

Grid Toolbar Buttons In Acumatica

Hello everybody, have you ever wondered, that SkinID property may regulate grid toolbar set of buttons? For me it was unknown untill today. Here it is list of id's and buttons according to T200: Primary: Adds the Add, Delete, Fit to Screen, and Exportbuttons to the toolbar. This value is typical...

Debugging Learning Algorithm

Few notes of how to debug machine learning algorithm: Get more training examples Try smaller sets of features Try getting additional features Try adding polinomial features Try increasing lambda Try decreasing lambda What those trys can achieve: fixes high variance fixes high variance fixes hi...

How To Make Efficient Usage Of Neural Networks

Small note of how to use more effective of Neural Networks: 1. Use different numbers of hidden layers 2. Different numbers of units per layer 3. Different types of unit 4. Different types of strengths of weight penalty 5. Different learning algorithms Ready to take your Acumatica experience to th...

Merged And Read Only Modes In Acumatica

Hello everybody, today another notice. Acumatica can provide values in two modes: merged and read-only. So, what is merged? Imagine that user worked about the form, and made some changes at grid. Will changes apper in DB? Untill will be executed Persist, not. Data will be only in cache. Some time...

Redirection Types In Acumatica

Hello everybody, today I want to notice what kind of redirections are available in Acumatica: PXRedirectRequiredException opens the specified application page in the same window or a new one. By default, the user is redirected in the same window. PXPopupRedirectException opens the specified appl...

Order Of Views In Graph In Acumatica

Hello everybody, note of today is value of orders. In the word of C# if you work with your class, you as usually don't care what you declare in your code. But in Acumatica graph order of data viewes is important, because they define order of saving data to the database. If you think that surprise...

Order Columns In Grid In Acumatica

Hello everybody, Today I want to share with you interesting trick of how to order data in grid by default. The simplest way is to organize IsKey = true value. If you do this, then Acumatica will add Order by clause for each key field of the DAC. Ready to take your Acumatica development to the nex...

Execute Update Delete Insert In Acumatica

Welcome readers of my blog. Have you ever wondered, what Acumatica will execute first: ExecuteDelete, ExecuteUpdate or ExecuteInsert? Today I revealed for myself following order: 1. ExecuteUpdate 2. ExecuteInsert 3. ExecuteDelete. Now that you’ve uncovered the execution order of ExecuteUpdat...

Enabling Reusable Grid Filters

Hello everybody, today I want to note reusable grid filters. Acumatica has interesting dialog window, wich is named Filter Settings in which user can define and save custom fitlers and then use them every time this user opens the page. They are recommended for usage at inquiry and processing page...