acumatica

Acumatica Purchase Order Receipt API Can not find PO Order Nbr

本秂侑毒 提交于 2021-02-11 17:10:36
问题 I am trying to create a Purchase Receipt with a detail line item that is on a Purchase Order. When I do this with the API, I get an error back saying that the PO could not be found in the system. I can add line items fine if I do not reference the PO, but as soon as I reference the PO the API errors. The PO number is valid and the item is on the PO. I can do this manually in Acumatica with no problem and the PO is in fact available and like a said doing it manually has no problems. Here is

Acumatica Purchase Order Receipt API Can not find PO Order Nbr

旧城冷巷雨未停 提交于 2021-02-11 17:03:27
问题 I am trying to create a Purchase Receipt with a detail line item that is on a Purchase Order. When I do this with the API, I get an error back saying that the PO could not be found in the system. I can add line items fine if I do not reference the PO, but as soon as I reference the PO the API errors. The PO number is valid and the item is on the PO. I can do this manually in Acumatica with no problem and the PO is in fact available and like a said doing it manually has no problems. Here is

How do I return data for other branches for a user with access to only one branch?

馋奶兔 提交于 2021-02-11 13:32:05
问题 I found it very odd that the base installation of Acumatica did not contain the ability to document approved Manufacturer/part number for Stock Items, so I added this functionality to my customization project. The design allows each branch to define their own approved manufacturers and part number, but I need to allow a user with access to only one branch to see the approved manufacturers from other branches. My DAC's are SSINManufacturer (the manufacturer master) and SSINItemManufacturer

Receiving the Customer Summary

人盡茶涼 提交于 2021-02-11 12:24:19
问题 I hope things are going well. Could you please help me with the following question. Acumatica has the Customer Summary module. Link to the description - https://help-2017r2.acumatica.com/Wiki/ShowWiki.aspx?pageid=4d224cd8-6553-4930-872b-d667ddff891e I want to receive all Customers from this summary and their Currency Ending Balance column. But I cannot find the API to receive these Customers and their Currency Ending Balances. Could you provide a link to the API? Of course, if it is possible.

Acumatica Filtering PXSelector witth quick search

放肆的年华 提交于 2021-02-10 08:53:03
问题 I have a custom dac and pxselector like this : With quick search (red bordered search) I want to filter with every properties. For example with Waybill Type, Transportation Type, Status etc. But quick search works only for Reference Nbr. Of course you can filter from columns but in business requirements I need to filter from quick search. 回答1: You can use FastFilterFields property of the GridProperties element to achieve that. You need to add all the fields you need for the search function in

Acumatica Filtering PXSelector witth quick search

末鹿安然 提交于 2021-02-10 08:52:16
问题 I have a custom dac and pxselector like this : With quick search (red bordered search) I want to filter with every properties. For example with Waybill Type, Transportation Type, Status etc. But quick search works only for Reference Nbr. Of course you can filter from columns but in business requirements I need to filter from quick search. 回答1: You can use FastFilterFields property of the GridProperties element to achieve that. You need to add all the fields you need for the search function in

Why won't my PXSmartPanel display the correct data after the first execution?

人走茶凉 提交于 2021-02-07 10:45:48
问题 I am using a PXSmartPanel to display data from the current row and allow the user to make a choice before manipulating that data. The first execution works flawlessly. However, subsequent executions display the first execution's data. I don't think it's code related, but here's the dialog call: public PXAction<MXBatch> moveToQueue; [PXButton(CommitChanges = true)] [PXUIField(DisplayName = "MoveToQueue")] protected virtual void MoveToQueue() { MXBatch selectedBatch = Batches.Current; if

Update Custom Field on Popup

烂漫一生 提交于 2021-02-05 11:34:08
问题 I am having problem in updating custom field in popup model. I created a customer field 'UsrCustomerNote' in Customers page which created the following DAC Extension. namespace PX.Objects.CR { public class BAccountExt : PXCacheExtension<PX.Objects.CR.BAccount> { #region UsrCustomerNote [PXDBString(1000)] [PXUIField(DisplayName="Customer Note")] public virtual string UsrCustomerNote { get; set; } public abstract class usrCustomerNote : IBqlField { } #endregion } } And I added field control in

How to retrieve the filtered records

柔情痞子 提交于 2021-01-29 20:09:06
问题 Say my Transactions view has five lines. If I set a filter on Quantity to show only those less than 10 I'll end up with this : My question is how do I access these two records as what's shown in the grid ? Transactions.Select() gives me all/unfiltered five rows. I've implemented the view delegate and can see the filtered rows from there. But are they stored somewhere else as a cached object or something ? TIA 回答1: The example below creates a button on AR Document Release that marks all

IFRAME in acumatica form

旧巷老猫 提交于 2021-01-29 18:17:16
问题 I am trying to call an external URL from Acumatica from using iframe. I have tried this and it did not work <asp:Content ID="cont2" ContentPlaceHolderID="phF" runat="Server"> <px:PXFormView ID="form" runat="server" DataSourceID="ds" DataMember="Document" AllowCollapse="False" Width="100%" Height="100%" TabIndex="100"> <Template> <div> <iframe src="Site Url"></iframe> </div> </Template> <AutoSize Container="Window" Enabled="True" MinHeight="200" /> </px:PXFormView> </asp:Content> 回答1: I have