Reports are not called from form in browser plz help

Hi,
I have installed 9iAS+8.1.7 database on the same machine with NT4 server.My system's forms(.fmx) are running well but my reports are not running from my main form.i call reports from the
from as,
Run_Product(reports,'..\iReports\xglrxx12.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);
Actually want to know the report's setting when calling from the from in a browser(environment variables,virtual paths etc.).
My database is installed in drive E:\8idb_home\ and 9iAS is on
G:\9iAS_home\.My systems .fmx & .rep files are in "iforms" and "ireports" folder respectively.
Plz help!
Many thanks!

Hi,
First of all thanks to Vincent Botteman for solving the prob.
Yes when i changed my call of run_product by excluding the path i have specified when calling from form it then makes a result.
Also specified the entry of your reports .rep files by giving path in reports60_path registery variable as,
Run regedit-->Hkey_Local_Machine-->Software-->Oracle here give the full path of your .rep files as an first entry in reports60_path variable.And finally not mention the path when calling reports from form as,
Run_Product(reports,'xglrxx13.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);<--- Correct way.
Run_Product(reports,'..\iReports\xglrxx13.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);<--- Wrong way.
Regards!

Similar Messages

  • Fast fromula related to oracle payroll are not called from Formula result window

    Hi,
    Few of the fast fromula related to oracle payroll are not called from Formula result window , please let me know how these fast formulas are called.
    Example : PAY_GB_EDI_MOVDED6_FOOTER
    Thanks,
    Subbu.

    Hi Subbu,
    Some reports are handled by the PYUGEN engine as Magnetic reports.
    These are old fashion reports to generate Magnetic files, like BACS EDI files etc..
    select * from ff_formulas_f
    where formula_name like 'PAY_GB_EDI_MOVDED6%';
    If you see the above, there are 3 formulas defined for generating this report - Header, Body & Footer.
    All are called in a sequence by the PYUGEN process based on what you seed in pay_magnetic_blocks.
    All the logic is within these Fast formulas.
    But as they're seeded there's nothing much you can do.
    Cheers,
    Vignesh

  • We are not able to execute below procedure, plz help me ASAP.

    Dear All
    I am created one procedure with 4 parameter 1 is Ref Cusrsor rest of 3 are Varchar,But we are not able to execute below procedure, plz help me ASAP.
    CREATE OR REPLACE PROCEDURE GETCHART(RPT_CURSOR OUT RPT_PACKAGE.RPT_RESULTS,
    V_VITALCHARTING VARCHAR2,
    V_DOCIDPATIENTS VARCHAR2,
    v_fromdate varchar2,
    v_todate varchar2) AS
    D1 VARCHAR2(500);
    D2 VARCHAR2(500);
    G1 VARCHAR2(500);
    R1 VARCHAR2(500);
    R2 VARCHAR2(500);
    R3 VARCHAR2(500);
    R4 VARCHAR2(500);
    R5 VARCHAR2(500);
    H1 VARCHAR2(500);
    H2 VARCHAR2(500);
    V_COUNT NUMBER;
    RC VARCHAR2(100);
    RMI VARCHAR2(100);
    RMAX VARCHAR2(100);
    R12 VARCHAR2(500);
    REQ NUMBER;
    V_MAX number;
    v_idcount number;
    RSEQ NUMBER;
    RCH VARCHAR2(500);
    BEGIN
    INSERT INTO TEMPDATA
    SELECT ROWNUM G, TIME1
    FROM (SELECT distinct TO_CHAR(H.RECORDEDDNT, 'mm/dd/yy hh24:mi:ss') TIME1
    FROM VIEW_PATIENTCHART V,
    chartingtxheader H,
    chartingtxdetails D
    WHERE h.docid = d.docidchartingtxheader
    and v.VITALCHARTING_PK = h.docidvitalcharting
    and v.VITALPARAMETER_PK = d.docidvitalparameter
    and v.VITALCHARTING_PK = V_VITALCHARTING --General Vital Signs
    and H.DOCIDPATIENTS = V_DOCIDPATIENTS
    and TO_DATE(to_char(h.recordeddnt, 'DD/MM/YYYY'),
    'DD/MM/YYYY') BETWEEN
    TO_DATE(v_fromdate, 'DD/MM/YYYY') AND
    TO_DATE(V_TODATE, 'DD/MM/YYYY'));
    SELECT MAX(ID) INTO V_MAX FROM TEMPDATA;
    V_IDCOUNT := 0;
    WHILE V_IDCOUNT < V_MAX loop
    FOR J IN (SELECT id, ROWNUM G, vdate time1
    FROM (SELECT id, ROWNUM, VDATE
    FROM TEMPDATA
    WHERE ID BETWEEN V_IDCOUNT + 1 AND V_IDCOUNT + 8)) LOOP
    D1 := D1 || 'COL' || J.G || ',';
    D2 := D2 || '''' || J.TIME1 || '''' || ',';
    END LOOP;
    D1 := SUBSTR(D1, 1, LENGTH(D1) - 1);
    D2 := SUBSTR(D2, 1, LENGTH(D2) - 1);
    DBMS_OUTPUT.PUT_LINE(d1);
    SELECT SEQ_GETCHART.NEXTVAL INTO RSEQ FROM DUAL;
    G1 := 'INSERT INTO GETDATA2 (IDSLNO,idcount,' || D1 || ') VALUES(' || RSEQ || ',' ||
    V_IDCOUNT || ',' || D2 || ')';
    --EXECUTE IMMEDIATE G1;
    DBMS_OUTPUT.PUT_LINE(d1);
    DBMS_OUTPUT.PUT_LINE(SUBSTR(D2, 1, LENGTH(D2) - 1));
    DBMS_OUTPUT.PUT_LINE(G1);
    EXECUTE IMMEDIATE G1;
    FOR K IN (SELECT id, ROWNUM G, vdate time2
    FROM (SELECT id, ROWNUM, VDATE
    FROM TEMPDATA
    WHERE ID BETWEEN V_IDCOUNT + 1 AND V_IDCOUNT + 8)) LOOP
    FOR I IN (select s.*, rownum hslno
    from (SELECT v.CHARTNAME,
    v.PARAMETERNAME_CS,
    ' ' || v.PARAMETERNAME PARAMETERNAME,
    TO_CHAR(H.recordeddnt, 'mm/dd/yy hh24:mi:ss') TIME1,
    CASE
    WHEN IDSLNO_GN5029 IN (1040, 1041) THEN
    CASE
    WHEN TO_NUMBER(d.recordedvalue) <
    TO_NUMBER(D.MINVALUE) THEN
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'L')
    ELSE
    CASE
    WHEN TO_NUMBER(d.recordedvalue) >
    TO_NUMBER(D.MaxVALUE) THEN
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'H')
    ELSE
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'N')
    END END ELSE d.recordedvalue END IMAGECHAR,
    d.minvalue,
    d.maxvalue,
    D.UOMCODE
    FROM VIEW_PATIENTCHART V,
    chartingtxheader H,
    chartingtxdetails D
    WHERE h.docid = d.docidchartingtxheader
    and v.VITALCHARTING_PK = h.docidvitalcharting
    and v.VITALPARAMETER_PK = d.docidvitalparameter
    and v.VITALCHARTING_PK = V_VITALCHARTING --General Vital Signs
    and H.DOCIDPATIENTS = V_DOCIDPATIENTS
    ORDER BY V.DISPLAYORDER_CS, V.DISPLAYORDER
    -- v.PARAMETERNAME_CS,v.PARAMETERNAME
    ) s
    where s.time1 = k.time2) LOOP
    select count(1)
    into v_count
    from GETDATA2 d
    where d.PARAMETERNAME_CS = i.PARAMETERNAME_CS
    and PARAMETERNAME = i.PARAMETERNAME
    and idcount = v_idcount;
    IF V_COUNT = 0 THEN
    RCH := I.CHARTNAME;
    R1 := 'COL' || K.G;
    R2 := '''' || I.PARAMETERNAME_CS || '''' || ',';
    R3 := '''' || I.PARAMETERNAME || '''' || ',';
    R4 := '''' || I.IMAGECHAR || '''';
    RC := '''' || I.CHARTNAME || '''' || ',';
    RMI := '''' || I.minvalue || '''' || ',';
    RMAX := '''' || I.maxvalue || '''' || ',';
    R12 := '''' || I.UOMCODE || '''' || ',';
    SELECT SEQ_GETCHART.NEXTVAL INTO RSEQ FROM DUAL;
    H1 := 'INSERT INTO GETDATA2 (IDSLNO,UMCODE,idcount,CHARTNAME,minvalue,maxvalue,PARAMETERNAME_CS,PARAMETERNAME,' || R1 || ')' ||
    ' values(' || RSEQ || ',' || R12 || v_idcount || ',' || RC || RMI || RMAX || R2 || R3 || R4 || ')';
    EXECUTE IMMEDIATE H1;
    ELSE
    R5 := 'COL' || K.G;
    R4 := '''' || I.IMAGECHAR || '''';
    H2 := 'UPDATE GETDATA2 SET ' || R5 || '=' || R4 ||
    'WHERE PARAMETERNAME_CS=' || '''' || I.PARAMETERNAME_CS || '''' ||
    ' AND ' || 'PARAMETERNAME=' || '''' || I.PARAMETERNAME || '''';
    EXECUTE IMMEDIATE H2;
    END IF;
    END LOOP;
    end loop;
    UPDATE getdata2 s
    set s.parametername = s.parametername || ' -' || ' (' || minvalue ||
    ' -- ' || maxvalue || ') ' || UMCODE
    where s.parametername is not null
    and idcount = v_idcount
    and minvalue != 0
    and maxvalue != 0;
    UPDATE getdata2 s
    set s.parametername = s.parametername || ' -' || UMCODE
    where s.parametername is not null
    and idcount = v_idcount
    and minvalue = 0
    and maxvalue = 0;
    UPDATE GETDATA2 S
    SET S.PARAMETERNAME_CS = NULL
    WHERE ROWID NOT IN (SELECT MIN(ROWID)
    FROM GETDATA2
    WHERE idcount = v_idcount
    GROUP BY PARAMETERNAME_CS)
    and idcount = v_idcount;
    UPDATE GETDATA2 S
    SET CHARTNAME = NULL
    WHERE ROWID NOT IN (SELECT MIN(ROWID)
    FROM GETDATA2
    WHERE idcount = v_idcount
    GROUP BY CHARTNAME)
    and idcount = v_idcount;
    UPDATE getdata2 s
    set s.parametername = ' PARAMETER'
    where s.parametername is null
    AND S.PARAMETERNAME_CS IS NULL;
    v_idcount := v_idcount + 8;
    D1 := null;
    d2 := null;
    end loop;
    for i in (SELECT G.PARAMETERNAME_CS, G.IDSLNO
    FROM GETDATA2 G
    WHERE G.PARAMETERNAME_CS IS NOT NULL) LOOP
    INSERT INTO GETDATA2
    (IDSLNO, PARAMETERNAME)
    VALUES
    (I.IDSLNO - 1 + 0.5, I.PARAMETERNAME_CS);
    END LOOP;
    update GETDATA2 h set h.PARAMETERNAME_CS = null;
    update GETDATA2 h set h.chartname = rcH;
    INSERT INTO GETDATA1
    SELECT CHARTNAME,
    PARAMETERNAME_CS,
    PARAMETERNAME,
    COL1,
    COL2,
    COL3,
    COL4,
    COL5,
    COL6,
    COL7,
    COL8,
    COL9,
    COL10,
    MINVALUE,
    MAXVALUE,
    UMCODE
    FROM GETDATA2
    ORDER BY IDSLNO;
    OPEN RPT_CURSOR FOR
    SELECT * FROM GETDATA1;
    END;
    CREATE OR REPLACE PACKAGE "RPT_PACKAGE"
    as
    type RPT_RESULTS is REF CURSOR;
    type RPT_VARRAY is VARRAY(2000) of VARCHAR2(2000);
    END RPT_PACKAGE;
    Execute
    declare
    type my_newcursor IS REF CURSOR;
    begin
    GETCHART(my_newcursor,'General Vital Sign','1145561',sysdate-1,sysdate);
    end;

    Parwez wrote:
    Dear All
    I am created one procedure with 4 parameter 1 is Ref Cusrsor rest of 3 are Varchar,But we are not able to execute below procedure, plz help me ASAP.
    see a picture of my car.
    my car won't go.
    tell me how to make my car go.
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Is it possible to call diff  report queries when called from form

    hello all
    I want to know if it is possible to call different report queries when called from oracle 9i form .
    i tried to use he
    SET_REPORT_OBJECT_PROPERTY(REPORT_QUERY = 'q_diff' )
    option and actualy called the report name
    but it dint seem to work !!!
    also is it possible to chng the title of the browser at runtime

    Sandeep,
    this property is used with passing Record Groups as data parameters from Forms.
    Passing the query name indicates that the values contained in the record group substitutes the result of the named query. This may work in client/server Reports, but it definitively doesn't work on teh Web because you can't pass a Record Group as a data parameter in this environment.
    Te problem with changing a Reports query is that you must meet the same number of columns and column types as they exist in the Report. I didn't spend much time with XML based runtime customization in Reports. I think that you can change the Reports query through this feature. In Forms you would create the XML file using text_io and the merge it with an existing Reports. I never did this before. So it could be that all I am saying does not work in the end. Before following this idea, you may better ask in teh Reports forum on OTN if it is possible to use the runtime customization feature to modify the Reports query.
    Fran

  • For Some Reason Some Of My Shows Are Not Part Of the Other ones PLZ HELP

    Okay I love apple and its multiple products but I have been experiencing some problems with itunes. I love That 70s Show and have 6 season of it and a program i bought that transfers them into ipod format. For some reason there are a couple of episodes that have the same information of seasons, shows, but are in a different part of itunes. I have tried reinstalling the episode but it doesnt become part of the other 100 episodes.
    Anyone Help Please

    I've encountered errors like this with some of my episodes of this and that. I looked carefully and saw that in some files, the names of the ep or the series had a space after the last character, I found this made ITunes thing it was a completely different thing. Dunno if that'll help you but u may want to have a look at your tags. GL

  • 4.5 to 6i migration or report calling from forms in XE???

    Hi Friends,
    I really appreciate your helping tendency. Let me explain the whole scenario.
    My application basically consists of
    Forms [32 Bit] Version 5.0.6.8.0 (Production)
    Report Builder 3.0.5.8.0
    Oracle Enterprise Edition Release 9.2.0.1.0 - Production
    Now we migrated our database into Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production. After the migration all the existing forms and report individually were running without any problem. But there was a huge problem. Whenever I tried to call any report from any form the report engine appeared and then stopped responding. So report calling from forms was not possible after the database migration. I was suggested by someone from OTN forum to migrate my forms and reports into 6i. I have started doing the migration using ifcmp60. WIth forms 6i, reports can be called from forms. But I am facing problem in every other steps. There are many things are not working after the migration though the migration log shows no error. For example, COMMIT_FORM, EXECUTE_QUERY (for detail table), LOV, TOOL.GETVAR lots of things are not working.
    My application has 200 forms and 250 reports.
    Please help and advise on:
    How to call reports from form when the database is XE Or
    How to overcome the stated migration problem
    Rgds,
    Luther

    Dear Mark:
    I have two choices. I can either migrate to 6i or I can go with the existing 4.5. If I go with 4.5 ......the reports are not being called from forms. This problem is happening after I changed the database from 9i to XE. Please advise what to do so that I can keep my forms in 4.5, database in XE and can call reports from forms.
    Rgds,
    Luther

  • Reports 10g calling from forms 10g

    try reports 10g calling from forms 10g ,but I not do.
    Programme have frm-41213 unable repserver.. error and I am not start up oracle reports server from services. please help me.

    Dear Lida;
    i use this code
    rwserver -install repsername
    but in release 3 it is not work and i had to write it like this
    rwserver server=repservname
    the first code make the report server work as service could u tell me how the first code work with realease 2 but in realeas 3 not working ?
    and thkx alot in advance
    regards
    Reda El Mitwally

  • Print report to client printer from forms

    Hi,
    I need to print a report directly to a client printer.
    There is a utility called ORARRP - Oracle Reports Remote Printing Utility.
    But the document I saw was from Oct 2001 - so is this still the only and best option ?
    I'm using RUN_REPORT_OBJECT in forms to launch the report.
    This works fine when the DESTYPE is FILE and DESNAME = PDF
    The PDF-outputt is then successfully shown with WEB.SHOW_DOCUMENT
    When changing DESTYPE to PRINTER and DESNAME to clients printername then report won't run. "Report filed with error message TERMINATED_WITH_ ERROR".
    Is it possible to print directly to a client printer using RUN_REPORT_OBJECT ?
    (Our client printers are not networkprinters)
    Environment:
    Forms [32 Bit] version 9.0.4.0.19
    Report Builder 9.0.4.0.33
    Reportsserver on linux
    Thanks !
    Sam

    (Our client printers are not networkprinters)This means you cannot print from the server directly on the client printer with destype=printer, since the server cannot see the printer.
    So, a manual print command by the user from the browser or the orarrp utility are your options.

  • Some reports are not displayed -- JInitiator 1.3.17 to JRE 1.6.43

    We have our Medical Suite developed using Oracle Forms 10gR1(9.0.4) version.As we came to know that JInitiator is no more supported from Oracle and it has many problems Windows 7 64 bit esp.., with IE (9.0) recently we have migrated the Client PC's from JInitiator 1.3.17 to JRE 1.6.43.
    Unfortunately when we print the reports, some of the reports are being displayed and the other reports are not being displayed ( No action upon on clicking print button).
    But when we revert back to JInitiator all the reports are working fine without any change in IE configuration. So can someone give me the probable cause for this behaviour.
    Edited by: Chaitu on Mar 17, 2013 8:57 AM

    Chaitu wrote:
    If the parameter are written in multiple lines using concatenation then there is no problem, but some places we made the DESTYPE OR CACHE OR DESFORMAT in different lines and it is working fine when we used Jinitiator 1.3.17.
    Once we changed to JRE, it stopped working maybe because the command cannot be issued to browser since it is incomplete.
    Is 10.1.2.3 a stand alone patchset given by Oracle for migrating 10g R1 to 10g R2 or there are some other patches given before this patchset(10.1.2.3).
    I am asking this because most of the times, Oracle releases a patch in sequential order and they should be installed in the same order.
    For example In order to install Enterprise Manager 10g Grid Control Release 5 (10.2.0.5), we must have 10.2.0.1.0 (10.2.0.2.0 for Windows) release up and running. So I was not sure whether this patch can be installed alone without any other combinations directly. Please enlighten me if you can.
    Hi Chaitu,
    patchset(10.1.2.3) is applicable for the following releases only:
    Oracle Application Server 10g Release 2 (10.1.2.0.0)
    Oracle Application Server 10g Release 2 Standard Edition One (10.1.2.0.1)
    Oracle Application Server 10g Release 2 (10.1.2.0.2)
    Oracle Application Server Forms and Reports Services (10.1.2.0.2)
    Oracle Application Server Portal 10g Release 2 (10.1.4)
    Oracle Application Server Portal 10g Release 2 Patch Set 2 (10.1.4.1)
    Oracle Developer Suite 10g (10.1.2.0.2)
    Oracle Business Intelligence 10g Release 2 (10.1.2)
    Oracle Business Intelligence 10g Release 2 (10.1.2.0.2)
    Oracle Business Intelligence Tools 10g Release 2 (10.1.2)
    Oracle Business Intelligence Tools 10g Release 2 (10.1.2.0.2)
    Oracle Business Intelligence Tools 10g (10.1.2.0.2) that shipped as part of Oracle Developer Suite 10g Release 2 (10.1.2)
    OracleAS 10g Release 2 Patch Set 1 (10.1.2.1.0)
    OracleAS 10g Release 2 Patch Set 2 (10.1.2.2.0)
    Hope this helps
    Hamid
    * batter discuss at {forum:id=82} forum.

  • Reports are not able to run coz of Block Corruption

    Hi all,
    I have reported some Oracle finance reports are not running.
    Once i got the call i looked into the user trace file, there i found the below :
    Corrupt block dba: 0x2100f345 file=33. blocknum=62277. found during buffer read
    on disk type:0. ver:0. dba: 0x00000000 inc:0x00000000 seq:0x00000000 incseq:0x00000000
    Entire contents of block is zero - block never written
    Reread of block=2100f345 file=33. blocknum=62277. found same corupted data
    table scan: segment: file# 15 block# 84
    skipping corrupt block file# 33 block# 62277
    Corrupt block dba: 0x2100f346 file=33. blocknum=62278. found during buffer read
    on disk type:0. ver:0. dba: 0x00000000 inc:0x00000000 seq:0x00000000 incseq:0x00000000
    Entire contents of block is zero - block never written
    Reread of block=2100f346 file=33. blocknum=62278. found same corupted data
    table scan: segment: file# 15 block# 84
    skipping corrupt block file# 33 block# 62278
    Then i try to find out which table is affected by the below queary :
    SQL> select segment_type,owner,segment_name from dba_extents where file_id=33 and 62278 between block_id and block_idblocks -1;+
    SEGMENT_TYPE      OWNER
    SEGMENT_NAME
    TABLE             GL
    GL_JE_LINES
    So this above table GL_JE_LINES is the affected table is init.
    Now what is the action i have to take. In this database there is no archive log enabled and version of this database is 7.
    Can any one sugges me what is the action i have to take now.
    Regards
    Hamid

    DB version :
    SQL> select * from v$version;
    BANNER
    Oracle7 Server Release 7.3.4.3.0 - Production
    PL/SQL Release 2.3.4.3.0 - Production
    CORE Version 3.5.4.0.0 - Production
    TNS for IBM/AIX RISC System/6000: Version 2.3.4.0.0 - Production
    NLSRTL Version 3.2.4.0.0 - Production
    Alert log :
    SID>tail -f alert_SID.log
    Tue Sep 25 14:35:03 2012
    Errors in file /u20/app/oracle/admin/APRD/udump/ora_84426_aprd.trc:
    Tue Sep 25 14:35:03 2012
    Errors in file /u20/app/oracle/admin/APRD/udump/ora_84426_aprd.trc:
    Tue Sep 25 14:35:03 2012
    Errors in file /u20/app/oracle/admin/APRD/udump/ora_84426_aprd.trc:
    Tue Sep 25 15:09:18 2012
    create tablespace tbs datafile '/stage/software/APRD/oradata/tbsnew.dbf' size 10                                                                             0m
    Tue Sep 25 15:09:27 2012
    Completed: create tablespace tbs datafile '/stage/software/AP...
    Trace file :
    SID>tail -f ora_84426_aprd.trc
    on disk type:0. ver:0. dba: 0x00000000 inc:0x00000000 seq:0x00000000 incseq:0x00000000
    Entire contents of block is zero - block never written
    Reread of block=2101d366 file=33. blocknum=119654. found same corupted data
    table scan: segment: file# 15 block# 84
    skipping corrupt block file# 33 block# 119654
    Corrupt block dba: 0x2101d367 file=33. blocknum=119655. found during buffer read
    on disk type:0. ver:0. dba: 0x00000000 inc:0x00000000 seq:0x00000000 incseq:0x00000000
    Entire contents of block is zero - block never written
    Reread of block=2101d367 file=33. blocknum=119655. found same corupted
    For this above :
    SQL> select segment_type,owner,segment_name from dba_extents where file_id=33 and 119654 between block_id and block_id+blocks -1;
    SEGMENT_TYPE      OWNER
    SEGMENT_NAME
    TABLE             GL
    GL_JE_LINES
    Regards
    Hamid

  • How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk

    How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk.i did try all the options but I can not find the phone number to call from Croatia,
    I can not change my Apple ID to the old mail (not possible!)
    The old mail don't accept the new password..
    I can not delete the Icloud all the time asking my the password of the old mail!
    I realy need help

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • Long Running ( 8Min) Reports are not able Preview in client browsers

    Hi,
    I have converted Reports 6 to 6i and is running on 9ias.
    Reports which are taking more than 8 min are not coming up in client browsers. I have checked in the report output directory and the reports are created there. if i manually browse the reports by giving the path they are coming. Quick run reports are working fine and are coming in cleint browsers.
    can any one help
    naveen

    Hi Naveen
    Looks like the browser is timing out. I suggest you to pre-create "long" report beforehand so that the users do not have to wait.
    The hard way out, of couse, is to optimize your report, if possible.
    Regards
    Sripathy

  • I have a HP-6210 Laptop with Windows 8.1 ... and Videos are not playing from youtube espn etc

    I have a HP-AMD A4-6210 Laptop with Windows 8.1 ... and Videos are not playing from youtube espn etc
    This question was solved.
    View Solution.

    Hi,
    Try a clean installation of the flash plugin/activeX as follows.
    First, download the Flash uninstall utility on the link below and save it to your Downloads folder.
    Flash Player Uninstaller.
    When the download has completed, close all browser windows, open your Download folder and run the uninstaller.  After this has completed, restart the notebook.
    When windows has reloaded, download and install the latest version of Adobe Flash.  Note: You may want to deselect the option to include McAfee Security Scan Plus before downloading.
    When the installation has completed, restart the notebook.
    If the above doesn't correct the issue, then try the following.
    First of all, download and run the Shockwave uninstaller on the link below.
    http://fpdownload.macromedia.com/get/shockwave/uninstall/win/sw_uninstaller.exe
    After this has completed, restart the notebook.
    When windows has fully reloaded, download and install the latest version of Shockwave on the following link.
    http://get.adobe.com/shockwave/
    Again, after this installation, restart the notebook.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Reports are not posting with report repository webserver configured for Sin

    Hi Everyone,
    We have configured Single Signon on our Test environment (UADB1) using Sun Authentication Manager. Everything went well, we can login using our LDAP accounts except for one thing. The reports are not posting to the report repository.
    Our setup goes like this. We have used only one webserver for login and for report repository purposes. SSL certificate was configured in the webserver and we are using https in the report node. Both URLs https://dv001.test.com:8450 and http://dv001.test.com:8400 were configured for Single Signon.
    Report Node Definition
    Node Name: uadb1
    URL: https://dv001.test.com:8450/psreports/uadb1
    Connection Information
    https
    URI Port: 8450
    URI Host: dv001.test.com
    URI Resource: SchedulerTransfer/uadb1
    Below is the error I am getting. If I will use another webserver which is not the Single Signon configured as report repository the reports are posting. So, I am thinking this has something to do with the Single Signon setup and SSL. ANy idea? Thanks.
    PSDSTSRV.2093190 (10) [06/13/10 01:05:43 PostReport](3) 1. Process Instance: 9499/Report Id: 8465/Descr: Process Scheduler System Purge
    PSDSTSRV.2093190 (10) [06/13/10 01:05:43 PostReport](3) from directory: /psft/pt849/appserv/prcs/UADB1/log_output/AE_PRCSYSPURGE_9499
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) (JNIUTIL): Java exception thrown: java.net.SocketException: Unexpected end of file from server
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](3) HTTP transfer error.
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](3) Post Report Elapsed Time: 0.2300
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) =================================Error===============================
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) Unable to post report/log file for Process Instance: 9499, Report Id: 8465
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Process Name: PRCSYSPURGE, Type: Application Engine
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Description: Process Scheduler System Purge
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Directory: /psft/pt849/appserv/prcs/UADB1/log_output/AE_PRCSYSPURGE_94

    Duplicated thread : Reports not posting if using Single Signon webserver as report repo
    Nicolas.

  • Reports are not run in WAN using OAS10g R2 on MS Server2003? urgent help

    My Forms and Reports was run successfully using Oracle AS10gR2 installing on Win XP on Server in my LAN and WAN environment. So every thing is working fine using Win XP on my server Machine.
    But when I install MS Server 2003 and Oracle AS10gR2 on my server machine. Forms and reports are run successfully in LAN but in WAN forms are run successfully and reports are not running?
    Please send me the solution on urgent.
    Thanks.
    Shahzad

    Hi Paul,
    We recently upgraded our SCCM 2012 R2 servers to OS 2012 R2, Now i could not able to see the path you mention in your blog.
    mofcomp.exe “C:\Program
    Files (x86)\Microsoft SQL Server\100\Shared\sqlmgmproviderxpsp2up.mof”
    Bear in mind that the above command is for SQL Server 2008 and it assumes that SQL is installed in its default location.
    The command for SQL Server 2012 is:
    mofcomp.exe “C:\Program
    Files (x86)\Microsoft SQL Server\110\Shared\sqlmgmproviderxpsp2up.mof”
    I can only see D:\Program Files (x86)\Microsoft SQL Server\100\<Below
    folders>
    DTS
    SDK
    Tools
    srkr

Maybe you are looking for

  • Date format in a parameter field (help)

    Post Author: binsk CA Forum: Formula Hi Guys, Newbie in CR world. I need help in changing the date format in parameter field. present setting is YYYY/MM/DD. I need it in DD/MM/YYYY. How is it to be done? My db is running in oracle. I'm using the CR X

  • Printing problem for Arabic language in Script..printing in reverse...

    Hi Experts,   I have a customized P.O script which is now to be made for arabic language.i have excel sheet with me which is translation of english to arabic, 1.  how can i proceed with the form in order to get exactly in arabic. 2. as arabic is read

  • Dump error while doing migo

    >I am trying to do migo for a standard po. after doing all the entries the document is showing "document ok". But while posting the gr i am getting an error "the curent application  triggered a termination with a short dump.Account 24840000 is blocke

  • Input streams kill my applet

    This is probably a little thing that I have forgotten but I can't for the life of me get. Ok I should probably say I am running XP, with Java 1.5 and Firefox I have an applet that works fine on Eclipse but when I try to run it by it self it seems to

  • Airport  utility can't find my airport base station

    Im trying to set up a wireless internet at home.  I have a comcast cable internet connected to motorola sb120 cable modem and I connected an ethernet cable from the modem to my aiport base station. when I open the airport utility in my macbook (also