Questions tagged [acumatica]

Acumatica is a cloud- and browser-based enterprise resource planning system (ERP), which can be customized and extended via an SDK and interoperated with via a web services API. Only topics about interfaceing via the SDK or API are on topic.

Acumatica often refers to the ERP and CRM product offered by Acumatica, but can also refer to the Acumatica Cloud xRP Platform.

Acumatica development is done using C# and ASP.NET markup language for interface or pages. Querying the back-end database occurs through BQL, which maps to SQL Server or MySQL queries. New applications can be developed using Visual Studio, and a web-based customization environment allows users to extend and customize existing screens using the Acumatica Customization Environment IDE. Acumatica applications can be run from the browser, or on mobile devices using the native iOS and Android applications. Deployment can be done in public and private clouds, using single-tenancy and multi-tenancy modes.

3477 questions
3
votes
1 answer

Acumatica checkbox won't update on field value change

I have a custom DAC field bound to a checkbox, but when I update the value of the field within code: SOOrderExtension orderExt = PXCache.GetExtension(row); orderExt.UsrSignatureRequired = true; the checkbox check is not…
Tony Lanzer
  • 281
  • 1
  • 15
3
votes
1 answer

Creating TreeView for Acumatica

In Acumatica I would like to create a TreeView for a Bill of Material Screen. This is what the screen currently looks like and I need help populating the tree seen to the left of the grids. I would like the top value of the tree to be the BOM Item…
Dane
  • 163
  • 14
3
votes
1 answer

How to implement auto generating document number on custom screen

I have a requirement to create a opportunity like screen and I do not know how to implement the auto generating the document number for newly created document I am looking forward someone to help me on this issue. The following steps I have used and…
3
votes
1 answer

Hide/Disable other fields based on Input field

I want to hide or update a field on the UI based on conditions of another field. For example, if I have a field called Color: [PXUIField(DisplayName="Color")] [PXStringList("Red,Blue,Other")] [PXDefault("Red")] And text field for comments only…
Chris Olin
  • 43
  • 4
3
votes
1 answer

how to set the timeout while exporting data using webservices api in acumatica

This is the first scenario: - I create new "bill" document in acumatica system using webservices api to Bill and Adjustments screen (AP301000). - after that, I need to load all document records in Application tab menu of the current screen…
HariEko
  • 395
  • 1
  • 11
3
votes
3 answers

How to make outgoing request or webhook in Acumatica?

I'm integrating an Asp.NET application with Acumatica that needs to update shipping information (tracking #, carrier, etc.) when it becomes available in Acumatica. Is there a way to have Acumatica call an endpoint on my Asp.NET app when a shipment…
big_water
  • 3,024
  • 2
  • 26
  • 44
3
votes
1 answer

Extend Acumatica Projection Based DAC Query

Is there any way to extend/modify the projection query of a projected DAC. For example, if I need to add a join statement to the projection and then use the newly joined table to the available fields. Adding a custom field to the PXCacheExtension…
Matx
  • 265
  • 3
  • 13
3
votes
3 answers

Data in a processing screen disappears

I have a custom processing page. The main DAC of the data view is ARRegister, but there is the data view delegate. Both the view & delegate join ARCashSale & ARInvoice to the main DAC, The reason for this is...some records are cash sales, and…
Chris H
  • 705
  • 5
  • 11
3
votes
1 answer

Add Excel upload control to grid toolbar

Is there a way to get the grid control that allows one to upload data from an Excel sheet? I haven't found a command that will put this control on the toolbar.
pmfith
  • 831
  • 6
  • 24
3
votes
2 answers

Debugging Customization Code in Acumatica

I have a problem in debugging customization code. please refer to this screenshot below : I already try to add symbol using Debug > Options And Settings > Debugging > Symbols. Please refer to screenshot below : And then I try to attach the process…
HariEko
  • 395
  • 1
  • 11
3
votes
1 answer

How to do word representation of amount field in Acumatica Invoice Report (AR.64.10.00)?

How to do word representation of amount field in Acumatica Invoice Report (AR.64.10.00)?
DChhapgar
  • 2,280
  • 12
  • 18
3
votes
2 answers

Acumatica real time Dynamic DropDown List

I have the following use case: Acumatica combo box / dropdown, which can have 8 or so values, the selection of which determines the table / DAC used to present in a Combo box/ drop down. e.g.: if current StatusProfileID = WO1 and Status = WCMP ,…
3
votes
2 answers

how to use AllowEdit in Acumatica

I'm having this problem: I'd like to try to make a pop up for CrossSection table page using AllowEdit = "true", the pencil symbol has already showed, but it doesn't open anything, I already entered the page of CrossSection into hidden in SiteMap. Is…
3
votes
1 answer

Tax calculation is wrong when updating UnitPrice while creating the Invoice from Shipment, TaxAttribute.Calculate uses the old extprice

In our add-on, we are modifying the UnitPrice when creating the invoice from the shipment based on our own calculation with a Regex expression. Everything seems fine for all fields, except the taxes who always take the SOOrder taxes. We created a…
3
votes
2 answers

How to get logged in business account id in acumatica portal?

I am trying to filter the catalog item based on logged in customer business account. How do i get the logged in customer business account value in acumatica portal? Regards, R.Muralidharan