is250sp
Newbie
Karma: 0
Posts: 5
|
 |
« on: March 18, 2011, 08:11:24 pm » |
|
I have a relationship in the Ticket object to display the Person.Displayname. It has the following parameters...
Relationshiop: SC_REPORTEDBY_TO_PERSON Child Object: PERSON Where Clause: personid = :reportedby
On the SR app, I added a textbox field with Attribute = SC_REPORTEDBY_TO_PERSON.Displayname and it works. Now I want to display the person's Location. The problem is that on the Person table, Location is stored as an ID value. How can I do multiple joins to Locations table to get the location description? The join would be...
where ticket.reportedby = person.personid and person.locationsite = locations.description
|