Hi,
I am new to acumatica and I am trying to do some customization
I have created a new payment method and would want to have create a function related to it. eg, on selecting the said payment method, a TextEdit to appear for input of a variable, a given action button to be enabled. On the Button Click, I want to query a table and return true or false. If true the save action to go through.
namespace PX.Objects.AR
{
public class ARPaymentEntry_Extension : PXGraphExtension<ARPaymentEntry>
{
#region Event Handlers
public PXAction<PX.Objects.AR.ARPayment> ProcessTemp;
;PXButton(CommitChanges = true)]
aPXUIField(DisplayName = "Process Temp")]
protected void processTemp()
{
}
#endregion
}
}
Someone kindly help.
Dan