i am using the express version of report sharpshooter. i can create simple reports with no parent/child relations by just dropping a BBS onto the form and setting it up. Tho i dont see a possibility to set up a parent-child relationship between two bbs objects in a way that report sharpshooter understands.
any ideas ?
thanks.
You can do this and is just a design that you need to approach on your side. I have mentioned out here on forum posts, especially when dealing with reporting type of scenarios, that you can really move time to the left if you will download and look at the StrataFlix sample. It shows a great structure and format to creating reporting data sources.
Now in the StrataFlix sample, we populate all of the records for each BO at the same time and then filter out the child records through the exposed child BO property. However, you can perform a query at this point instead of applying a filter. So let's assume that you have something like this:
Public Readonly Property MyChildBO() As MyChildBOType Get '-- Populate the internal MyChildBO at this point End Get End Property
End Class
If you apply this logic using the layout and format of the StrataFlix reporting samples, then you should be right on track.
i did download and look at the strataflix sample. As from my posts above you may see, that i actually implemented it just like in the strataflix sample. the question in regards to fillbyparentprimarykey was in reply to a suggestion from Ivan as how to approach this with the childbo only having the records relevant to the current parentbo record that is being rendered at that time.