Get inspired and gain all the knowledge you need
Recently active
I am wondering if it is possible to display a Google Maps map generated from the Maps JavaScript API in an ASPX page.Does anyone have experience with this or something similar?
I’ve been considering the difference between setting up restriction groups for Customers and Vendors versus using the Restrict Visibility To field in Acumatica. My thinking is that restriction groups might be more useful when there’s only one company/branch.Personally, when restricting Customers or Vendors, I prefer using the Restrict Visibility To field and specifying the company or branch. This involves creating the necessary access roles and applying them to the relevant company or branch. When a user logs in, they’ll only be able to see the Customers or Vendors associated with their assigned company/branch.In comparison, I find that restriction groups are more complex to set up and maintain. They can be applied to all customers or vendors using the "Apply" button under the customer or vendor class, but it’s more tedious.In your experience, when do you choose one method over the other?
How can you limit the visibility of User-Defined Fields so that it doesn't appear on other companies?I have companies XYZ and OMP but I don’t want to show in XYZ to OMP
Hi I have a requirement where I need to default the qty to produce to 1.00 in material wizard 1 screen which I have implemented as follows: namespace PX.Objects.AM{ public class MatlWizard1_Extension : PXGraphExtension<PX.Objects.AM.MatlWizard1> { #region Event Handlers protected void AMProdItem_Selected_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e, PXFieldUpdated baseHandler) {baseHandler?.Invoke(cache, e); var row = (AMProdItem)e.Row; if (row.Selected == true) // Only if the item is selected { row.QtytoProd = 1.0000m; } }This works but when I select a record to be sent to Material Wizard 2 screen this grabs the value based on original logic. How can I make sure the value is set to 1.00 across both screens? As a side note I have also tried implementing field defaulting event handler but this universally updates AMProdItem.QtytoProduce which is not required because only these 2 screens need to be updated.Thank
Use CaseThis article demonstrates how to update fields in a Sales Order upon confirmation on its shipment. In this example, we will add the "Expected Delivery Date" field to a Sales Order header,and will calculate it as adding some constant days number (7 here) to the shipment confirmation date.PrerequisitesThe attached customization adds the "Expected Delivery Date" field to Sales Order header (SOOrder database table, DAC, and aspx). It should be used as a starting point for implementing the logic described in the Use Case section.SolutionThe described solution uses the structure of the Confirm Shipment action delegate:protected virtual IEnumerable ConfirmShipmentAction(PXAdapter adapter){ PXLongOperation.StartOperation(this, delegate () { SOShipmentEntry docgraph = PXGraph.CreateInstance<SOShipmentEntry>(); SOOrderEntry orderentry = PXGraph.CreateInstance<SOOrderEntry>(); foreach (SOShipment shipment in list) { docgraph
Hi,In one of customer’s environment I do not see the line level discounts in the sales order document summery area. But all other , and Local environments shows the Line discounts at the document summery area. Is there any place that I can enable it? Thanks,Dulanjana
In construction edition, the Retained Amount in Revenue Budget should decrease after releasing retainage. It does not always. Anyone know how to get it to decrease every time?
We are mainly using invoices from project pro proma. One objective of our company would be to create one pro forma per week in order to follow correctly our pucoming sales and wip (from pro forma, we can decide if the actual transaction is billable, or a write off)On the client’s side though, we would like to compine multiple pro forma into one invoice, in order to bill our client twice or once a month, without having to redo the whole proforma process Is it possible in acumatica? Thanks
I have an invoice from a supplier that was shipped in multiple pieces. Consequently they charged our credit card with multiple charges. But, we only have a single invoice entered in AP.When trying to clear the bank transaction I can select “match to multiple invoices”, enter the vendor’s name into the “business name” and I see the single invoice. If I select that invoice it correctly shows me an “unmatched amount” but I can’t figure out how to them match this to the second credit card charge.This doesn’t feel like an unusual practice so I’m assuming that I’m doing something wrong.
Hello, We would like to export 1000+ invoice PDFs and are attempting to use an Export Scenario to do this. We cannot use the existing filters on the Print Invoices/Memos screen as we need to filter on ship-to state as well. We have a list of invoices in a data provider, and are using the Print Invoices/Memos screen for the export scenario.We are struggling to find any documentation anywhere on how to use this screen in an export scenario so below is what we have in the Export Scenario so far:Does anyone have any experience with exporting PDFs in bulk like this?RegardsPatrick
Hi everyone,Testing bank feeds for the first time. Connected to a real bank account with years of history. After running Retrieve Bank Feed Transactions, it only goes one month back from current date. Does anyone know if possible to go back further?The Import Transactions From field was originally 1/1/2024. It updates every time process is run.
Hi Acumatica community members, In one of my customers environment , I have created a sales order for a customer .In the customers screen I have defined the shipping rule as ‘Back Order Allowed’. In the sales order screen when creating a new sales order for this customer , the shipping rule in the sale order shows as ‘Back Order Allowed’ which is the expected behaviour.Then I created a shipment for this sales order for partial quantities , and confirmed the shipment . The sales order status shows as ‘Back Order’ which is the expected behaviour but the Shipping rule in the shipping tab of the sales order and also the detail tab shows as ‘Ship Complete’ which is not the expected outcome. This should be ‘ Back Order Allowed’.I tested this in the default local instance , the behavious is the shipping rule kept ‘Back Order Allowed’ when the sales order is in the ‘back order’ state.In other words , I could not replicate the issue in my default local instance.Is there any reason for this beh
We have matched all our bank feeds in Banking > Process Bank Transactions.However, when we process the Reconciliation Report, the clear date on the transaction does not match with the date of the bank feed transaction line item that it was matched to. Also, once reconciled, the reconciled transactions are still appearing in the bank feed. Is this a bug, or is there a step that has been missed?
Hello Everyone,I have a custom field on the sales order header where users can enter a value. This same custom field is also available on all activity screens (Task, Email, Chat, Note, etc.). If a user creates an activity from the sales order, I need to pass the value of this custom field from the sales order to the activity screen.Additionally, this logic should also work for the shipment and invoice screens.In Acumatica, the activity screens are handled by the ActivityDetailsExt generic graph, which contains several virtual methods used for creating activities. I tried overriding these methods in the SOOrderEntry extension, but while there are no errors, the overridden methods are not being executed.Can anyone suggest how to pass the custom value from transaction screens (sales order, shipment, invoice) to the corresponding activity screens?Acumatica base code for activity logic is in below class. public class SOOrderEntry_ActivityDetailsExt : ActivityDetailsExt<SOOrderEntry, SOOr
Hi Community, Seeking your assistance for reference to set up POWER BI in Acumatica
Hello all,I have been trying to setup integration between Stamps.com & Acumatica but upon testing the connection it shows the following:How to resolve this?Update:Found the below info on Stamps.com website:I tried to test the connection using the Staging Endpoint URL as highlighted above, but now it displays “Authentication failed” error message. I also found out that i needed to register for a developer account. So just waiting to get it started and again test the connection.
I retreive a list of shipment numbers that i need to confirm in Acumatica I created an import scenario that accepts a csv file with “Shipment Nbr.” as the header. I created a web service endpoint mapped to Import By Scenario Screen I created an action called prepareImport The action has a parameter called Name which is the Import Scenario name Is it possible to send a list of shipment numbers in JSON format instead of csv through postman? What would the payload look like? Ive tried: { "entity" : { "ShipmentNbr" : {"value": "SHIP-0000002"} } } { "entity": { "Name": { "value": "LA - Confirm Shipments" }, "parameters": { "Shipment Nbr.": { "value": "SHIP-0000003" } } } } Ive tried changing the url to pass the Name as a filter How can I acheive this? Thank you.
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
@Dmitrii Naumov - I wasn’t sure where to report this to. 24.204.0004Using the built in customization interface I asked it to create an override of the SOInvoiceEntry.InvoiceOrder method and it produced this:public delegate void InvoiceOrderDelegate(InvoiceOrderDelegateArgs args);[PXOverride]public void InvoiceOrder(InvoiceOrderArgs args, InvoiceOrderDelegate baseMethod){ baseMethod(args);}But should have produced this:public delegate void InvoiceOrderDelegate(InvoiceOrderArgs args);[PXOverride]public void InvoiceOrder(InvoiceOrderArgs args, InvoiceOrderDelegate baseMethod){ baseMethod(args);}It inserted the word “Delegate” into the name of the data type of the delegate’s parameter declaration.
HI, Having successfully sync imported some balances for a period, it is now possible to import balances from a prior period? Getting “There are no records to process.” error.
I am trying to add the following two fields to the Expense receipt on the mobile app update screen EP301020 { update container "ClaimDetails" { add field "DetailsFieldServiceDetails#RelatedSvcDocType" { placeafter field "DetailsFinancialDetailsExpenseReceipt#Location" pickerType = Searchable } add field "DetailsFieldServiceDetails#RelatedSvcDocNbr" { placeafter field "DetailsFieldServiceDetails#RelatedSvcDocType" pickerType = Searchable } } }The fields appear on the screen but when i select a Service or Appointment document it throws an error. I suspect it is because the field is a NoteID but it is trying to save the Order Reference.
can not open multiply companies in Acumatica app for ios ?
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.
We have an automation schedule that prints our shipping labels every minute after the shipments have been confirmed. These prints are sent to our zebra printers and usually work without issue. Some cases the label does not print and there is no error.How can we reprint a label for a confirmed shipment? If we can identify which print job it is we can reprint it that way, but there is no way to preview the label and there are no identifiers in the print job screen to know which label is correct
Hi All, Sometimes I receive this error during authentication of system email. However, Sometimes, it works. Can you please help me to find the root cause of this error? I am trying to setup a system email.
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.