acumatica

Adding additional filter field on process shipments

本小妞迷上赌 提交于 2019-12-05 06:24:55
问题 I have added a new custom field to SOShipment and SOShipmentFilter. I am trying to use it to filter the grid for Process Shipments and I am having problems with the code. I have done other customizations where I have extended code but I was able to call the baseHandler first and then execute my snippet when it returned. However when I override the delegate function, it just sets up a template with a return to baseMethod. When I put my code in to include the new filter field, I get compile

Create custom User Control for Acumatica

烂漫一生 提交于 2019-12-04 14:55:15
问题 I am attempting to create a custom User Control that is usable in the Acumatica Framework. Documentation is very limited so I was hoping someone may have some experience/examples of how best to implement? It appears possible by creating a WebControl derived from PXWebControl and creating a global JS function with a matching name. 回答1: To create a custom User Control in an easy way, you need to: Open Customization of your project (System - Customization - Customization Project) On the left

Filter Inventory by cross reference

久未见 提交于 2019-12-04 06:31:27
问题 I want to customize the filtering of inventory by cross reference along with other properties. I have added two other cross reference items for a stock item like this. And now I want to customize, inventory filter in any other forms by the Alternate Type's Alternate Id value. Thank you! 回答1: There is no simple way to add search capabilities over Stock Item's Alternate IDs without a customization. Also, keep in mind that we are talking here about the one-to-many relationship between Stock Item

How to pass line item custom field value to sales order from opportunity?

℡╲_俬逩灬. 提交于 2019-12-04 06:30:53
问题 I have a custom line number field in opportunity product tab for customer to re-sequence the selected products and the grid is sorted on custom field value. I am trying to pass the value from opportunity to sales order which also having a similar field. the following code i have tried and it did not work PXGraph.InstanceCreated.AddHandler<SOOrderEntry>((graph) => { graph.RowUpdated.AddHandler<SOLine>((cache, args) => { CROpportunityProducts product = (adapter.View.Graph as OpportunityMaint)

Acumatica - sitemap item does not show in modern UI

会有一股神秘感。 提交于 2019-12-04 05:51:18
问题 I just added a Sales Commissions report to sitemap and it shows in classic UI but not in modern UI. When I search for it in modern UI, result returns nothing. How my sitemap node looks like in project.xml: <SiteMapNode> <data-set> <relations format-version="3" relations-version="20160101" main-table="SiteMap"> <link from="MUIScreen (NodeID)" to="SiteMap (NodeID)" /> <link from="MUIWorkspace (WorkspaceID)" to="MUIScreen (WorkspaceID)" type="FromMaster" linkname="workspaceToScreen" split

How to properly set up a site map addition in a customization project

别等时光非礼了梦想. 提交于 2019-12-04 05:50:49
问题 I've tried to add custom site map items to a customization project, but it doesn't seem to work. When attempting to add items, the list shows many duplicates of screens, making it impossible to tell which one is correct (do I select all of them?). If I name the screens something unique and then add them, they still don't show up in a new site where the package is then published. I cannot get this to work. Is there a protocol listed somewhere that shows the proper way to add sitemap items to a

How to conditionally hide PXTabItem inside an Acumatica screen?

三世轮回 提交于 2019-12-04 04:55:11
问题 I want to HIDE the Sales Order Line Commissions Tab, but I only want the Tab Hidden for a Specific Role. Is this possible? 回答1: Option #1: Using PXTabItem VisibleExp property This approach works perfectly with fairly simple declarative conditions, which utilize input control values from a particular container ( PXForm is most commonly used for this scenario). For example, to hide the Sales Order Commissions tab for orders of the TR type, you should compose VisibleExp as follows: <px:PXTabItem

Changing column name dynamically

随声附和 提交于 2019-12-04 02:33:25
问题 I have a Header / Detail custom screen where I'm manipulating which grid columns display based on a dropdown selection in the header. This works fine, but now I'd like to change a few column names as well. Using the documented syntax, I cannot get this to work. I can't see what I'm doing wrong - nothing seems to make any difference. I've attached to process and put a break point at this event, and it's hitting the line - but the system seems to just ignore it: protected virtual void

Create custom User Control for Acumatica

半腔热情 提交于 2019-12-03 09:16:48
I am attempting to create a custom User Control that is usable in the Acumatica Framework. Documentation is very limited so I was hoping someone may have some experience/examples of how best to implement? It appears possible by creating a WebControl derived from PXWebControl and creating a global JS function with a matching name. Hayk To create a custom User Control in an easy way, you need to: Open Customization of your project (System - Customization - Customization Project) On the left side, you can see your screens in your customization. Find screen that needs or add needed screen. Go to

Populate custom field while creating sale order from opportunity

南笙酒味 提交于 2019-12-02 20:55:57
问题 I have created a custom field Contact on SO screen (SO301000). Now I need to populate these field when user Create Sales Order from Opportunity screen (CR304000). New custom field Contact is based on Customer selected in Opportunity. I can see that Customer is automatically populated when I create Sales Order from Opportunity as it is by designed. However, how can I do that same for the custom field. I have tried extending existing CreateSalesOrder method but it seems it is not helping.