Error loading Recipient Relationship tab of DCO and EDR change management giving error when refreshing the CM tab
Hi, when opening ECO/EDR the first time there is no Proplem opening the Recipients Relationship tap, but when opening another a second ECO/EDR the recipients Relationship tap doesnt load. when trying to refresh the item it gives an error message 'The method "cui_ivicb_refresh_click" failed.' only when changing to another relationship tap i can click on refresh with no error, then if changed back to Recipients the recipients list will appear. this issue was not there before the updates were done on .NET code. please help me if you have an idea about this problem and how to approach it. thanks0Views0likes1CommentTrouble Exporting HTML Table to Excel in Aras Innovator Custom Button
Hello everyone, I've been working on a custom button within the search tab for parts in Aras Innovator. The goal is to export a list of specific parts and their properties through a query and display them in an HTML table. Here's a snippet of the code I'm using to convert the HTML table to Excel and download the Excel file: [embed:dc8ab71f-3b98-42d9-b0f6-e21e02a0f8e2:4ac1465e-c931-489c-a19e-bb242bc1c5f6:type=javascript&text=var%20htmlCode%20%3D%60%0A%3Chtml%3E%0A%3Chead%3E%0A%3Cmeta%20http-equiv%3D%27Content-Type%27%20content%3D%27text%2Fhtml%3B%20charset%3Dutf-8%27%20%2F%3E%0A%3Cscript%20src%3D%27https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fxlsx%2F0.16.9%2Fxlsx.full.min.js%27%3E%3C%2Fscript%3E%0A%3Cscript%20src%3D%27https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2FFileSaver.js%2F2.0.5%2FFileSaver.min.js%27%3E%3C%2Fscript%3E%0A%3Cscript%3E%0Afunction%20substituteTableToExcel%28%29%7B%0Avar%20table%20%3D%20document.getElementById%28%27all_Parts_AML%27%29%3B%0Avar%20sheet_name%20%3D%20%27ALL_Parts_AML%27%3B%0Avar%20workbook%20%3D%20XLSX.utils.table_to_book%28table%2C%20%7Bsheet%3A%20sheet_name%2C%20cellStyles%3A%20true%7D%29%3B%0Avar%20wbout%20%3D%20XLSX.write%28workbook%2C%20%7B%20bookType%3A%20%27xlsx%27%2C%20bookSST%3A%20true%2C%20type%3A%20%27array%27%2C%20cellStyles%3A%20true%20%7D%29%3B%0AsaveAs%28new%20Blob%28%5Bwbout%5D%2C%20%7B%20type%3A%20%27application%2Foctet-stream%27%20%7D%29%2C%20%27ALL_Parts_AML.xlsx%27%29%3B%0A%7D%0Adocument.addEventListener%28%27DOMContentLoaded%27%2C%20function%28%29%20%7B%0AsubstituteTableToExcel%28%29%3B%0A%7D%29%3B%0A%3C%2Fscript%3E%0A%3Clink%20rel%3D%27stylesheet%27%20type%3D%27text%2Fcss%27%20href%3D%27styles.css%27%3E%0A%3C%2Fhead%3E%0A%3Cbody%3E%0A%24%7BexcelTable%7D%0A%3C%2Fbody%3E%0A%3C%2Fhtml%3E%60%3B] return htmlCode; I'm encountering issues with the export functionality. When I click the custom button, the HTML table is generated correctly, but the Excel file download doesn't seem to work. Could someone kindly review the code snippet above and provide any insights or suggestions on how to troubleshoot and resolve this issue? I would greatly appreciate it. Thank you in advance! Version 12.0 SP8Solved0Views0likes2CommentsComments after return in Client Method leads to 'event handler' error
Hi community, I discovered a strange behavior in Innovator 12. Let´s assume we have a regular Form with a button that uses the following onClick event: alert("This is just a test button event"); return; // Todo for later: add additional validation This Method will lead to the following error Message: 'Event handler' failed with the message: ReferenceError: func $ BD472BC271CA48E88DE6CB0C7E3CED75 $ _onclick2 is not defined I noticed that the Method works fine, as soon as I remove the comment behind the return. Of course in normal code we most of the time do not have any additional comments after the final return. But when creating new Methods, I often place later used code at the bottom so I can take care for it later. Comments after the return statement were never any problem in Innovator 11. It took me quite a few days until I finally discovered why certain parts of my new code never worked. Is there an explanation for this new behavior? Are there any other new design rules to consider when programming in Innovator 12? Would be happy about any hints to avoid similar effects! Thanks! AngelaSolved13KViews0likes10CommentsHow to focus on particular tab on item form populated?
Hi, I can now swich the display / non-display of tab according to the conditions,by referring to Disable a Relationship Tab. But this time, unintended tab is focus on. How do I focus on particular tab on item form populated? Please,help me.5KViews0likes3CommentsError when try to upload a file ARAS 12
When I try to upload a file in my Item Type, I receive the error Multiple Errors: DoPhysicalFiles - SendRequestToVaultServer: invalid_client -, it was working normally, but today start to show this issue. Someone pass by this issue and can help me? Thanks a lot.0Views0likes4CommentsInstruction: Hiding the Open in Office Button
Hello everyone, Here is a short instruction on how to hide the Open in Office (Microsoft Office Connector) Button when viewing document items. This can be done without uninstalling / disabling MSO in case you want to prevent users from using the Toolbar Action button. Before: After: This can be achieved by taking these steps: Go to the root \Innovator installation directory of your Innovator instance Navigate to \Innovator\Client\styles Append common.min.css with the following CSS: [data-id="MSO_OpenInOfficeMenuButton"]{display: none!important;} I recommend also updating the regular common.css file with the same CSS but indented Save, clear browser cache and reload the Innovator webpage I hope this helps. All the best from Almelo. Daan1.6KViews0likes3CommentsARAS 12 - Before saving children's Item Type get the ID of the parent's Item Type
Hello everyone, Try explain, my scenario: I have the Item Types related: 1° Item type Authorization. 2° Item type AuthorizationTittle. 3° Item type AuthorizationTittleRelation (only to related). In the Authorization register view, I have the listing and button/link to register the AuthorizationTittle, the problem is when inserting the AuthorizationTittle, retrieve the id of the parent Authorization and set a field in the AuthorizationTittle to reinforce this FK. I know that this relationship is automatically created in the AuthorizationTittleRelation, the problem is the time, this table is only fed after doing a done on the Authorization parent record, and I need the information of who the AuthorizationTittle parent is before this action.1.2KViews0likes2CommentsLink in children's Item Type view to the parent's Item Type view
Hello everyone, Try explain, my scenario: I have the Item Types related: 1° Item type Authorization. 2° Item type AuthorizationTittle. 3° Item type AuthorizationTittleRelation (only to related). I need add a link or buton in AuthorizationTittle with a phisical link/url to open a view of your Authorization Parent. Thanks.Solved5.9KViews0likes12CommentsCustom CUI items in relationships - do I add them in the Parent or Child ItemType?
Hi community, Innovator 12 offers us the new wonderful possibility to use custom CUI elements in relationships. Let´s assume we want to add a custom button to the Part_BOM relationship tab. I know that I have to modify 'Client Style' in the corresponding ItemType. But do I have to do this in Part or Part BOM? 1. When I add my button in the Parent itemtype (Part) and use location 'ItemView.RelationshipsCommandBar' -> will my button be used in all related tabs? 2. When I add the button in the Child itemtype (Part_BOM) -> will it just be used only in the Part BOM tab? I haven´t found any sample for a custom relationship button in Innovator 12 so far. The existing ones are used on a global level. Maybe anybody has tried this already and can share some experience? Does the position have some influence to the Item context? For regular Actions we can choose the context to be Item or ItemType. I wonder if the same can be achieved with CUI elements. But I assume this question is worth an additional thread. Best regards! AngelaSolved3KViews0likes2Comments