Loading ...

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

Hos To Add List Values To Drop Down In Acumatica

Hello everybody, today I want to make quick notice of how to make drop down values in Acumatica avalable.  Let's imagine, that you need following drow down list:   drop down values     In order to get this kind of list, you can use the following code: public static class Ji...

Machine Learning Certificate From Coursera

Hello everybody, I want to boast that I receved certificate from Standfor Univercity about my level of knowledge in Machine Learning. Here is the link: https://www.coursera.org/maestro/api/certificate/get_certificate?course_id=973756 and here is screenshot:   Online course Statement of Acco...

How To Get Top 1 Record From Db In Acumatica

Hello everybody, today I want to share with you one trick that sometime can be useful. Imagine, that you constructed some BQL query and want to get only one record from db with ommiting others or in other words if you need TOP 1. For this purpose you can use SelectSingle method that generates SQL...