run the report using hyperlink

Hello
I'm working on oracle forms & reports 10g. I have an oracle (RDF) report generating a pdf file. I have create a hyper link that opens a text file. It works very well.
but I want to know is - it possible that, in my hyperlink other rdf, run and create another output on screen or as a file.
because my reports generate all the numbers that I create the hyperlink, I want to know how to generate a hyperlink when my use a specific number employee click on another run of rdf and show his personnel information.

concerning

superdba wrote:
Hello
I am working on oracle forms & reports 10g. I have an oracle (RDF) report generating a pdf file. I have create a hyper link that opens a text file. It works very well.
but I want to know is - it possible that, in my hyperlink other rdf, run & create another exit on screen or as a file.
because my reports generate all the numbers that I create the hyperlink, I want to know how to generate a hyperlink when my use a specific number employee click on another run of rdf & show his personnel information.

concerning

Hi superdba
There is a great link on the web. Check the report Hyperlink;)

Hope this helps

Hamid

Tags: Oracle Development

Similar Questions

  • running a report of hyperlink

    I'm under Oracle Developer suite 10 g on Windows. I have a report that contains a hyperlink. Now, I want that when the user clicks this hyperlink, a new report should be run. Can someone guide me as what I should write in the hyperlink my said domain property to run the report.

    Thank you.

    Hello
    It was just an example... There are several ways to work around these problems. I use "Key Mapping" to incorporate all of these parameters in the 11g environment.
    Check "publishing reports on the Web with Services of Oracle 11 g Release 1 (11.1.1) B32121-02 reports" on key mapping.
    See you soon
    LS

  • FRM-41214: cannot run the report during the call to the reports

    Hi all,

    I work with Forms 10g on Windows 7 (local working with OC4j), I have a form with a button calling a report, it's the code for the button:

    declare

    Repid REPORT_OBJECT;

    v_rep VARCHAR2 (100);

    rep_status VARCHAR2 (20);

    BEGIN

    Rep: = find_report_object ('EMPS_BY_DEPTS');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_EXECUTION_MODE, batch);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_COMM_MODE, SYNCHRONOUS);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESFORMAT, 'pdf');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESTYPE, cache);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_SERVER, 'repetat');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'paramform = no');

    v_rep: = RUN_REPORT_OBJECT (repid);

    rep_status: = REPORT_OBJECT_STATUS (v_rep); 

    While rep_status in ('MARKET', 'OPENING_REPORT', 'PENDING')

    LOOP

    rep_status: = report_object_status (v_rep);

    END LOOP;

    IF rep_status = "FINISHED" THEN

    WEB. SHOW_DOCUMENT ('/ reports/rwservlet/getjobid ': substr (v_rep, InStr(v_rep,'_',-1) + 1) |'?) "|' server = repetat","_blank"); "

    ON THE OTHER

    message ("error when running report");

    END IF;

    END;


    I create a report object in the browser of the object with the name ""EMPS_BY_DEPTS "with properties " filename = emps_by_depts.rdf.

    I also have a server with the command server = repetat wserver report

    When I press the button to call the report I get this famous 41214 FRM: cannot run the report.

    I tried running the report with rwservlet: http://acer-pc:8889/reports/rwservlet?report=emps_by_depts.rdf & userid=hr/hr@orcl & desformat = pdf & destype = hide & expiry =...

    and it works very well.

    Any idea and thank you


    I do in this case,

    1 - i run report with parameterform = YES (Note: your report is not a form of parameter), so I can see explanation real error report.

    2 - showjobs of report server options

    We use the 11g r2, for 11g r2 reports this link http://: 9002/reports/rwservlet/showjobs? = RptSvr__asinst_1 server , so I can't see error detail.

    10g should be that this option absolutely. but I don't know.

    These can help you.

    Best regards.

  • What is the best way to run the report of jasper in the ADF Applications?

    Mr President.

    What is the best way to run the report of jasper in the ADF Applications?

    Concerning

    Tender Hello,

    Check out these links

    Sameh Nassar: Using Jasper report in Application of ADF (detailed)

    https://www.YouTube.com/watch?v=ezX0gdLIhs0

  • Cannot run the report

    DB and dev 10grel2, xp sp2
    Hi all
    IAM trying to run the report in the form with a button generator
    I used this command to start my server: Server rwserver = "MyServer" auto = Yes and it works well.

    I created a report object (report5) on the form that contains the button to run the report.
    When I click on the browser reports node to create the report object, I assigned 'myrep' as the file name of the report, not based on a block of data and then created the report of the scott schema dnames.

    then closed the Report Builder without saving it in another format.

    then I wrote this code in the when button pressed the shutter:
     
    
    declare 
         rp report_object ;
         v varchar2(90) ; 
    begin 
         rp := find_report_object('report5') ; 
         v := run_report_object(rp) ; 
    end ; 
    -nothing wrong with the code, then I ran the form, you press the button to find out:
    FRM-41214 cannot run the report.
    When I looked at the online help, it tells me nothing but
    Cause: The report server could not run the specified report.
    Action: Check the report server and make sure it is running.
    and I checked and it runs and upward.
    What should I do?
    Thanks in advance

    Check my code and try this code in you touch. I write it given your situation and information provided. You can paste directly into your trigger button.

    DECLARE
    
         v_repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         v_rep_status VARCHAR2(100);
         v_param VARCHAR2(200) := NULL;
         v_valor VARCHAR2(200);
         v_url VARCHAR2(2000);
         v_repserver varchar2(20) := 'myserver'; -- YOUR REPORT SERVER NAME
    
         v_report varchar2(100) := 'E:\myrep.jsp'; -- YOUR REPORT PATH AND NAME
         /* IF .JSP IS NOT WORK CONVERT IT TO .REP AND TRY */
         v_PARAMETRO varchar2(100) := '';
    
    BEGIN
    
         v_repid := FIND_REPORT_OBJECT('report5'); -- report is an element from object navigator report
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_FILENAME, v_report);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESTYPE, cache);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESFORMAT, 'pdf' );
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESNAME, v_report);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_SERVER, v_repserver);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_OTHER, 'paramform=no '||v_PARAMETRO);
         v_rep := RUN_REPORT_OBJECT(v_repid);
         v_rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE v_rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
         v_rep_status := REPORT_OBJECT_STATUS(v_rep);
         END LOOP;
         IF v_rep_status = 'FINISHED' THEN
         message(v_rep);
         message(v_rep);
         WEB.SHOW_DOCUMENT(v_url||'/reports/rwservlet/getjobid'||
         SUBSTR(v_rep, INSTR(v_rep,'_', -1)+1)||'?'||'server='||v_repserver, '_blank');
         END IF;
    
    END;
    

    So let me know what you get...

    Ed: I've updated my blog link. You can check the first time, if necessary.

    Published by: HamidHelal on January 21, 2013 12:43 AM

  • Run the report in a specific folder

    Would it not be possible to add the ability to run the virtual computer report on a specific folder in vCenter?  Our vCenter has folders separated for various departments within our Organization, and it would be useful to be able to run the report on each of these record independently.  I checked through similar scripts in the repository but not found anywhere where this has been done.  Thank you!

    Hello

    No, currently how the script is written, its pretty hard to filter on a file especially vCenter. The script currently travels all ESX(I) hosts in your environment, and then from there, it crosses the VMS in each host out information relavent. It is not impossible, but it requires a bit of code to support change.

    If you are looking for an example of list of virtual machines by a particular VM folder, there is a script in the repo called "listVMByFolder.pl" that can give you a starting point.

    Good luck

  • Run the report to PL/SQL with the branch to another page

    I have an application which, at various times, I run a PL/SQL procedure to perform an action, and then we must run a report while also navigating away from the current page. The actions are performed on a button click.

    I tried several methods, but for the life of me cannot get the system to do the two things (ie. run the report and the direction to another page). I tried to put in page 0 (to be executed after the treatment on the click of a button) a branch with a request line to print the report, followed by a branch to the other page (also to run after the treatment on the button click) - and only the branch page 0 runs in fact. Also tried a branch to the other page only, with the print in the request parameter request - but only runs the report, do not create a branch to the other page.

    I also tried to put the call to run the report in the PL/SQL code, using utl_http.start_request (url), but that came with a "Bad Request" error. Also tried to use the owa_util.redirect_url call, but also no chance.

    I'm pulling my hair out at this time, especially because I am under pressure to get the system in very short time.

    Any suggestion would be appreciated.

    You can run queries report of their URL (f? p = & APP_ID.: 0: & SESSION.: PRINT_REPORT =)

    So one approach would be to
    The button click, call a JS function which

  • 1 use the Ondemand/recall process in order to perform the processing workflow (file selection box)
  • 2 open the report in a popup (from your IR page)
  • 3 redirect leaves the IR page to another page?
    ------
    Another approach:
  • 1. IR report submits the page
  • 2. in the PLSQL block, you do the treatment
  • 3. the branch redirects to a URL that would point to the report URL.
    OR
  • 3. do you have a JS onload which runs only when demand is demand for BUTTON and opens a page that points to the report.
    ------

    Still another way is to use htp.p in PLSQL block which made the treatment of workflow
    So your code PLSQL

    BEGIN
      --Do the workflow processing here
      --End workflow processing
      htp.p('');
    END;
    
  • Cannot run the report in 10 G

    Hi all
    I'm upgrading from 6i to 10 reports
    When I run the report in the browser, I get the error message
    REP-110: cannot open the file 'c:\upgrade\test.rep '.
    REP-1070: error when opening or saving a document.
    REP-0110: cannot open the file 'c:\upgrade\test.rep '.


    When I have chekced in OC4J console window

    error message:

    Unable to load class oracle.reports.util.EnvironmentGlobal
    Using the Oracle.reports.util.Environment class

    Thank you

    Elsy

    Elsy,

    Is that the rep file is generated using 10 g? Otherwise, you generate the REP file using Designer 10 g, or to use the RDF file.

    Kind regards

    Manu.

    If my answer or the answer to another person has been useful or appropriate, please mark accordingly

  • Cannot run the report. Analytics Server Error (1042017): network error

    Hello

    I have installed on Linux ODI.
    I start to extract the data of Essbase to Oracle with Hyperion Essbase Data SQL with ReportScript LKM. But after 4 minutes process is stopped with the error:
    com.hyperion.odi.essbase.ODIEssbaseException: cannot run the report. Error (1042017) analytical server: network error: the client or the server timed out while waiting to receive data by using TCP/IP. Check the network connections. Increase the values NetRetryCount or NetDelay in the ESSBASE. CFG file. Update this file on the client and the server. Restart the client, and then try again.

    But if I extract some lines process worked well.

    I read this forum messages and set NETDELAY = 3600, NETRETRYCOUNT = 1000 in the files:

    /Home/EPM/Hyperion/products/Essbase/EssbaseServer/bin/Essbase.cfg
    /Home/EPM/Hyperion/deployments/WebLogic9/servers/HyperionPlanning/webapps/HyperionPlanning/Web-INF/classes/Essbase.properties
    /Home/EPM/Hyperion/common/EssbaseJavaAPI/9.5.0.0/bin/Essbase.properties
    /Home/EPM/Hyperion/products/biplus/appsinfo/WebAnalysis/EssbaseJAPI/bin/Essbase.properties
    /Home/EPM/Hyperion/products/biplus/bin/EssbaseJAPI/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/APS/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EAS/Server/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EssbaseStudio/Server/ess_japihome/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EssbaseClient/javaapi/bin/Essbase.properties
    /Home/EPM/Hyperion/products/planning/config/Essbase.properties
    /Home/EPM/Hyperion/products/planning/lib/Essbase.properties

    But the error occurred.

    Help please with this error.

    Well the bug should have been resolved then.
    Your options are to try the V11 essbase japi files, these must be pulled from a facility of V11 or send me an email and I can send you the.
    Or use a different extraction method in the interface.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Cannot run the report in DS 10 g Release 2

    Hello

    I have no any server application. I'm running my app using the OC4J of DS Oracle 10 g Release 2. But I am unable to run the report. What I'll do? Please...

    Maoulida.

    Published by: user10239690 on September 9, 2008 23:23

    Create a report as server
    rwserver Server = myrepserver cmd and let it run.

  • Run the jar using Java 7?

    My Macbook Pro currently runs on Java 8, and I want to start a specific jar (minecraft associated) that supports only Java 7, is there a way I can run the file using Java 7 through terminal. I can share the script starting current I use here - http://pastebin.com/XEq01mdZ - the jar file is called cauldron.jar.

    Thank you for your help.

    I don't have any Java installed for an exact string to show you, but each version of Java is installed in its own folder. You can call this version of Java by specifying the full path to the particular version.

    The java_home command will show you what JVM you have installed with the path to each House.

  • How to create the report using the procedure.

    Hi all

    I want to create the report in the apex. But I don't have a sql code. I have a single procedure. Is it possible to create the report using this procedure in the apex.

    CREATE OR REPLACE PROCEDURE headcsv_prc2

    AS

    CURSOR cr_header

    IS

    SELECT ood.organization_code, fm.formula_no AS "FORMULA_NAME."

    FM.formula_vers AS "FORMULA_VERSION."

    FM.formula_desc1 AS "FORMULA_DESC."

    DECODE (fm.formula_status,

    100, 'new ',.

    400, "approved for use in the laboratory."

    700, "allow the general."

    800, "We Hold."

    900, "frozen."

    1000, "obsolete/archived.

    ) AS "FORMULA_STATUS."

    DECODE (fd.line_type, '1', msib.segment1).

    DECODE (fd.line_type, '-1', msib.segment1 ') ingrediant.

    DECODE (fd.line_type, '2', msib.segment1) AS "BY_PRODUCT."

    DECODE (by_product_type,

    "W', 'waste."

    "R',"rework. "

    "Y', 'Yield."

    The of ', 'Sample. "

    NULL VALUE

    ) AS "BY_PRODUCT_TYPE".

    Of org_organization_definitions ood,.

    fm_form_mst fm,

    fm_matl_dtl fd,

    mtl_system_items_b msib

    WHERE ood.organization_id = fm.owner_organization_id

    AND fm.owner_organization_id = msib.organization_id

    AND msib.organization_id = fd.organization_id

    AND fd.organization_id = ood.organization_id

    AND fm.formula_id = fd.formula_id

    AND msib.inventory_item_id = fd.inventory_item_id

    - and fm. FORMULA_NO like '% THE % '.

    AND fd.line_type IN ('1 ', ' 2', '-1' ")

    Ood.organization_code GROUP,

    FM.formula_no,

    FM.formula_vers,

    FM.formula_desc1,

    FM.formula_status,

    FD.line_type,

    MSIB. Segment1,

    by_product_type

    ORDER BY fm.formula_no, fm.formula_vers;

    BEGIN

    Dbms_output.put_line (INITCAP ('the ORGANIZATION CODE')

    || ','

    || INITCAP ('NAME FORMULA')

    || ','

    || INITCAP ('FORMULA VERSION')

    || ','

    || INITCAP ('FORMULA DESC')

    || ','

    || INITCAP ('FORMULA STATUS')

    || ','

    || INITCAP ('PRODUCT')

    || ','

    || INITCAP ('INGREDIANT")

    || ','

    || INITCAP ("PER PRODUCT")

    || ','

    || INITCAP ('PER TYPE OF PRODUCT")

    );

    FOR ch IN cr_header

    LOOP

    Dbms_output.put_line (ch.organization_code

    || ','

    || ch.formula_name

    || ','

    || ch.formula_version

    || ','

    || '"'

    || ch.formula_desc

    || '"'

    || ','

    || ch.formula_status

    || ','

    || ch. Product

    || ','

    || ch.ingrediant

    || ','

    || ch.by_product

    || ','

    || ch.by_product_type

    );

    END LOOP;

    EXCEPTION

    WHILE OTHERS

    THEN

    Dbms_output.put_line (' No error: ' |) SQLCODE. "Error Msg: ' '.

    || SQLERRM

    );

    END;

    EXEC HeadCSV_Prc2



    Thank you

    Rambeau

    Hi Christian,

    In addition to the fact that the Oracle database has an internal Java engine and it would be possible for Apex call a Java stored procedure, the Apex really has nothing to do with Java. To create a report, you discovered, you specify a SQL query. In certain circumstances, you can embed a query in a PL/SQL function, but the incorporation of an arbitrary Java application and waiting for it to be called from Apex for a kind of security is there with the fairies.

    I recommend you research the Apex and then enter your so-called "higher authorities" how things work.

    Concerning

    André

  • Run the report period narrow Exceptions in GL Module (R12.1.3)

    Dear members,

    From metalink, I downloaded a document with the title ORACLE FINANCIALS E-BUSINESS SUITE, END of PERIOD to release 12 PROCEDURES_

    In this document in accordance with the procedure of the period-end closing GL, I found the step below:

    * 9. run the report period Exceptions *.
    It is a new step in the version 12. Accounting General Ledger can run the report period Exceptions to check that there are no exceptional transactions in ledgers auxiliaries and GL and follow up with competent co-workers if all exceptions are identified.

    But in the GL Module, I see no connection with the name of close period Exceptions

    Can someone please shed some light on the concept above.

    Thanks in advance.

    Kind regards.

    As said by Vamsi, you must add it... This report is not available in the General Ledger default query group, since it is a dependant of the report on ALS which is essentially at the level of the subledger.
    Under Oracle reference says the same thing...
    A12: It is Possible to close the period when there is not recorded in the system log entries? [566854.1 ID]

    Kind regards
    Ivruksha

  • Cannot run the report please help

    Here is my code behind the button to run the report.

    declare
    Repid REPORT_OBJECT;
    v_rep VARCHAR2 (100);
    rep_status VARCHAR2 (50);
    BEGIN
    / * If other changes made by najim * /.
    IF: TXTFDATE is null THEN
    message ("Please enter Date of THE '");
    message ("Please enter Date of THE '");
    return;
    ELSIF: TXTTDATE IS NULL THEN
    message ("Please select up HERE '");
    message ("Please select up HERE '");
    return;
    ON THE OTHER
    Rep: = find_report_object ('HISTORY_REPORT');
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_EXECUTION_MODE, batch);
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESTYPE, cache);
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESFORMAT, 'pdf');
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_SERVER, 'repserver90');
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'F_DATE =' |: TXTFDATE |) ' V_DATE =' | : TXTTDATE | "The PHASE =' | : TXTPHASE: ' paramform = no ");"
    v_rep: = RUN_REPORT_OBJECT (repid);
    rep_status: = REPORT_OBJECT_STATUS (v_rep);
    While rep_status in ('MARKET', 'OPENING_REPORT', 'PENDING')
    LOOP
    rep_status: = report_object_status (v_rep);
    END LOOP;
    IF rep_status = "FINISHED" THEN
    / * Display the report in the browser * /.
    WEB. SHOW_DOCUMENT ('http://172.29.3.202/reports/rwservlet/getjobid': substr (v_rep, InStr(v_rep,'_',-1) + 1) |'?) "|' server = repserver90","_blank"); "
    ON THE OTHER
    message ("error when running report");
    END IF;
    END IF;
    END;


    When I press the button, it gives an error message cannot run the report.

    Open the report server console and check the error here. : http://application-tier server: port/reports/rwservlet/showjobs? Server = REPORTSSERVER

    Published by: Andreas Weiden on 23.07.2011 09:13

  • Error running the report

    Hello

    I generated a report from the workspace and it works fine for me. There is another admin who tries to run the report and his throws following error for him:

    : 5200 error to run the query.

    We have the same privileges to the shared services.

    I created this new report.

    Just to tell you it worked fine when I created the 1st day for us both and is now error throing.

    Thank you!

    Hello

    It allows you to preview the POV for the user before running the report.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

Maybe you are looking for

  • read simultaneously the two keithley 2000 s

    Hey,. I'm reading simultaneously ongoing tensions between two Keithley 2000 s. As it is right now, I've initialized just the two Keithleys, put them both to read DC voltage, wait for a trigger on the Panel before (a simple OK button), read data and w

  • Vista connection to WAG54G V3 wireless gateway

    I bought a new Toshiba Satellite L300/700 laptop under Vista Home Premium and cannot connect to my existing Linksys WAG54G Ver3 router via wireless (works great with wired ethernet). I tried turning off safe wireless on the router but still not the s

  • Foreign travel, that all should be disabled?

    I know that I should have it in airplane mode, is there something else that needs a checkbox to avoid all IP service fees? Thank you...

  • Problem in installing the older software

    Recently, I bought computer dell laptop with original windows 7... My problem is cannot install the old software I used Windows xp... everyone will tell me the solution for this... The following software are examples... software wincc from Siemens, K

  • Please, I beg you. is it possible to buy portraitproffesional plug for PS CC via ADOBE?

    Please, I beg you. is it possible to buy professional card portrait for PS CC via ADOBE?I already have PS CC, and I need this professional portrait.Is it better to buy it via PORTRAIT PROFESSIONAL?