Writing Code
 Crystal Reports Forum : Crystal Reports for Visual Studio 2005 and Newer : Writing Code
Message Icon Topic: Field name not known Post Reply Post New Topic
Author Message
zykes
Newbie
Newbie


Joined: 29 Jun 2011
Online Status: Offline
Posts: 1
Quote zykes Replybullet Topic: Field name not known
    Posted: 29 Jun 2011 at 5:02pm
Hi,

This has been bugging me for few days. I have a web application in visual studio 2005 with Crystal Report 2008 and a database of SQL 2008.

I'm using Report Viewer version 12.0.2000 in visual studio to display crystal report. My other reports are working perfectly fine but this Reports which has formula fields on the header portion of CR are creating errors.

here's the error:

This field name is not known. Details: errorKind Error in File MyReport {466F2BF2-CAB2-4916-A7E8-93682C8F17A9}.rpt: Error in formula MBrach: 'if not isnull({?@M_Code} ) then ' This field name is not known. Details: errorKind

here's my code in displaying data:

On Page_Init()
rd = new ReportDocument();
            ReportDoc = new ReportDocument();
            ReportDoc.Load(Server.MapPath("~/Reports/MyReportsCollection/" + "ClientReport.rpt"));
            ReportDoc.SetDataSource(ReportDiscountedVLB());
            this.CrystalReportViewer1.ReportSource = ReportDoc;
            this.CrystalReportViewer1.DataBind();


ReportDiscountedVLB() function
private DataTable ReportDiscountedVLB()
    {

        ReportsBLL RBLL = new ReportsBLL();
        DataTable dt = new DataTable();
        string AssOfDate = "";

        try
        {
          
            dt = RBLL.PopulateAgencyBreakdown("01", "CLS", "01/01/2010", "05/05/2010", "03/03/2010", "06/06/2010", 01);
        }
        catch
        {
            throw;
          
        }
        finally
        {
            RBLL = null;
        }
        return dt;

    }


PopulateAgencyBreakdown is on the BLL area and it is where the stored procedure is called

need your help crystal report gurus.
IP IP Logged
CircleD
Senior Member
Senior Member
Avatar

Joined: 11 Mar 2011
Location: United States
Online Status: Offline
Posts: 251
Quote CircleD Replybullet Posted: 30 Jun 2011 at 12:39am
string AssOfDate = "";


Ass?


Edited by CircleD - 30 Jun 2011 at 12:41am
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.