This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Search and add a specific major revision of a part

BMoberg - Wednesday, July 9, 2014 5:34 AM:

On a simple form, I register a serial number for a manufactured part (property: string), and then I need to add the part with the corresponding major revision (property: item type, part)

That is, I need the search dialog to show all part revisions, and not just show the latest, so that I can select the correct part revision to be added to the form.
Any suggestions on this?

Thanks

 



DavidSpackman - Sunday, July 13, 2014 11:31 PM:

Hi Benny, 

I don't believe is possible with the Aras client without creating a custom dialog.

See the Revisions dialog of any versionable item (i.e. Part) to see how an example of what could be done. (You can find the code in revisionDialog.html under Clientscripts)

 

Dave



Eric Domke - Thursday, July 31, 2014 8:52 AM:

With the right advanced search, you can get the default Aras search dialog to show multiple revisions.  In particular, you need to add criteria similar to generation > 0.  For example, see the screenshot below:



DavidSpackman - Thursday, July 31, 2014 8:30 PM:

Thanks for the tip Eric.



BMoberg - Monday, August 4, 2014 4:47 AM:

Thanks Eric!