Recent Discussions
What´s the best way to add signatures to Documents / PDFs inside Aras?
Hi, we use the Office Connector and also PDF Watermarking for displaying Document States in the resulting PDFs. Certain Document types now must be signed by additional reviewers. To achive this, the first page of the document contains an area for the various signatures. One possible option is the use of digital signatures, which can be done by Adobe PDF readers. But this would require a download/reupload of the file. I wonder if there is also a way to sign documents automatically inside an Aras process? I assume the Watermark option is probably also suitable for adding signatures, but I haven´t tried this yet and I am not sure if this is recommended. Does anyone have experience in handling signatures and can give me some best practice tips? Many thanks! Angela0likes7CommentsError on Replication Transactions vault
Hi to all, I have configured a cloud replication vault in addition to the Default vault hosted on a local server. However, I am getting the following error in the Replication Transactions: Error processing replication transaction for file with ID=7C78086233CC4E239A66960DDDD59AF0: SendRequestToVaultServer: The remote server returned an error: (404) Not Found. For reference: I have opened port 443 bidirectionally between the Application Server and the Vault Server. I have correctly configured the replication.config file on the Application Server. The InnovatorServerUrl value in the vault.config file is correct. The certificates are valid and correctly configured. What could be causing this issue?SolvedLog how many times an item has been opened
Hello, we are looking into measuring how much items/modules are beeing used by our users. I think if you add a client method to a item, that should be no problem with an OnShowItem event and then increase a number on a table somewhere. But is there are global approach that we don't have to insert such a method in each item we want to track? Any ideas are welcome, thanks in advance.Creating a package using the innovator admin
Hi everyone, I'm trying to create a package using Innovator Admin to capture a set of changes I've made to an Aras instance. The changes include custom ItemTypes, RelationshipTypes, Forms, Sequences, and various other modifications. My current approach is using the "Recently Modified" filter with "Modified By = Innovator Admin" and selecting everything that comes up. I then follow a rough dependency order when building the package (ItemTypes before Properties, Properties before Forms etc). However when I try to install the package to a fresh database I get errors. The main ones I've run into are: System.InvalidOperationException: Sequence contains no matching element in FixPropertyReferencesToSystemProperties An item with the same key has already been added for certain RelationshipTypes Foreign key constraint failures on the MORPHAE table when a referenced ItemType hasn't been installed yet A couple of specific questions: Is there a correct and reliable export order for package items in Innovator Admin? Are Properties bundled automatically with their parent ItemType on export, or do they need to be added explicitly? Is there a better way to capture all changes made in a given period, ideally something more reliable than the Recently Modified filter? Any guidance appreciated. ThanksFMEA Master
We aim to establish an FMEA Master function. Based on the information in the Master, DQD and PQD can be generated. Updates made in DQD/PQD should be reflected back in the Master, and updates in the Master should in turn propagate to all DQD/PQD generated from it, allowing users to decide whether to apply the updates. Does anyone have any advice on development and data structure design?Aras Innovator 2025 Installation Error - HTTP 500 on IIS
Hello, I am trying to install Aras Innovator 2025 on Windows 10 with the following configuration: SQL Server 2022 Express (HOURANI\TEW_SQLEXPRESS) IIS 10 ASP.NET 4.8 The installation wizard completed successfully, but when I try to access the application at http://localhost/InnovatorServer/Client/index.aspx I get HTTP Error 500. What I have done so far: SQL Server authentication is enabled Database InnovatorSolutions created successfully Users innovator and innovator_regular created with correct permissions InnovatorServer application added manually in IIS ASP.NET 4.8 enabled in Windows Features ASP.NET Core Hosting Bundle installed Question: What could cause HTTP 500 after a successful installation? Is there a specific IIS configuration needed for Aras Innovator 2025? Thank you!0likes1CommentImport Package Fails with Foreign Key Constraint Error
Hi Team, I am encountering an issue while importing a package in Aras Innovator. The import fails with a SQL foreign key constraint error related to Item Action. Error Message Import package 'com.aras.innovator.solution.PLM' failed with message: The UPDATE statement conflicted with the FOREIGN KEY constraint "FK__ITEM_ACTI__RELAT__002AF460". The conflict occurred in database "OGE_innovator31_RE7", table "innovator.ACTION", column 'ID'. The statement has been terminated. SQL: UPDATE [ITEM_ACTION] SET [RELATED_ID] = @related_id WHERE [ID] = @id Help me to solve this error. Thanks0likes1CommentAML Relationship traversal — filtering items from the related side
I have a relationship between two item types structured as: ItemTypeA (source) → RelationshipType → ItemTypeB (related) When querying from the source side it works correctly: <Item type="ItemTypeA" action="get"> <Relationships> <Item type="RelationshipType" action="get" select="related_id"/> </Relationships> </Item> But when I try to filter ItemTypeB by a property on ItemTypeA using the Relationships block, it returns zero results: <Item type="ItemTypeB" action="get"> <Relationships> <Item type="RelationshipType" action="get"> <source_id> <Item type="ItemTypeA" action="get"> <some_property condition="like">value%</some_property> </Item> </source_id> </Item> </Relationships> </Item> Using a SQL subquery in the where attribute is also not an option as Aras explicitly blocks it with: <Item type="ItemTypeB" action="get" where="ItemTypeB.id IN (SELECT related_id FROM RelationshipType WHERE source_id IN (SELECT id FROM ItemTypeA WHERE some_property LIKE 'value%'))"> </Item> Error:ItemAnalysisException SELECT is forbidden in whereattribute Question: Is there any supported AML syntax to filter items from the related side of a relationship without a separate pre-query? Or is a two-call approach the only supported option?0likes5Comments
Tags
- Methods117 Topics
- ItemTypes107 Topics
- Version 1299 Topics
- Forms98 Topics
- Relationships97 Topics
- JavaScript85 Topics
- Installation70 Topics
- Workflows68 Topics
- AML68 Topics
- Server Methods53 Topics