Loading ...

Simplest Caching Explanation

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

Four Types Of Programmers

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

How To Modify Activities Behavior On Business Accounts Page

Hello everybody, today I want to write a few words on how to modify behavior of buttons Add task, Add event, Add email, Add activity, ..., Add work item of Business Accounts page. The main issue of chaning it is in the fact, that it is not just ordinary buttons, but separate class, which has inje...

Strong Name Validation By Pass

Hello, here I want to leave a short notice how to manage strong name validation in Windows. For this purpose you can manage via following keys in regedit: To enable the strong-name bypass feature for all applications: switch the value for AllowStrongNameBypass to 1 inHKEY_LOCAL_MACHINE\SOFTWARE\M...

Merge Few Customizations Into One

Hello everybody, today I want to leave a short notice on how to join few customizations into one. Basically all you need is publish customizations you want to have merged, and then on Customization Projects form ( SM204500 ) click on button View Published and then click on Download package. In th...

How to modify PXIntList dynamically in Acumatica

Hello everybody, today I want to leave a short code sample on how to modify PXIntList or dropdown list in Acumatica. Below goes code sample of it: protected virtual void _(Events.RowSelected<CROpportunity> e) {     if (e.Row == null) &n...

Fbql Brackets

Hello everybody, today I want to speak about one very interesting feature of FBQL, which I don't know if exists in BQL. Function Brackets! Take a look on following code sample: var bracketsDemo = SelectFrom<SOOrder>.InnerJoin<SOLine>.On<SOLine.orderNbr.IsEqual<SOO...

Adding Report Page To Customization

today I want to make post on how to add your report page (.rpx) to customization, so than you will be able to use it in another progect. For this purpose open customization window as showed below and click "Reports" button: Then click on plus and select report you want to change: The name...