Loading ...

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

Restore Original Condition Of Acumatica

I want to note how to restore original condition of Acumatica if Unpublish project failed: 1. Restore the content of the App_Data\RollbackFilesfolder to the root folder of the website. 2. Clear the content of the CstPublishedfolder. 3. Delete the files placed in the Cachessubfolder of the App_Cod...

Acumatica Predefined Width Values

Hi, I want to share predefined options for the ColumnWidth property:   • XXS(100px) • XS(150px) • S(200px) • M(250px) • XM(300px) • L(350px) • XL(400px) • XXL(450px) Ready to take your Acumatica development to the next level? Whether you need tailored column widths like XXS (100px) or XXL (4...

Acumatica Can Have Two Views With Main DAC

Hello everybody, today I want to share option, which was shocking for me. I discovered that graph can have more then one dataview for the same main DAC. Here is sample of code form T200 manual: public PXSelect<Product> Products; public PXSelect<Product,  Where<Product.productID,...