- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2014 03:18 AM
Hi Experts,
I want to create a related list for locations so that we can select multiple locations. Can anyone help me suggesting this please.
Thanks
Solved! Go to Solution.
- Labels:
-
Service Mapping

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2014 06:11 AM
It sounds like you want the many-to-many functionality based on your earlier requirement. - The ability to add multiple locations to a CI, and use those locations on multiple CIs (not exclusive to one.) Putting a field on the cmn_location won't get you where want to go. It was a simple example how to relate two records together. Here's what you'll need to do:
- Create a new table (e.x: CI Location [u_ci_location])
- Add two fields to the new table
- CI [u_ci] - reference field to table cmdb_ci
- Location [u_location] - reference to table cmn_location
- Add the related list to your CI form(s) and it will show locations
- (optional) Add the related list to your Location table, and it will show CIs
Hope that helps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2014 06:11 AM
It sounds like you want the many-to-many functionality based on your earlier requirement. - The ability to add multiple locations to a CI, and use those locations on multiple CIs (not exclusive to one.) Putting a field on the cmn_location won't get you where want to go. It was a simple example how to relate two records together. Here's what you'll need to do:
- Create a new table (e.x: CI Location [u_ci_location])
- Add two fields to the new table
- CI [u_ci] - reference field to table cmdb_ci
- Location [u_location] - reference to table cmn_location
- Add the related list to your CI form(s) and it will show locations
- (optional) Add the related list to your Location table, and it will show CIs
Hope that helps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2014 08:10 AM
Alternatively, you could look into a GlideList on the Change form that references the Location table. Not quite as elegant as the Related List, but just something to investigate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2014 11:01 AM
I would agree with cwilker - glidelist would be the easiest/quickest solution but it really depends on what you will be doing with this data..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2014 04:52 AM
I just want a option in the change form so that I can select more than one location.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2014 03:43 AM
Resolved. Thanks all for help.