Introducing Acumatica Cloud ERP: 2026R1
Reports, GIs, Dashboards, Pivots
Recently active
I’m working on a report based entirely off of PMTRAN (with PMCOSTCODE linked in to give me access to CostCodeCD). I’m starting with parameters for project, startperiod & endperiod. I’m then trying to filter so that I only select records from PMTRANS where PMTRAN.ProjectID = @project and where PMTRAN.FINPERIODID is between @startperiod and @endperiod.I can’t seem to get my date parameters into a format that is consistent with PMTRAN.FINERIODID. I’ve triedcreating the parameters as ‘string’, ‘date’, and ‘integers’. creating a variable based on the parameters to put them in yyyymm format. creating variables to put all of the dates into yyyymm format.nothing seems to work.This is how I’m defining the parametersview name=Report.GetFieldSchema('OrganizationBranchReportParameters.FinPeriodID')default value=Report.GetDefExt('OrganizationBranchReportParameters.FinPeriodID')But I’ve also triedview name=Report.GetFieldSchema('PMTran.FinPeriodID')default value=Report.GetDefExt('Organization
We are seeking suggestions to modify an existing generic inquiry designed to retrieve the discount percentage based on the InventoryPriceClassId and CustomerId. While it functions correctly in most cases, we are encountering an issue where, for a specific InventoryPriceClassId, we receive four results instead of the expected single result. We require assistance to ensure that only the relevant '15PCTUP' discount code record is returned, corresponding to our specific Item Price class.
I want to filter a report based on the CreatedDateTime and adjust for UTC. I have the filter working properly in the body of the report but how can I use it in the filter of the report overall?Here’s what I want:=dateadd([EPActivityApprove.CreatedDateTime],'h',-6) = Today()or as another option, how can I filter so [EPActivityApprove.CreatedDateTime] = Today(UTC)
Hello,I’m working on a custom Commissions Report that shows Paid invoices in the Top section and Not-yet-fully-paid invoices for the same Salesperson, as of the same Period-end in the bottom section - “Future Commissions”.The report works well until I connect the sub-report. One colleague helped me try the following ideas for passing the financial period to the subreport:Ideally we will pass the report parameters provided by the users - @Salesperson and @FinancialPeriod. Any period the User chooses upon printing, that value should pass to the subreport. When @Financial Period did not work, we tried a database field in the Parameters collection, [ARInvoice.FinPeriod], with no success. We tried hard-coding a Period that we know has commission activity in the Parameters collection. We tried two different formats: 09-2024 and 202409, with and without quotes. We tried several fiscal periods, and the error presents for all periods we tested. When we remove the Sub Report Name, the report
I am wondering how to add the running total of amount (PMRevenvueBudget) in the report footer based on the inventory Item ClassID description of the inventory id in the detailed section.
Hi everyone,Can anyone enlighten me what is the problem why is it when i create a dashboard for our HR manager using the the generic inquiry of Purchase Order Summary, the dashboard doesn’t have a content just a symbol of LOCK after all i set up the widget propertiesPlease see screenshot, we are currently using Acumatica 2023 R2Appreciate your replies.Thank youggil
We have a report in Report Designer where the results are not matching up with the GI. The GI is called CRRelation. There is a LEFT JOIN with SOOrder.NoteID and CRRelation.RefNoteID. The GI in the attached document shows that the LEFT join works as all the data across the board matches. Using the same type of LEFT join in the Report Designer and following it through various stages (also shown in the attachment) shows that everything appears to be matched up. The issue is that in the Notes field, section listed at the bottom of the attachment, the CRRelation.TargetNoteID and the CRRelation.Description are suppose to match the top picture in the attachment. I’ve even tried using, in the Report Designer filter, a filter for the TargetType to be Sales Order, and again, no joy. I have not linked the CROpportunity to any of this as I didn’t think it would be necessary in this case.
I have been hunting for the access right that would hide the attached image totals on purchase orders in the header for a view only user that we do not want to allow to see cost of material. I am having a hard time locating the correct access right for this to revoke. Can anyone point me in the right direction?
Hi , I Have Attached generic enquiry for three table i have created.Notification source, Notification Receipient , Customer But the customer table am not able to join with other two to display the customer id and name Anyone can suggest and help me to resolve this issue
How can I disable or hide the Export to Excel button in the report launcher window?
Hi All, does anyone have an example how to add the Step numbers in a Production ticket from the BOMThanks
I’m trying to create a report attached below, and use custom data as a filter field. However, whenever I try to search via the filter box, no data appears within the search function. I’ve tried my best to keep the report as close to the standard ones as possible, but I’m not sure what is causing this issue.
How do I join the NotificationSource table to the Customer table in a GI? I’m trying to output all mailing settings for each customer so we can see who has overrides enabled for specific functions (like invoices etc). I’ve tried using the DAC browser for this, but I’m not finding a way to get from A to B. Anyone feeling super knowledgeable today? I’d love an assist on this one, thanks!
how to access relation table in generic inquiry for get information restriction group by user?
I currently have a report that looks like this:How can I get the negative dollar values to appear in red? I have searched other solutions. The closest option I have found is overlapping fields and using VisibleExpr. The issue comes in the fact that, the dollar value column uses an if-statement to calculate its value as a negative. So, I’m not able to tie the VisibleExpr field to a specific parameter like [ARInvoice.DocType] etc. Here is a screenshot of the if-statement used:Is there a way to have the VisibleExpr calculate based on the end result of the “Value” field? Thank you,
Dear ALL,Which DAC/Table can get the Beginning Balance and Ending Balance of the Accounts by each day ?Many thanks !NNT
My controller relies heavily on the Find function (search) in the report viewer. The find function used to find the first instance on the first click (or enter key) of the find button on a report, then would find the second on a secondo click/return & so on through the list. This functionality is now lost, it will only find the first instance every time you use the find, its almost as if the report is re-loading every time you click Find. I have tested this in new instances of the same build and have the same results.Has anyone else noticed this, and is there a fix for it?Acumatica 2023 R2 Build 23.212.0024
I am trying to design a report using INReceiptStatus which is hidden and cannot be selected in report designer or Generic Enquiry. How can i make the DAC available for report designing
Hi all, I’m trying to write a GI that lists Sales Orders from 13 months ago. For example, if I run the GI successfully with a business date of today, it will show me all Sales Orders in September 2023. I think this is best achieved by setting some conditions in the Conditions tab of the GI, but I am not sure of the formula to use. Does anyone have any suggestions or can point me in the right direction?
Goal of the GI:Compare the Current Price Class with the New Price class, and filter out any entries that are already the same to reduce the amount of entries sent through an Import ScenarioCode for the New Price Class assigns a type of discount based on the amount sold:=switch(Max([Location.CPriceClassID])='STAFF','STAFF',Sum([SOOrder.CuryOrderTotal])>1200, 'RETAILBULK',Sum([SOOrder.CuryOrderTotal])<1200, 'CUSTOMERS')But as y’all know, when you make a new field, you can pull up it’s internal ‘field’ name, and I can use that for style like this: =iif(SOOrder_Formulad9d511aff428430595f645b5e7225bcf = [Location.CPriceClassID],'','red20') But I can’t use it for comparison in any part of conditions or even within the results grid=[SOOrder_Formulad9d511aff428430595f645b5e7225bcf] doesn’t work@SOOrder_Formulad9d511aff428430595f645b5e7225bcf of course doesn’t workjust SOOrder_Formulad9d511aff428430595f645b5e7225bcf doesn’t workIs this a hard limitation on GI’s, or is there a trick I don’
We are looking for a way to “turn off” items that are discontinued or sold out when gone once inventory is depleted. We’re not necessarily looking for an event to be triggered in Acumatica (purchase or transfer), but a way to identify and track when inventory is low for specific SKUs would be helpful so they can be set as Inactive.
Hi allIs there a way to create GI with the Inventory balance? We need to create it with inventory transaction details such as receipts, Adjustments, etc and it should include dates and batch numbers, and ref numbers also. I have tried to create it with INregister and INtran tables. But it did not work as the landed cost variance details are also fetched to the GI. Thank you!
Hi All,I want to add a condition to a generic inquiry to filter timecards created on last week. To do that I think that I would need to compare EPTimeCard.WeekID with current WeekId. Is there a way to populate Value field of GI with current WeekID ? Thanks
Hi all, I’m struggling to get an OData connection from excel and Power BI.Both the below urls gives me what I expect when running them in a browser:https://{site.com}/ERP/odata/{Tenant}/https://{site.com}/ERP/odata/{Tenant}/{GI}But when I try to use the same urls in excel’s OData Feed I get the following error:We encountered an error while trying to connect.Details: "The field 'Branch' already exists in the record." Our version: Acumatica 2023 R2 Build 23.206.0006Any idea on how to solve this issue?
We are running Acumatica version 23.206.0006. Our last update was a couple of months ago. After the upgrade, we noticed that the reports were taking more time to be printed, but it wasn’t a problem.However, for the past couple of weeks, some reports have been missing images from time to time. As a workaround, users need to reprint the reports. This issue is occurring with multiple reports. Note that all the reports are using sub-reports, but the complexity in some cases is not too high – for example, a report with two sub-reports and not many tables in the schema is having the issue. This is how the images are displayed when the reports fail: We have tested on different PCs and printers, so it is definitely something in Acumatica and we believe that could be related to a performance issue. CPU and memory usage on Acumatica are at normal levels. Has anyone experienced the same issue or have any idea where to look? Any idea is welcome!Thanks!
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.