acumatica

How to Customize screen AP Release All and AR Relase All in Acumatica ERP System

只谈情不闲聊 提交于 2019-12-11 00:45:36
问题 I have a problem in customize screen AR Relase All (AR501000). The problem was when I try to pass value of Invoice Number (Customer Order's Field) in screen Invoices And Memos (AR301000) by using screen AR Release All Process (AR501000) using checkbox. First, I create GLTranExtension like this below : using System; using PX.Data; using PX.Objects.CM; using PX.Objects.CS; using PX.Objects.PM; using PX.Objects.CR; using PX.Objects.TX; using System.Collections.Generic; using PX.Objects; using PX

Acumatica - Add additional buttons to Actions drop down to screen CT30100

本秂侑毒 提交于 2019-12-10 11:56:51
问题 I am trying to add a button to the Acumatica ERP screen CT301000 Actions drop down, I have added the button to the graph and modified the aspx to include the following in the PXDatasource=>CallbackCommands : px:PXDSCallbackCommand Name="TerminateRevenue" Visible="false" CommitChanges="True" However I am unsure how to add the the button into the Actions collection. does anyone have any ideas? Thanks in advance. 回答1: Hi I don't know which customization technique you're using, but you don't need

Acumatica change Shipping Terms on Sales Order creation

∥☆過路亽.° 提交于 2019-12-10 11:48:29
问题 I'm using Acumatica's contract based API to create sales order from an ASP.net application. I need to update the "Shipping Terms" field under the "Shipping Settings" tab on a Sales Order when I create it (see below), but I can not find the property to use on the ASP.net objects that are provided through the contract based API. How would I accomplish this? Here is my current code for how I create the sales order: using (DefaultSoapClient client = new DefaultSoapClient(binding, address)) { /

Acumatica - Creating customer payment method with api

独自空忆成欢 提交于 2019-12-10 10:36:08
问题 What is the correct way to create a customer payment method using the API? This will also answer how to work with a grid that has a key value pair vs just storing values into a particular field. This code has been in use and functioning correctly for almost a year now and then starting earlier this week it no longer works. // Connect to Acumatica context = new acumatica.Screen(); context.CookieContainer = new System.Net.CookieContainer(); context.AllowAutoRedirect = true; context

How Do I Create a Sales Order with Payment Settings through Acumatica API

大兔子大兔子 提交于 2019-12-09 23:58:26
问题 I am trying to create a sales order using the Acumatica Web Service API. I have been able to pass all the required fields except the Payment Settings. Our installation uses the Authorize.NET (PX.CCProcessing.AuthorizeNetTokenizedProcessing) add-in. Is it possible to interact with the Authorize.NET add-in through the API by creating a new payment method and authorizing payment so that the employees can work the order from within Acumatica and capture the payment there. Below is the code I am

How to do word representation of amount field in Acumatica Invoice Report (AR.64.10.00)?

China☆狼群 提交于 2019-12-09 19:19:44
问题 How to do word representation of amount field in Acumatica Invoice Report (AR.64.10.00)? 回答1: Create an un-bound field in DAC Extension for ARInvoice DAC. And use PX.Objects.AP.ToWords attribute. public class ARInvoicePXExt : PXCacheExtension<ARInvoice> { #region UsrAmountToWords public abstract class usrAmountToWords : IBqlField { } [PX.Objects.AP.ToWords(typeof(ARInvoice.curyOrigDocAmt))] public virtual string UsrAmountToWords { get; set; } #endregion } Use UsrAmountToWords field in AR.64

How to assign a business account to user in acumatica?

可紊 提交于 2019-12-09 03:26:19
问题 I am trying to assign an Business account to an user and not able to figure out how to do it. 回答1: I believe you are trying to customize Catalog form (SP700000) on Acumatica Portal site and getting Your user profile is not associated with any Business Account message. Associated business account check is done in constructor of the InventoryLineMaint Graph linked to this page and if not found; exception is raised which is correct by design. And that’s the reason you are seeing this message. To

Current logged in user for GI / Reports in 4.2

谁都会走 提交于 2019-12-08 11:39:52
问题 In Acumatica 4.2, is there a method to get the currently logged in user for a GI and reports? The "@me" was introduced in 5.x but I believe there was a way to do it before. We need to create GI's and Reports such as "My Customers" that shows all business accounts where the current user is the owner. 回答1: Add the AccessInfo table to your GI or report (cross-join) and you'll find the information you need. 来源: https://stackoverflow.com/questions/32467211/current-logged-in-user-for-gi-reports-in

Smartpanel text do not refresh

北战南征 提交于 2019-12-08 10:25:14
问题 I am displaying few textboxes on my custom smartpanel. The text to display is obtained by clicking each row in the grid and showed on smartpanel. However, the issue is whenever I click on first time any row, it displays correctly all text correctly but next time onwards it still shows the previous one and do not get refreshed. Here is the code I am using- public PXSelect<CRAcumaticaActivity, Where<CRAcumaticaActivity.activityID, Equal<Current<CRAcumaticaActivity.activityID>>>>

How to add an action and handler to the Process Shipments screen?

本小妞迷上赌 提交于 2019-12-08 06:36:06
问题 How do I add an action and handler to the Process Shipments screen? We want to add an action to the Action combobox on screen SO503000, and then add a handler in code to process the new action. We want to do this without having to override the huge switch/case statement for Action in the SOShipmentEntry graph. 回答1: The PXAutomationMenu attribute pulls from Automation Steps all actions, which have appropriate processing screen set up as Mass Processing Screen: To extend the list of actions