Introducing Acumatica Cloud ERP: 2026R1
Get inspired and gain all the knowledge you need
Recently active
I am facing an issue while adding a new custom tab in the Modern UI on the Customers screen, and I would appreciate your guidance.Screen Customers (AR303000) Issue DescriptionI have created a customization to add a new EDI Integration tab on the Customers screen using Modern UI (TypeScript + HTML).The customization builds successfully, and there are no runtime errors; however, the custom tab is not displayed on the Customers screen. TypeScript Codeimport { PXFieldState, createSingle, viewInfo} from "client-controls";import { AR303000, Customer} from "../AR303000"; export interface AR303000_EDIIntegration extends AR303000 { }export class AR303000_EDIIntegration extends AR303000 { @viewInfo({ containerName: "EDI Integration" }) Customer = createSingle(Customer_EDI);}export class Customer_EDI extends Customer { UsrEDI810: PXFieldState; UsrEDI850: PXFieldState; UsrEDI855: PXFieldState; UsrEDI856: PXFieldState; UsrEDIBuyerCode: PXFieldState;} HTML Code<
I have a very strange problem with Modern UI. Here are the steps I take to get it: I create a sales order, set a kit, explode it, then without saving it, I create a new line with any item. When I try to set a QTY, it throws an object referencing error and role back qty to 0 on the tab and resets the QTY back to zero. This problem is related to Modern UI because Classic UI doesn't have this problem.protected virtual void SOLine_OrderQty_FieldUpdated(PXCache sender, PXFieldUpdatedEventArgs e, PXFieldUpdated baseMethod){ baseMethod?.Invoke(sender, e); SOOrderEntry soGraph = (SOOrderEntry)sender.Graph; SOLine row = (SOLine)e.Row; if (row == null) return; BZSOLineExt rowExt = PXCache<SOLine>.GetExtension<BZSOLineExt>(row); if (rowExt == null) return; switch (rowExt.UsrBZExplodeState) { case null: return; case BZExplodeState.Never: return; } if (soGraph.IsContractBasedAPI || row.InventoryID == null ||
It's great that we have such a vibrant Acumatica community to get quick answers to questions and gain product knowledge! We have very active members jumping in to help others out all the time. The goal of the community is to respond to every member’s question so that no one goes away "empty handed".Connect, Learn, Share Congratulations to our 2026 Acumatica MVPs!The Acumatica Community is filled with customers, partners, and creators who are just as passionate about ensuring our ecosystem thrives as we are. Our Community members go the extra mile to serve each other, and one of the ways we like to show our deep appreciation for their efforts is by honoring those who selflessly share their time, expertise, and knowledge with the Community.Read the Blog Here Acumatica Hackathon 2026 Winners and Pics! Travis Lawson - Acumatica Community Featured Member for January 2026Meet Travis Lawson our Acumatica Community Featured Member for January 2026. It’s great to have you as part of the Acumati
Hi,I’m trying to add a custom tab to the Customers screen, but it’s not displaying on the screen. I’ve attempted the implementation using the following code, but the tab is not appearing. Could anyone help me to troubleshoot this issue.AR303000_extensionGeneral.html<template> <qp-tabbar modify id="tabs"> <qp-tab add id="tab13" caption="Additional Info"> <qp-grid id="CustBankPerCustomerView_PXGrid0288" view.bind="CustBankPerCustomerView"></qp-grid> </qp-tab></qp-tabbar></template>AR303000_extensionGeneral.tsimport { PXView, PXFieldState, PXFieldOptions, linkCommand, gridConfig, graphInfo, columnConfig, GridColumnShowHideMode, GridColumnType, PXActionState, TextAlign, GridPreset, GridFilterBarVisibility, GridFastFilterVisibility } from "client-controls";import { Customer } from "../AR303000";export interface AR303000_extensionGeneral extends Customer { }@gridConfig({ syncPosition: true, showFastFilt
Hello all,We are documenting our business processes (in Visio swimlane flowcharts) prior to implementing Acumatica modules. The manufacturing module looks like it will work well as is. As a time saver: does anyone have flowcharts already developed that document manufacturing workflow (with standard Acumatica configuration)?Thank you in advance,Gerry
Long-time Sage 100/Aatrix user attempting to file my first Acumatica-based 941. Acumatica downloads the data, but on Verifying Data I receive the following error: The EIN in the AUF does not match the specified EIN for the user. I have verified with Aatrix our EIN is correct (logged in and verified on the Aatrix website and verified with an Aatrix tech).Acumatica is passing either the wrong EIN or possibly a masked EIN (e.g., dash after the second digit as is common) or possibly a blank. I have searched high and low and found no instances of errors or blanks in Acumatica setup.Anyone encountered this error and have a fix?
Is anyone having issues with Import Scenarios in 2025 R1? I have checked all my entries and continue to receive error messages. I checked with AI and here is what I received: Key insight: You are doing everything correctly: mapping, source fields, commit, key. The error is internal to Acumatica’s Stock Item Summary import path, not your file. This is a known issue for many versions (including 2024 R2 / 2025 R1).
In the Chart of Accounts Screen. How can we add a fifth ‘Type’ as ‘Equity’ ?
Hello Acumatica Community!We hope you had a great time at Summit. There were lots of exciting new products announced and I can’t wait to get my hands on them. To help you out, we have a new version of Acuminator that was released, and Sergey Nikomarov will help highlight key changes, new features, and enhancements in our first Coffee & Code of 2026!Link to release notes: Topic: Acuminator Version 4Speaker: Sergey NikomarovDate: February 20th, 10am PST. This presentation will be recorded and made available both on Community and our YouTube channel here: YouTube
Does Acumatica still support filing 1099s through Aatrix? If so, how is the process done?
The teams are busy at work but had a few seconds for a quick pic. Good luck everyone!
When filing our W-2’s the payroll registers earning and tax equal the 941 that were paid and filed. However, when running the W2s. there are 47 people out of 130 that have SS/Medicare and federal wage and tax differences. We saw one employee has $3018 of wages and taxes $214. What report can I run to identify why the W2 is not reporting correctly? Where can we find our issues?
Hi all,My organization has been using Acumatica for quite some time, however, don’t believe we’ve used the report designer. I’ve downloaded the instance, but before I install, wanted to check if this will increase our consumption fee or is it considered part of the package?ThanksJoseph
At the recent Acumatica Summit 2026 I heard something along the lines that OData data pulls do not consume transactions or do not count against the api calls...something like this so correct my terminology if I am wrong.With this in mind, our developer team is creating a custom mobile app to do more advanced scanning than the WMS system can handle. As we have been doing this, I am setting up endpoints and testing through Postman that every call the app might make it covered. Some of these calls are just GET requests to a GI that I have set up on the endpoint (some of the GIs have parameters as well). Is it best practice to instead of putting the GIs on an endpoint, to just ‘expose to OData’ and do an OData call? This would presumably cut down on our api calls if my above thoughts are correct. Or are the differences negligible? We are trying to ‘standardize’ how this app accesses Acumatica so currently just putting everything onto one endpoint with different entities. Should we change a
Hey folks,Got a question:Let’s say a customer is selling a stock item in 2-3 different contexts: a. Over-the-counter item sold at the store (has it’s own account for COGS and Sales). b. Same item sold in the context of a service call to a customer (has it’s own account for COGS and Sales). c. Item provided as a warranty item or according to a contract (has it’s own account for COGS and Sales).As far as revenue and cogs go, how does the system know where to allocate those two transactions for the same part in inventory in different scenarios? Can you have just a single inventory item that can be used in different contexts without having to manually change the GL entries each time?
Hello All! I am looking to create a clickable link to a form that we have. Everything I find, I have to edit the ASPX file (We are hosted) so I don’t think I have access to that. Is there another way to add a clickable link to a form? It is a link to our website terms and conditions. Thank You!
I have created a custom screen, where against Type and State the information need to display in a report either in last page or each page footer.When state is null, then data is empty and when I have state then I'm getting duplication my report, when it is at page footer section. If I move to groupFooter then there is no duplication. I added this logic in SIO643000.rpx base report.NOT NULL STATE:SubReport:Subreport: FOR NULL STATE:Sub Report: MAIN REPORT: Major issues:1. When state is null- No data on my report.2. When I have state , data is duplication(Only my sub report date) if it is located in PageFooterSection I have tried with multiple sub reports , one report with multiple sections. Please advise.
I work in a manufacturing environment that requires production work orders to be split for validations, new tooling runs, qualifications that were not originally planned for. The problem is that I don’t see the functionality that allows me to split a production order. The worst part is that we have to link our SO’s to the production orders when created for lot tracing. Every time I get a request for splitting, in order to keep the linking correct, I have to go all the way back to the original Sales Order and make changes, and so on... Reduce the original sales order lineCreate new lines for the split qty’sMark those new lines for productionGenerate new production ordersPrint new production ticketsReduce the production order and print a new ticketWhen shipping, this then creates additional work as now they have several lines instead of 1 line int he sales order. I was wondering if I missed this functionality or maybe someone has a similar problem and came up with a less time-consumin
Hello All, I am trying to set up a Step in my Expense Claim Approval Map that Auto Rejects Claims with a place holder expense item we use to do an import. Back ground: We do an import scenario to upload corporate card charges to generate expense receipts with a generic place holder UNCODED. What I want to do, is if a user happens to miss recoding a receipt and try's to submit it for approval with an UNCODED item on it, it auto rejects. Below are some screen shots of what I have, the issue is it does reject but it rejects every expense claim regardless of Expense Item. Thoughts? or Solution would be awesome!
When I click on the ADD ITEMS TO PACKAGE on the SHIPMENT, the ITEMS are not in the same order as the PICK LIST. Why is that? and more importantly, how do you fix it?Please advise. Thanks!Roberto
This Invoice has a payment linked to it so the balance should decrease by the paid amount. When i was trying to create a payment for the remaining amount the below error arise; Is this something to do with that bad debt reason code, but there is no write off amount. I tried to reverse the payment done as well but it wont allow me to do it. same error occurs. Could you please help if you’ve experienced same issue.
I have a GI and displays the below information When I group by reference ID I would like the non-null values to show in the last 3 columns (Line 1 Comp Inventory Description, Line 2 Comp Inventory Description, Line 3 Comp Description) to show in their appropriate columns once the group has occurred. Is there a way to do that?
Hi All,Could you please advise why the issue types, as shown in the image below, are appearing in the Inventory Allocation Details report?Thanks in advance.Regards,Lalith.
Creating a GI with SOInvoice.DocType and SOInvoice.RefNbr as parameters does not provide a lookup for invoice number. If I use ARInvoice, there is a lookup but it excludes invoices for which the SOInvoice has not been released.No lookup
I am trying to design a GI that will show me allocations for stock items that we have on Open PO (open qty). I want to know for all open PO quantities, how much is designated/linked to a SO and how much is for “stock”. The report is functioning properly and is showing me what I want, however, I would like to have separate columns for each PO Line to show if it is meant for Stock of SO (if Line type is Goods for IN, I want the open qty to show in my column Stock Inventory...and if Line Type is Goods for SO, then I want the open qty to show in my Inventory for SO column). The logic I am using on my GI is =iif([POLine.LineType]='Goods for SO', [POLine.OpenQty],0) and =iif([POLine.LineType]='Goods for IN', [POLine.OpenQty],0). However, all data being returned is 0.In the example below the first line of my report should show 7 in the “Stock Inventory” column and for the 2nd line I have highlighted, you should see 5 in the “Inventory for SO” column, but for some reason the formula I am usi
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.