cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with viewer crystal reports for visual studio 2012

Former Member
0 Kudos

Good day, Sir:

When I ran my application wih visual studio 2012 for web aplication

my reports display only lines and I don't know what is the problem.

My computer have installed:

Crystal reports por visual studio 2012

Crystal reports 2011.

Visual studio 2012.

I apreciate someone help me.

Thank's

Jesús

Accepted Solutions (1)

Accepted Solutions (1)

former_member183750
Active Contributor
0 Kudos

The viewer is not configured correctly. Follow these steps:

1) Copy the crystalreportviewers13 folder from C:\inetpub\wwwroot\aspnet_client\system_web\4_0_30319\crystalreportviewers13 on your development computer

2) Paste the crystalreportviewers13 under your app pool

3) Add the following to your web.config file

<configSections>
<sectionGroup name=“businessObjects“>
<sectionGroup  name=“crystalReports“>
<section name=“rptBuildProvider“ type=“CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral,PublicKeyToken=692fbea5521e1304,  Custom=null“ />
<section  name=“crystalReportViewer“ type=“System.Configuration.NameValueSectionHandler“ />
</sectionGroup>
</sectionGroup>
</configSections>


<businessObjects>
<crystalReports>
<rptBuildProvider>
<add embedRptInResource=“true“ />
</rptBuildProvider>
<crystalReportViewer>
<add  key=“ResourceUri“ value=“~/crystalreportviewers13“ />
</crystalReportViewer>
</crystalReports>
</businessObjects>

The above is assuming that you are using SAP Crystal Reports, developer version for Microsoft Visual Studio

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Got Enhancement ideas? Try the SAP Idea Place

Share Your Knowledge in SCN Topic Spaces

Answers (1)

Answers (1)

0 Kudos

This is a known issue in IE 10.

See this thread on how to work around it:

http://scn.sap.com/message/14086867#14086867

Don