acumatica-kb

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 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

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

情到浓时终转凉″ 提交于 2019-11-28 06:39:39
问题 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

Custom field on CROpportunity doesn't display saved value since upgrading from 6.10 or 2017R2 to 2018R1

房东的猫 提交于 2019-11-28 04:52:50
问题 I made a DAC extension on CROpportunity in my customization project which was working well in 6.10 and 2017R2. Now I upgraded my site to 2018R1 and my custom fields don't work anymore. As soon as I save my record, the customized field goes blank even if the database saved the value correctly. Why is this happening ? 回答1: In version 2018R1, PX.Objects.CR.CROpportunity became a projection of PX.Objects.CR.Standalone.CROpportunity . In order for the projection to get its customized fields values

How to show images inside selector lookup?

霸气de小男生 提交于 2019-11-28 03:44:56
问题 What is the best way to show images alongside with other columns inside Inventory ID selector lookup on the Sales Orders screen: 回答1: 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

How to work with Assignment and Approval Maps in Acumatica via Automation Steps?

你。 提交于 2019-11-27 06:20:43
问题 I need to make usage Assignment and Approval Maps. What is template for usage of maps which are constructed at page EP205000? I made research in file coderepository.xml of Acumatica, and found there EPApprovalAutomation class. I wanted to use it, but it requires among arguments usage of class which implements IAssignedMap interface. It gives another problem, because IAssignedMap interface is internal, which gives another riddle, how to use IAssignedMap interface? What are alternatives? 回答1: