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...
Hello everybody,
today I discovered for myself new member of Acumcatica. Welcome PXProcessing with it's relatives.
• PXProcessing: allows you to work with data records for processing without filtering. You can use the Where<> and OrderBy<>clauses in this data view type.
• PXProce...
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...
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...
Hello everybody,
today I want to share one important note, for search of which I've spent for two hours.
In grid I've added button in the following way:
<ActionBar ActionsText="True">
<CustomItems>
<px:PXToolBarButton>
<AutoCallBack Command="RemovePMTa...
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...
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...
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...
Hello everybody,
just short notice of NUnit function Assert.That
[Test]
public void CheckAddition()
{
Assert.That(CalculatorClass.Minus (5, 2), Is.EqualTo(3));
}
public void CheckAddition()
{
//old styel Assert.AreEqual(3, CalculatorClass.Minus (5, 2));
}
Ready to take your Acumatic...
Hello everybody,
just short glimpse of how to make mail control in Acumatica. It's very simple task. Make dac class with string and bind it to page in the following way:
<px:PXMailEdit ID="edUsrPersonalMail" runat="server" DataField="UsrPersonalMail" CommitChanges="True" ></px:PXMailEdit...