Loading ...

Multithreading In Acumatica

Hello everybody, today I want to say a few words about my practice of usage Multithreading in Acumatica. I have a dedicated server which has 40 cores. And I have a need to read plenty of records from some other system. General schema is like this: Create some graph instance. Fill created graph i...

Some Notes On Buttons Creation In Acumatica

Hello everybody, today I want to write few words about buttons usage in Acumatica. So, first of all, if you just need to add button at your form, you can use following syntax:   public PXAction<PrimaryDACClass> SomeAction; [PXButton(CommitChanges = true)][PXUIField(DisplayName = "Some...

How To Make Back Up Of Db Smaller In Ms Sql

Hello everybody, today I want to document one hack that preserved me plenty of space on my hard drive. Recently I've tried to make back up of production database and was shocked to see that it had almost 200 Gb on my hard drive.  So it made me wonder how can I have smaller backups.  And...

Some Digging In Tables Of Acumatica

Hello everybody, today I want to document one useful sql query that can be beneficial for cases if you need to dig in Acumatica tables, and need quickly to find type of some particular column. Here it is:   select * from information_schema.columns where table_name = 'SOLine' and COLUMN_NAME...

Types Of Learning In Ai

Hello everybody, today I want to make a short notice on question that I often receive: what kinds of learning exists in Machine Learning. I want to provide simple answer: Learning with teacher: questions and answers. Learning with teacher: just questions Partial learning: questions, and some of...

Unit test Acumatica PXGraph

Hello everybody, today I want to make another description of how to cover with Unit Tests Graphs in Acumatica.  First of all I want to say that Acumatica controllers or as Acumatica names them graphs do not have any way to inject any dependency from interface. In such case it can be useful i...

Stubs Vs Shims Difference

Hello everybody, today I want to mention difference between two kinds of testing. Shim vs Stub.  Take a look at the following code sample: // Stub sample public interface IDependency {     void SomeMethod(); } // Take note that&nb...

Types Of Controls In Acumatica

Hello everybody, today I want to describe with some screenshots kind of controls that you can get from Acumatica developer like me or any other Acumatica programmer. Main purpose of this blog post is the following. Imagine, that you want to write super detailed instructions for Acumatica develope...

How To Override Action Create At Form So301000 Or Sales Orders

Hello everybody, today I want to document one important piece of functionality in Acumatica. Sales order screen. This is very important screen and has many staff. One of the important screens in it is "Sales orders"  screen. From prospective of understanding Acumatica source code of method "...

Aws Product Categories

Hello everybody, today I want to document few main features of AWS. Below I want to mention AWS Product Categories: Compute services. Provide you with virtual machines Storage services. Raw block of content. Database services. Organized in some way data in organized chunks. Networking services....