Hello everybody,
today I want to write a few words about interesting behavior of PXLongOperation.StartOperation in Acumatica.
On the glance that looks pretty simple and straightforward. You have something processing of which will take a long time? Use PXLongOperation.StartOperation. So imagi...
Hello everybody,
today I want to share with you a piece of code, with help of which you can get list of all activer order types in Acumatica and also you'll get a chance to select those types with checkbox. Take a look on a screenshot below:
how to achieve this?
Code below without description of...
Hello everybody,
sometime it is needed to insert some binary information in one or another table inside of Acumatica. Quite often developers just modify existing record in table UploadFile or UploadFileRevision.
But I don't like such approach, as it is prone to errors and potentially can harm som...
Hello everybody,
today I want to leave one more note, which you can use for boosting your productivity.
Imagine following scenario. On the meeting with customer you've got some list of to do points. You have them on your email. You've made some research, and found that you need to make changes to...
Hello everybody,
Today I want to describe how to imiate click on menu item "Confirm shipment" in Acumatica.
Probably your first guess will be just call method ConfirmShiment of graph SOShipmentEntry. But for now Acumatica team has another advice in order to call this action....
Hello everybody,
recently I've got interesting situation, when my database for Acumatica developed turned to be in Pending condtion. In order to deal with it, I've executed following SQL:
ALTER DATABASE YourDatabase SET EMERGENCY;GOALTER DATABASE YourDatabase set single_userGODBCC CHECKDB...
Hello everybody,
today I want to write a short note on three states of fields existing in Acumatica:
Exists but is empty
Exist and have value
Has null
If to speak about string, it can exist like this:
Some value
Do you see difference between 1 and 3? Not easy. As usually develop...
Hello everybody,
today I want to say few words about new functions for redirect in Acumatica, and particularly about class PXRedirectHelper.
Classical approach from T200/T300 manual may look like this:
var currentCse = Cases.Current;
if(currentCse == null)
return;...
today I want to give one more explanation of how to use caching and slots for caching purposes. Also there are plenty of articles on the subject, I want to give one more with simplest recipe. So, if you need to cache something, you'll need to follow this procedure:
declare you class as som...
It is first time I write on topic of management and recruitment. Question is about one way of classifying your programmers, who work with you now or will come in a future. My main thesis is: all developers, roughly speaking, are divided into 4 large types and each of these types has its own appli...