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...
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...
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...
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 "...
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....
Hello everyboydy,
today I want to share with anybody mine implementation of DAC class generator.
By default Acumatica provides you with DAC class generator which is pretty good.
But time from the time I had a need to generate DAC class into text field, and then
put it somewhere in my solution, an...
Hello everybody,
today I want to describe some simple steps of how to add into your customizaiton sitemap. As you already know, sitemap of Acumatica is saved in database. And if you make customization of your sitemap you may need to add to your project.xml something like this:
<Customization&n...
Hello everybody,
today I want to share some piece of SQL code that can help you to add yourself to Administrators group in Acumatica:
INSERT INTO [dbo].[UsersInRoles]
([CompanyID]
 ...
Hello everybody,
today I want to describe some .Net core tag helpers that you can use in order to create your web pages. There are plenty of already implemented tag helpers that can simplify your life as a developer.
Here is the list of already made:
Anchor
Cache
Distributed
Environment
Form
For...
Hello everybody,
today I want to document small feature in Acumatica which I can call validation of insert.
As usually if you need to validate some logic of insertion you can use something like RowXXXXd event. But for simple validations you can use PXUIVerify attribute. Below goes example t...