Report6i

I am trying to modify Report6i form. After modifying the query, I tried saving it (.rdf) but it keeps coming up with error PDE-PER001 internal error REP 3335-unhandled error.
It runs very well giving the desire result which tells me that there is not error in the query. But I want compile and save o that it will be permanent.
Does any have a clue to this problem.
Thanks

Thank you for the reply. The following were the messages that were logged in the JServ log files:
Jserv\logs\mod_jserv.log
[08/08/2002 18:32:21:845] (ERROR) ajp12: Servlet Error: java.lang.UnsatisfiedLinkError: rwinit: rwinit
[08/08/2002 18:32:21:915] (ERROR) an error returned handling request via protocol "ajpv12"
Jserv\logs\jserv.log
[09/08/2002 00:02:21:655 GMT+05:30] RWServlet/oracle.reports.rwcgi.RWServlet: init
[09/08/2002 00:02:21:845 GMT+05:30] java.lang.UnsatisfiedLinkError: rwinit
at org.apache.jserv.JServServletManager.load_init(JServServletManager.java:638)
at org.apache.jserv.JServServletManager.loadServlet(JServServletManager.java:535)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:348)
at org.apache.jserv.JServConnection.run(JServConnection.java:260)
at java.lang.Thread.run(Thread.java:479)
RWServlet seems to be init-ting..couldn't understand the significance of the rest..What is to be done for that? Help please..
Thank you
Ranjith..
Please check JServ log files and it should have detail error message there. From the error message, you may figure out what went wrong.
-Jeff

Similar Messages

  • How to Change the Size of the Parameter Form in Report6i

    hi
    Does any one know how to change the size of the "PARAMETER FORM" in Report6i.

    Hi,
    You can change it in the "Parameter Form Window" property of the Report Object.
    In the object navigator, select the Report object and open its property palette. Under "Parameter Form Window" you can change the "width" and "height" properties.
    Regards,
    Siva B

  • Oracle Report6i - Report and Spreadsheet in one rdf file

    Hi ALL,
    My user wants to have an Oracle report with header, titles etc. and also a CSV file in the same Report or rdf file.
    I am thinking of using a parameter to select either the Report or the CSV file or both.
    I know I can do this in 2 different rdf files.
    Can it be done in the same rdf file? If so someone please help me on this. How can I create 2 different
    data models, 2 different layout models etc in the same rdf. That is what I am after.
    We are using Report6i which is a bummer but the Company is going .NET and does not want to spend
    resources on the latest Oracle Application server.
    Thanks,
    Suresh

    You may do the regular Oracle report as usual and create the CSV file in After Report Trigger using PL/SQL coding, like ....
    V_OUTFILE := text_io.fopen(L_FILENAME,'A');
    V_OUTSTRING := 'EMPLOYEE TYPE/DEPARTMENT WISE DETAILS';
    TEXT_IO.PUT_LINE(V_OUTFILE, V_OUTSTRING);
    --EXCEL FILE HEADS
    V_OUTSTRING :='EMPLOYEE NUMBER'||CHR(9)||'EMPLOYEE NAME'||' '||'DEPARTMENT NO'||' '||'SALARY'||' '||'DESG' ||' '||'EMP MOD';
    TEXT_IO.PUT_LINE(V_OUTFILE, V_OUTSTRING);
    --V_out_file := Text_IO.Fopen(L_FILENAME,'w');
    FOR C1_REC IN C1 LOOP
    V_OUTSTRING:=C1_REC.empno||CHR(9)||C1_REC.ename||' '||C1_REC.deptno||' '||C1_REC.sal||' '||C1_REC.desg||' '||C1_REC.empmod;
    TEXT_IO.PUT_LINE(V_OUTFILE, V_OUTSTRING);
    END LOOP;
    --IF Text_IO.Is_Open(V_OUTFILE) THEN
    Text_IO.Fclose(V_OUTFILE);
    SRW.MESSAGE(100,'File '||L_FILENAME|| ' Generated Successfully....');

  • Problem in generating the Oracle report6i to PDF file.

    Hi guys,
    I had encounter problem in generating the Oracle report6i to PDF file. The Amount column once the report is genrated to PDF it double the amount reflected in the PDF file report. See sample scenarios below:
    Can anybody help me explain this issue how it really happens?
    Example:
    FROM ORACLE REPORTS6i :
    ITEM # PRODUCT AMOUNT
    1 PRINTER 5,000
    2 KEYBOARD 2,000
    TO PDF FILE :
    ITEM # PRODUCT AMOUNT
    1 PRINTER 10,000
    2 KEYBOARD 4,000
    Thank you.
    Lala

    Hi "LawlordsX",
    I do understand the issue, something seems to have messed up the Shell Extensions on the 2 Lenovo laptops you talked about.
    Could you please check if the 2 m/c(s) have an additional version of Office installed in parellal to Office 2007, say Office 2010 trial pre-installed on them. This can be verified via CONTROL PANEL > PROGRAMS AND FEATURES > Check for the versions of Office installed. If yes, please let me know the additional Office software version/type.
    Also, could you be more specific about the bitage of the system, i.e. whether the Windows 7 m/c is 32-bit or 64-bit?
    This can be checked from CONTROL PANEL > SYSTEM > Under "System" section check for "System Type".
    If converting multiple files at a time to PDF is an issue, as an alternate you could use FILE > CREATE > BATCH CREATE MULTIPLE FILES to workaround the problem for the time being.
    Thanks!

  • How to display header fields names in the next page in report6i

    how to display repeat header field names into the next page in report6i urgent plz......
    When i am runing report in 1st page only the header information is displaying in 2 page the header info is not displaying only records are displaying.So i want to display the header info in 2nd page also.
    Plz help out.

    Hello,
    Go to the report layout model and select those items/objects which are not getting display on next page and open the property pallet by pressing F4 key and set the property Print Object On to All Pages then it will display on all pages.
    -Ammad

  • Problem in  Parameters in Report6I

    Hi All,
    I created report using report6i, i included parameter form which
    is LOV. When i am ruuning this .rdf file on client machine it
    works fine , but when i moved same .rdf file on web it gives
    error like :
    In my cgicmd.dat File i added below line:
    preport : report=perfect-report.rdf+param=A_NAME destype=cache
    desformat=html server=rptsrv6i %P
    In my html file i using link as :
    Parameter Link<br>
    It gives error as :
    Error: The requested URL was not found, or cannot be served at
    this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-0788: Warning: The value of restricted LOV parameter A_NAME
    is not among the selectable values.
    Is there any other change i need to do in .rdf file.
    Does anybody had come accross this problem.
    This is just report .rdf file i am not using any forms here , i
    am just calling this rdf file from html file like :
    Thanks in advance
    Raja
    email: [email protected]

    Hi,
    Your problem is you are selecting a value for a parameter which
    is not a value from the LOV of the report parameter you have
    created. If you want to test wether your selected values is
    correct or not please try to select that value from the sql
    statement you have written for the LOV.
    select 'abcdef' from table_name where column_name =
    value_of_parameter; this should return 'abcdef'.

  • How to pass parameter from form6i to report6i

    when i passed parameter from form6i to report6i, while previewing report the data was not displaying only fields heading was displaying, but in report6i there is a parameter form thru that it was displaying data, but thru form6i to report6i it was not. Please kindly help me and give me the some sample or example of it.
    Thanks
    Best regards
    Zaheer

    ADD_PARAMETER(pl_id,'P_SCRIPT',TEXT_PARAMETER,:b1.script);

  • Integrating Forms6i/Report6i with  Oracle Financials Module

    Hi ,
    I need a step by step guide of how I can integrate my custom forms and report into oracle Financials GL/AP.
    I have developed this modules in forms 6i / report6i, but need to call them from Oracle Finacials module(GL/AP), and my report to be included in the standard reports.
    Thanks
    Jonny

    Is Oracle Finacials module or the page where you want to start the integration, an OAF page? Do you have any interaction defined between the seeded and custom modules or you just want to run your module from Apps.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Forms6i/Report6i cannot connect to database

    I cannot connect both Forms6i and Report6i to my oracle 8.1.5 database.I will appreciate specific solution to that. The Error is " Cannot resolve TNS name ..."
    Thanks

    you need to check your sqlnet configuration.
    It is in the tnsnames.ora file.
    Use the sql*net easy config utility to create the correct entry.

  • How can I to recover and to use a parameter list in Report6i

    I am working with Report6i and Forms6i.
    I know how to create a parameter list and how to call Reports 6i with RUN_PRODUCT(...)
    but I don't know how to recover the parameter list in Reports6i and how recover each parameter.
    Can you help me?
    Excuse my English. It's horrible.
    Thanks
    Isidre

    Hi Isidre,
    You need to create user parameters in the report, one for each parameter value that you want to pass into the report. Make sure you set the data type and length for each user parameter, and also the default value if you don't pass in a value for that parameter.
    regards,
    Stewart

  • Does Form6i/Report6i support Solaris x86?

    There is only Form6i and Report6i for SunSparc and no Solaris version for x86.
    Have anybody tried to install the Linux version of Form6i or Report6i in a machine running Solaris X86? And what is the key to install it successfully?

    I'm sure that Oracle8i server supports Solaris Intel Platform and Oracle9i doesn't support Solaris Intel Platform at this moment as I know.

  • Export - Report6i to Excel sheet

    How to export the results of oracle report6i to Excel Sheet.
    Thanks in advance...
    Bye
    Mahesh

    I don't want any third party tool. It is not
    possible to direct spool to ExcelI have also mentioned in my last post to use heterogenous service (hs) which is
    not thrid party tool (generic connectivity service) builtin packed with oracle but for
    transperent gateway need license.
    What you are quering in yours report 6i use the same in yours own routine,or may
    be report level trigger to fetch this queried data to excel using hs service.
    http://www.oracle-base.com/articles/9i/HSGenericConnectivity9i.phpKhurram

  • Configure Report6i to use sql*net

    Does anybody know how to configure Report6i server to use sql*net instead of Net8? Or how to use both? I really appreciate your help.

    Hi bkt.engineer,
    Yes, it is possible to override the default WCF DataContractSerializer behaviour when Serialize/DeSerialize entities and use JSON.NET instead. For more information, please try to refer to this similar thread:
    http://stackoverflow.com/questions/3118504/how-to-set-json-net-as-the-default-serializer-for-wcf-rest-service .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can call a report6i from Forms6i with Parametrs at runtime

    Hi,
    I am using the following code on when button press in forms 6i to call a report with passing parameter from form 6i to report 6i.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := find_report_object('status_test');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no letno='||:status_no);
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    When I press the button there is no response.
    please send me the solution of this problem.
    Best regards,
    Shahzad

    With just this little piece if code it should mean that all other report properties (filename, server, destype, desname etc.) are defined with the report object. If not, add that to your code:
    set_report_object_property(repid,report_filename,'myreport');
    etc.

  • Is there Any better Developer tools than Report6i/Form6i

    Hi Is ther any other Editior Similar to TOAD(pl/sql Developer)
    Which can ease the development by popping the method/properties

    Yes i have
    But can that be used for Developing the FORMS/REPORTS Applications
    The One that i Used was trial version for some pl/sql Development, No, to develop Developer Forms and Reports you have to use Oracle Forms and Reports Developer. Alternatively you could use Designer for CASE forms development and Discoverer for reports, but these are completely different tools/processes.
    There are no third party Forms and Reports tools that will generate Oracle forms.

Maybe you are looking for