Loading ...

Some New Features Of Net 4 5

Hello everybody, today I want to write some notice about PCL, aka portable class library. It's possible to make library which will be possible to make library for Windows Phone 7, Xbox 360, .Net for Windows Store apps.  Ready to take your Acumatica development to the next level? Just like cr...

How To Work With Selector

Hello everybody, today I want to write few words how to work with selectors in Acumatica. So, imagine, you have the following selector in Acumatica: <px:PXSelector ID="NmbUsrBillPMTask" runat="server" DataField="UsrBillPMTask"/> In order to make it work as selector, you need to do the follo...

Jforex Non Standard Time Frame Ema Value

Hello everybody, Few days ago I had an order for automating forex strategy for 3 minutes time frame in jForex platform. I faced issue that by default jForex doesn't work with 3 minutes. In order to do this, the following parts were needed for addition: @Override public void onStart(IContext con...

Current2 Vs Current In Acumatica

Hello everybody, today I want to share note about Current2 and Current in Acumatica. Current2 inserts really current value of record, while Current inserts curretly selected value or default. I was surprised, that Current2 inserts exactly the value of record. Ready to take your Acumatica exp...

Some Simple Models Of Neurons

Hello everybody, today I want to describe some simple models of neurons. Bet before I'll continue, just few words why to worry at all about simplification of neurons. The answer on question why is simple: simplification helps to understand bigger picture ( well not always ) and also allows to app...

Send Curl Request To Jira From Command Prompt

Hello everybody, Few days ago I had a task to send delete link request to jira. For this pupose I found curl utility, and here is how delete request can be submitted from command prompt: curl --user jiraUserName:jiraUserPassword  -X DELETE -H "Content-Type: application/json" http://yourJiraI...

Updating Acumatica To Newer Version Of Acumatica

Hello everybody, toda I want to share some small notice about what options do you have during updating of Acumatica. So. Imagine you make update from version 4.2 to version 5.1 and suddenly you have this error message:   update error message     Text of error message says, that y...

Types Of Redirects In Acumatica

Hello everybody, today I want to note about redirects. In Acumatica you can redirect user to another webpage. Acumatica provides option of redirecting to following scenarios: To another page in Acumatica To another report To any destination url Try to gues, how redirections are implemented? As...