Loading ...

How To Start With Acumatica Development

Hello everybody, this post is intended for those people who want to make development for Acumatica, but don't know where to start or how to start. Or for those, who know C#, but absolutely can't figure out how to work with Acumatica. So, first of all, I'll describe some general ideas, and then pr...

Three Grids In Acumatica

 Recently I've posted following question on stackoverflow:   I have following request from my customer to be implemented in Acumatica: Create form which have input fields on top. Form should have first grid, which reacts on parameters on top Form should have second grid, which reacts o...

Enable Disable Features Disappeared From Acumatica

Hello everybody, today I want to write a few notes about difference between Acumatica instance created with "Acumatica Framework Configuration Wizard" and "Acumatica ERP Configuration Wizard". If to summarize there are plenty of differences, but one of the biggest is availabilty of "Enable/Disabl...

Pxfilter Set Up Fields Only Once

Hello everybody, today I want to document in my blog interesting behavior of PXFilter in Acumatica.  First of all, few words about it's behavior. If Acumatica sees PXFilter, it will create single record, which will remain only in cache and never will travel to the db. Recently I faced intere...

Create New Column If It Doesn T Exist

Hello everybody, today I just want to preserve simple sql which creates column, if it is not created yet in ms sql db. Important feature of this code is indempotency. IF Col_length('APPayment', 'usrPOSkipped') IS NULL   BEGIN       PRIN...

Mesos Terminology

Hello everybody, today I want to share few words of my knowledge related to mesos and mesosphere. Recently I've subscribed myself for making investigation for mesosphere. And quite often I was asked by my project manager what is difference between mesos and mesosphere. For now I've found that mai...

Http Status Codes

Hello everybody, today I want to write a few words about http status codes which some kind are common among developers for web api clients. So, For POST request following are common to return: 201 ( item was created ), 400 ( bad request ), 500 ( internal server error ) For GET: 200 ( ok ), 404 (...

Windows Container Types In Docker

Hello everybody, today I want to write a few words about two types of containers in windows: Windows server containers Hyper-V containers Windows server containers provide application isolation through process and namespace isolation. Windows server container shares a kernel with the container...

Some Notes On Usage Of Docker

Hello everybody, today I want to write a few words about usage of docker for windows. First of all, I want to point what is docker at all. There are many ideas of how to explain it, but in my opinion docker is like installed and configured piece of software with needed fragment of operating syste...

Angular 2 Property Binding

Hello everybody, today I want to write few words about binding in AngularJS 2. There are two ways of making one way binding: element property binded to template expression property interpolation I've described it with following picture: Two-way Binding <input [(ngModel)]='property'> And...