1
Answer

how to find grand total in crytsal report and how to run a complex query in crystal report

shweta gupta

shweta gupta

14y
3.6k
1
Can anyone tell me if I want to show data in crystal report using complex query with groupby,joins and where clause.How will I do it.Also how to find the grand total in crystal report.
Answers (1)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
The issue is in Admission.aspx.cs page, you have the below code.
protected void GridView1_SelectedIndexChanged1(object sender, EventArgs e)
    {
        string value1 = GridView1.SelectedRow.Cells[4].Text;
        string value2 = GridView1.SelectedRow.Cells[5].Text;
        //Label1.Text = value1;
        //Label1.Text = Session["tm"].ToString();
        Session["prgfee"] = GridView1.SelectedRow.Cells[6].Text;
        //Label1.Text = Session["prgfee"].ToString();
        if (Convert.ToInt32(value1) <= Convert.ToInt32(Session["tm"]))
        {
            obj.Save_Rec(objprp);
            Response.Redirect("~/confirm.aspx");
        }


You are not setting objprp to some value. Before that You are setting

 nsadm.clsstadmdetprp objprp = new nsadm.clsstadmdetprp();
so all the columns in the objprp will be set to 0 if its int. In your case usercode is int, so it sets null.this save method tries to save with userid as 0, but there are no records for userid in tb_usr table for value 0. So throwing error "foreign key conflict"
Get the user details in session and set to objprp in admission.aspx page
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
ya sure, i have shared the code, you can check it

basically what i am doing here is,

student will register first(register.aspx) (table tb_usr gets the value when user registers), than after his successful registration, he will be redirected to the page(admission.aspx) where he can take admission in a particular programme,and when he opt to take admission, error occurs that i asked for.
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
yes, that particular user has record in user table.
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
I meant the user code which you are trying to save in admission table. Does that particular user has a record in user table?
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
yes, usrcod do exist in table tb_usr
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
this is because the column usercode which you are passing and trying to save is not present in table User.

Check whether the usercode exists in tb_Usr