acumatica

how to use AllowEdit in Acumatica

孤街醉人 提交于 2019-12-23 16:27:26
问题 I'm having this problem: I'd like to try to make a pop up for CrossSection table page using AllowEdit = "true" , the pencil symbol has already showed, but it doesn't open anything, I already entered the page of CrossSection into hidden in SiteMap . Is there any step I miss to use AllowEdit ? How can I use AllowEdit ? 回答1: Along with PXSelector attribute and AllowEdit for PXSelector aspx control, make sure to set the primary graph for the DAC. The primary graph determines the default page

How to call Acumatica function from Report Designer?

依然范特西╮ 提交于 2019-12-23 05:23:56
问题 I have a Common function written in Acumatica and we use that on various Acumatica screen, we would like to use this function in report designer so we could print the value. Example: CheckBday() If we pass a customer code it shld check this customer birthday field and if it's today then it returns "Happy Birthday" Is it possible to call this common function in report designer to process? If so how can this be achieved in the report designer, any insight will be helpful. 回答1: You can use

Updating User defined field in POOrder while creating Drop ship PO

主宰稳场 提交于 2019-12-22 19:14:31
问题 I have to override function to create drop ship PO and update custom field in PO Table based on sales price margin goes below certain percentage. I have gone through the source code for POCreate. The PO is created through static function public static PXRedirectRequiredException CreatePOOrders(List<POFixedDemand> list, DateTime? PurchDate, bool extSort) How to override and add my logic to creating drop-ship PO? 回答1: The best way would be to attach event handlers on what you need. This is not

Checkbox control in a grid is not triggering fieldupdated event

落花浮王杯 提交于 2019-12-22 19:02:12
问题 I have a selected checkbox on a custom grid is not triggering the Fieldupdated event. protected void MyTable_Selected_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e, PXFieldUpdated del) { del?.Invoke(cache, e); var row = (MyTable)e.Row; if(row.Selected == true ) { // } } The following is the code in aspx page <px:PXCheckBox ID="edSelected" runat="server" AlreadyLocalized="False" CommitChanges="True" DataField="Selected" Text="Selected"> </px:PXCheckBox> DAC definition for the field

Cannot load a reference assembly for execution

家住魔仙堡 提交于 2019-12-22 01:25:46
问题 All of a sudden my website is not loading and giving me below error. I am running VS2017 with .Net Framework 4.7.1 on Windows 10 Home. [BadImageFormatException: Cannot load a reference assembly for execution.] [BadImageFormatException: Could not load file or assembly 'System.IO.Compression.ZipFile' or one of its dependencies. Reference assemblies should not be loaded for execution. They can only be loaded in the Reflection-only loader context. (Exception from HRESULT: 0x80131058)] System

Tabular Sub-report Property

对着背影说爱祢 提交于 2019-12-20 07:52:08
问题 I have a sub-report that retrieves ONLY one field, but it retrieves n values. This means it will be displayed in many rows. I want to display the sub-report result in a master report in ONLY one row (comma separated or Tabular). Is this applicable? I tried to make the sub-report Tabular = True, but it displays the results in the master report like (1 2 3) (space 2 space) (space space 3) Thanks 回答1: First of all, the tabular report must have at least one group. Try to set a property

Import Amount Paid in screen Bill And Adjusment using webservices API in acumatica system

非 Y 不嫁゛ 提交于 2019-12-20 07:25:06
问题 I need to import value of Amount Paid using webservices to Acumatica ERP System. Please refer to this screenshot below. I have already create some codes using Reference Number = "1700000016", DocType = "Bill", VendorRef = "SV-889-JKT-2", VendorID = "V000000030" and Amount Paid = "1,250,000". Please refer to this codes below. sCon.getLogin(username, password, url, context); AP301000Content konten = context.AP301000GetSchema(); //context.AP301000Clear(); List<Command> oCmds = new List<Command>(

Acumatica Configuration Wizard error: Can't get IIS Version on registry

▼魔方 西西 提交于 2019-12-20 05:58:01
问题 I tried to create a new instance on Acumatica Configuration Wizard. I get an error that says "Can't get your IIS version from the registry." although I already installed the IIS feature. I followed the instructions on what feature to install on the IIS. .net framework it uses is 4.6. 回答1: Apparently this problem still hasn't been fixed. And the suggested solution is not correct. The key to this problem is here: Microsoft.Win32.RegistryKey.OpenRemoteBaseKey They are using the Remote Registry

How to add custom business logic to Acumatica framework's Actions?

北慕城南 提交于 2019-12-19 12:00:11
问题 I added a custom field to SOShipment and I want to set its value when the CreateShipment action is invoked on Order Entry or through Process Orders screens. How do I do that ? 回答1: Create a graph extension for SOOrderEntry and add an Action method like this : using PX.Data; using System.Collections; namespace PX.Objects.SO { public class SOOrderEntry_Extension : PXGraphExtension<SOOrderEntry> { public PXAction<SOOrder> action; [PXUIField(DisplayName = "Actions", MapEnableRights =

Why can't Acumatica find a view?

风格不统一 提交于 2019-12-18 09:49:10
问题 I created a DAC extension mapped to an extension table off of SOShipment. I have two custom fields in the extension table that I'd like to add to the Sales Orders entry form, specifically the grid in the Shipments tab. When I go to the layout editor for this form and select the Grid: ShipmentList under the Shipments tab, there are no fields in the Add Data Fields tab on the right. Also, I see a yellow circle with this error in several places: The "ShipmentList" view is not found. Try to