Questions tagged [acumatica-kb]

The knowledge base for Acumatica, a cloud and browser-based enterprise resource planning system (ERP), which can be customized and extended via an SDK and interoperated with via a web services API.

Acumatica often refers to the ERP and CRM product offered by Acumatica, but can also refer to the Acumatica Cloud xRP Platform.

Acumatica development is done using C# and ASP.NET markup language for interface or pages. Querying the back-end database occurs through BQL, which maps to SQL Server or MySQL queries. New applications can be developed using Visual Studio, and a web-based customization environment allows users to extend and customize existing screens using the Acumatica Customization Environment IDE. Acumatica applications can be run from the browser, or on mobile devices using the native iOS and Android applications. Deployment can be done in public and private clouds, using single-tenancy and multi-tenancy modes.

327 questions
1
vote
1 answer

Additional GS1 codes support in Acumatica

We need to add support for GS1 Barcode Customer Part Number in the Purchases - Receive and Put Away screen, it is not supported by default and I can't a find a way to add it. From looking at the source code, it seems like I need to override…
David F
  • 11
  • 2
1
vote
1 answer

Acumatica: How to override Bill-To Address and Ship-To Address in Sales Order using the REST API

I am doing an integration with Acumatica. In my SalesOrder request, I am creating a Sales Order with Bill-To Address and Ship-To Address. After the request was made I have check in acumatica Sales Order that the Sales Order do not have the Bill-To…
1
vote
1 answer

Make Customer Email Field Unique

is there a way to make the account email unique in Acumatica Customer? I already tried the Duplication Validation in Customer Managements Preference but it seems that it doesn't work on Customer. I am thinking if it can be done on Customization…
1
vote
1 answer

Saving a file in FILES

I want to save generated text file in 'FILES' section on the Acumatica page, by clicking on the action 'Save File Up There'. This is my current code for generating the text file: string[] lines = { fileLine1, fileLine2, fileLine3 }; …
Stumped
  • 21
  • 4
1
vote
0 answers

Importing Vendors into Acumatica

I am trying to import Vendors into Acumatica from an Excel File. We already have Segmented Keys set up, where when someone creates a new vendor in the system it will auto number. However I am attempting to import vendor information and ideally map…
jessayut
  • 11
  • 1
1
vote
1 answer

Acumatica : Custom table schema causes error when publishing

I've got a custom project that I'm trying to publish on my development environment. I created a new SQL table called TRActivitySector, and I added its custom table schema to my project. Now, when I try to publish my project, I get a strange user…
AlexS
  • 53
  • 9
1
vote
1 answer

Smart panel reopen when press OK

I have a smart panel, when i press OK button then panel close and reopen again. what am i doing wrng? Please find my popup panel OK C# and popup html below. // Popup open code. public PXAction openPopup; [PXUIField(DisplayName = "Add",…
user_mat
  • 191
  • 2
  • 16
1
vote
1 answer

How to show Grid with detail form in Master detail form in acumatica?

I have master child relationship form. In child form, I have a Grid, I want my own "Insert" functionality so i just disabled "AddNew" Grid action button and Add new Custom button, Now what i want In custom Add button, I am calling child.Insert()…
user_mat
  • 191
  • 2
  • 16
1
vote
0 answers

Word Representation of the Amount field in Acumatica In Report Designer

Is there a way to convert the cents into words? This is what was used: [PXString(4000)] [PX.Objects.AP.ToWords(typeof(ARInvoice.curyOrigDocAmt))] [PXUIField(DisplayName="AmountToWordsEN")] Where the code was used
Chan Yik
  • 11
  • 1
1
vote
0 answers

Syntax error when querying Custom fields with Exclamation Mark via Contract-Based REST API

Why some custom fields contain an exclamation mark in their name ex.: Tasks_ParentNoteID!Subject and CustomerClassRecord.LocaleName!translatedName? I'm getting the schema of custom fields of an entity using the contract-based REST API…
Andi Hoti
  • 11
  • 1
1
vote
1 answer

How can I add a search field on my processing page?

I have created a custom processing page called "Kardex Process", by default it doesn't add a search field, and I want to include it. See the screenshot below: I want to include it as well as on the Release AP Documents screen, see the screen…
1
vote
1 answer

How do we attach report PDF/Excel file when i click on custom action on Sales order screen using Acumatica code

We have a requirement is to create new action on sales order screen and when we click on that custom action we are opening email activity screen to send an email in that email we want to attach a report PDF/Excel file without clicking report action…
BhavyaSri
  • 150
  • 10
1
vote
2 answers

Acumatica: JSON to Update User Defined Field Value in SalesInvoice

Is there any way to dynamically populate user-defined field value in SalesInvoice. I'm using REST API, and I need JSON example to add value to field. I'm using this to update the field. screenshot { "Attributes": [ { "AttributeID": { …
Ubaidullah
  • 33
  • 3
1
vote
0 answers

How to keep focus on a field that threw an exception?

I have some validation code for the entry of a field (EmployeeID) and when it fails validation I e.Cancel the upcoming events and throw an exception: protected virtual void _(Events.FieldUpdating e) …
user2527849
  • 61
  • 1
  • 6
1
vote
1 answer

Acumatica mobile push notification without using Business Event

How do I send mobile push notification without using Business Event ?
DChhapgar
  • 2,280
  • 12
  • 18
1 2
3
21 22