How do you find the UUID for an object

I have an error in a deployment and in looking at the deployment file it references an object by its UUID.  I can't seem to find the UUID, but I want to know what the UUID is for a specific object in the application to see if it is the offending object in the deployment.  How do you find out the UUID is for a specific object?  

  Discussion posts and replies are publicly visible

Parents Reply
  • +1
    Certified Lead Developer
    in reply to Chris.Gillespie

    What are you passing in for "ri!objectName"?  Did you just try directly passing in a constant or rule name in the expression editor, to watch how the function works, instead of just throwing it to a Rule Input?

    ri!objectUUID = getconstantorruleuuidbyname(ri!objectName)

    Why are you doing this?  If this is your Expression Rule code, it is evaluating whether "ri!objectUUID is equal to the result of the Get UUID by Name Function", which would always be a boolean (yes or no).  I thought you just wanted to get the UUID in question, in which case you just call the function itself and return that value.

Children