Introducing Acumatica Cloud ERP: 2026R1
Get inspired and gain all the knowledge you need
Recently active
Hello, I’m trying to create an import scenario that can update the kit specifications for some products. I have a generic inquiry that returns the current specifications of a stock item kit. I want to add these stock components to another kit and remove this line. The issue I run into is that there may be 3 items I want to add, yet the import scenario wants to remove the existing line for each row, but it doesn’t exist for 2 of them after the first one runs. Any way to work around this? Business Case: We have non stock kit gift boxes we sell all year. During our busy holiday season, we pre-make a bunch of these kits and use a Stock Kit as the 1 “component”. When these premade boxes run out, I want this process to automatically change the stock components of the kit back to the individual components and not the stock kit. In this example, the 60005 SKU is a Non Stock Kit. The 40005 is the Stock Kit. In the import scenario, I want it to remove the 40005 item as a component and add these
Hi,How can we configure the Vendor Portal and what are the initial functionalities of the Vendor Portal? Thank You
I don’t even have the Outlook plugin activated... C:\Program Files\Acumatica ERP\AcumaticaERP\FrontendSources>npm run build> build> node build-and-clean.jsexec error: Error: Command failed: gulp build[16:19:36] 'build' errored after 680 ms[16:19:36] Task finished with errors[16:19:33] Requiring external module ts-node/register[16:19:35] Using gulpfile C:\Program Files\Acumatica ERP\AcumaticaERP\FrontendSources\gulpfile.ts[16:19:35] Starting 'build'...[16:19:35] Starting 'outlookPlugin build'...[16:19:35] Starting 'screens build'...> outlook-plugin@0.1.0 build> webpack --env production> screen@0.1.0 build> cross-env node --max_old_space_size=6144 --optimize_for_size --stack_size=6144 --trace-warnings ./node_modules/webpack/bin/webpack -- --env productionnode:internal/modules/cjs/loader:1252 throw err; ^Error: Cannot find module 'C:\Program Files\Acumatica ERP\AcumaticaERP\FrontendSources\outlook-plugin\node_modules\webpack\bin\webpack.js' at Function._resolveFi
Hi Team, In Modern UI, how to add customization field in a existing detail grid column. Kindly guide me on this. Regards,Sakthi
Dear all,Please help us in this case:Vendor A is parent of Vendor B. Bills are issued from B, but we must pay to A (Parent of B)In Vendor Profile of Vendor B, we choose Vendor A in Parent Account field . But when we create payment to Vendor A, we cannot choose Open Bills of Vendor B.So How to set up to can pay to parent vendor for bills of child?Thanks and Best regards,
Hi everyone,I’ve been trying to retrieve data via OData using a Generic Inquiry (GI) with a parameter, but I’m running into some issues.In my GI, I’ve defined a parameter named PPeriod and when I use it in the Acumatica web UI (for example, entering "092025" for 09-2025), everything works fine — I get the expected result with EndDate as 2025-02-02, along with the correct data for document FCV002141. GI parameter GI result enddate with 09-2025 and FCV002141However, when I call the same GI via OData in Postman using the same parameter, I receive a 200 OK response but it completely ignores the parameter and returns bad data : Postman Odata result , dont take in account the parameter If I try with REST API, it work, but i need the odata .. Here’s what I’ve confirmed so far: The parameter is correctly defined in the metadata as: <Function Name="AR_Documents_PeriodSensitive"> <Parameter Name="PPeriod" Type="Edm.String" /> <ReturnType Type="Collection(GenericInquiry.AR_Docume
We have noticed that any payables/costs pending approval do not show under project transactions, even when the ‘Include Unreleased Transactions’ box is checked. Is this a bug in the system or do we need to request this as a future system upgrade?
Hi Guys, i want the Field CountryOfOrigin in the Soorder Detail Section. i tried it with a User Defined Field , but PXFormular is not working. namespace PX.Objects.SO{ public class SOLineExt : PXCacheExtension<PX.Objects.SO.SOLine> { #region UsrUrsprungsland [PXDBString(200)] [PXUIField(DisplayName="Ursprungsland")] [PXFormula(typeof(Selector<SOLine.inventoryID,InventoryItemExt.CountryOfOrigin>))] public virtual string UsrUrsprungsland { get; set; } public abstract class usrUrsprungsland : PX.Data.BQL.BqlString.Field<usrUrsprungsland> { } #endregion }} Hope u can help me.
I have a large import scenario that I need to amend, to prevent any issues while I do this I would ideally like to be able to duplicate the import scenario and then rename it to something unique so I have a backup essentially.Is this possible to do? I know I can export to XML but when importing I can’t see anyway of renaming / duplicating.
Hi,While running Automation script on Virtual machines, accessible through Remote Desktop, facing Timeout Error at random places but it is working fine at In-house machines. However virtual machines were able to run the same scripts few days ago.
I want to edit this bar at the bottom of the details tab of the sales order page. Is there a way to do this? I didn’t see anything in the Customization Project screen.
I need to fill data in View 1 times when page is open. Not to reload it multiple time
In the current Shopify connector, it doesn’t support the custom mapping in the Entity mapping screen for the Refund entity, but if you want to have some custom mappings in the Refund order, you can do it in the customization project. In this topic, I want to share how to create a custom mapping in Shopify refund entity through the customization package. You can make a mapping to the original field or custom field. I tested it in 2023R2 and it works well. Create a new customization project Create a new code file, and extend the Graph from SPRefundsProcessor. Override the method CreateRefundOrders public class SPRefundsProcessor_Extension : PXGraphExtension<PX.Commerce.Shopify.SPRefundsProcessor> { public static bool IsActive() => CommerceFeaturesHelper.ShopifyConnector; #region Event Handlers public delegate Task CreateRefundOrdersDelegate(SPRefundsBucket bucket, MappedRefunds existing, CancellationToken cancellationToken); [PXOverride] public Task CreateRefundO
Hello,Created some custom boolean fields, but they are not displaying as checkboxes in the sales order, despite the control type being checkbox…. They are showing as text edit fields, then if you put anything in there they change to 'true'
I have added a field called ‘Production Order No.’ which is meant to pull the production order number for the given line in Inventory Lot/ Serial History screen without having to click on reference number → go to manufacturing tab on issues screen → view production number. Field Production Order No. in Inventory Lot/ Serial History ScreenManufacturing Tab of Issues ScreenAccess Production Order NumberI have added the code however it pulls incorrect details for some inventory SKUs.namespace PX.Objects.IN{ public class InventoryLotSerInq_Extension : PXGraphExtension<PX.Objects.IN.InventoryLotSerInq> { #region Event Handlers protected virtual void INTranSplit_RowSelected(PXCache sender, PXRowSelectedEventArgs e) { if (e.Row == null) return; var row = (InventoryLotSerInq.INTranSplit)e.Row; if (string.IsNullOrEmpty(row.RefNbr) || string.IsNullOrEmpty(row.DocType)) return; PXTrace.WriteInformation($"
Hi all - I'm only new here and to the product. Just hoping I could get some assistance with this.We have several filters for different things in our Invoice/Memo and Bills/Adjustment areas. Just wondering is there a way we can get a total to that filter - screenshot below. Thanks heaps.
We are looking to restrict visibility to non project invoices.Looking for best practice on how to accomplish this as we are just rolling out Acumatica. Since the default “X” allows anyone to see the transactions we were looking at creating an “SG&A” project and restricting that project to only accounting / executives. Thinking we’d then have to put all our SG&A GL accounts into an account group. But would there be a way to limit that account group to only be valid for this specific project? Maybe some sort of restriction group? Thanks!
When assembling stock kits using items that have lots assigned, is there a way to more efficiently do the lot assignment? Currently it seems like you have to go into the line details tab for every single item in the kit. We have some kits that may contain over 50 different items, all lot tracked. It is exceptionally tedious to have to click into line details for every single item to enter the lot.I understand that Acumatica is designed so that you could use multiple lots for an item where you have multiples of the item in the kit, so you can’t have the lot assignment field on the main kit assembly page. There is also no upload button on this page for doing the assignment more efficiently in a spreadsheet and uploading.
Hi Everyone,I joined the Acumatica forum as a resource for my external Acumatica application extensions using REST and the ScriptBasic application web server. Any good links to REST interfacing would be appreciated. John Excuse typo in the title., 🙄
while creating formula in the formula master screen, qty in prod. volume unit and material type, qty. in prod. wt. unit, weight %, volume %-these fields are not auto filled. can someone help me how to fix this issue.
I modified our Historical Inventory report to get average consumption data for a group of periods.I’m having trouble with getting the correct averages. Here are the formulas I’m concerned with:=Sum(IsNull([ItemHistCurr.FinBegQty], [ItemHistLast.FinYtdQty])) Not getting the correct ending quantity. (See “4148.000”) =Sum(([ItemHistCurr.FinPtdQtyIssued] + [ItemHistCurr.FinPtdQtySales] + [ItemHistCurr.FinPtdQtyAssemblyOut] + [ItemHistCurr.FinPtdQtyTransferOut]) / Count([INItemSiteHistByPeriod.FinPeriodID] )) Not getting the correct average (See “1,019.7143”) =Count([INItemSiteHistByPeriod.FinPeriodID] ) Not correctly counting the periods (See “20.00”) In the header: number of periods, Average Consumption, and Ending Quantity is incorrect.
hello all,I was wondering if its possible without customization to fetch the Sales A/c from the Employee record instead of hard coding it to replace (Account origin)?
Paylocity offers customized reports that can be created and exported. Those reports can then be used in a import scenario to upload into Acumatica the needed payroll information.Looking to automate the process more, has anyone had success in API connection or using other systems like Celigo to get what is needed for payroll processing?
I’m trying to group in a GI by Lot/Serial Number for Stock Items, however, there are a few items without a serial number, and these are all being grouped together, despite being different lines (this is not a issue on Inventory Valuation for some reason.) Is there some way to do a conditional grouping? I tried =iif([InCostStatus.LotSerialNbr] <> ' ', [InCostStatus.LotSerialNbr], null) but the grouping happens even if the field is blank. Is there some way to do this?
Im facing a issue with community login with my laptop after logged out. Is there any issue with the login. After entering the user id and password system still refreshing to same login page.
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.