Introducing Acumatica Cloud ERP: 2026R1
Get inspired and gain all the knowledge you need
Recently active
I am trying to add a Search box for a grid on my custom form. I found a similar question, but it was for a grid in a dialog. This is where I want a search box. If it is even possilble.Here are the settings on my grid: I set my grid DAC as PXFilterable, but that is adding the filter option on the right side of the grid. I don’t want that though. I just want to be able to type a name in a search box and have it find all records in the grid with that value.
The use case is: The customer requires 2 locations one is ship to a plant to modify/build the item and after it is shipped to a job site for sub projects
Hi everyone. I need to create a webhook, but I'm having trouble accessing AccesInfo.BranchID. I tried using PXContext.GetBranchID(), but it doesn't work. Does anyone know the best way to implement this?
Hello everyone,As part of customization, we are trying to allow creating a Payment for a Sales order which is in pending approval status.Standard Acumatica has a restriction here to avoid Payment creation in this case, to remove the restriction for the Pending Approval status, we tried to override the Restrctor attribute as below, which is not helpful, and we don’t see this restriction, anywhere else in the code. Tried Modifying the PXRestrictor attribute remove SOOrderStatus.pendingApproval , which didn’t help. As a next step, tried with Override the AdjdOrderNbr Selector without PXRestrictor still giving same error, and unable to create the Payment. Steps to verify this:• Create a Sales Order, and ensure Order status is Pending approval• Navigate to Payments and Applications screen, try to create a new Payment with the same customer used in the Sales Order, and then try to add the select the Sales order from the Sales Orders tab• Tab out here, or saving the record pops out the err
I want to update the InventoryItem based on the logic How can I do it. and Refresh the UI if (row != null) { ALLInventory InventoryItem = PXSelect<ALLInventory, Where<ALLInventory.inventoryID, Equal<Required<ALLInventory.inventoryID>>>>.Select(e.Cache.Graph, row.InventoryID); if (InventoryItem != null) // Details related Material Allocation is available { // IF - Total Consuemd Qty + Order Oty <= Maximum Allocated Quantity if(InventoryItem.TotalConsumedQty + row.OrderQty <= InventoryItem.MaxAllowedQty) { InventoryItem.TotalConsumedQty += (int?)row.OrderQty; } else // ELSE - Place Order for Total Consuemd Qty + Order Oty - Maximum Allocated Quantity { InventoryItem.TotalConsumedQty = InventoryItem.MaxAllowedQty; row.OrderQty = InventoryItem.TotalConsumedQty + row.Ord
Hi All - New to the community here but wanted to share a GI our team put together to see if it would help anyone else. This GI takes in a qty, warehouse, and BOM.Based on the BOM and quantities it will calculate how much you could make based on each item alone. It will format the line item as green (if enough to make the qty listed on the header) or red (if insufficient to make the qty listed on the header).Looking to share this and learn more as we are new in the community!
I am getting the below error while converting Purchase to Fixed Asset.“Both Debit and Credit parts of transaction are not zero. Exiting with error.”
Hi, User is getting an error on the bank feed when Loading in test mode. CA Error: The answer or answers were not provided in time. Please try again.”In Acumatica community we found a discussion on how to resolve this. However, On Step 2 ‘Update Credentials’, user got an error.User updated the credentials, first it says “you are successful connected to [Bank Name]” and then it showed ‘Credentials were not updated error reason: bank feed has been already connected’ Does anyone know how to resolve this error message?
I am attempting to add a parameter to the Sales Order GI. I need to search the field for any that contain the contents of the parameter.I have it set like this: This results in: How do I prevent the <NEW> and, if possible, the lookup table? I want the users to have the ability to enter text without the system trying to lookup an SO
Hello all,How can I display only a second segment of subaccount (AAA-BBB) in my report?So as per the above segment I only want to display BBB in my report. Maybe I would be need to apply formatting condition? Thanks.
There is no ability to prevent the Opportunity from being created when the Baccount is on hold or any other form of restriction at this time.When a BAccount/Customer is ON HOLD we raise an Opportunity without any warning and it’s later in the process when it is realised. Could there not be a warning of the BAccount/Customer status on initial entry.
Hello everyone, I have a custom screen with a few tabs, at least one grid on each tab.I am trying to add a action to the toolbar of one of the grids, ‘Design, Material & Cost’, when I have my PXAction like below, which is the grid’s DAC, it appears but does nothing when run: public PXAction<NPDDesignMatlCost> CreateInventoryItem; [PXButton] [PXUIField(DisplayName = "Create Inventory")] public virtual IEnumerable createInventoryItem(PXAdapter adapter) { PXTrace.WriteInformation("Action ran"); return adapter.Get(); }When I have PXAction as the main screen DAC, it does not appear at all. My .aspx is here:<px:PXGrid runat="server" ID="CstPXGrid32" Caption="Design, Material, Cost" CaptionVisible="True" Height="250px" SkinID="DetailsInTab" Width="100%"> <Levels> <px:PXGridLevel DataMember="DesignMatlCost" > <Columns> <px:PXGridColumn Type="CheckBox" DataField="Selected" Width="60" ></px:PXGridColumn> <px:PXGri
Is it possible to print this format as it is in a report using report designer.
Hi,I been trying to use the Process Bank Transactions (CA306000) screen via API to be used by 3rd party app, how can I make a correct call on the extended API endpoint for Process Bank Transactions? as I have tried, I cannot find any solution on how I can make it work. Web Service Endpoint Method: POSTJSON body: { "CashAccount": { "value": "CA2000" }}Error: "The record was not processed because of an error during processing of the previous record" METHOD: GETParam: $filter=CashAccount eq 'CA2000'Error:"Optimization cannot be performed.The following fields cause the error:\r\nCashAccount: View TranFilter has BQL delegate\r\n"
Hi everyone. I am hoping that someone can help me find the cause of my issue.I am trying to setup reason code, so when an inventory item is issued to project task, it uses the subaccounts from default cost subaccount of the project task. I am following this documentation below. but so far unsuccessfully. When I set combine Sub From box to TTTTTT, it says “TTTTTT does not exist in the system”. Subaccount segment key is set to 6 characters. Could someone please point me to the right direction?Much appreciated.Best Regards
I’m looking for best practices.If our AP department receives an invoice/bill for product received but the purchase order totals and unit costs do not match what should we do?Should we be sending an mail to our purchasers and asking them to reopen purchase orders and update the unit costs? I tried that in a test enviroment and the PO updated its costs like I expected, but since the purchase receipt has already been released those costs were not updated and hence when we go to enter the AP bill the old unit costs are the numbers in the AP bill.I don’t feel like it’s reasonable to ask our AP person to adjust all the unit costs if they differ but I need to develop an SOP for our purchasing departments as well.On a related note, which “unit cost” does the stock item use for the “Last unit cost” and “Average Unit Cost” equations?
Hi,I am trying to build connection between Account and Subaccount fields. I need to retrieve all subaccounts that are linked with Account. I tried such approach : added Account and Subaccount for entity JournalTransaction and it worked However, I faced with issue that such request does not return all available subaccount for an account. For example in Bill I have 2 availbale subacounts (samahor, samalon) for Account 5001 but my request return only 1 subaccount - samahor. Hot to make it return all linked subaccounts ?
I’m currently working with the Acumatica API and noticed that some REST services typically return a totalCount field or include the total count of records as part of the metadata in their responses. However, I couldn’t find any documentation or examples indicating that Acumatica supports this feature, in fact the opposite from the links i pasted below.Specifically, I’m looking for a way to retrieve the total number of records in a dataset (e.g., total orders or customers) alongside a paginated response. I don’t see a totalCount in the response body, nor have I found any mention of it in headers like X-Total-Count.My questions are:Does Acumatica support returning the total count of records in the API response? If not, is there a recommended approach or workaround to efficiently retrieve the total count of records? Should I rely on a separate API call to count the records? Are there any best practices for handling this in Acumatica? Any insights or suggestions would be greatly appreciat
I’m trying to add the shipment page to the mobile app, by using this guide: however these steps don’t seem to be working. When I try to manage workspaces, the customization project gets an error. Without it, Shipments doesn’t appear. How can I get Shipments onto the Mobile App?Current Mobile Application
Is it possible to publish a custom package for a specific tenant.
Hello,I’m using the Expose via OData with some generic inquires to get some data via the OData API. I need to know the total number of records. You can clearly see the total number at the bottom of the results grid but I don’t know how to get this information in the OData response.How can I get the total records for a Generic Inquiry in the OData api?
Hi all,Installing a local copy of Acumatica and it looks like I’m having a SQL login issue:Exception Details: Microsoft. Data SqlClient.SqlException: Login failed for user 'MIGNETISANDBOXS'.Are there any in depth walkthroughs you recommend for installing local copies? Thanks!I
Hi,I created a business event for a client to alert users when their project quotes have been approved. It’s working but many users will have to make edits on a regular basis and the business event triggers an e-mail again after making edits. What condition can I use to trigger the e-mail to be sent once and not after each edit. Here is my configuration: Let me know.Thank you,Frances
Anyone see this before - For New Items - <NEW> tag plus a totally different item Description Nor New - I have not even put in a Description yet …..
Is it possible to hard allocate a part that is listed as a material requirement and marked for production on a parent production order? When the child production order is completed, we’ve had problems with a sales order getting shipped when the part was needed for the production order first (hence the link production order). If we have a 3 production orders for 3 machines and each one requires part 123 so we create the production orders that will then be linked to parent machine jobs. We can also sell part 123 on sales orders too, so when a production order that is linked to a parent order is moved into inventory, why does does Acumatica allow a shipment for the part that was made and linked to a machine production order?
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.