acumatica

Why can't Acumatica find a view?

人走茶凉 提交于 2019-11-29 18:16:51
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 publish the customization project. I published the customization project, but the error persists. To my

How to add Attribute Support to out-of-box Sales Order Entity?

丶灬走出姿态 提交于 2019-11-29 18:01:06
Out-of-box Acumatica Sales Order (SO301000) does not have attribute support. How to extend attribute support to Sales Order entity in Acumatica? At the very core, your entity main DAC must have GUID column ( NoteID ) to reference CSAnswers table and must have field that identify the class of the Entity. We will make use of Order Type to define list of attributes to gather particular order type-specific information. Create a Graph Extension for SOOrderTypeMaint Graph and declare data view to define list of attributes for a particular order type. We will be using out-of-box CSAttributeGroupList

Get report output in PDF fromat via Acumatica REST API

点点圈 提交于 2019-11-29 16:38:27
Is it possible to get PDF output of the report generated as a result of the action invoked for the particular screen via REST API ? For instance, we want to provide users of the external application with the ability to execute "Print Invoice/Memo Form" action for a particular Invoice in the AR Invoice screen in Acumatica . They expect to get Invoice Form in PDF format as the result of the call. If there is no such option, maybe there is a way to generate a link which will bring the user to the Invoice form report executed with the specified set of parameters values. Acumatica login information

Auto confirm shipment when create shipment from Sales Order by Automation Step

半世苍凉 提交于 2019-11-29 13:08:46
As title, i want to auto confirm shipment when I Create shipment from Sales Order screen by automation step. Thanks all. SOShipmentEntry docgraph = PXGraph.CreateInstance<SOShipmentEntry>(); docgraph.Document.Current = docgraph.Document.Search<SOShipment.shipmentNbr>(ShipmentNbr); foreach (var action in (docgraph.action.GetState(null) as PXButtonState).Menus) { if (action.Command == "Confirm Shipment") { PXAdapter adapter2 = new PXAdapter(new DummyView(docgraph, docgraph.Document.View.BqlSelect, new List<object> { docgraph.Document.Current })); adapter2.Menu = action.Command; docgraph.action

How to enable a custom field on PO301000 when the PO is in Open status?

。_饼干妹妹 提交于 2019-11-29 12:35:14
I have added a customization to the PO Entry screen, PO.30.10.00. The customization adds four date fields, a combobox text field, and a string(10) field. Right now, the fields are only editable when the PO is on hold. The user wants to be able to edit these fields at any time. They are using these fields to keep track of different POs and will build Generic Inquiries on them so they can communicate the statuses of the POs by maintaining these fields. The Promise Date is editable when the PO is in Open status. We would like these custom fields to be editable like the Promise Date is. The

Hiding a tab from the user interface dynamically

心不动则不痛 提交于 2019-11-29 10:51:25
I have a page with a PXTab control and want to show or hide individual tabs on the page dynamically. How can I control visibility of tabs at runtime? You can do it in one of the following two ways: By setting a VisibleExp property on PXTabItem in ASPX page By enabling/disabling AllowSelect property of the view that serves as a DataMember of the grid that is displayed on that tab Method 1 – VisibleExp In this method, you directly write the conditions under which the tab should be visible in the screen's ASPX code. <px:PXTabItem Text="Tax Agency Settings" BindingContext="tab" VisibleExp=

How to show images inside selector lookup?

一笑奈何 提交于 2019-11-29 10:21:56
What is the best way to show images alongside with other columns inside Inventory ID selector lookup on the Sales Orders screen: PXGridColumn with the Type property set to Icon is used to show images inside PXGrid containers: <px:PXGridColumn DataField="ImageUrl" Width="300px" Type="Icon" /> Such column is capable of showing images from 2 sources: Sprites row.ImageUrl = string.IsNullOrEmpty(row.ImageUrl) ? "main@Fail" : "main@Success"; URLs: row.ImageUrl = @"http://www.acumatica.asia/acumaticawwwsite-acumaticainc.netdna-ssl.com/wp-content/uploads/2014/09/acumatica-2.png"; To add a column of

How to display product availability in Opportunity Products Grid footer?

妖精的绣舞 提交于 2019-11-28 14:38:23
In Sales Order documents grid footer. It displays the product's availability. How to do the same in Opportunity products grid ? More so, how do you enforce it to be displayed at the footer instead of a simple grid column ? Is there such attribute ? Thanks for the replies. If we compare to sales order, the sales order line gets its value from LSSOLine during Availabilty_FieldSelecting . The wire-up on the page is on the tab via StatusField="Availability" . We can do something similar by adding an unbound extension field and then during a field selecting fill in the value. An alternative would

How to add Attribute Support to out-of-box Sales Order Entity?

风格不统一 提交于 2019-11-28 12:35:23
问题 Out-of-box Acumatica Sales Order (SO301000) does not have attribute support. How to extend attribute support to Sales Order entity in Acumatica? 回答1: At the very core, your entity main DAC must have GUID column ( NoteID ) to reference CSAnswers table and must have field that identify the class of the Entity. We will make use of Order Type to define list of attributes to gather particular order type-specific information. Create a Graph Extension for SOOrderTypeMaint Graph and declare data view

Save data to different company

ε祈祈猫儿з 提交于 2019-11-28 12:00:44
问题 We've got code to use the Acumatica Web Services inside of an Acumatica BLC, because we want to save data to a different company. I was made aware of another way to do this without using the Web Services - something such as a 'company context' or the like, but I'm not able to find any references to this. Is there an existing example to create a graph of a screen with a different company context in order to save data to that company? 回答1: To save data to a different company, you should execute