Steps to link a report to web form

Hi friends,
Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
I have DB connection code in my .aspx file, it is as follows:
Private Sub ConfigureCrystalReports()
        Dim fileName As String = "Reports\" & ReportID & ".rpt"
        Dim reportPath As String = Server.MapPath(fileName)
        myRepDoc = New ReportDocument()
        myRepDoc.Load(reportPath)
        myCrystalReportViewer.ReportSource = myRepDoc
        'myCrystalReportViewer.RefreshReport()
        Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
        If Session("reportConnectionInfo") IsNot Nothing Then
            Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
            myConnectionInfo.ServerName = ConnInforArrList(0)
            myConnectionInfo.DatabaseName = ConnInforArrList(1)
            myConnectionInfo.UserID = ConnInforArrList(2)
            myConnectionInfo.Password = ConnInforArrList(3)
        Else
            lblMessage.ForeColor = Drawing.Color.Red
            lblMessage.Text = "Session is off. Please Relogin to See the Report."
        End If
        SetDBLogonForReport(myConnectionInfo, myRepDoc)
        SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
        myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
        myCrystalReportViewer.Visible = True
    End Sub
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
        Dim myTables As Tables = myReportDocument.Database.Tables
        For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
            Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
            myTableLogonInfo.ConnectionInfo = myConnectionInfo
            myTable.ApplyLogOnInfo(myTableLogonInfo)
        Next
    End Sub
    Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
        Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
        For Each mySection As Section In mySections
            Dim myReportObjects As ReportObjects = mySection.ReportObjects
            For Each myReportObject As ReportObject In myReportObjects
                If myReportObject.Kind = ReportObjectKind.SubreportObject Then
                    Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
                    Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
                    SetDBLogonForReport(myConnectionInfo, subReportDocument)
                    If myReportObject.Name = "Subreport1" Then
                        Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
                        If Not lvSec Is Nothing Then
                            Dim t1 As TextObject
                            t1 = lvSec.ReportObjects("txtEmpName")
                            t1.Text = Session.Contents("EmpName")
                            Dim t2 As TextObject
                            t2 = lvSec.ReportObjects("txtRepID")
                            t2.Text = Request.QueryString("REPID")
                        End If
                    End If
                End If
            Next
        Next
    End Sub
Please do help me out.
Thanks and regards

Hello Md. Mushtaque,
Please post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
This forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
The forum is monitored by qualified technicians and you will get a faster response there.
Also, all Crystal Reports .NET Development queries remain in one place and thus can be easily searched in one place.
Thanks a lot,
Falk

Similar Messages

  • Steps to link a report to Web Application Form. Post Your Opinion

    Hi friends,
    After going through it what is your opinion. please do post your opinion.
    Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
    I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
    I have DB connection code in my .aspx.vb file, it is as follows:
    Private Sub ConfigureCrystalReports()
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
    Dim reportPath As String = Server.MapPath(fileName)
    myRepDoc = New ReportDocument()
    myRepDoc.Load(reportPath)
    myCrystalReportViewer.ReportSource = myRepDoc
    myCrystalReportViewer.RefreshReport()
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    If Session("reportConnectionInfo") IsNot Nothing Then
    Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
    myConnectionInfo.ServerName = ConnInforArrList(0)
    myConnectionInfo.DatabaseName = ConnInforArrList(1)
    myConnectionInfo.UserID = ConnInforArrList(2)
    myConnectionInfo.Password = ConnInforArrList(3)
    Else
    lblMessage.ForeColor = Drawing.Color.Red
    lblMessage.Text = "Session is off. Please Relogin to See the Report."
    End If
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
    myCrystalReportViewer.Visible = True
    End Sub
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim myTables As Tables = myReportDocument.Database.Tables
    For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
    Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
    myTableLogonInfo.ConnectionInfo = myConnectionInfo
    myTable.ApplyLogOnInfo(myTableLogonInfo)
    Next
    End Sub
    Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
    For Each mySection As Section In mySections
    Dim myReportObjects As ReportObjects = mySection.ReportObjects
    For Each myReportObject As ReportObject In myReportObjects
    If myReportObject.Kind = ReportObjectKind.SubreportObject Then
    Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
    Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
    SetDBLogonForReport(myConnectionInfo, subReportDocument)
    If myReportObject.Name = "Subreport1" Then
    Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
    If Not lvSec Is Nothing Then
    Dim t1 As TextObject
    t1 = lvSec.ReportObjects("txtEmpName")
    t1.Text = Session.Contents("EmpName")
    Dim t2 As TextObject
    t2 = lvSec.ReportObjects("txtRepID")
    t2.Text = Request.QueryString("REPID")
    End If
    End If
    End If
    Next
    Next
    End Sub
    Please do help me out as the data of report is not getting displayed on the report.
    After going through it what is your opinion. please do post your opinion.
    While creating the Report has the following Report Options on / checked.
    1. Database Server is Case-Incensitive
    2. Use Indexes Or Server For Speed
    3. Verify on First Refresh
    4. Show Preview Panel
    5. Display Alerts on Refresh
    6. Select Distinct Data for Browsing
    Do I have check or uncheck any other option?
    Thanks and regards
    Edited by: Md. Mushtaque on Sep 6, 2008 2:50 PM
    Edited by: Md. Mushtaque on Sep 8, 2008 9:27 AM
    Edited by: Md. Mushtaque on Sep 8, 2008 12:14 PM

    Sir AG,
    Thanks a lot for replying and spending your valuable time for my problem.
    Sir, I just want to put this in your knowledge that my application is web based application and I am calling these reports through web forms i.e. of ASP.NET coded in vb from .aspx.vb files.
    So as per the code I have attached, I have this
    Option Explicit On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Next for ReportDocument Object:
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
            Dim reportPath As String = Server.MapPath(fileName)
            myRepDoc = New ReportDocument()
            myRepDoc.Load(reportPath)
            myCrystalReportViewer.ReportSource = myRepDoc
    Above is the code used by me in Page_Init  and I have already tested it from Page_Load. I have got few suggestions from this forum that I should put this code in Page_Init only.
    Lastly:
    The database connectivity code:
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
            If Session("reportConnectionInfo") IsNot Nothing Then
                Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
                myConnectionInfo.ServerName = ConnInforArrList(0)
                myConnectionInfo.DatabaseName = ConnInforArrList(1)
                myConnectionInfo.UserID = ConnInforArrList(2)
                myConnectionInfo.Password = ConnInforArrList(3)
            Else
                lblMessage.ForeColor = Drawing.Color.Red
                lblMessage.Text = "Session is off. Please Relogin to See the Report."
            End If
            SetDBLogonForReport(myConnectionInfo, myRepDoc)
            SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
    This code I have got from a sample of the forum itself.
    Sir, after all these effort and the unchecking of option "Save Data with Report" on calling the reports from my forms it is showing blank report. No data from the database is coming form the database.
    I have uncheked the option "Save Data with Reports" to get the updated data each time the report has been called but now the status is that nothing is coming.
    Thanks again for you precious and valuable effort to help me but the my problem is unsolved, So sir please if you could put an eye on it and help me out to get rid of this problem, I will be very thankful to you for your kind help.
    Thanks and regards
    Mushtaque

  • OLE Container linked documents conversion to Web Forms

    We have developed a form within our Oracle 6i application which allows users to navigate directly from the Forms application to relevant documents. We use an OLE container and the documents (Word, Excel, PDF etc) are linked rather than embedded in the database. I understand that OLE containers are not supported within Web Forms. I'd like to maintain the functionality within the application and welcome any suggestions. I was hoping that Web_Util would provide this but it doesn't appear so. We have over 12000 embedded references to documents which we'd like to extract or retain. A possible solution would be to extract the filenames and paths/locations and have them available as a hyperlink.
    I have no idea how to extract the file from the database blob column. There are many samples of code on Metalink to extract the document and store it locally but that's not what we want.
    We use an OLE container (now Obsolete) with the OLE Tenant Type set to Linked, and OLE Tenant Aspect set to Icon. So the actual document is not embedded in the database but somehow the Application (Word Excel etc) knows the filename and path when you double click on the Icon.
    I would like to extract the filename/path from the blob column and transfer it to another column which will be used as a hyperlink.

    The documents are NOT stored in the database, they are linked. We have the documents on the network but have no idea which documents match to which unique record id on the database. Hence the need to extract the name and location of the files. Some ids can have up to 10 different documents attached to them
    The use of OLE Tenant type "Linked" was really a Forms 6 version of a hyperlink.
    I've got a hyperlink working for future use in attaching new documents to a record id. I am worried that we've lost the record of old links. I don't understand how Oracle can make something obsolete without at least providing an upgrade method.
    Hope this makes it clearer.
    Lesley

  • Calling Reports from Web Forms

    Hi all,
    I have Forms and Reports services 10g running on Linux RHEL3, and it's all right so far, with only one application.
    Now I have to use another application, which has some forms and reports with same name as the first one. At this point I cannot use FORMS90_PATH and REPORTS_PATH anymore.
    I solved the problem about forms and icons (simply changing configuration files), and I found a solution for Reports, but this one obliges me to modify all forms calling reports. Of course I don't like it so much, and I'm wondering if someone has a solution without changing anything in the applications, as for forms and icons.
    Thanks in advance
    Paul

    Hi Martin,
    I'm afraid there was a little misunderstanding : I tried your solution, and it works fine for forms (but for forms I already had a solution, workingDirectory in the project section of formsweb.cfg).
    It doesn't work for reports : it seems that the only way to specify reports location is in reports.sh, but to make applications independent I should use different reports servers for different applications, not acceptable.
    Do you know a way to obtain the same result for reports (as for forms) without changing applications ?
    BTW, the solution should work on Windows OS too.
    Thanks again.

  • Problem with linking to reports in Web Intelligence XiR2

    Hi,
    I'm having trouble doing even a basic (direct) link to a sub report or a report.
    These are my tries:
    (webserver name)
    http://corpwebapps:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=KPI_Dashboard_Legenda&sWindow=Same&sType=wid&sRefresh=Y
    (server name)
    http://SRV0010:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=KPI_Dashboard_Legenda&sWindow=Same&sType=wid&sRefresh=Y
    I've tried getting the properties of the report from infoview, to get an idea of the directname; That would be:
    Webi/webi_view.aspx?id=38868&windowProperty=fullscreen=yes,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes",38868,true,"iv","fullscreen=yes,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes","");
    What am I doing wrong?
    The admin assures me that the application is at port 8080;
    Thanks for your help!

    Basicly a 'Page cannot be displayed' error.
    When I remove the port I get
    The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
    Please try the following:
    Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
    If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
    Click the Back button to try another link.
    HTTP Error 404 - File or directory not found.
    Internet Information Services (IIS)
    Technical Information (for support personnel)
    Go to Microsoft Product Support Services and perform a title search for the words HTTP and 404.
    Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for topics titled Web Site Setup, Common Administrative Tasks, and About Custom Error Messages.
    When I keep the port I get an error in Dutch, which most likely is the langeuage used on the server.
    The notice is also slightly different; It sais that I should check for connection problems there (in a little red box).

  • Where/How do I copy the link to the online web form?

    Hi there,
    I am a total beginner with FormsCentral. Here is my situation:
    I have registered for a trial which, in theory, grants 1 online form. 
    I have imported a PDF template into FormsCentral's desktop tool. Then I have saved the new form. As a result, the form now appears in the list with a "cloud" symbol. Also I can see that my "online form credit" is now down to zero.
    I'd be grateful for any guidance on how to find/copy the online form's URL, or navigate to it.
    Success with this seemingly simple step will determine whether I ugrade to the next Plan (and whether I encourage colleagues in a 1000+ employee organization to also use FormsCentral). 
    Many thanks,
    Eric

    In other words: Is is possible to import a fillable PDF document into FormsCentral, and publish it as an online form (the same way as for a form designed afresh from FormsCentral desktop tool)?

  • How to configure standard report concurrent program in web forms.

    I have developed new custom report using reports6i, and defined a concurrent program registered into AOL and assigned to a request group. I tested the report runs fine from form based applications. But user wants to run this new report from web forms(Incentive Compensation). I have no idea how to create a concurrent program link in the Incentive compensation module web forms.
    Is there any document to configure oracle report concurrent program into web forms?
    or guyz please send me the steps (screen shots) to add custom report concurrent program to web forms?
    Please help guyz...I'm new to web forms......
    Thanks in advance
    Naveen
    [email protected]

    Naveen,
    On some event on the page (like a button submit) you can call a PLSQL API with parameters which can further submit your concurrent Request.
    If you want to see the Report output in Apps, it can be done directly. Otherwise if you want to see the value in the Self Service Page itself, then you can extend the oracle.apps.fnd.cp.request.server.RequestSummaryVO for your case.
    Thanks
    Sumit

  • How to run custom Oracle report6i concurrent program in web forms

    I developed a custom report using oracle6i and registered into AOL and assigned to a request group. I can run this concurrent program from form based application works fine. How to run this concurrent request from web forms?
    What are the steps to follow to create a concurrent program link on web forms?
    I want run this request and pass parameters and output also in web forms...
    I'm a first time user of web forms, So kindly reply with detailed steps to define concurrent request in web forms for a custom report.
    Thanks in Advance
    Naveen
    [email protected]

    I hope ur requirement to do all the CP processing from Self-Service OAF pages. If so,
    browse thru Re: Start Concurrent from OA Framework page , Re: RE: Submitting concurrent request and getting the results back.
    and
    'Concurrent Processing: Request Submission and Monitoring' section in dev guide.
    Let us know if you face any issues in the implementation.
    - Senthil

  • Calling Crystal Reports from Oracle Forms 6i

    Hello
    I am trying to invoke/call Crystal Reports from Forms 6i.
    I have created OCX Item, while right click on item and insert-object, i am unable to see "Crystal Report" Control.
    I have installed crystal Reports 2008 (Version 12) and CR Standard Production version 9.
    Is there any Active X control registration in forms.
    I could see "Crystal Report Viewer Control 9" and "Crystal Report Print Control 12.0"
    Could some one help me,
    Thanks
    Tumuganti

    Did u Succeed in calling crystal Reports XI from Forms 6i
    or from Forms10g
    for me also the same Requirement
    please send any document ,Attachment ,steps to call Crystal Reports XI from Forms
    [email protected]
    Message was edited by:
    user501763

  • Link on report returns no value when record containts '&' or '' (space)

    I have created a report based on a sql script. I want to link this report to a form. With the standard LINK, the records that contain a space or '&' sign aren't linked to the form.
    Is there a way to resolve this? I know that there is a way to add html in the sql script and set the column to display as HTML.
    But what script do i need to manually set the link, and not using the standard Portal LINK?
    Thx.

    Hi,
    In the sql based report you can make a column a html link.
    Here is an example
    select ''||empno||'' empno,
    ename
    from scott.emp
    The above query returns a html link which points to a chart and takes empno as a parameter.
    Thanks,
    Sharmila

  • URGENT HELP: RUN_PRODUCT(Reports) on Web

    Hi,
    I have installed oracle 8.0.5, OAS 4.0.7 and Developer
    Server 6.0 (Forms, Reports & Graphics Cartridge).
    Our forms,reports & graphics cartridges
    works fine indivisualy but we are not able to run reports
    from web form with run_products it works fine under windows.
    1. Is anyone has tried reports on web from forms
    2. how to use reports cartridge from from other
    than using show_document package can be included
    in parameter as server=reportserver in run_products
    statement.
    3. Is there any registry/system variables required for
    this
    If anyone know about this, please let me know by e-mail
    or posting reply to this thread
    Thanks in advance
    Darshan Desai
    Tecnimont ICB Limited,
    Mumbai, India.
    [email protected]
    [email protected]
    null

    Hi Darshan,
    you must set the followings registry variables:
    FORMS60_MAPPING (virtual directory, must exist as a virtual
    directory in your web-server configuration)
    FORMS60_OUTPUT (physical directory of the virtual directory)
    FORMS60_REPFORMAT (html, pdf)
    Hope this help
    Darshan Desai (guest) wrote:
    : Hi,
    : I have installed oracle 8.0.5, OAS 4.0.7 and Developer
    : Server 6.0 (Forms, Reports & Graphics Cartridge).
    : Our forms,reports & graphics cartridges
    : works fine indivisualy but we are not able to run reports
    : from web form with run_products it works fine under windows.
    : 1. Is anyone has tried reports on web from forms
    : 2. how to use reports cartridge from from other
    : than using show_document package can be included
    : in parameter as server=reportserver in run_products
    : statement.
    : 3. Is there any registry/system variables required for
    : this
    : If anyone know about this, please let me know by e-mail
    : or posting reply to this thread
    : Thanks in advance
    : Darshan Desai
    : Tecnimont ICB Limited,
    : Mumbai, India.
    : [email protected]
    : [email protected]
    null

  • Calling a report from a web form & specifying PDF format

    Has anyone been able to call a report from Oracle Forms (6i or 9i) in a web browser (i.e. by pressing a button or any other link)? We are having problems generating the report in PDF format when we web deployed our forms. In client server mode it works fine with the report deferring to PDF. But in the web browser it reverts to a messy HTML format with the columns being distorted. Running a standalone report from the web is no problem but when it is linked with a form it goes back to HTML. In the old forms (5.0) we used a function like run_product but I am not sure what the problem is in the new environment.
    T.J.

    Hello,
    According to the way the reports is launched, the format of the reports output depends on the
    variables : FORMS60_REPFORMAT (for Forms 6.0 and 6i)
    Two others variables are used : FORMS60_OUTPUT and FORMS60_MAPPING.
    Can you check the variable FORMS60_REPFORMAT ?
    regards Dennis:
    Thanks for the info. Your suggestion of changing the windows registry setting FORMS60_REPFORMAT to 'PDF' worked! I did not have to make any other changes to the form. I left the run_product format as is in the form and it worked like a charm. When we eventually migrate to Oracle Reports/Forms 9i we will look into using run_report_object. But for now we will stick with Oracle Forms6i. There was no need to alter the other registry settings FORMS60_MAPPING and FORMS60_OUTPUT since I followed the instructions of setting the virtual directories (symbolic links) when I installed the forms and reports services.
    Thanks again for your help!
    T.J.

  • Calling a Report from a Web Form

    Hi,
    I am calling a Report developed in report 6i from a Web form 6i
    Button. I am unable to launch the Report if Report is using a
    Customized Template. The report is able to launch if it has no
    template or using the templates given in report wizard. Is there
    any setting required in the Report Server for reading the
    template file???

    Hello,
    According to the way the reports is launched, the format of the reports output depends on the
    variables : FORMS60_REPFORMAT (for Forms 6.0 and 6i)
    Two others variables are used : FORMS60_OUTPUT and FORMS60_MAPPING.
    Can you check the variable FORMS60_REPFORMAT ?
    regards Dennis:
    Thanks for the info. Your suggestion of changing the windows registry setting FORMS60_REPFORMAT to 'PDF' worked! I did not have to make any other changes to the form. I left the run_product format as is in the form and it worked like a charm. When we eventually migrate to Oracle Reports/Forms 9i we will look into using run_report_object. But for now we will stick with Oracle Forms6i. There was no need to alter the other registry settings FORMS60_MAPPING and FORMS60_OUTPUT since I followed the instructions of setting the virtual directories (symbolic links) when I installed the forms and reports services.
    Thanks again for your help!
    T.J.

  • The page cannot be displayed while running the report with web link

    Hello,
    I tried to run the report using a web link similar:
    http://hostname/reports/rwservlet?report=WRFTCKL.rdf&userid=use/pass@datbase&desformat=pdf&destype=CACHE&paramform=yes
    I am able to see the parameter form, but after I entered some parameter and submit, I got an error as:
    The page cannot be displayed.
    But if I run it with the paramform=no and attached the parameter/value pair at the end of the link, the report will show on the web.
    Anyone knows what is wrong?
    Thanks.

    try this sample report from
    http://www.alexyscorp.com/products.htm
    (Download the Forms Reports Integration based on run_report_object (FMB,RDF) )

  • "edit" link from report to form does not show values

    I created a report and an attached form on two different pages. The report is a query combining two tables with outer joins. When I click on the "edit" button on the report, I get forwarded to the form page.
    My problem: When I get forwarded to the forms page, I get an empty form, and not the data from the column as expected. The "edit" button behaves more like the "create" button. Anybody an idea what I could change to be able to edit the column data?
    Thank you.

    I've met the similar problem with previous releases (1.5.0 and 1.5.1) without any objective reason.
    As I suggests, sometimes HTMLDB lost current session state. When this occurs, ALL links from reports to it's forms does not transit primary keys. I've just completed application development and I've met this behaviour every months.
    As a workaround I found folowwjing process:
    Come into administration tab, selet "Report with option to purge current session state". When I purge current session state and re-login to application, all report-form links will start to work.
    I don't know, what is the issue, but I met it so soon on my local HTMLDB environment.

Maybe you are looking for