After Parameter Form issue - Oracle Reports 10g

Hi All,
I have compiled an .rdf report to an .rep file and when
I run this file I get the "REP-1247: Report contains uncompiled PL/SQL" message.
The issue is I have built the report with dynamic XML customizations in the after parameter form trigger. When I remove this piece of code from the trigger both files .rdf and .rep works fine.
Notice that the .rdf file works fine with the after parameter form XML customization.
Please, can enyone advice me how can I have a .rep file that contains dynamic XML customization (using the srw.add_definition).
Thank you in advance.

In Your code there is a line:
add_parameter(pl_id,'PARAMFORM',text_PARAMETER,'NO');
which actually disables the report parameter form.
The line:
WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||
'?server=rep_mohahubkpcomp_ORaHOme_IAS'||'&userid=
bedman/bedman@bedman'||'&paramform=yes','_blank');
displays the report to which vjob_id refers. At this point the report is competed so the parameters userid and paramform are useless.
Hope this helps.
Regards
Bekcic Aleksandar

Similar Messages

  • Difference between AFTER PARAMETER FORM and BEFORE REPORT in Reports 6i

    Hi Aii,
    What is the difference between AFTER PARAMETER FORM and BEFORE REPORT in Reports 6i.
    Thanks in Advance,
    Balu

    Hi Balu.,
    As per my findings the After Parameter is fired after the Parameters are given to the report and Before Report fires when the queries are parsed and data is fetched.
    Regards.,
    Vijay G

  • Parameter Form in Oracle Report!!

    Dear Oracle Users' Group:
    I have problem with "Parameter Form" in Oracle Report.
    The Report that I created has the SQL:
    "SELECT A.FIELD1, A.FIELD2
    FROM MYDATABASE.MYTABLE A
    WHERE
    A.FIELD1 = :P_1";
    When the report is run, it asks for the parameter
    and generates the report based on the runtime
    parameter. Works perfect on Oracle8i database's
    Report front end.
    The PROPERTY PALETTE for the FIELD (Field that
    takes the runtime parameter) is:
    ====================
    General Information
    Name: PF_P_1
    Comments:
    Parameter Form Field
    Source: P_1
    Parameter
    Datatype: Character
    Width: 40
    Initial Value:
    Validation Trigger:
    List of Values:
    (For the list of values, I have put the SQL:
    "SELECT DISTINCT A.FIELD1 from
    MYDATABASE.MYTABLE A", Also I had
    tried with list of fixed values like A, B, C)
    Web Setting
    Additional Attributes (HTML):
    ================
    But the report does NOT work when called from the Web.
    (This is only because of the problem with this Parameter
    Form in my report. If I get rid of the parameter form by
    changing the last line of my SQL to: "A.FIELD1 = 'Chicago'",
    it works fine from the Web).
    When accessed the report from the Web, the error I get
    is:
    Oracle Reports Server CGI - Report Job has terminated with this error.
    Reports Server Replies:
    REP-0788: Warning: The value of restricted LOV parameter P_1 is not among the selectable values.
    I do not know what is the error with this simplest Parameter Form based Report!!
    In the Property Palette (above) of the Field, there was a field named "Additional Attributes (HTML)"
    under "Web Setting" heading.
    Do I need to write something there!!
    Please help!!
    thanks.
    kimmy

    Hi, Kimmy
    Try: &paramform=yes]http://webserver.com:80/dev60cgi/rwcgi60.exe?server=repserver&report=rep1&userid=scott/tiger@orcl&destype=cache&desformat=htmlcss&paramform=yes
    I've also sent you an email about key maps.
    Enjoy! Web Reporting is a great feature.
    Pedro.

  • Want to Create View as per Condition Fires After Parameter Form.

    Hi ..
    I want to create a report from a view,and that view would create after parameter form of that
    report.
    Example..
    I want to select max(sal) of each Dept.where employee hired between 1-jan-2007 and 31-jul-2007'
    I want when i Passes dates in Parameter FOrm
    a view i.e select empno,deptno,sal, from emp created.
    that means that view contains only data about that certain period
    SO in Report Query i can write
    select deptno,max(sal) from vw_employee
    group by deptno.
    This is just an example....my real problem is very hard and only can be done by doing create a view as per given dates in Report Parameter Form.
    Waiting for Reply
    Regards
    Danish Hayder

    Wrong ideea.
    You should have the parameters in the report's query:
    select empno,deptno,sal, from emp where hired between :p_start_date and :p_end_date
    Why do you want to create a view in the report, seeing that it's best to use parameters.
    Moreover, think that the oracle user running the report would have to have the priviledges to create views, which may not be good security policy.
    Still, if you insist on creating the view when running the report, then you'd better create the view from a stored procedure, that would receive as parameter the SQL select for creating the view.
    So, you'd have the stored procedure:
    proc_view(p_select in varchar2, p_view_name in varchar2) is
    begin
    execute immediate 'create or replace view '||p)view_name||' as '||p_select;
    end;
    You then would compose the select in the afterpform trigger and call the proc_view procedure.
    Note that I did not allow proc_view to execute immediate any SQL one would pass, for that would be really dangerous. What if one would pass to the procedure executing dynamic SQL the following: 'drop table my_table cascade constraints'?

  • Report Builder 6i returns ORA-01483 in after parameter form trigger ?

    Can anybody help me ?
    I've been working on a report with report builder 6.0.8.11.3,
    and whenever i run the report the after parameter form trigger
    returns REP-1401 and following ORA-01483.
    I've been trying to change the values of some user parameters
    from within the trigger code, none of them is a date or a number
    parameter, these are character variables who would be referenced
    lexically to change a table name dynamically when the trigger
    fires. Aditionally I'm using a cursor to obtain data and then
    modify the parameters.
    How can i get this thing to work ?
    Thanks in advance for your reply...

    hello,
    this might be related to the usage of number(1) as type/length
    of your parameter. this is a known problem. it should be solved
    by using e.g. number(2) as the type/length of your parameter.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Calling report from form and after parameter form trigger

    Hi, I've also posted to this to the reports forum but because it works from Reports Builder it may be a forms issue which is why I'm x-posting. Apologies.
    I have a report that creates a file, desname is set in the after parameter form trigger (it uses one of the parameter values).
    The problem is file is not created using the path and filename set in the trigger, the file is created in the bin folder with the name account_by_service_type.txt (account_by_service_type.rdf is the report definition).
    If the desname is set in the before parameter form AND a field with the source=desname is added to the parameter form then the file will be created with the correct path and name however it won't have the relevant parameter incorporated into the file name obviously.
    I've noticed in other reports that where the desname is being set in the after parameter form that I've had to pass the desname from the form but obviously I cannot do that here either.
    Am I missing something obvious?
    Regards
    Sean

    Hi Frank,
    It's WebForms. Below is the code:
    -- call from menu item
    run_report_object_proc(TRUE,'accounts_by_service_type.RDF',null,FILE,'delimited','paramform=yes');
    -- run_report_0bject procedure
    PROCEDURE run_report_object_proc (p_screen IN BOOLEAN,
                        p_report_filename IN VARCHAR2,
                        p_desname IN VARCHAR2,
                        p_destype IN NUMBER,
                        p_desformat IN VARCHAR2,
                        p_paramform IN VARCHAR2)IS
    v_report_id     report_object;
    v_report     varchar2(100);
    v_job_id     varchar2(100);
    v_url          varchar2(1000);
    rep_status     varchar2(20);
    hidden_action     VARCHAR2(2000)     :='';
    BEGIN
    v_report_id := find_report_object( 'report2');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_FILENAME,p_report_filename);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESNAME,p_desname);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,p_destype);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,p_desformat);
    hidden_action := hidden_action||'&report='||GET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_FILENAME);
    hidden_action := hidden_action||'&destype='||GET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESTYPE);
    hidden_action := hidden_action||'&desformat='||GET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESFORMAT);
    hidden_action := hidden_action||'&userid='||GET_APPLICATION_PROPERTY(username)||'/'||GET_APPLICATION_PROPERTY(password)||'@'||GET_APPLICATION_PROPERTY(connect_string);
    if p_desname is not null then
    hidden_action := hidden_action||'&'||p_paramform||'&desname='||p_desname;
    else
    hidden_action := hidden_action||'&'||p_paramform;
    end if;
    hidden_action := '/reports/rwservlet?_hidden_server=rserv1'||hidden_action;
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, 'pfaction='||hidden_action||' '||p_paramform);
    -- SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, 'paramform=no');
    v_report := run_report_object( v_report_id);
    IF p_screen THEN
         v_job_id := substr(v_report,instr(v_report,'_',-1)+1);
    rep_status:=report_object_status(v_report);
    while rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED')
    loop
         rep_status:=report_object_status(v_report);
    end loop;
    if rep_status='FINISHED' THEN
         v_url := '/reports/rwservlet/getjobid'||v_job_id||'?server=rserv1';
              web.show_document(v_url,'_blank');
    else
         message(rep_status||' error running report');
    end if;     
    end if;
    END;
    -- report after parameter form trigger
    function AfterPForm return boolean is
    begin
    :desname := 'c:\service_type_'||:p_service_type||'_'||to_char(sysdate,'DDMMYYYY')||'.xls';
    return (TRUE);
    end;

  • Issue with Oracle Report 10g output

    I want to generate text output in Oracle Reports 10g. I am using paper layout.Length of the fields want to print is 750. Each line is broken in the output after 120 characters length apporx. Please let me know if there is any way to print complete 750 characters.

    Sample output is coming as below :
    T2013 56600084112345                                                                                         FPWC
                                                                           955 OLD WILMINGTON RD                   FAYETTEVILLE
         CUMBERLAND                 NC28301                   00000001CONTACT TESING                          1234567890
                    00000001          I'
    I want it to be discplayed in single line instead of breaking.

  • Calling a report from another report in after parameter form

    hi,
    I'm calling Emp.rdf report with deptno as parameter and if the parameter is '10' then i have to call dept.rdf
    function AfterPForm return boolean is
    begin
    if :p_deptno =10 then
         srw.run_report('report=c:\reports\dept.rdf destype=screen p_deptno='||:p_deptno);
         end if;
    return (TRUE);
    end;
    But, now i'm getting an error as
    REP-1428: afterpform': Error while running SRW.RUN_REPORT
    Could you please help on this. thanks Bcj

    Hi , I have tried destype=file , didn't work for me. same time i tried with background=yes , that time report crashed.
    Actualy what i'm trying to do is,
    whenever the main report received an incorrect user input , i have to run a different report based on that particular input value and to show the users the actual input values.
    so the coding would be like this in the after parameter form,
    BEGIN
    IF :P_ID between 1000 and 5000 then
    --here i'm only changing the paramter value ,
    ELSE
    --here i'm calling the new report
    srw.run_report('report=c:\reports\emp.rdf batch=yes destype=file desname c:\reports\id.txt background=yes p_new_id='|| :p_id);
    return(true);
    END;
    Any help....

  • Oracle report 10g vs Oracle Forms 11g

    Hi,
    My application run on Oracle 10g with Oracle Forms&Report 10g
    I have to modify a report file which was saved by oracle report 11g.
    When I open the file with Oracle Report 10, I have the following warning : "Avertissement ! Ouverture d'un rapport enregistré avec une version plus récente. Risque de perte de fonctionnalité. Continuer ?" (translation : "The file opened was saved with a more recent version of Oracle Report. You may lose some information. Continue ?").
    What kind of information I may lose ?
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 10g ?
    Or
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 11g and run it on Oracle Report 10g ?
    Thanks a lot.
    Michel

    36368ccd-1921-478d-9716-f90da72c8ed6 wrote:
    What kind of information I may lose ?
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 10g ?
    Or
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 11g and run it on Oracle Report 10g ?
    Michel,
    Question 1 - the file will no longer be useable with Reports 10g - you will loose everything.
    Question 2 - No, newer versions of Oracle Forms and Reports are not backward compatible with older versions.
    Question 3 - No, see answer to question 2.
    Craig...

  • Difference between After parameter Form Trigger and before Report Trigger

    hi,
    Can some one tell me difference between After parameter form Trigger and Before parameter trigger.
    Why do we need both these trigger , why can't we use any one of them because after parameter trigger will obviously fire before report trigger and similarly before report trigger will fire after parameter form.
    Thanks
    Ram

    Hi,
    i will make it clear..!
    Actually, we have four type of triggers in reports..!
    Before Parameter -- fires before params are suppied to the calling report..
    After Parameter -- fires after params are suppied to the calling report..
    Before Report -- fires before report is generated..
    After Report. -- fires after report is generated..
    Before Report and After Report triggers are used for formatting the report design..
    like u can specify a report to be displayed based on a condition in the Before
    Report trigger and u can specify some backend updations in the after report trigger
    which fires after report is generated..

  • Oracle Reports 10g Fonts issue

    Hi ,
    I am developing report on windows environment and deploying on Unix environment.
    I am using Oracle Report 10g R2 version.
    The report is created in batch through unix script. I am using barcode fonts and some other fonts in my report.
    When I generate PDF output for the report, I am getting proper barcode font however other fonts used in the report are not showing up properly in the PDF output.
    1. I am using application specific PPD file which contains the list of all the fonts used in the report
    2. All the AFM files for the fonts are availabe in the AFM folder
    3. In the uifont.ali file, I have done following things:
    a. Created Entry for PDF section as below:
    [ PDF ]
    barcode_font = "barcode_font"
    [ PDF:Subset ]
    "Hamburd DB" = "HamburgDemibold"
    4. I have executed the report wiith debug option on. I have checked the debug file and it is reading all the fonts file from required AFM location.
    5. I have creaeted XML of the report and check the fonts used and check the same with Font Alias file and also in AFM Folder.
    6. I have checked the PDF file (document properties) for fonts. It shows that Truetype font is used for Barcode. For others, it shows that Actual font was Adode Sans MS of Type 1 font and it was replaced with HamburgDemiBold however the output file is not proper.
    One more point: If I create a PS file and then conver the file to PDF, then the output PDF file is perfectly fine. However, if I create PDF directly, I am not getting the fonts properly.
    Please let me know what I have missed or done wrong.
    Thanks & Regards,
    Ramchandra Jetwani

    Hi Hamid,
    I tried the steps mentioned in the link however I am still facing the same issue.
    I am using rwrun60 as report runtime and executable. In the environment, REPORTS_PATH is not set.
    I had tried setting the REPORTS_PATH in the unix script and also adding the fonts path with REPORTS_PATH. However, it still does not work. I had tried PDF subset and PDF Embed both however none of them seems to work.
    Also, in the PDF (using menu documents --> fonts) , i see that actual font seen as Adode Sans MM and not the font i need in the output.
    I have question that if the reports path is not set then how oracle report will pick up the fonts details and which location will it look for fonts?
    Also, if reports path is not set then how do i direct oracle report to use font path that i want to be used.
    Uifont.ali file (PDF section)
    #===============================================================
    [ PDF:Embed ]
    "Code-25-30-Int" = "Code-25-30-Int.afm Code-25-30-Int.pfa"
    "Hamburg Medium" = "Hamburg-Medium.afm Hamburg-Medium.pfa"
    "Hamburg-Demi Bold" = "HamburgDemiBoldBold.afm HamburgDemiBoldBold.pfa"
    "Hamburg-Regular" = "Hamburg-Medium.afm Hamburg-Medium.pfa"
    "Hamburg-Medium" = "Hamburg-Medium.afm Hamburg-Medium.pfa"
    Degub file (created using debug_slfind)
    slfindninit():
    *** slfindfile() -- script started on Wed Mar 21 10:54:35 2012
    slfindfile(): product = vgs
    slfindfile(): version = 605
    slfindfile(): type = 1 (RESOURCE)
    slfindfile(): name = vgi
    slfindfile(): language dependent, character set independent
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated vgs to directory =
    slsfindfile(): guicommon6/vgs
    slsfindfile(): and env. var = vgs
    slsfindfile(): checking environment variable VGS_RESOURCE(12).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_RESOURCE(15).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/vgs/admin/resource/US/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/vgs/admin/resource/US
    slfexist(): testing /oratools/d6i_tmp/guicommon6/vgs/admin/resource/US/vgi.res
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/vgs/admin/resource/US/vgi.res
    slfindninit():
    *** slfindfile() -- script started on Wed Mar 21 10:54:35 2012
    slfindfile(): product = ca
    slfindfile(): version = 107
    slfindfile(): type = 3 (LOCALPREFERENCE)
    slfindfile(): name = prefs
    slfindfile(): language dependent, character set dependent
    slfindfile(): gui independent
    slfindfile(): buflen = 1024
    slsfindfile(): translated ca to directory =
    slsfindfile(): guicommon6/ca
    slsfindfile(): and env. var = ca
    slsfindfile(): checking environment variable CA_LOCALPREFERENCE(18).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_LOCALPREFERENCE(22).
    slsfindfile(): environment variable not set
    slsfindfile(): checking HOME directory.
    slsfindfile(): environment variable set to /appl/tst/ah04/stic/home (len=24)
    slfpath(): looking up path
         /appl/tst/ah04/stic/home
    slfexist(): testing /appl/tst/ah04/stic/home
    slfexist(): testing /appl/tst/ah04/stic/home/prefs.ora
    slfexist(): /appl/tst/ah04/stic/home/prefs.ora doesn't exist
    slsfindfile(): *** UNABLE TO LOCATE FILE ***
    slfindninit():
    *** slfindfile() -- script started on Wed Mar 21 10:54:35 2012
    slfindfile(): product = ca
    slfindfile(): version = 107
    slfindfile(): type = 2 (GLOBALPREFERENCE)
    slfindfile(): name = prefs
    slfindfile(): language dependent, character set dependent
    slfindfile(): gui independent
    slfindfile(): buflen = 1024
    slsfindfile(): translated ca to directory =
    slsfindfile(): guicommon6/ca
    slsfindfile(): and env. var = ca
    slsfindfile(): NOTE: All global preferences/aliases are searched for in
    slsfindfile(): $ORACLE_HOME/tools/admin
    slsfindfile(): checking environment variable CA_GLOBALPREFERENCE(19).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_GLOBALPREFERENCE(23).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/tools/admin/US/WE8ISO8859P1/
    slfexist(): testing /oratools/d6i_tmp/tools/admin/US/WE8ISO8859P1
    slfexist(): /oratools/d6i_tmp/tools/admin/US/WE8ISO8859P1 doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/tools/admin/US/
    slfexist(): testing /oratools/d6i_tmp/tools/admin/US
    slfexist(): /oratools/d6i_tmp/tools/admin/US doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/tools/admin
    slfexist(): testing /oratools/d6i_tmp/tools/admin
    slfexist(): testing /oratools/d6i_tmp/tools/admin/prefs.ora
    slsfindfile(): returned /oratools/d6i_tmp/tools/admin/prefs.ora
    slfindninit():
    *** slfindfile() -- script started on Wed Mar 21 10:54:36 2012
    slfindfile(): product = Reports_Runtime
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 0 (UNKNOWN)
    slfindfile(): name = Tk2Motif.rgb
    slfindfile(): language dependent, character set dependent
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): checking environment variable REPORTS_RUNTIME_UNKNOWN(23).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_UNKNOWN(14).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/Reports_Runtime/admin/US/WE8ISO8859P1/
    slfexist(): testing /oratools/d6i_tmp/Reports_Runtime/admin/US/WE8ISO8859P1
    slfexist(): /oratools/d6i_tmp/Reports_Runtime/admin/US/WE8ISO8859P1 doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/Reports_Runtime/admin/US/
    slfexist(): testing /oratools/d6i_tmp/Reports_Runtime/admin/US
    slfexist(): /oratools/d6i_tmp/Reports_Runtime/admin/US doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/Reports_Runtime/admin
    slfexist(): testing /oratools/d6i_tmp/Reports_Runtime/admin
    slfexist(): /oratools/d6i_tmp/Reports_Runtime/admin doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/Reports_Runtime/admin/US
    slfexist(): testing /oratools/d6i_tmp/Reports_Runtime/admin/US
    slfexist(): /oratools/d6i_tmp/Reports_Runtime/admin/US doesn't exist
    slsfindfile(): *** UNABLE TO LOCATE FILE ***
    slfindfile(): product = tk2
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 0 (UNKNOWN)
    slfindfile(): name = Tk2Motif.rgb
    slfindfile(): language dependent, character set dependent
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk2 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_UNKNOWN(12).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_UNKNOWN(14).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/US/WE8ISO8859P1/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/US/WE8ISO8859P1
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/US/WE8ISO8859P1 doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/US/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/US
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/US doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/Tk2Motif.rgb
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/Tk2Motif.rgb
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 0 (UNKNOWN)
    slfindfile(): name = uiprint.txt
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_UNKNOWN(12).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_UNKNOWN(14).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/uiprint.txt
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/uiprint.txt
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 40 (PPD)
    slfindfile(): name = stic
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_PPD(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_PPD(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/PPD
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/stic.ppd
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/stic.ppd
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 40 (PPD)
    slfindfile(): name = stic
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_PPD(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_PPD(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/PPD
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/stic.ppd
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/PPD/stic.ppd
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgDemiBoldBold
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgDemiBoldBold
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgDemiBoldBold
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgBoldBold
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgBoldBold
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgBoldBold
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgMediumMedium
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgMediumMedium
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgMediumMedium
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = Code-25-30-Int
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/Code-25-30-Int
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/Code-25-30-Int
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = EuroCollectionNormal
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/E/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/E
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/E doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/EuroCollectionNormal
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/EuroCollectionNormal
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 0 (UNKNOWN)
    slfindfile(): name = uixpatt.txt
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_UNKNOWN(12).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_UNKNOWN(14).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/uixpatt.txt
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/uixpatt.txt
    slfindninit():
    *** slfindfile() -- script started on Wed Mar 21 10:54:36 2012
    slfindfile(): product = reports60
    slfindfile(): version = 6000
    slfindfile(): type = 1 (RESOURCE)
    slfindfile(): name = rw
    slfindfile(): language dependent, character set independent
    slfindfile(): gui = m
    slfindfile(): buflen = 512
    slsfindfile(): checking environment variable REPORTS60_RESOURCE(18).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_RESOURCE(15).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/reports60/admin/resource/US/
    slfexist(): testing /oratools/d6i_tmp/reports60/admin/resource/US
    slfexist(): testing /oratools/d6i_tmp/reports60/admin/resource/US/rwm.res
    slsfindfile(): returned /oratools/d6i_tmp/reports60/admin/resource/US/rwm.res
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 26 (FONTALIAS)
    slfindfile(): name = uifont
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 1024
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_FONTALIAS(14).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_FONTALIAS(16).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/uifont.ali
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/uifont.ali
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgMediumMedium
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgMediumMedium
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgMediumMedium
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgDemiBoldBold
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgDemiBoldBold
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgDemiBoldBold
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = Code-25-30-Int
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/C doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/Code-25-30-Int
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/Code-25-30-Int
    slfindfile(): product = tk6
    slfindfile(): version = 6.0.8.14.0
    slfindfile(): type = 39 (AFM)
    slfindfile(): name = HamburgBoldBold
    slfindfile(): language free
    slfindfile(): gui independent
    slfindfile(): buflen = 512
    slsfindfile(): translated tk6 to directory =
    slsfindfile(): guicommon6/tk60
    slsfindfile(): and env. var = tk60
    slsfindfile(): checking environment variable TK60_AFM(8).
    slsfindfile(): environment variable not set
    slsfindfile(): checking environment variable ORACLE_AFM(10).
    slsfindfile(): environment variable not set
    slsfindfile(): *** ORATOOLS_HOME not set ***
    slsfindfile(): checking ORACLE_HOME environment variable.
    slsfindfile(): environment variable set to /oratools/d6i_tmp (len=17)
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H
    slfexist(): /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/H doesn't exist
    slfpath(): looking up path
         /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM
    slfexist(): testing /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgBoldBold
    slsfindfile(): returned /oratools/d6i_tmp/guicommon6/tk60/admin/AFM/HamburgBoldBold
    Thanks & Regards,
    Ramchandra Jetwani

  • Using ref cursor in after parameter form in reports

    hi everyone,
    I have problem in usage of ref cursor in after parameter form. My actual requirement is I have user parameter :p_minval, :p_maxval. The values into these user parameters will be coming dynamically using sql_statement as shown below
    select min(empid),max(empid) into :p_minval, :p_maxval from emp where empid in (:p_emp);
    I will be writing this query in the after parameter form
    :p_emp is a lexical parameter as per me but the after parameter form is taking it as a bind variable. so I decided to define a ref cursor and then use it for retrieve. But when I use ref cursor it is returning pl/sql error 591 saying that this is not supported by client side can anyone help me plz..
    The following is the code i tried to use in after parameter form
    function afterPform return boolean is
    type rc is ref cursor;
    l_rc rc;
    sqlstmt varchar2(512);
    begin
    sqlstmt:='select min(empid),max(empid) from emp where empid in ('||:p_emp||')';
    open l_rc for
    select max(empid) from emp where empid in ('||:p_emp||')';
    fetch l_rc into :p_maxval;
    close l_rc;
    return(true);
    end;
    thanks & regards
    venkat

    I ran into the same problem. any body knows why?

  • Forms 6i and Reports 10g

    Hello together,
    You can see at the subject that I want to combine Forms 6i and Reports 10g.
    Why? 6i does not support html interpretation and unicode.
    So what do you think about the kombination with old (Forms) 6i and new 10g (Reports)?
    How does the Reports published in 10g ?
    Paul
    ps: sorry for my bad english

    Reports in WebForms needs OAS (Oracle Application Server) to be published, they are viewed over the net in a browser.
    It's a very bad idea to combine them and most of the things will not work, even if make them work it will cost you lot more than just simply, migrate your application to Froms 10g.
    It would be easier for you to migrate your whole application to Forms 10g
    Tony

  • Parameter form for web report

    Hello,
    Using rwservlet on the web I can specify paramform=yes and I'll get a parameter form for my reports, which is really handy as it saves me from having to build my own forms. However when I run JSPs directly I cannot seem to get the automated form. Am I missing something obvious or is the parameter form just not available when you run JSPs directly?
    Cheerio,
    Robert

    Hi Robert,
    The description of the command line keyword PARAMFORM in Publishing Reports manual says:
    Use PARAMFORM to specify whether to display the Runtime Parameter Form when you execute a report via CGI or a servlet. PARAMFORM is used only to supply parameters to paper layout reports, not Web source reports.
    For JSP reports you need to create an HTML parameter form which calls the JSP and submits the parameters selected.
    You can find Reports documentation (incl Publishing Reports here):
    http://www.oracle.com/technology/documentation/reports.html
    Navneet.

  • Oracle Forms and Oracle Reports as portlets

    Please, where can I get the documentation to publish Oracle Forms and Oracle Reports as portlets. I found some information about it in metalink but the URLs are invalid.

    Hi,
    Here are the steps you need to follow while building Portlets .
    1) After creating a Application,in the last step click on the Checkbox 'EXPOSE AS PROVIDER'.
    If the application has already been created ,click on the same checkbox in the grant access section.
    2) When creating a component within the application ,select the checkbox 'PUBLISH TO PORTAL'.
    Incase ,you have already created the component then just click on the same option in the grant access section.
    Now when you want to add these portlets to be part of a page .Just select the provider(Application) and the portlets under it.
    Hope this helps.
    Anu

Maybe you are looking for

  • How do i setup a new apple id without making it an alternative id

    I need to set up an apple id for my daughter's iphone5 however when setting it up it did it under my primary ID.  I want her to have her own completely separate from mine.  Right now she has all my contacts and info.

  • Direct rule resolution in NW BPM process gateway

    Hi, I am currently reviewing BRM in the area of NW BPM and I am wondering whether it is possible to use a rule as expression in a Exclusive Choice Gateway in NW BPM process? Until today I have just seen tutorials where a rule has been used in a mappi

  • SAP 4.6 EOS

    Hello all - can someone tell me when SAP ERP 4.6 will be de-supported?  Thanks.

  • HT4236 Sorting Photos by filename?

    Why my photos in my iPhone's photos album can't sorting by filename? I Sync with itunes V.10.6.3.25 Thank for help..

  • Washed out pictures during night with LED lighting

    Few nights back i was into a pub with my friend, we planned to capture memory with a picture. Then i set up my cam with flash light (on and auto-swapped for few times), when taking pictures got a washed out (a white, light coloured) image. Tried few