Maximo

 View Only
  • 1.  GET a MANAGE Asset URL

    Posted Wed October 05, 2022 02:38 PM
    Is it  possible to GET a given MANAGE Asset URL(to use in an external application so external users can click on a Link that brings them to the given MANAGE Asset screen) 

    In the available examples Maximo URL's it mentions: http://localhost/maximo/ui/maximo.jsp?event=loadapp&value=asset&uniqueid=1152
    Is there a way to know the unique ID tied to the asset? That can be obtained from some other GET call?
    Thanks!

    ------------------------------
    Miryam Kofman
    ------------------------------



    #AssetandFacilitiesManagement
    #MaximoIntegrationandScripting
    #Maximo


  • 2.  RE: GET a MANAGE Asset URL

    Posted Mon October 17, 2022 10:12 AM
    uniqueid for asset is ASSETID from ASSET table, if not mistaken.
    So, if You provide ASSETNUM to that external system, then You should also provide that ASSETID and then use it in creting links.

    ------------------------------
    Juris Flugins
    ------------------------------



  • 3.  RE: GET a MANAGE Asset URL

    Posted Tue October 18, 2022 12:11 PM
    Thank you Juris!

    ------------------------------
    Miryam Kofman
    ------------------------------



  • 4.  RE: GET a MANAGE Asset URL

    Posted Tue October 18, 2022 08:22 AM

    The Manage URL is slightly different so you'll want something like below for your URL:
    /maximo/oslc/graphite/manage-shell/index.html#/main?event=loadapp&value=asset&uniqueid=138

    Asset's unique identifier is the ASSETUID attribute. There is an ASSETID attribute and it in a lot of cases will be unique but will be kept the same when an asset is moved between sites.

    If you don't have the unique ID but have other fields (such as ASSETNUM), you could utilize the useqbe event. Something like:

    /maximo/oslc/graphite/manage-shell/index.html#/main?event=loadapp&value=asset&additionalevent=useqbe&additionaleventvalue=assetnum%3D11230

    That would apply a filter for that asset number. When only 1 record is returned it will open that record but when more than 1 is returned the user will start on the list tab and have to pick the correct asset. 



    ------------------------------
    Steven Shull
    ------------------------------