How to open a browser window of connected PLM System (ARAS) from Inventor ilogic?

How to open a browser window of connected PLM System (ARAS) from Inventor ilogic?

Jakob_Hamburg
Advocate Advocate
566 Views
2 Replies
Message 1 of 3

How to open a browser window of connected PLM System (ARAS) from Inventor ilogic?

Jakob_Hamburg
Advocate
Advocate

Hi,

this is a quite specific question:

We use Inventor with Vault, but on top we have a PLM system called ARAS Innovator.

Our inventor files get a part number from the PLM system by using an add-inn, so the part in Inventor and in PLM-system share the same number.

The PLM-system runs in the web-browser (google chrome).

Unfortunately our add-inn does not support a function to open the part I am working on by one click in the PLM-system.

(I have to copy the part number and go to the plm-system's window in the web-browser and search there for the part)

So my question is: is it possible to open a browser window of connected PLM System (ARAS Innovator) from Inventor ilogic?

I share a screenshot ot the PLM System (ARAS Innovator) because my explanation might be difficult to follow. 

 

Jakob_Hamburg_0-1685014754666.png

 

 

0 Likes
Accepted solutions (1)
567 Views
2 Replies
Replies (2)
Message 2 of 3

JelteDeJong
Mentor
Mentor
Accepted solution

Opening a web page is not difficult:

Dim webAddress As String = "http://www.example.com/Innovator/client/" & iProperties.Value("Project", "Part Number")
Process.Start(webAddress)  

But I did not see a part number in the url. If that is true it means the part number is communicated in a different way and that might be a bigger problem.

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

0 Likes
Message 3 of 3

Jakob_Hamburg
Advocate
Advocate

Thank you.

Yes, you are totally right, there is no part number in the url. I noticed, too.

I understand that it is the bigger problem to figure out how to communicate the part number to the PLM system.

0 Likes