Get inspired and gain all the knowledge you need
Recently active
There are two columns, namely X and Y, in a grid. I need the following functionality: When the value in X is lower than the value in Y, the X field color should change to red. andWhen the value in Y is lower than the value in X, the Y field color should change to red.Example:For example, if X = 3 and Y = 6, the X field should appear in red.For example, if X = 8 and Y = 5, the Y field should appear in red. How to achieve this, I need steps on how and code if possible.Note: I do not want to highlight the entire row, only the specific field.
Hey folks,Looking to get some information for our Data Warehouse and came across a funky little calculation discrepancy that we can’t seem to figure out. If you look at the SO Totals page in this example and you read the documentation it doesn’t seem that Unbilled Balance and Unshipped Amount are correct. And can’t really figure out how these are calculated… Also not sure how Order Level Discounts are factored in here, but any insight would be helpful. We are trying to siphon out the unbilled/unshipped amounts for reporting and they do not match the SO values…
I am trying to add Order Nbr.(ARTran-SOOrderNbr) to Prepayment and Application-Documents to Apply, the title shows up, but it did not bring the related Order Nbr to its invoice.What kind of update do I need to write for this attribute (ARtran_SOOrderNbr)
If we have our system set up to auto generate lot numbers for multiple stock items, will Acumatica create a unique lot number for a stock item compared to all other lot numbers or will it only be unique within that stock item?For exampleWe receive in stock item #1 and Acumatica assigns it a lot number of 0001, if we receive in stock item #2 will it receive a lot number of 0002 or 0001?Thanks!
I am trying to setup an import scenario to import stock images onto the attributes tab 23R2 - has anyone managed to be able to import the images. Site I have has over 5000 Stock items and does not want to do this manually
I am trying to use the Load Records from File function to import tasks into a project, however it appears as though certain properties cannot be uploaded such as Default Cost Subaccount… is there a way to enable those fields?
I am developing a customization and would like to check if a user has access to a specific screen (or a Graph for that matter) in my code, I need to perform certain actions if they do not. How would I do that in my graph, which is not the same graph/screen?
One thing I have found with Acumatica is that there is no easy way to track missing time entries for each of our ~50 employees. Furthermore, we would like to see a report on how people are allocating their time to projects and tasks, without the bulkiness of the Employee Hours report. Does anyone have any recommendations for a third party that we can outsource the building of these reports to? I have tried my hand at this, but would rather rely on an more knowledgeable person.Thanks!
Is there anyone here that can guide me how am I going to create an email notification when there is a new case created in Acumatica?
Is anyone else using the True Commerce EDI solution with Acumatica 23 R1? Our integration is being logged off constantly...sometimes once per day, sometimes once or more per week. So far, no real solution from Acumatica support. True Commerce support says this is not an issue on their side. Any insight is appreciated.Thank you.
How can we handle items that have been ordered and received into the system but not used on the service order or appointment? We would like to have the item to show in our stock for the specific warehouse. We attempted to use the cancel process, but that did not work as expected. Thanks.
We are using a GI to pull an inventory sheet and one of the columns has a name of Class for the grouping of items with specific INItemClass.ItemCLassCD such as 001-01-01, or 002-06-01. Items beginning with numbers such as 001, 002, 003, or 006 should show up as Class Items A or 010- - as ‘Other’ or 010-0- as Other. My SWITCH looks like this:=SWITCH(LEFT([INItemClass.ItemClassCD],3) = 001 OR LEFT([INItemClass.ItemClassCD],3) = 002 OR LEFT([INItemClass.ItemClassCD],3) = 003 OR LEFT([INItemClass.ItemClassCD],3) = 006, 'Class A',LEFT([INItemClass.ItemClassCD],3) = 007, 'Class B',LEFT([INItemClass.ItemClassCD],3) = 005 OR LEFT([INItemClass.ItemClassCD],3) = 013, 'Class C',LEFT([INItemClass.ItemClassCD],3) = 004 OR LEFT([INItemClass.ItemClassCD],3) = 008, 'Class D',LEFT([INItemClass.ItemClassCD],3) = 012, 'Class E',LEFT([INItemClass.ItemClassCD],3) = 010, 'Other')The code does pass Validation, the Class column just doesn’t show even though there are at least three pages of mixed classes. I a
Hello everyone!I’m trying to add a column from the BAccount table to the AR.52.10.00 Prepare Dunning Letter screen in order to provide more information.I wrote the following code, which publishes without errors. However, when I check the screen, the data doesn’t appear, and I can’t figure out where I might have gone wrong or if I’m approaching this incorrectly: using System;using System.Collections;using System.Collections.Generic;using PX.Data;using PX.Data.BQL;using PX.Data.BQL.Fluent;using PX.Objects.CM;using PX.Objects.Common.Extensions;using PX.Objects.GL.FinPeriods;using PX.Objects;using PX.Objects.AR;using PX.Objects.CR;using PX.Objects.CS;namespace PX.Objects.AR{ public class ARDunningLetterMaint_Extension : PXGraphExtension<PX.Objects.AR.ARDunningLetterMaint> { protected void ARDunningLetterList_RowPersisting(PXCache cache, PXRowPersistingEventArgs e) { var row = (ARDunningLetterProcess.ARDunningLetterList)e.Row; if (row == null || row.BAccountID ==
Hi, I’m trying to create a unit test for my Extension Library, but getting the error “PX.Data.PXException : CS Error: Numbering ID is null”. Here is the code snippet: protected virtual OpportunityMaint PrepareGraph() { Setup<OpportunityMaint>( new CRSetup { OpportunityNumberingID = "OPPORTUNTY", QuoteNumberingID = "CRQUOTE", CaseNumberingID = "CASE", MassMailNumberingID = "MMAIL", CampaignNumberingID = "CAMPAIGN", }); var graph = PXGraph.CreateInstance<OpportunityMaint>(); return graph; } [Fact] public void CalculateMarkup() { //arrange OpportunityMaint graph = PrepareGraph(); var graphExt = graph.GetExtension<OpportunityMaint_Extension>(); CROpportunity item = (CROpportunity)graph.Caches[typeof(CROpportunity)].Insert( new CROpportunity { OpportunityID = "OP000401",
Hi Experts,I have a requirement from a client regarding custom fields on the Customer Details (AR402000) screen. Specifically, the client wants the ability to filter and sort unbound custom fields directly in the grid.Here is the scenario:I added two unbound custom fields, Location ID and Location Name (both string data types), to the grid. The client wants to: Filter records in the grid by typing a value in these custom fields. Sort the records in ascending or descending order based on these fields. What I've Tried So Far:Added the custom fields (UsrLocationID and UsrLocationName) to the FastFilterFields property (along with fields like RefNbr, ExtRefNbr, and DocDesc). Set the AllowFilter and AllowSort properties to true for these fields in the customization editor.However, the filtering and sorting functionality is still not working for these unbound fields.Question:Is it possible to enable filtering and sorting for unbound custom fields using Acumatica's built-in attributes or cust
Have configured a Fixed Price Project with Allocation rules to correct recognize revenue. The project task specifies the same Non-Billable WIP Account as the allocation rule. When project billing is run the allocation transaction(s) are reversed correctly. I note that 100% of the allocation is reversed with the first billing regardless of the Completion % and invoice amount. I presume there is no apportionment possible?My problem is that if I have two Revenue budgets and project billing runs on one of these, then although the allocation transaction is on the same task there is no reversal. Even when the entire project is 100% complete/billed there is no reversal. The PM allocation transactions can be reversed manually. Is this correct behavior of can allocations somehow be reversed in this case?
StepsCreate the purchase order for the non stock item created for FA purchases. Enter the PO receipt Create the AP bill Convert purchases to Fixed Assets Assign the PO to the already created FA Release FA transactionsI followed above steps to do the FA purchase and to convert the Purchase to an existing Fixed Asset. But even after releasing the transactions, the PO details, receipt details, bill details are not getting automatically updated in the designated fields. Has anyone faced the same issue? Is there a way to get the above issue sorted?
Hi,I’m having an issue with a customisation. Not sure if this is relevant, but this is the first customisation I have done in build 2022. All previous have been in 2021 builds and I haven’t seen this issue before: I have a processing form. When I Update all, after approx. 4 seconds the dialog below pops up The processing form keeps running until it gets to 18 seconds, and then freezes. Any further interaction with screen results in a request to reload the page I think that the screen expirying is probably due to the debug message. I have tried, click “yes, debug wp3.exe” with the following result:Clicking “New instance of Visual Studio Community 2019” results in the below: Also, when debugging in Visual Studio, after approx 4 seconds I’m getting:Everything appears to be behaving normally up until this point eg. I can set break points, and execution stops on these as per normal. Thanks in advance for any help on this.JOhn.
Hi, anyone else have this issue?I am trying to access Acumatica Portal from my VPS over the cloud, but I got the above error.have anyone encounter this issue and resolved? any help would be greatly apperciated! TC
I need to populate all the “S - Service items” which are in inventoryitem table (related Sql is below). How can I customize it?select *from inventoryitemwhere ItemType = 's';-------------------------------------------Used Acumatica version - 22.111Used data set - I100No customizations published
In the Time and Expenses in Acumatica. Can this field used to keep track of if a expense was tied to a customer? We are not wanting to bill the customer for that expense. “I would think that is where the billable checkbox comes into play” but if we put a customer in that field I imagine we could build a report around how much expense reports are associated with a particular customer. Am i correct?
I create a customization project to add few fields to several screens including sales order screen, then I need keep these fields as any time editable (in every state). So, I customized the SO301000 (Sales Order) workflow. I do that inhering the existing workflow. Then custom fields become editable,but the default fields turn uneditable in every states. Then I Remove the newly added workflows and enable the default workflows. but the fields still uneditable. Then I delete the whole SO301000 screen from the customization project. Even now default fields are uneditable. SO301000 screens returns back to the default behavior when only the whole customization is unpublished. I Tried with “Publish with cleanup”. It also not works for me.
I was hoping to get my field service reps in a position that they could essentially place orders through Acumatica, and admin would have an approval workflow to review and approve the order into production. Native Acumatica sales order module is just too many steps for the field reps to have to do Currently, they just have an app where they select a customer, a product, and the quantity, and that order request gets emailed to the respective admin team. The hope is that there’s native functionality in acumatica that can replace our current app. Anyone have any insight? CRM module possibly?
I created a snapshot using the option of “Settings Only”I created a new tenant.Imported the snapshot and restored it.I have stock items in my new tenant. I was expecting to only see the settings in the new tenant, not data.Any thoughts?
Hello,what could be the problem if $LineNbr does not appear in Variables? here, I manually typed it in the value then it results to list of 0s. someone please help 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.