Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post May 25, 2011 05:50 AM by asma_wakeel
Member
218 Points
94 Posts
May 23, 2011 12:33 PM|LINK
Hi all, I am working with asp.net reporting using RDLC file. Everything was working fine but now when I add a new dataset, an error occurs.
I have no more info than this, to provide you people to diagnose the problem. Have anyone idea what would be happening?
I just want to add a new dataset.
Contributor
2410 Points
544 Posts
May 23, 2011 02:09 PM|LINK
Maybe you have a reference to the PrecisionCareEntity.
Try to remove it and add it again, and check if it solves your problem.
May 23, 2011 02:24 PM|LINK
How to remove reference and from where? I have a solution that has four projects, UI, BLL, DAL and Entity.
From where should I remove reference and how to add it again?
May 23, 2011 02:31 PM|LINK
If you expand References, maybe you can see a warning icon on one of those references.
Try to find it :)
May 23, 2011 02:32 PM|LINK
I have excluded all references of PrecisionCareEntity from my UI project. Still...
10 Points
8 Posts
May 23, 2011 11:10 PM|LINK
I have the same issue. Different vendor .dll. Any fix yet?
May 24, 2011 05:14 AM|LINK
It is not fixed yet, I'll feel glad to let you know when it will be fixed. Please do let me know as well if you find any solution.
May 24, 2011 08:09 AM|LINK
Try to include the reference on your project.
The error says that is expecting that reference.
May 25, 2011 05:50 AM|LINK
I solved the problem by following this method:
1. Add a datasource in your report viewer i.e. in aspx page
<asp:ObjectDataSource ID="odsAdmission" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="SelectAdmissionForReport" TypeName="PrecisionCareBLL.AdmissionBLL.AdmissionLogic"> <SelectParameters> <asp:QueryStringParameter Name="admissionId" QueryStringField="Id" Type="Int32" /> </SelectParameters> </asp:ObjectDataSource>
2. Go to its designer and click on the arrow appearing in front of datasource, and click on it.
3. Click Refresh Scehma and Save the file.
4. Go to its code again and comment the datasource code.
5. Try adding new dataset in rdlc. It will allow adding new datasets now.
I solved my problem in this way. Hopefully it will be helpful for you as well. Don't forget to response here if it is helpful.
asma_wakeel
Member
218 Points
94 Posts
Microsoft Report Designer: Undocumented Error
May 23, 2011 12:33 PM|LINK
Hi all, I am working with asp.net reporting using RDLC file. Everything was working fine but now when I add a new dataset, an error occurs.
I have no more info than this, to provide you people to diagnose the problem. Have anyone idea what would be happening?
I just want to add a new dataset.
tiagosalgado
Contributor
2410 Points
544 Posts
Re: Microsoft Report Designer: Undocumented Error
May 23, 2011 02:09 PM|LINK
Maybe you have a reference to the PrecisionCareEntity.
Try to remove it and add it again, and check if it solves your problem.
http://geekswithblogs.com/TiagoSalgado
@TiagoSalgado
asma_wakeel
Member
218 Points
94 Posts
Re: Microsoft Report Designer: Undocumented Error
May 23, 2011 02:24 PM|LINK
How to remove reference and from where? I have a solution that has four projects, UI, BLL, DAL and Entity.
From where should I remove reference and how to add it again?
tiagosalgado
Contributor
2410 Points
544 Posts
Re: Microsoft Report Designer: Undocumented Error
May 23, 2011 02:31 PM|LINK
If you expand References, maybe you can see a warning icon on one of those references.
Try to find it :)
http://geekswithblogs.com/TiagoSalgado
@TiagoSalgado
asma_wakeel
Member
218 Points
94 Posts
Re: Microsoft Report Designer: Undocumented Error
May 23, 2011 02:32 PM|LINK
I have excluded all references of PrecisionCareEntity from my UI project. Still...
bailey_james...
Member
10 Points
8 Posts
Re: Microsoft Report Designer: Undocumented Error
May 23, 2011 11:10 PM|LINK
I have the same issue. Different vendor .dll. Any fix yet?
asma_wakeel
Member
218 Points
94 Posts
Re: Microsoft Report Designer: Undocumented Error
May 24, 2011 05:14 AM|LINK
It is not fixed yet, I'll feel glad to let you know when it will be fixed. Please do let me know as well if you find any solution.
tiagosalgado
Contributor
2410 Points
544 Posts
Re: Microsoft Report Designer: Undocumented Error
May 24, 2011 08:09 AM|LINK
Try to include the reference on your project.
The error says that is expecting that reference.
http://geekswithblogs.com/TiagoSalgado
@TiagoSalgado
asma_wakeel
Member
218 Points
94 Posts
Re: Microsoft Report Designer: Undocumented Error
May 25, 2011 05:50 AM|LINK
I solved the problem by following this method:
1. Add a datasource in your report viewer i.e. in aspx page
<asp:ObjectDataSource ID="odsAdmission" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="SelectAdmissionForReport" TypeName="PrecisionCareBLL.AdmissionBLL.AdmissionLogic"> <SelectParameters> <asp:QueryStringParameter Name="admissionId" QueryStringField="Id" Type="Int32" /> </SelectParameters> </asp:ObjectDataSource>2. Go to its designer and click on the arrow appearing in front of datasource, and click on it.
3. Click Refresh Scehma and Save the file.
4. Go to its code again and comment the datasource code.
5. Try adding new dataset in rdlc. It will allow adding new datasets now.
I solved my problem in this way. Hopefully it will be helpful for you as well. Don't forget to response here if it is helpful.