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 is my popup panel not showing my control?

I have created a PXGraphExtension on POLandedCostDocEntry. I have added a PXAction button. When the button is pressed I want to show a popup panel to ask the user for a landed cost code. When I press the button, I see a dialog window appear but…
Customizer
  • 61
  • 10
0
votes
1 answer

How to update the ext price field in the sales orders screen

I found a small detail on the sales order screen, which when adding two custom fields generates a new price as shown in the image. but at the moment of generating the new value at the unit price I am surprised that the ext price will not be updated…
Marco A.
  • 27
  • 5
0
votes
0 answers

Using customized acumatica report designer reports in a different instance

[SqlException (0x80131904): Operand type clash: uniqueidentifier is incompatible with int] PX.Common.Async.Process(String uniqueKey, Method`1 method, Int64 waitTimeout) +398 PX.Reports.Web.WebReport.Render(HttpResponse response, String format, Int32…
muli
  • 47
  • 1
  • 3
0
votes
1 answer

Acumatica: how to add a extra filter on Write Off Balances and Credits(AR505000)

I need to add a new filter on Write Off Balances and Credits(AR505000). Normally you have to copy the PXFilteredProcessingJoin or PXProcessingJoin field to the extension class and the IEnumerable function that comes with it. But in the Write Off…
JvD
  • 473
  • 3
  • 18
0
votes
0 answers

Acumatica: Procedure to rename a table in SQL without breaking screens, etc

I have a couple of custom tables I created and a few screens, imports, etc. based on them. Then realized I didn't prefix with our own 2 character tenant. Seemed like a simple refactor but If I rename SQL tables and the DAC classes (I'm using…
rjean99
  • 3
  • 4
0
votes
1 answer

How to apply PXForeignReference in a new maintenance screen

I have created maintenance tables and I am applying a "PXForeignReference" at drop time. what I want is that if I delete a record from the table that is being used in another, it should show a message which indicates that it is being used in another…
Marco A.
  • 27
  • 5
0
votes
1 answer

Can I dynamically set a PXDataFieldAssign parameter of a PXDataFieldParam object?

I have code that sets the PXDataFieldAssign value as follows: pf = new PXDataFieldAssign(someValue); I also have a table, holding the DAC field names, such as "xTACProjectTask.dueDate". This table also has a checkbox field…
pmfith
  • 831
  • 6
  • 24
0
votes
1 answer

How can I declare and add parameters to an Acumatica PXDataFieldParam object?

I'm using the Acumatica PXDatabase.Update method to update records in an Acumatica instance. The code I have is as follows, updating two fields and using another two as restrictors: PXDatabase.Update(new…
pmfith
  • 831
  • 6
  • 24
0
votes
1 answer

What is the correct way to get the VAT that is in use currently by the system

I want to work out the VAT on the total items on the Purchase receipts page. I can just select the correct TaxRev class using BQL I was wondering does the system have a static class where I can get the same value. Same as Accessinfo will have the…
JvD
  • 473
  • 3
  • 18
0
votes
2 answers

Acumatica Create PO Receipt via API setting the detail line po data does not create the PO Receipt Orders Link

I am creating a PO receipt via my own custom endpoint using the rest API. I can create the receipt and add the lines ok and even assign a PO Nbr, Line Nbr etc to the line as well. But when I view the PO Receipt in Acumatica the the PO Receipt…
GrayFoxNZ
  • 349
  • 1
  • 13
0
votes
1 answer

Acumatica - DataView LSAMProdItem_lotseropts

In the Production order maintenance screen the inspect element shows the DataView - LSAMProdItem_lotseropts on the APSX page used as DATAMEMBER for the tab But on Graph this data view is not defined, How can I get to this Dataview???
Shaj
  • 37
  • 7
0
votes
1 answer

Acumatica - Outlook PlugIn Reply Action

we are using Acumatica outlook plugin to create CASES and we are successful in achieving it. As you know outlook plugin will automatically create a email activity when we create case. So sometimes we send reply from Outlook plugin and some times we…
Tony
  • 1
0
votes
3 answers

Inconsistent data view search in redirect action?

I have a custom graph with multiple grids under different tabs. Each grid has a column for sales order order numbers, which have redirect actions to the SOOrderEntry graph. One of the grids use an action with this code to find and insert the sales…
watsonST
  • 211
  • 3
  • 4
0
votes
1 answer

How to add extra filters to a existing Acumatica page

Good day, Every vendor and customer will be linked to an Employee that is responsible for them. I need to add an extra filter on the "Calculate Overdue Charges" Page, AR507000, this will be linking back to the customers and only showing the…
JvD
  • 473
  • 3
  • 18
0
votes
1 answer

BQL statement gets data in SOOrder but not in POOrder

I am setting the Default branch on the SOOrder using the Employees Default Branch: using PX.Objects.IN.Matrix.Interfaces; using System; using PX.Common; using PX.Data; using PX.Objects.CS; using PX.Objects.EP; namespace PX.Objects.SO { //…
JvD
  • 473
  • 3
  • 18