i want to create a report that shows a hierachy of several entities.
i read in the manuals and samples about master and detail reports using sql as datasource and parameters in the subreports for filtering the correct rows but i want to create the report with the data from already existing entities.
Example of Data Structure:
CompanyData:
string companyName;
string companyAddress;
List<DepartementData> departements;
DepartementData:
string departementName;
List<PersonData> persons;
PersonData:
string Name;
string Birthday;
so this would be a structure with one master report and a subreport that has a supreport itself.
i plan to pass the companyData as datasource to the master report but how can i pass the data on to the subreports?
Thanks for Help
i read in the manuals and samples about master and detail reports using sql as datasource and parameters in the subreports for filtering the correct rows but i want to create the report with the data from already existing entities.
Example of Data Structure:
CompanyData:
string companyName;
string companyAddress;
List<DepartementData> departements;
DepartementData:
string departementName;
List<PersonData> persons;
PersonData:
string Name;
string Birthday;
so this would be a structure with one master report and a subreport that has a supreport itself.
i plan to pass the companyData as datasource to the master report but how can i pass the data on to the subreports?
Thanks for Help