up vote 7 down vote favorite
6
share [g+] share [fb]

I need to create some functionality in our SharePoint app that populates a list or lists with some simple hierarchical data. Each parent record will represent a "submission" and each child record will be a "submission item." There's a 1-to-n relationship between submissions and submission items. Is this practical to do in SharePoint? The only types of list relationships I've done so far are lookup columns, but this seems a bit different. Also, once such a list relationship is established, then what's the best way to create views on this kind of data. I'm almost convinced that it'd be easier just to write this stuff to an external database, but I'd like to give SharePoint a shot in order to take advantage of the automated search capabilities.

link|improve this question

80% accept rate
feedback

12 Answers

Proper Parent/Child in Sharepoint is near impossible without developing it yourself. There is one approach to that here: Simulate Parent / Child relationship in SharePoint 2007 with Folders & Content Types

(Note: This concerns SharePoint 2007. In 2010, Joins make this much easier)

link|improve this answer
The link is now dead; 404. – Steve Cooper Jun 8 '11 at 14:01
@Steve Thanks for the heads up, updated link and added one for SharePoint 2010. Still unsure if content should just be copied from peoples blogs, but coming back to a question 2 years later only to find broken links also isn't great) – Michael Stum Jun 8 '11 at 16:15
feedback

Do it in a separate database, create a page(s) with controls that surfaces the data and run search over that. Loses quite a bit of the SharePoint features though.

Otherwise it may be okay to create a custom field control that will allow you to lookup the data in the other list. The custom field control can be the one to "view" the related data. I know we have done it for parent child relationships between pages on the same list. Not 1-to-N though.

Tough choice either way.

link|improve this answer
feedback

My vote is "to write this stuff to an external database"

You miss a lot of things in Sharepoint things like transaction support, referential integrity, easy way of updating (compare SQL), reporting (using Reporting Services and a SQL database)... see sharepoint as a way to store documents and simple lists.....

The argument for Sharepoint is if it is a small application, no requirements on support for transactions, no need to import external data etc...

When people say Sharepoint is a development plattform there is a need to define whjat they think a development plattform is.

The latest rumours about Sharepoint 2010 tells us that there will be support for SQL server based lists in next version ..... which I think will at least move Sharepoint in the right direction ....

link|improve this answer
feedback

Take a look at SLAM, SharePoint List Association Manager, an open source project my company created and actively supports. SLAM allows you to synchronize SharePoint data to SQL, including any relationships between lists. SLAM, in addition to being very useful on its own, is really a framework intended to allow developers to create their own complex data associations using what we call SLAM type profiles. We have one out-of-the-box type profile which is part of the open source project which actually allows you to make a SharePoint list hierarchical using the nested set model. For more information, see this page on our codeplex site.

link|improve this answer
feedback

I do this a lot just using sharepoint, using a framework called AAA (Activity,Assignment,Artifact), which allows you to use lookup columns to link an assignment or artifact to a parent Activity. You then build a web part page with connected web parts that allow you to filter all assignments and artifacts by activity. For example, click next to a submission in the submission web part, and all of the submission items attached to that submission will show up. Works great.

link|improve this answer
Do you have a URL for that? I can't seem to find details on this framework. – Chris Farmer Nov 20 '08 at 21:27
Looks like this is the framework mentioned: endusersharepoint.com/?p=1147 – Harv Sep 4 '09 at 5:22
feedback

The other approach that you can look at using is persisting XML with a field in the item. This is the approach used by the Podcasting Kit (on CodePlex) to store things like ratings.

link|improve this answer
feedback

One possible method is to create a submission content type based on the folder content type and a submission-item based on item content type. Then you can store data hierarchically like in file system and also will work default views and search functionality.

Other way is to create lookup field that points to same list (list=”self”). This field will be used like reference to parent item and you will get list that contains recursively related data. To use this data programmatically will be ok but using views functionality will be little bit complex.

link|improve this answer
feedback

It's easy to do using a connected web part.

Create two lists:

Parent (Id, Title) Child (Id, Title, ParentId)

Create a new sharepoint page, add DataFormWebPart (displaying Parent) and another one for Child, set both of them to filter based on a QueryString parameter (use that Parameter to filter Parent.Id, and Child.ParentId) voila, you can display parent-child relationships. Now, adding children is more difficult, and that's the part I haven't worked out yet.

link|improve this answer
feedback

One of of the ways how to implement master/detail functionality in SharePoint http://www.sharepointdrive.com/blog/Lists/Posts/Post.aspx?ID=6

link|improve this answer
feedback

I agree with Michael Stum. There are lot of such discussions on this parent-child relationship list topic, however, arguably no accepted answer emerged.

To summarize all the solutions suggested, we can boil it down to three groups.

  • web part. solutions like SharePoint Cascaded Lookup are most reliable yet easy way to go. Needless to say, you need to pony up for that though.
  • rumor has it that JQuery is an option. But I have not achieved it so far.
  • There are lot of blogs which describe some workaround. In this thread there are several of them. But most majority of them require code. Hope this helps.

  • link|improve this answer
    feedback

    We can do this in SharePoint 2010. For details, please check out :

    http://extreme-sharepoint.com/2011/10/19/rdbms-features-sharepoint-2010/

    link|improve this answer
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.