acumatica

Updating custom field is ending into infinite loop

送分小仙女□ 提交于 2019-12-02 10:57:53
问题 I have a custom field in AR Invoice and Memos (Screen ID AR301000) for the corresponding AP Ref. Nbr. And in the similar manager another custom field in AP Bills and Adjustment (Screen ID AP301000) for the corresponding AR Ref. Nbr. I am trying to update AP Ref. Nbr. on AR screen when user updates the AR Ref. Nbr. in AP screen. For example- I am on AR Screen Invoice 0001, I am updating AP Ref. Nbr. to abc01. System will automatically update the AP Bill abc01 with the corresponding AR Ref. Nbr

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

守給你的承諾、 提交于 2019-12-02 10:53:02
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>(); //oCmds.Add(konten.Actions.Insert); //--------------- adding header transaction -----------------//

Acumatica generic inquiry how to export more than one GI as xml

ぐ巨炮叔叔 提交于 2019-12-02 10:37:43
I know you can export one GI at a time to xml, I'm wondering you can select all user GI and export to XML as a backup. Thanks You can do this by creating a customization project and include all the generic inquiries you need in one package. The project can be exported and imported which includes all of your attached GIs. We do this already and works great. Do not forget to update from database when making changes before re-exporting. Simple list of steps if you have not created a project before: (using 5.30) System > Customization > Customization Projects > create a new project (save) Click on

Acumatica - sitemap item does not show in modern UI

筅森魡賤 提交于 2019-12-02 08:45:08
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-location="yes" updateable="True" /> <link from="MUISubcategory (SubcategoryID)" to="MUIScreen (SubcategoryID)

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

我与影子孤独终老i 提交于 2019-12-02 08:28:56
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).Products.Current; CROpportunityProductsExtNV productext = PXCache<CROpportunityProducts>.GetExtension

Cannot Customize using customize browser on portal

非 Y 不嫁゛ 提交于 2019-12-02 08:23:55
I associated a business account for an unrestricted external user and have provided both portal admin and customizer roles but still cannot customize on the portal and when I try to open a customization project, it says I have a case open with Acumatica on the same issue. The problem is the main project browser page is missing from the portal site map. Run the SQL statement below on the database and restart the Acumatica instance. UPDATE 6/15/2018 - I ran into this issue again on another upgrade and my original script below didn't work because the Position field was wrong. I have adjusted it

Updating custom field is ending into infinite loop

 ̄綄美尐妖づ 提交于 2019-12-02 08:13:54
I have a custom field in AR Invoice and Memos (Screen ID AR301000) for the corresponding AP Ref. Nbr. And in the similar manager another custom field in AP Bills and Adjustment (Screen ID AP301000) for the corresponding AR Ref. Nbr. I am trying to update AP Ref. Nbr. on AR screen when user updates the AR Ref. Nbr. in AP screen. For example- I am on AR Screen Invoice 0001, I am updating AP Ref. Nbr. to abc01. System will automatically update the AP Bill abc01 with the corresponding AR Ref. Nbr. with 0001. I have below code written to achieve this but it runs into infinite loop as both it is

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

倾然丶 夕夏残阳落幕 提交于 2019-12-02 08:07:46
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. 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 service in Windows to talk to the registry. However, the remote registry service has to be enabled on the

How to make the Inventory Item Label (IN619200) to print one label per unit of each item received?

一曲冷凌霜 提交于 2019-12-02 07:36:56
Out-of-box Acumatica Inventory Item Label report ( IN619200 ) is designed to print multiple labels for the line item on the receipt only when the item is serialized. We will be modifying report that will allow user to select a receipt number and have the system generate the number of labels based on the quantity received for each item regardless if they are serialized or not We will be modifying out-of-box Inventory Label Report (IN619200), which would print each label per quantity received rather just one for all quantity for non-serialized stock item. We need a user table and need to

Prevent update of note/files on disabled views

人盡茶涼 提交于 2019-12-02 06:15:40
I noticed that notes and files can be inserted/updated/deleted on grids (assume forms the same) when the grid does not allow for update, insert, or delete. Is there a way to turn this off? I am writing a custom page and want to prevent a user from modifying anything including notes and files. My grid contains the following: MyGrid.AllowInsert = false; MyGrid.AllowUpdate = false; MyGrid.AllowDelete = false; Anything I am missing to prevent this? Is there something I can add in the aspx page of my custom screen to prevent note/file edits? I'm late to the party, but here is how I removed the