Introducing Acumatica Cloud ERP: 2026R1
Get inspired and gain all the knowledge you need
Recently active
Does anyone know how to use Styles to show color for invoices that are past due? I have the below formula.=CDec( DateDiff( 'd', [ARInvoice.DueDate], Today()) )Thank you.
hi everyone,I set up different languages in Acumatica. It’s working well. But how can I use different languages on mobile app? I can’t choose language when I login.
Hi everyone,We're currently setting up EFT payments using TD Bank and need to generate files in the 80-byte (.txt) formatting standard. Has anyone successfully configured their EFT exports from the ERP system to output correctly in this format?Any guidance or examples would be greatly appreciated.Thank you in advance for your help!Best regards,
Autofill is not working on any report parameters in 24R2, as far as I can tell:
Hello, Is it possible to make field names in the mobile app with bold font? So for example: Date May 19, 2025 Where “Date” would be bold or at least the same font as the value. Field names are rather small in Mobile app. Thanks,
I’m running my test SDK on 2024R1. I am using the sample data.When I run my tests, the business date is causing errors because we are now in 2025 and the majority, if not all, the data is in 2023 and earlier.When Chrome is opened, it defaults the business date to my current date.I cannot find a way in code to change the business date to a date in 2023.Does anyone know how to access the page toolbar?
Hello,We are planning to implement HubSpot and integrate it with Acumatica. However, we require more than the standard out-of-the-box integration, as there are additional fields that need to be connected.Could anyone recommend an implementation partner with expertise in integrating Acumatica with HubSpot? Preferably based in the UK or Europe.Thank you.
Whilst the Generic Inquiry definition has a “Show Archived Records” option, this is not as flexible as the “Show Deleted Records” option.With the Show Deleted Records option you can then use a parameter to include/exclude the display of these records. This was because there was a field on the records that indicates if the record was deleted. This is useful. With Archived Records, no such field - unless someone can inform me of some magic way of filtering. A end user cannot be expected to go in and toggle Show Archived Records on and off. Thus you are left with show only non archived records or show all with no user control when running the GI. Thus not useful. For most users they will need to have 2 Generic Inquiries. One quick GI that does not include Archived Records and another GI that includes Archived records. Clearly not efficient and confusing for end users.Solution? Unless someone can inform me of some magic way of filtering which would be the most efficient approach,
We are trying to get the number of days an invoice is outstanding. I am trying to use =(([ARInvoice.DRSchedCntr]) - Today()) to get the numbers of days, but I get an error. What would be a better formula?
I have a situation where kits will be produced in one warehouse then transferred to another warehouse using at transfer sales order. However, when I plan replenishments and don’t have a replenishment method assigned to the kit items in the production warehouse, I cannot get an amount to process in the prepare replenishment grid.I could set up bogus replenishment parameters, but want to avoid that. Any help on planning replenishments for kits? I think maybe there is a gap here. Thanks,Dennis
Hi Community,We have a requirement from a client to display additional file-related details such as File Name, Comment, and Last Modified Date in the Files section on the Acumatica Mobile App. These columns are visible in the web browser under the Files popup, but we’re unsure if it’s feasible to expose them in the mobile interface.As we know, the Files popup area cannot be directly customized. So, before exploring workarounds, I wanted to ask:Is it technically possible to show these specific fields in the Files section of the mobile app? If not directly, is there an alternative approach to display file metadata in the mobile experience?Any guidance or insights would be greatly appreciated!Thanks in advance!
I want two custom fields from Purchase Receipts (PR) to copy their data into two correlated custom fields on Receipts when the PR is released. Both fields on both forms are simple TextEdit fields.I am trying to adapt the pseudocode from this post: This is the error I keep getting: Here is my code so far, my annotations might not be accurate:using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using PX.Common;using PX.Data;using PX.Data.BQL.Fluent;using PX.Objects.CM;using PX.Objects.CS;using PX.Objects.GL;using PX.Objects;using PX.Objects.IN;using PX.Objects.PO;namespace PX.Objects{ public class INReceiptEntry_Extension : PXGraphExtension<PX.Objects.IN.INReceiptEntry> { #region Event Handlers public PXSelect<POReceipt, Where<INRegister.docType, Equal<Current<POReceipt.receiptType>>, And<INRegister.refNbr, Equal<Current<POReceipt.inventoryRefNbr>>>>> correlatedReceipt; protec
I get this error when I am trying to add files on customization project and publish it.I am able to run npm run build-dev it gives no error. But if i run just npm run build it gives this error
I’m trying to run a business event with a import scenario, however, when I try to run the following IS, I get the error “Phone 1 cannot be empty.” Any advice to fix this issue?This is the Import ScenarioThe Error
Would like to create a Customization to populate a Customers Primary Contact in the contact field of the settings tab on an appointment by default. Please help!
A Customer sent a check and we recorded the payment for $200. The check was deposited to the bank and a Bank Deposit in Acumatica which included the $200 check was created. A few days later the bank came back with a correction stating the check was written for $20 not $200. We voided the $200 payment then created a $20 payment and created a corresponding Bank Deposit. Is there a step we are missing? The original deposit with the $200 payment is still equal to the original deposit we created so our bank rec is off by $180. Please help me identify what step is missing
We are running into problems with creating a new task on the Tasks screen under Time & Expenses.From looking at the effective rights of the user in Access rights by user the user shows as having delete permission on the tasks screen. They can get to the screen and even click to add a task when an error message pops up saying ‘You have insufficient rights to access the object (Cst_CRTaskMaint).’How can I determine why this is failing? Does this depend on the user being granted access to another screen first? Has anyone else run into this issue?Thanks for any help,Phil
For those of you that use Acumatica Pay, do you automatically charge credit card fees of 3%? If so, what version of Acumatica can you do this with?Admin note (May 18): industry term is a ‘credit card surcharge’
Hi Acumatica Community,I'm working on a Generic Inquiry (GI) to identify instances where employees have no time recorded on a given day within their time cards. This is crucial for us to ensure accurate time tracking and address any missing entries.I'm using the EPTimeCard, EPTimeCardSummary, and EPTimeCardDetails tables, and I'm looking for the best way to achieve the following:Goal: Display employee time card details, specifically highlighting days where no time was entered at all.Challenge: The standard joins between EPTimeCard and EPTimeCardDetails typically show days with entries. I need to effectively identify and display the "gaps."How can I achieve this?
Hi everybody, I’m struggeling a bit with an import scenario. Our partner wants to import customers and customer orders from a third party via a csv.To me, it looks like I need two import scenarios. One for the customer and one for the order as they are on different screens. (It would be great, if everything could be imported at once, though.)I am able to import new customers and save the third party customer number in the field ‘external reference number’ on the customer screen.Now I want to import the Customer Orders and need to match the external reference number (from the third party) with our new customer ID created earlier in the first import.How do I do this? I just can’t get it running.Every help is appreciated.Thanks in advance.
Recently set up a numeric attribute and a combo attribute. My intent was to add these attributes to the Shipment Confirmation Report (SO642000.rpx). After loading the schema and hitting the Refresh All button in the report designer, I found that only the combo attribute had been added to the InventoryItem DAC. That said, I haven’t been able to get the numeric attribute to show up. Does anyone know if numeric attributes show up somewhere else, or am I just missing something?
Hello everyone,I have created a custom field called "Grundton" in the data class InventoryItem and would like it to be displayed in the Smart Panel (Inventory Lookup) on the quote screen so that I can filter by it.I would really appreciate it if someone could explain the steps to set this up.
Hi Acumatica,May I link a document and line notes in a generic inquiry?Thanks!
Sometimes, a dollar figure such as $123.45 included in line description might be split into two lines after the “.”, i.e.The first line looks like: some description $123.The second line looks like: 45 more descriptionSetting the option CanSplit to False partially solves it but introduces another similar issue that a dollar figure such as $1,234.56 might be split into two lines after the comma, i.e.The first line looks like: some description $1,The second line looks like: 234.56 more descriptionIs there anyway to always keep the dollar figure together in one line?
Edit Branch in Bills and Adjustment. How can I edit the option for branch in Bills and Adjustment?
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.