Loading ...

How To Overrde Authorize Cc Payment Action In Acumatica

Hello everybody, as it was mentioned in one of my previous blog posts, regarding overriding base actions of Acumatica graphs, family of graph extensions grows and grows.    Today I want to share one more code snippet which you can use for extending modification of Acumatica actions...

How To Override Shoprates Action In Sales Orders Form

Hello everybody, today I want to leave a short post on how to override Shop rates Action in Acumatica.  I mean this button: Below goes C# code, with which you can achieve it: public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry.CarrierRates, SOOrderEntry&...

PXLongOperation Cleans Everything How To Avoid

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

How To Make Dynamic List With Check Boxes In Acumatica

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

How To Insert Varbinary Data In Ms Sql For Acumatica

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

Comments Todo And Hack In C#

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

How To Imitate Click On Confirm Shipment In Acumatica

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

Database Of Acumatica Is In Recovery Pending Condition

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

Three States Of Fields In Acumatica

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

New Functions For Redirect In Acumatica

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