Hi community,
I have a custom button inside Form that leads to a custom Method. This Method calls a second client Method with aras.evalMethod. The second Method does a few checks and then opens a "confirm" dialog. User have to press OK or cancel the…
I want to update part bom quantity based on the data in Excel I registered the IOM.tdl in the VBA tool and wrote the following VBA code (based on the manual):
Dim f As New IomFactory 'must use the New keyword Dim innov As Innovator 'Establish User Credentials…
Hello Innovators,
I am currently trying to integrate the IOM.dll with .NET Core 8. Has anyone successfully managed to get it working? If not, are there any recommended workarounds or alternative approaches?
Looking forward to your insights.
Best…
In the system the "Id", and "config-id" are the item name. For Document item, the id is the document name(screenshot below). I need the id property, the one that is unique, to be added to the properties of Document item.
I have this method but it doesn…
Hi community,
we can use getErrorString() and getErrorDetail() to catch error information from failed queries.
getErrorString() only contains a short description, while getErrorDetail returns the short-description + some long text + some XML content…
hello,
i have been able to update the extended property of a part through aml but i'm looking fo a sample code to understand how to do it with iom(innovator object model)
thanks,
Lucas
hello,
My initial goal is to have a confirm pop up when using the action to create a new revision.(for parts)
I have an action that run a simple client method like this:
if(confirm("creation of new major revision")) {
//here i want to launch the…
hi,All
'my code
'This is the code I tried to write in VB
Me.fetchRelationships("File") Dim file as Item = Me.getRelationships("File")
Dim t_file_id as string If file.getItemCount()>0 Dim fileCnt as Integer=file.getItemCount()
For x=0 To fileCnt…
I'm trying to integrate the IOM.dll into a .net core application and I get the error below.
"Could not load file or assembly 'Aras.OAuth.Model, Version=12.0.0.21092, Culture=neutral, PublicKeyToken=524d880b05474146'. The system cannot find the file…
hi All,
I used the getAssignedActivities() method from outside aras to find 14 pieces of data. But when I try to get the ID field using getItemByIndex(i).getProperty("ID"), he returns null
//my code
Item activities = inn.getAssignedActivities…
I am setting a property of type item using the setPropertyItem from JavaScript code as below: var Item = innovator.newItem("Material", "get"); Item.setAttribute("select","id"); Item.setProperty("id", gridRow.entity.ExistingVariantMaterialId); Item =Item…
I need to take a "Requirement Document" item_number, find all the related "Requirement Document Requirements" and their "Requirements".
Looking at the solution for Unit 8 in the v12 Developing Solutions guide I got a pretty good idea how to do this…
Querying a SQL view I built in SSMS from an Aras server method:
string SQL_View = "innovator.my_custom_sql_view";
string SQL = "select * from " + SQL_View; Item SQL_qry = inn.applySQL(SQL);
This is quick for me because I do a lot in SQL, but I know…
Hi,
I am trying to get part all revision with maximum generation using IOM:
below are the entries:
Item Number Generation Revision
Testnumber1 1 00 Testnumber1 2 00 Testnumber1 3 00 Testnumber1 4 00 Testnumber1 5 00 Testnumber1 6 00 Testnumber1…
When I use applyAML, I got this error.
But my AML is correct.
An error occurred while parsing EntityName. Line 8, position 67.System.Xml.XmlException: An error occurred while parsing EntityName. Line 8, position 67.
Hi, I have a doubt.
There are two methods that we must program in the innovatorServer service that runs on the server side:
Send Email Reminders: used to execute reminders (onReminders) Check Escalations: this is to execute the scaled activities.…
Hi,
I have created one method called set_project_name in VB and run this method on OnAfterLock of " GRIL Project " ItemType
Dim inno as Innovator = Me.getInnovator()
Dim projectID as String = Me.getID()
Dim AML_to_getProjectName as String = "<AML…
I am trying to complete workflow assignment with AML but it is acing weird.
My request xml looks like given below:
<Item action="EvaluateActivity" type="Activity">
<Activity>DE33049EBA694267A44CA41A002E7C51</Activity>
<ActivityAssignment>99E2CFE208154E4FBD70E75DE6AB4B74…
Hi,
I am trying to create a Project using Aras.IOM API. I have given all the mandatory fields values, like target start date, target finish date, project name etc.... but still error is thrown:
<SOAP-ENV:Envelope xmlns:SOAP-ENV=" ">schemas.xmlsoap.org…
Hi,
I am designing a small Windows Forms application, which will allow users to add/delete/view an item to/from Innovator database directly.
From this application I can add Document and its attachment, now I want to open that document, and for that…
I have been trying to use IOM on 11SP9 but I'm unable to get this code working...
// url = "">myserver/InnovatorServer";
url = "">myserver/.../InnovatorServer.aspx";
var myConnection = IomFactory.CreateHttpServerConnection(url, db, user, password…
I couldn't find IOM.dll file which is referenced in 11.0 of the Programmer's Guide.
"A .NET version of IOM.dll can be found in the \Utilities\Aras Innovator <Version> IOM
SDK\.NET directory on the CD Image and may be copied to another location and referenced…