Relative Content

Tag Archive for acumatica

Response of webhook is empty

We are using a webhook in our plugin to send a URL to customers for online approval. Upon clicking the URL, the page loads, accepts a signature, and attaches it to the relevant document.

Response of webhook is empty

We are using a webhook in our plugin to send a URL to customers for online approval. Upon clicking the URL, the page loads, accepts a signature, and attaches it to the relevant document.

Mobile Application tab item edit

I have a custom screen with a tab, when clicking the ‘Edit’ button in the tab of the mobile app, a checkbox appears, I would like to customize the checkbox on fieldupdated so that if the checkbox is checked some of the columns of the tab item to change values, how can I implement this?
NB: the checkboxes are not a field on the screen, it is a checkbox that only appears on the mobile app.

Smart Panel not autopopulating

I have a custom button on the Sales Orders screen , when the button is clicked, a smart panel is displayed. I want the smart panel to auto-populate but the code I have only populates the first 2 fields. What could be the issue with my code and how can I fix it?

ACUMATICA Custom Field Not Showing on ADD DATA FIELDS CUSTOM Field Names list

I need to add a Custom Field to the Checks and Payments Screen (AP302000), APPLICATION HISTORY Tab grid.
When I add the new field, this is included in two Data Access, “APTranPostBalExtensions”, and “APTranPostExtensions”. After publishing, the field does not show in the “ADD DATA FIELDS”/”CUSTOM” Field Name.
Any Help is appreciated.

Acumatica, add a column to data grid

I need to add “Subaccount Description” column to the DB grid on “Account by Subaccount” form (GL403000). The DAC “GLHistoryEnquiryResult” contains SubCD field which I want to use to link to “Sub” table to get the description. I extended the DAC as the following and modified ASPX. The column header is displayed, but no data in the new column. I tried to extend AccountHistoryBySubEnq Graph. But still not work.

Why Sometimes this query return null and some time it will return result?

var result = PXSelectReadonly2<PX.Objects.GL.Branch,
InnerJoin<PX.Objects.GL.DAC.Organization, On<PX.Objects.GL.DAC.Organization.organizationID, Equal<PX.Objects.GL.Branch.organizationID>>,
InnerJoin<PX.Objects.CR.BAccount, On<PX.Objects.CR.BAccount.bAccountID, Equal<PX.Objects.GL.DAC.Organization.bAccountID>>,
InnerJoin<PX.Objects.CR.Contact, On<PX.Objects.CR.Contact.contactID, Equal<PX.Objects.CR.BAccount.defContactID>>>>>,
Where<PX.Objects.GL.Branch.branchID, Equal<Required<PX.Objects.GL.Branch.branchID>>>>.Select(graph, graph.Accessinfo.BranchID);