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
0
votes
1 answer

Why won't two views of the same type correctly return the current row?

On a custom screen, I have two identical views defined like this: public PXSelectJoin>, InnerJoin
Deetz
  • 329
  • 1
  • 16
0
votes
1 answer

Why do only some button icons display

I am trying to set a toolbar button image. I have found various ways of defining button images, but none seem to work consistently. Here are the ways I have found (either in documentation or on SO): In code (doesn't work at all for me [for toolbar…
Deetz
  • 329
  • 1
  • 16
0
votes
1 answer

Auto-numbered selector won't allow selection of existing records

I have the following auto-numbering selector defined in my custom DAC: #region BatchID [PXDBIdentity()] public virtual int? BatchID { get; set; } public abstract class batchID : PX.Data.BQL.BqlInt.Field { } #endregion …
Deetz
  • 329
  • 1
  • 16
0
votes
1 answer

Search using 2 fields in Custom PXSelector Control

I have a Custom PXSelector Control built using the code below using PX.Data.ReferentialIntegrity.Attributes; using PX.Data; using PX.Objects.AP; using PX.Objects.CM; using PX.Objects.Common.Discount.Attributes; using…
0
votes
1 answer

InventoryID breaks Acumatica Bill creation using SOAP

The program creates a Bill in Acumatica using SOAP. The Endpoint was extended to include InventoryID, WSDL generated. The program uses the extended Endpoint to read and write all info. Reading InventoryID on non-Stock items works fine. Populating…
Alexander
  • 139
  • 8
0
votes
1 answer

How can I skip base logic in SOLine_RowUpdated event

I have a custom code in SOLine_RowUpdated event, my code works fine and that's all I need, but when I finally get the expected value on SOLine.curyUnitPrice field the base event or base logic changes the value. I would like to know how can I skip…
0
votes
1 answer

PO Line Account field won't persist

On a PO, I can't seem to get a PO Line's Account field (ExpenseAcctID) to persist. The value appears in the UI normally, and when I check the value in the FieldUpdated, RowUpdated, and RowPersisted handlers, the field actually has a value. Somehow…
Tony Lanzer
  • 281
  • 1
  • 15
0
votes
1 answer

Acumatica error :Error: The system failed to commit the MapFrom row

Please help me to importing Inter-Branch Account Mapping using import scenarios. i get the following error: "Error: The system failed to commit the MapFrom row." Please explain what is the error because original branch related to multiple …
0
votes
2 answers

Does an import scenario utilize the PXDefault attribute specified in the DAC?

Although that PXDefault that I have defined in the DAC, works when I enter the data in the screen , it does not seem to work with an import scenario into the screen. I am importing from a CSV data provider. It gives an error “value cannot be null”…
0
votes
1 answer

Issue trying to publish my current project

I have an issue trying to publish my customization project in the Customization Project Editor. The compilation panel remains completely in blank and I don't get any information. See the screenshot below: Can you help me with this?
0
votes
1 answer

How to upload a file "Unassigned" to #Acumatica?

We have uploaded documents attached to a record (a case, an order, etc.) but now, we want to know if somebody can upload a file to Acumatica without attaching to a record. I see the option "Show Unassigned Files" in SM202520 but I have not been able…
Clan
  • 3
  • 2
0
votes
1 answer

How to Move Customized Action/Button place in existing screen

We have a requirement to add a new “Back Button” to the existing screen i.e. Preowned Vehicles Returns. I have added the "Back Button" button but it is coming at last, we would like to move this button before the Save action. Could you please…
Naveen B
  • 55
  • 4
0
votes
1 answer

Enable/Disable is NOT working for Grid button

In the Invoices screen, I have a new customized field on the Header and also added a new button on the Document Details tab above the grid. Based on the Customized field condition we need to enable and disable the button. I have added this button as…
Naveen B
  • 55
  • 4
0
votes
1 answer

How to change the Currency Rate in a bill or invoice with Acumatica API?

I'm trying to create a bill and invoice through the Acumatica API. I have looked for a solution but I can't find where i can change the currency rate with the API.
0
votes
1 answer

How do I extend Project Quote Screen (PM304500)?

I have been asked to add a new tab that displays a list of items linked to a project quote on the Project Quote Screen (PM304500). I need some help in how to tackle this, since I am struggling to identify the graph (or DAC) I need to extend to be…
Ruaan Volschenk
  • 717
  • 2
  • 11
  • 23