Does anyone knows how can I create a new project from the template using server method?
Thank you,
Does anyone knows how can I create a new project from the template using server method?
Thank you,
Hi, I'm having a problem with the new 10.0 release. I'm admittedly not an expert when it comes to configuring windows server, so please let me know if I screwed something up.
The install is fine, no errors, and I can log in (looking through other posts on this topic, I gather that this means SQL is working properly). The problem arises when I try to add new items or edit existing ones, I get a 404 error, stating that the page doesn't exist. The page it's looking for is indeed not there. Here's what it's looking for...
C:\Program Files (x86)\Aras\Innovator\Innovator\Client\scripts\tabItemView
I've tried everything I can think of, and searched for days for answers. I have created multiple new VMs, both server 2008 R2 and Win 7 x64. No matter what I do, it's the same thing.
I have searched the entire Innovator folder for that "tabItemView" file, and it's not there. I even extracted all the files from the installer, and it's not there.
Would any of you that got it working, be willing to check if that file is there in your installation?
Thanks,
Michael
Is there a way to disable the Save As functionality on particular ItemTypes?
I want to delete an Item, but before delete I want to check some conditions. I cannot use onBeforeDelete event as this event does not get fired if there is this item is a related item. So I am using onDelete event, but when I am trying to use this event, in the method code after the condition is proper I am deleting the the item. But in this case once again the onDelete server event is getting called recursively.
In code, I tried setting the serverEvents = 0, while deleting the item. But it is somehow not working.
Is there any other way for this?
Hi,
I am working on a workflow where I add and remove assignments as the workflow progresses. On the close of one activity, I run the AML
<Item type='Activity Assignment' action='delete' "+
"id='"+myResult.getItemByIndex(i).getID()+"'>"+
"</Item></AML>
I do this for a couple assignees on an activity, then I add an assignee afterwards. This seems to work fine, but then at some later point I get the following error.
The UPDATE statement conflicted with the FOREIGN KEY constraint "FK__ACTIVITY___RELAT__54A177DD". The conflict occurred in database "InnovatorSolutions", table "innovator.IDENTITY", column 'ID'. The statement has been terminated. in SQL: UPDATE [ACTIVITY_ASSIGNMENT] SET [RELATED_ID] = @related_id,[PERMISSION_ID] = src.[PERMISSION_ID], [TEAM_ID] = src.[TEAM_ID] FROM ( SELECT [PERMISSION_ID], [TEAM_ID] FROM [ACTIVITY] WHERE [ID] = @srcId ) AS src WHERE [ID] = @id
I have no clue what is going on, thought I would see if anyone has seen this before. Any pointers as to where to look for an issue would be helpful as well.
Thanks,
Scott
When defining a Relationship, Innovator automatically creates an Itemtype for the relationship item. Innovator automatically sets the versioning discipline of the relationship itemtype as "Baseline". Does anyone know what the setting of "Baseline" does? I assume that the "Baseline" setting is only activated when the relationship itemtype is also set to "Versionable"
Thanks
Hi:
When I install aras 11.0, the error 1913 appears before completion:
Error 1913: Could not update the INI file C:\Uers\Public\Desktop\Aras Innovator.url. Verify that the file exists and that you can access it.
I check the file that exist and attribute is normal (not readonly).
How can I resole it ? Otherwise installation will rollback.
Thank you!
Any enabled Innovator user, can write an application using the IOM.dll and then export all Items for which he has "get" access, and nobody will notice.
This is a threat to the system performance, uptime and most of all a data security risk.
To prevent this, perhaps Aras needs to create a way to only let "trusted applications" log in to Aras.
A mechanism so external programs must be registered and authorized
- Christoffer
Hi Friends
I want to add viewable files to existing CAD files in aras using IOM APIs.
If anyone have code for that then please share it or guide me to how to do that.
Thanks
Rahul
I'd like to be able to add a hyperlink to an MS Outlook email to take someone directly to a document. For instance, I'd like to send an email to an engineer asking them to look at a particular section of a document, and have a link in the email so they can just click on the link and be taken to the document in Aras Innovator. There is a post on how to add a ULR (I think they meant URL) to an email, but it doesn't quite seem to work in the way I'm hoping it can.
Is there a upgrade/migration path to upgrade from Aras PLM 9.3 to 11.0? We find 9.3 very limiting and unfriendly because of the IE requirement.
Unless I am missing something, I am unable to figure out how to enable File Checking In and Checking Out in ARAS 11.0 . It does not appear as a right-click option anymore, nor can I find it on the new file management pop-up window (when you click on the blue paper icon).
Has this been omitted from this release? I know file management has been redesigned in this release, but I can't imagine that the ability to check out, and check back in files has been completely removed.
Thanks for the help.
Everyone:
I'm working on a C# 4.0 WPF application and I want to be able to view all vaulted files for a part number. I have the part->partdocument->document->documentfile->file stuff done to produce a listing of files for the partnumber. Just not sure how to access the file from the vault and display it. I don't need to add/delete files, just view.
One final twist, I need to display the document in it's native application. .pdf need to display in Acrobat, not the acrobat browser add-on. For some reason with our Innovator setup, when users try and view large .pdf files with browser, the files hang up. We have the files open in their native app and that works with no problems. Because of this issue, I can't use the one solution in the forum on how to open vaulted files with a URL string.
Thanks for the help,
Dale Williams
Hello,
At startup of Innovator 11 under firefox, I just got today a message after login which never appeared after months of using Innovator 11:
"Unable to download the latest Feature Tree"
Innovator seems fine besides this message.
Any idea what it is?
Jeroen
Hi,
I am designing a small Windows Forms application, which will allow users to add/delete/view an item to/from Innovator database directly.
As we are not giving direct access to communicate with Innovator instance I am not using IOM.dll in my project. So, I am doing things through SQL queries. To add an item I did this,
To generate Ids:
public static string GetUniqueID(int Size)
{
char[] validChars = new char[36];
validChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".ToCharArray();
byte[] dataToAttr = new byte[1];
using (RNGCryptoServiceProvider RNGCSP = new RNGCryptoServiceProvider())
{
RNGCSP.GetNonZeroBytes(dataToAttr);
dataToAttr = new byte[Size];
RNGCSP.GetNonZeroBytes(dataToAttr);
}
StringBuilder IDstring = new StringBuilder(Size);
foreach (byte b in dataToAttr)
{
IDstring.Append(validChars[b % (validChars.Length)]);
}
return IDstring.ToString();
}
This creates ids like : OB7NFUVH2SSGTANCCSY058EV8JOAU070, 2V35DB7328ULFYWMM43FMNCIQJZ5N9X0
To add an item:
string newID = GetUniqueID(32);
SqlCommand addItem = new SqlCommand("insert into [innovator].[NIS_ASSET](NAME, CONFIG_ID, ID, CREATED_BY_ID, CREATED_ON,PERMISSION_ID,KEYED_NAME,IS_CURRENT,GENERATION,MAJOR_REV,IS_RELEASED,NOT_LOCKABLE) values('" + NameTxt.Text + "','" + newID + "','" + newID + "','30B991F927274FA3829655F50C99472E', '" + dtNow + "', 0 , '9122CD065CF04141B8EFE263FC80BEA4','" + newID + "',1,1,'A',0,0)", connMIF);
addItem.ExecuteNonQuery();
Here for PERMISSION_ID , I gave 'Default Access' item's id as value, for CREATED_BY_ID 'Innovator Admin' Item's id a s value and the same generated Id(newID) for KEYED_NAME.
Executes successfully. But when I try to open this in Innovator, recieving this "2V35DB7328ULFYWMM43FMNCIQJZ5N9X0 is not valid". After clicking OK form opens and displays data as well. But I am unable to edit and delete that item. Seeing the same error if I try to Lock/Delete the item.
Is this because of the ID that I am creating? or anything wrong with the query? Please give me some suggestions over this and help me.
Thank you,
Erg R
Hello.....this may sound like a dumb dump question but does anyone know if once a Project is created from a template, if I can Save As (make another copy of the created project)? It's "grayed out" for me. I modified the project with additional Tasks, linked profiles, etc. and would like to use that project to Save As another project.
Thank you!
Hi All
I get really annoying error occasionally and I have no idea what is the cause of the error. The error occurs for no apparent reason. I did a form with some buttons which have set field event on click (it could be some other event). Events runs java script methods which have no errors and work perfectly. Form and buttons act like normal. However, when I run form repeatedly in short time (because of testing) It could happened that when click on button with set field event, I get an error (bottom picture). Since this time this error occurs every time when I click on any of button which have set field event! It doesn’t help to restart the Aras in browser as well as restart the server. Error then suddenly disappear with no reason usually in about 1-12 hours. Thereafter everything work perfect and field events no longer occurs error.
It is really annoying because it repeats and I don’t know what the cause of the problem is. Does have anybody similar problems or have idea what is going wrong?
Thanks for the help,
Jan Cvek
Hi there,
I am new to Innovator. I want to add member to Change Specialist I, but the dropdown menu for 'actions' is empty. The account I use is root. I noticed the dropdown menu in 'New Part' is empty too.
Aras Innovator Version 10.0 SP2 Build: 5907
FireFox ESR 31.7.0
Would you please help me on this issue? Thanks.
Best,
Gang