acumatica

How do I rename the Column Name on Acumatica Customers screen?

老子叫甜甜 提交于 2019-12-12 04:13:19
问题 How do I rename the Column Name on Acumatica Customers screen? I tried the below method on other screens, but for the customers page, it does not seem to be working: PXUIFieldAttribute.SetDisplayName<PX.Objects.CR.CRRelation.BAccount__AcctName>(this.Transactions.Cache, "Customer Name"); 回答1: Not sure which Customers screen are you referring but AR.30.30.00 does not have view called Transactions out of the box. Also, SetDisplayName in your case should take 3 parameters - PXUIFieldAttribute

Acumatica DAC Extension won't pull data

北城以北 提交于 2019-12-12 03:37:20
问题 Having a very frustrating time with a DAC extension. I've created a series of UDFs for CustSalesPeople, they show up on the page, and I can fill them with data. When I went to access them programmatically I get a slate of zeros instead of their values. In the code below it successfully sets usrCommissionTotal to the amount of row.commisionPct. All other values come through as zero. What am I missing? 回答1: UsrCommisson1 field is of decimal type. Acumatica requires all DAC fields to be of a

Customize Release AP Document in Acumatica System

假如想象 提交于 2019-12-12 03:28:43
问题 I have a question about the BLC in Acumatica. As we know release process in screen Invoices And Memos (AR301000) using ARInvoiceEntry BLC that is invokes ARDocumentRelease static method ReleaseDoc. And ReleaseDoc invokes virtual ReleaseDocProc method, which creates GLTran Records. My question : did this condition also imlemented in APInvoiceEntry BLC that invoikes APDocumentRelease static method ReleaseDoc. And ReleaseDoc invokes virtual ReleaseDocProc method also ? because I have a

How To Retrieve An Attribute Field In StockItems In Acumatica API?

杀马特。学长 韩版系。学妹 提交于 2019-12-12 03:16:15
问题 I am wondering if a specific attribute can be retrieved in the Web Service API? I have tried IN202500.AttributesAttributes.Value when exporting but that listed all attributes of the inventory. I also noticed the attributes are saved in the table as [AttributeName]_Attributes in the Inventory table, is there any way of retrieving this? This is the code I am using (expecting it would retrieve the Attributes) IN202500Content IN202500 = context.IN202500GetSchema(); context.IN202500Clear();

Acumatica CustomFields not working on sales order create

别来无恙 提交于 2019-12-12 03:07:26
问题 I'm working on an Acumatica integration through ASP.net that creates Sales Orders in Acumatica via the contract based API. I am using version 5.30. There are certain fields that come standard on the Acumatica objects, and some that don't. For those that don't exist, I was shown a way here using the CustomFields property that you can add data to these fields when a sales order is created. This worked great for the SalesOrder object, however, when I tried this on the Contact object, it does not

How to replace images on Acumatica login page

主宰稳场 提交于 2019-12-12 02:35:27
问题 I need to replace images on the Acumatica login page with customization. I've tried creating a customization plug-in, but was not able to find the target with below code: string targetDir = Path.Combine(PX.Data.Update.PXInstanceHelper.RootFolder, "Icons"); Let me know if there is another way to do this. 回答1: The following content is from "Replacing Images on the Login Page" from Stack Overflow Documentation (archived here); copyright 2017 by RuslanDev; licensed under CC BY-SA 3.0. An archive

How To sum multiple fields in Acumatica (pxformula)

依然范特西╮ 提交于 2019-12-12 02:13:30
问题 I know pxformula could do it, but pxformula only accepts two argument parameters. how can i add (sum) multiple fields of the same DAC? can i nest it? thanks. some working examples would be appreciated, some other methods would also be appreciated. 回答1: If you do a code search on PXFormula you should find many examples. I usually search the code found in your site/App_data/CpdeRepository directory if you have access to a local site. If you are looking to perform a multi field calculations, you

What is an “AddOn” project?

心已入冬 提交于 2019-12-12 02:09:39
问题 I have an Acumatica instruction document that seems to be from a much older version of Acumatica. In the documentation, it mentions that I need to go to System -> Customization -> Manage -> Customization Projects and select the Visual Studio Drop Down -> Create AddOn Project. Currently I do not see the Visual Studio drop down as mentioned in this document. Does this option still exist in newer version of Acumatica? If so, how do I access it? If not, does anyone know what type of project I

How does Acumatica calculate LastDateTimeModified

一曲冷凌霜 提交于 2019-12-12 02:07:56
问题 I have recently noticed that retrieving the LastDateTimeModified (through the WebService API) from Acumatica gives me the date and time in a very different time zone - I am guessing GMT time. However when I view this through a Generic Inquiry it seems that it is showing the correct time - based on my Time Zone set up in the user profile. Is there a way to get the LastDateTimeModified in the correct time zone when retrieving from the Web Service API. I have attempted changing the Time Zone for

Deleting orphan records created by Snapshot restore

痴心易碎 提交于 2019-12-11 23:17:16
问题 I have many snapshot restorations in my instance. Due to which I can see there are orphan records (with Company ID in negative). It’s on many tables, not just this one. Is there a process or best practice to clean this out? Or do we go table by table to run delete scripts to records that are not valid companyid. Please suggest. 回答1: You can use the pp_DeleteCompany stored procedure to delete the orphan snapshots. Example: EXEC pp_DeleteCompany -1234567 (assuming the CompanyID is -1234567) 来源: