Get inspired and gain all the knowledge you need
Recently active
An employee accidentally delete a customer from the receivables. How can I recover that customer?
Best regardsIs there a possibility within report designer to let them know a Record Per page amount to process?since at the time of running it takes longer than estimated and that it is harming the operation the amount of time that is taken to upload the data.
Acumatica RQRequisition.Status defines Closed status as… Closed: Reflects that the requisition was fulfilled and the requested items were received. The requisition gets this status if the order quantity is zero for all items in the requisition. However, my test requisition is still in Released status even after receiving the purchase order that is linked. I went as far as creating the Bill and Releasing it. I also made sure that the linked Sales Order is shipped, created Invoice, and Release AR Invoice. I feel like I’m missing something, does anyone have any ideas?
Hello,When the custom screen is loading, an error message appears stating, "A Request has been Terminated."Upon checking the System Monitor screen, the following message is displayed:"CustomMessage": "Denial Code 527 - The operation was cancelled because a client was disconnected. Contact your provider for further assistance. CorrelationID: 8DCBDC288FD6DAD; Timestamp: 2024-08-16T07:10:39.9382957Z".Do we need to Configure any data size limits on this??
How to add Extended DAC Field in the Sales order screen Payment tab Create Payment popup (Smart Panel) in the Modern UI tried with below codeTS fileimport { PXView, PXFieldState, PXFieldOptions } from "client-controls";import { SOQuickPayment } from "../../common/panel-create-payment/panel-create-payment";export interface SOQuickPayment_customfields extends SOQuickPayment { }export class SOQuickPayment_customfields { UsrPSSOCashTaken: PXFieldState<PXFieldOptions.CommitChanges>; UsrPSSOCashChange: PXFieldState<PXFieldOptions.CommitChanges | PXFieldOptions.Disabled>;}HTML file<template> <field after="#QuickPayment_CreatePaymentFormLayout0 [name='CuryID']" name="UsrPSSOCashTaken"></field> <field after="#QuickPayment_CreatePaymentFormLayout0 [name='UsrPSSOCashTaken']" name="UsrPSSOCashChange"></field> </template>
I have a client with multiple companies in one tenant. While you can pull an ARM report for Company A while you are in Company B, the header information displayed is still for Company B. What is the correct formula to display the selected Company Id instead of the current Company you are in? The default formula is:=Report.GetDefUI('RowCompanyBAccount.AcctName')
My customer asked me to show the Shipping Address Line 1 and line 2 in a new 4th column in the header of the Sales Order screen.I created two unbound string fields to store the values from the Addresses tab (shipping address info).Even using the “nuclear” option of the SOOrder RowSelected handler, the values will not show in the custom fields.In debug, I can see the values being set correctly in the custom fields, but when the screen displays, they are empty.I don’t think it is possible to do this using PXUnbound in the DAC extension because I need the custom fields to be updated if the user overrides the address lines in the Addresses tab.I tried to do the update after the RowSelected handler has been invoked, but that didn’t make any difference. Here is my DAC:public sealed class GTSOOrderExt : PXCacheExtension<PX.Objects.SO.SOOrder>{ public static bool IsActive() => true; #region UsrShipAddressLine1 [PXString(50)] [PXUIField(DisplayName = "Ship Address Line 1", Enabled = f
We had to backdate a payment to our customer’s account. After posting, we realized we had entered the amount incorrectly (the handwriting was difficult to read) so the payment was voided. Unfortunately, the payment was posted in May but the void was posted in June. As a result, the May statement balance is not correct. Is there a way to correct this?
Hello Community!I continue to receive requests to integrate with WorldShip. From my investigation, the native USP integration does not work with WorldShip. And neither ShipStation nor Easy Post integrate with WorldShip.Is my understanding correct? Are there any solutions out there? Thank you.
We add one custom column call “Brand” in stock and non stock item.InventoryItemExt.UsrBrand is the extended DAC (free text field). In Details tab of Appointment screen (Screen ID: FS300200) we have a selector for Inventory Item.I wants to add Brand column in above popup box.I try with “PXCustomizeSelectorColumns” and “PXSelector” but it replace all column.I wants to keep all columns as it is and append one more column as brand.I check code and found that “InventoryIDByLineType” attribute is used. But I cannot get how can we add one more column in it. And I cannot get original logic for all above columns otherwise I can copy paste and change.
Is it normal that we do not have any verification or notice when we create manually an equipment for a service call (serial number already exist… change the owner...already exist with another description or code, continue)?As example, we create a new equipment manually with serial number, but this equipment already exist for same owner or was register with previous owner. and system let us create the same equipment twice without any notice or verification.Is there any option that could be activate to have any kind of notice?
Hello - Any idea on how to handle aggregating information/notes from techs across multiple appointments? We have situations where one tech may go the first day on one appointment and then two days later a different tech would go on a different appointment (to the same place) and needs to be able to see the notes/information that the first tech did?
I followed the instructions from this Acumatica help page: Access to Budget Nodes: Implementation Activity A client of ours uses their subaccounts for their departments and I’ve configured a budget node for each subaccount. Each node contains leaves for each Account-Subaccount combination they budget for. I then created a restriction group (Group Type A) for each subaccount and added the respective budget node to each restriction group. I then added the 2 users for the 1000 subaccount/budget node to the restriction group. When I sign in as other users, I’m still able to view the 1000 subaccount/budget node and edit it. It was my understanding that adding users on the GL Budget Access screen would make it so that only those users would be able to view that budget node. Do some roles override restriction groups? I don’t understand what’s going wrong, any help would be greatly appreciated!
Hi, a client is running 23.210.0017 and is having a strange behavior in PO entry: The default project (X) disappears from the field when a GL account associated with an Account Group is entered in the Account field. In production, when the project is put in again, the subaccount field empties and has to be reentered to get all three to be complete. If a valid project is entered, no issue. If a GL account unassociated with an account group is entered, no issue.I ran it in a local instance with no customizations published and the only change was the subaccount didn’t disappear.We tested it in an more recent instance with sales demo data and it didn’t occur. I don’t know if it’s a config issue, or a glitch?
We do a lot of service work where an appointment might branch more than one day and warrant a return visit. In addition to that, it might not always be the same technician returning to complete the work so we need the notes/documents to roll forward.What is the best way to schedule a service order for multiple days? Consecutive days and nonconsecutive? And what is the best way to get all the notes to aggregate so a tech can see what all was done before him?
I created some new fields on the Price/Cost tab of the Stock Item screen:UsrWhlPriceUsrWhlPriceChangeDateUsrPrevWhlPriceUsrPrevWhlPriceChangeDate The intention is that the first will store the wholesale price for an item and the second records any time the wholesale price is changed.The UsrPrev… fields will be updated when the wholesale price changes. I added them and all appeared to be fine. I tested and they recorded the information I needed and I used them in an import scenario to import the wholesale prices.I am using the code below to monitor for a change to the price and update the fields. protected void InventoryItemCurySettings_UsrWHLPrice_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e, PXFieldVerifying InvokeBaseHandler) { if(InvokeBaseHandler != null) InvokeBaseHandler(cache, e); var row = (InventoryItemCurySettings)e.Row; if (row== null) return; try { InventoryItemCurySettingsExt inventoryItemCurySettingsExt = PX
Hello,I am working on my first sales tax report and i can’t get the report the way I need it. We are on 2022R2 with fast track implementation.We are setup to have zones that pay multiple rates. Base MN 6.875 plus county of .25%. On the report the tax amount due is correct, but the taxable amount is doubled up and broke into multiple groups.. I need to report the taxable amount for each group. 8k to state @6.87% and 8k@.25% to the counties. and the state website calculates the tax amount due (which it should match) I have tried multiple settings and groups, but can’t get the settings quite right. Thanks,Jeremy
I am trying to create a report on sew tag, which requires page break. However, on inspection, there is no page break feature available in my Acumatica Report Designer. Is this a system glitch or is the feature available and I can configure it. And if rightfully so, please guide me on how to do the same.Thank you
Hi Guys,I am trying to hide specific grid columns on the My Cart (SP700001) screen for portal users. To achieve this, I attempted to implement the logic within a graph extension for InventoryCardMaint.However, after adding the graph extension under the Code section of the Customization Project Editor and publishing with the default generated code, I encountered a compilation error. I’ve included the error details below for reference.Could someone please advise on the correct approach to handle this?This is on my local portal instance running version 2023.118.500.8456.Graph Extension code:using PX.Data;using PX.Data.BQL;using PX.Data.BQL.Fluent;using SP.Objects.IN;namespace SP.Objects.IN { public class InventoryCardMaint_Extension : PXGraphExtension<SP.Objects.IN.InventoryCardMaint> { #region Event Handlers #endregion }}Error:[2025-05-29 02:38:28.829] Compiled projects: MyCart[2025-05-29 02:38:28.829] Validation started.[2025-05-29 02:38:28.832] Copying the website C:\MYOB Advan
Hi,I am trying to handle null values in GI and giving this formula=IIf( IsNull([DemandSalesW1.ARTran_Formula13bfa5591de24380bcd5cdb1f24fe59a]) Or [DemandSalesW1.ARTran_Formula13bfa5591de24380bcd5cdb1f24fe59a] >= [DemandSalesW2.ARTran_Formulaa0b3cfd923094f969a59fb9fa0093818] And [DemandSalesW1.ARTran_Formula13bfa5591de24380bcd5cdb1f24fe59a] >= [DemandSalesW3.ARTran_Formula07567adb968540ba95a4e8dd42fa0655], [DemandSalesW1.ARTran_Formula13bfa5591de24380bcd5cdb1f24fe59a], IIf( IsNull([DemandSalesW2.ARTran_Formulaa0b3cfd923094f969a59fb9fa0093818]) Or [DemandSalesW2.ARTran_Formulaa0b3cfd923094f969a59fb9fa0093818] >= [DemandSalesW3.ARTran_Formula07567adb968540ba95a4e8dd42fa0655], [DemandSalesW2.ARTran_Formulaa0b3cfd923094f969a59fb9fa0093818], [DemandSalesW3.ARTran_Formula07567adb968540ba95a4e8dd42fa0655] ))This the GI is raising an error “Index was outside the bounds of the array”.Can any one guide me whats wrong in the formula. I am trying to achive max values o
How do I modify any fieldset defined already in extension like hereI try to reference any id in my custom file it always gives me this error“screen HTML doesn't contain any elements that satisfies such querySelector”
We already know that the view/edit comment on the appointment list summary screen in the mobile app is tied to the other tab in acumatica. Is there a way to make that field read only on the app?
I am having an issue adding more than ten credit cards to a customer’s profile. I found a previous thread that was solved by updating the maximum credit cards per profile, however, it didn’t work for me. Even when there’s expired credit cards that are marked inactive it seems to still be counted towards the credit card profile count.Can someone please help me solve this?
Hi Everyone,I’d like to add Customer Name on Inventory Transaction History.Please help. Thanks, Idrus.
Hello everyone,currently, there are only Mrs., Mr., Dr., and Prof.I would like to add additional titles.How can this be changed in the customization ?
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.