This topic is locked

Reports

12/7/2007 8:55:55 AM
ASPRunnerPro General questions
stanl author

I have a set of core data that has a one to many with 3 other tables. I need to put together a report that shows the core data followed by each of the other 3 sets of data, each in it's separate space.
In an old MS Access world, I would create the main report and a subreport for each of the 3 tables all related by core ID and combine into a single report. Can anyone offer suggestions on how I would accomplish this with ASPRunner?
Thanks in Advance!

Stan
Example:
This is generated in one report
[Core Data]

Postion Number1 Date Department Funding
[Advertisement Table] (linked by Position Number to Core Data)

Advertisement1 Date Type Cost

Advertisement2 Date Type Cost

Etc.
[Interview Table] (linked by Position Number to Core Data)

Interview1 Date Candidate Name

Interview2 Date Candidate Name

Etc.
[Offer Table] (linked by Position Number to Core Data)

Candidate Name Offer date Status

____
[Core Data]

Postion Number2 Date Department Funding
[Advertisement Table] (linked by Position Number to Core Data)

Advertisement1 Date Type Cost

Advertisement2 Date Type Cost

Etc.
[Interview Table] (linked by Position Number to Core Data)

Interview1 Date Candidate Name

Interview2 Date Candidate Name

Etc.
[Offer Table] (linked by Position Number to Core Data)

Candidate Name Offer date Status
___
Etc.

Sergey Kornilov admin 12/7/2007

It looks like some manual coding is required.
I would build a custom query that pulls data from all for tables and order data by position number. Then I would use events to insert a row with header when new group or subgroup starts.

stanl author 12/7/2007

If you get a chance, could you add a little more info so I can head in the right direction. I have the data joined and sorted, but unsure what event and header row you mean.
Thanks again!

Stan

Sergey Kornilov admin 12/8/2007

Stan,
the event I'm talking about is "List page: After record is processed".
I don't have a sample code for this task.

stanl author 12/8/2007

Thanks for trying...
If I find a solution, I will post back.
Stan