web application(rdlc)
-
I had created a rdlc in asp .net web application.But I have a problem.:confused: I have also created dataset for that.In my rdlc,employeeid,employee name,department,designation,date of works,time in,time out and working hours are there.In my procedure,there are four parameters are passed.Parameters are employee id,from date,to date,dept id,designation id.Problem is that I will have to get my report as employee id,employee name,department,today's date as a group.. eg: Company ID :ms4455 Employee Name :thanu Department :development Date :17/07/2010 time in ,time out and working hours will be as a report.Please help me to grouping this.Please give me a suggestion.I have to use sub report or not.
-
I had created a rdlc in asp .net web application.But I have a problem.:confused: I have also created dataset for that.In my rdlc,employeeid,employee name,department,designation,date of works,time in,time out and working hours are there.In my procedure,there are four parameters are passed.Parameters are employee id,from date,to date,dept id,designation id.Problem is that I will have to get my report as employee id,employee name,department,today's date as a group.. eg: Company ID :ms4455 Employee Name :thanu Department :development Date :17/07/2010 time in ,time out and working hours will be as a report.Please help me to grouping this.Please give me a suggestion.I have to use sub report or not.
Hi, you dont have to use subreports. Use a table within your rdlc and link that tables datasource to the datasource containg your working hours. Consider using seperate generic lists as datasources, which you add to your report file one by one. This makes it very easy to choose the correct datasource within your rdlc elements.