Handle resources in Aras Project Management possible?
Hi, We have Parts/Products in the PLM, that require additional testing until the product is ready for production. We currently evaluate, what´s the best way to organize these tests. The Aras Project Management feature might be a suitable solution, as it can easily be used to schedule and define certain Activities. In our case, some of the Activities require additional resources to be completed. These can be special measurement equipment or personal to handle the tests. Some of these resources are limited and can not be used more than once at the same time (e.g. heat chamber). I have to admit, that resource planning may not be something, that is typically done by a PLM system. But in our case it would be a helpful feature, as people don´t have to leave the PLM environment for creating and planning new products. Managing tests in the PLM would also help to insure the traceability back to the requirements that are used as basis for the test plans. Is it currently possible to do some basic resource planning in the current Project Management release? Or are there any other options in Aras available that can be used for this task? Thanks again! Angela15KViews0likes8CommentsActions menu not working in Project Management
When I hit the Actions button in the Project Tree view, I just get a little dot, which suggests that the menu has opened underneath the search/header bar, making the actions unavailable. Any idea how to fix this? I'm running Version 12.0 SP6 Build: 20133 Thank you!8.4KViews0likes6CommentsInter-Project Connections?
Hello, I'm curious if it's possible to link multiple projects together as one. Background: My team is working on building a racecar from scratch. As such, there are a ton of parts that need to be designed and kept track of. Each of these parts have inter-dependencies and as such a lot of their start dates for certain tasks are actually determined by some other part. Idea: I'd like to have each sub-system/part have it's own project so the individual project managers can easily see what they care about. But, since all the Projects are heavily inter related, I'd also like someway of easily keeping track of the entire car design process without having to jump between different Projects. At a minimum, what I want to do is be able to display the Gantt chart's of all the projects simultaneously together to get a picture of how the entire car design is progressing and show any inter-dependencies between projects. Note the Gantt chart doesn't have to include all the details of each individual group; it can simply show the different phases. What I'd really like to do is be able to have the Projects be able to automatically communicate with each other on start and end dates. For example, if Project A has a phase that can't be considered complete until Project B is completed, I want that relationship to be modeled in each project. I know that Program Items exist built in, but there isn't much documentation about them and it looks to simply be a container of Projects rather than doing anything with those projects together. Is there a built in way to do what I'm asking? If not, does anyone have any ideas as to how to implement this kind of system? Thanks6.1KViews0likes3CommentsUnable to install project Management
Dear all, I am looking to install project management from ARAS Update. When I give the install path and other DB details and click "Install", it stands still. There is no error message received either. Please suggest if there are any pre-requisite applications I need to install. Of course, I have installed ARAS Innovator and Technical documentation module from ARAS UPDATE. Thanks in advance and appreciate your help here to get ARAS PM module installed.3.7KViews0likes1CommentNew or Add from Relationship Tab without Locking Parent
Hello All, Working in context of a Project, but could be applied elsewhere. I need to have the ability to relate (via new or existing Items) against the Project. The Relationship view provides this ability, but only when the parent item is locked for editing. I want to remove that restriction in terms of locking the parent for editing. Is there a good way to do this? In other words... don't have to hit edit, but unlock the grid and buttons circled in green. Our users are most familiar with the context of things being in a project, so I'd like to maintain the use of the relationship view if possible. Thanks!3.2KViews0likes4CommentsWhat should we fill in the information to carry out Project scheduling
Hi experts! I've just started to use "Project" function for the Process management. In the searching menu, we can see the ph1 ph2...many phases. But if we create a project, we cannot find any reference to set a mile stone, leaders(not Alias) , targets...etc. Do you have good information or user guide URL in this case?1.9KViews0likes1CommentRefresh challenge of CommandBarSectionItem - Dropdown
Dear Aras community, This is my first discussion thread, so please let me briefly introduce myself. I am the team manager of a small CAD/PLM team at a German company, and we recently managed to transition from a 20‑year‑old PLM system to a new one that all of you should know. We went live in December 2024, and little by little the Aras fan base in our company is growing. 1. UseCase introduction We handle many of our customizations ourselves, and we make extensive use of Aras Program Management. To track the work we do for our customers, everything needs to be linked to a customer project. That’s why we implemented a project_origin_id on every relevant business object (Part, Document, CAD, ECO, and other processes). If a user is connected to a project, then anything they add (create) is automatically associated with that project. This is visible through relationships on the Project ItemType. Users can connect themselves to a project via an action on the project called Assign Project Context. Now, after more than one year of running the system in production, we want to improve this feature for changing the project context. The idea is to have a dropdown list that displays every relevant and active Project item. When the user selects a project from the list, the OnClick method will attach the user to that project: (user.project_context_id = dropdown.value). In the following screenshot you will see our implementation so far: 1: should refresh the list (2) 2: dropdown list with all relevant customer projects 3: opens the current selected project in a new tab 4: detach the user from the project and should refresh the list (2) 2. The challenge The dropdown initialization and the OnClick method work as expected. However, we are facing a very frustrating challenge: the dropdown list needs to be refreshed whenever Button 1 or Button 4 is clicked. Unfortunately, we have not been able to implement this. At the moment, the dropdown list is only re‑rendered when the user logs in to Aras. 2.1 Include Events We could identify that the Command Bar Section Item of the dropdown item has a configuration field which is called IncludeEvents. When you select an event named Update State than the dropdown list gets initiallized too often: Perform a search on an random ItemType -> 4 x dropdown init gets started Perform a refresh an an random ItemType form -> 2x dropdown init gets started Switch tabs -> 2x dropdown init gets started Commit a change on a random ItemType -> 2x dropdown init gets started Because of performance issues we can not use IncludeEvents. 2.2 Initialiaze Dropdown We did manage to initiallize the dropdown when other Buttons gets clicked. But the values and labels does not gets rendered in the dropdown item. Below you see our code example for Button 1 (refresh). let dropdown = control.data.get("user_project_scope_list"); // Name = Name des CommandBarItem (DropdownListe) if (!dropdown){ aras.AlertError("The dropdown list was not found. This is an unknown error. Please contact your administrator."); return; } let newOptions = {value: "testID", label: "Project Test - Customer Test"}; dropdown.options = newOptions; dropdown.value = "testID"; // TODO: INIT oder REFRESH, ODER RENDER aras.AlertSuccess("The button has been refreshed."); When I am debugging this method I see that in my local scope the object this: Window exist. this.mainLayout.init seems to initialize the whole window but I only want to initialize my dropdown button. 3. The Question So my questions is if anyone of you did manage to new render a Command Bar Section Item in the header of Aras which is found under Command Bar Section: com.aras.innovator.cui_default.mwh_header? This would helps us a lot to gets this new feature Live in 3 weeks. I would appreciate every hint you can give me. Regards Patrick Ps.: Sry for formating ... I could not publish my very first discussion here without any disallowed html tags.Solved111Views0likes8CommentsDocumentation in German
Hello, We are a company operating over 2 continents, specialized in flower delivery, and some of our coworkers in Germany don't speak fluent English. Our current Aras installation is all in English, and I was wondering if there was a way to launch the software in a different language based on your location? If that's not the case, I was hoping to find documentation for Aras in German, as it may help our remote team get started. Thank you very much!65Views0likes2Comments