How to call a user_parameter report

Hi all please do something

I have a relationship with user_parameter
the creation of the report on the paper layout
I have an idea how to call a web page layout report, but I can not able to call the paper layout report
Help, please
I also give the code how to call web page (code given below) layout report

DECLARE
Repid REPORT_OBJECT;
v_rep VARCHAR2 (1000);
rep_status VARCHAR2 (20);
BEGIN
Rep: = FIND_REPORT_OBJECT ("member.10");
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://computer_name:8888 / reports/rwservlet/getjobid ' |")
substr (v_rep, InStr(v_rep,'_',-1) + 1) |'? "|' server = repserver90","_blank"); "
ON THE OTHER
message ("error when running report");
END IF;
TAKE A BREAK;
END;

I use Oracle9i, forms9i, reports9i and my OS is Win - XP

Thank you

Hello

Rep: = FIND_REPORT_OBJECT ("member.10");
SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'p_deptno =' |: D EPT.) DEPTNO);
v_rep: = RUN_REPORT_OBJECT (repid);

Have a look here for more information: http://www.oracle.com/wocportal/page/wocprod/ver-31/ocom/technology/products/forms/pdf/10g/frm10gsrw10g.pdf

Concerning
Rainer

Tags: Oracle Development

Similar Questions

  • How to call oracle forms report using parameterlist for parameters

    Dear all,
    I want to know how to call oracle forms report and parameter passing between the report and the form with the list of parameters?
    can someone help me?

    What research? The forum is full of examples.

  • How to call a parameterized report forms

    Hi all

    I need to invoke a set of forms report. In the following code creates a paramlist, I want to transmit to the State


    DECLARE

    pl_id ParamList;
    Repid Report_object;
    v_rep varchar2 (100);
    BEGIN

    pl_id: = Get_Parameter_List ('tempdata');

    IF this is Id_Null (pl_id) THEN


    Add_Parameter(pl_id,'EMPLOYEE_CODE',TEXT_PARAMETER,:EDCD_EMP_CODE);
    Add_Parameter(pl_id,'EMPLOYEE_NAME',TEXT_PARAMETER,:TO_WHOM);
    Add_parameter(pl_id,'DESCHANGE_CODE',TEXT_PARAMETER,:EDCD_CODE);
    Add_parameter(pl_id,'TEXT_DESCRIPTION',TEXT_Parameter,:edcd_desc);
    Add_parameter(pl_id,'P_EFF_DATE',TEXT_PARAMETER,:desig_date);
    End if;
    REPID: = find_report_object ('emp_rep_def');
    set_report_object_property (REPID, REPORT_OTHER, 'paramform = no');
    v_rep: = run_report_object (rep_id);


    END;

    Thank you
    Thierry

    Rincy Binu wrote:
    I use 6i worm

    Why not simple 6i procedure to call the report?

    DECLARE
      vParamList PARAMLIST;
    BEGIN
      vParamList:=GET_PARAMETER_LIST('MyRep');
      IF NOT ID_NULL(vParamList) THEN
        DESTROY_PARAMETER_LIST(vParamList);
      END IF;
      vParamList:=CREATE_PARAMETER_LIST('MyRep');
      ADD_PARAMETER(vParamList, 'EMPLOYEE_CODE',TEXT_PARAMETER,:EDCD_EMP_CODE);
      ADD_PARAMETER(vParamList, 'EMPLOYEE_NAME',TEXT_PARAMETER,:TO_WHOM);
      ADD_PARAMETER(vParamList, 'DESCHANGE_CODE',TEXT_PARAMETER,:EDCD_CODE);
      ADD_PARAMETER(vParamList, 'TEXT_DESCRIPTION',TEXT_Parameter,:edcd_desc);
      ADD_PARAMETER(vParamList, 'P_EFF_DATE',TEXT_PARAMETER,:desig_date);
      ADD_PARAMETER(vParamList, 'PARAMFORM',TEXT_PARAMETER,'NO');
      RUN_PRODUCT(REPORTS,'report_path\emp_rep_def',ASYNCHRONOUS,RUNTIME,FILESYSTEM,vParamList,NULL);
    END;
    

    -Clément

  • How do I call the interactive report procedure?

    Hello
    Is possible that call the procedure in an interactive report on the APEX?
    Because
    in the source of the region, he asked only the sql statement so I'm confused and I don't know how to call procedure interactive report?

    Published by: esra aktas on 12.May.2011 11:04

    Published by: esra aktas on 12.May.2011 12:05

    And your procedure returns the data? Why you don't run in an area of pl/sql?

    Or better yet, a page with two 2 areas of installation

    Region one is of html with your controls to display, and then select the procedure to run from a selection list. When your selection list returns and have a running process that takes this value, select the code you want on your table and he published on a page element.

    second region would be a region of sql report, which uses a function returns sql to select necessary sql, using the code met at step 1...

    Thank you

    Tony Miller
    Webster, TX

    On the road of life... He has "windshield", and there are "bugs".
    (splat!)
    "Squeegees wanted."

    If you answer this question, please mark the thread as closed and give points where won...

  • How to call a form of report? in 6i

    How to call a form of report? In Developer 6i to oracle. Please tell me tex.

    Try this

    declare
       AppID PLS_INTEGER;
     begin
         AppID := DDE.App_Begin('ifrun60 module=myform.fmx userid=scott/tiger@mydb maximize=no', DDE.App_Mode_Maximized);
    exception when others then
           srw.message(1,'Errror');
     end;
    

    Bangoura
    [My Oracle Blog | http://baigsorcl.blogspot.com/]

  • How could call a report from another report?

    Dear developers,

    How could call a report from another report?

    is this possible? and what is the call statement?

    Note: I use the 6i report



    Thanks in advance,


    Bil

    Hello

    It seems that you 'open' a quote before: orderby.
    You must "close" this quote after: orderby

    SRW.run_report ("report = SDCRVRF106 Cl_NO ='|"'|: CLIENT_no | "") ' || ' d1='||'''' || :D1 ||'''' ||' d2='||''''||:D 2 ||'' ' |' orderby =' | '''|| : o rderby | " ') ;

    concerning

  • How to call a report from Oracle 10g lies in the application server to the server of DB using PLSQL

    Hi all

    I have the following requirement

    I have a 10g Oracle compiled report and giving PDF as output...

    1. I want to call the same report server DB using PLSQL to generate reports in bulk.

    2. the production of the above-mentioned reports should be in the path specific and with the specific name

    Please help me on this

    Kind regards

    SH

    What you want is called "Event Driven publication":

    http://docs.Oracle.com/CD/E17904_01/bi.1111/b32121/pbr_evnt001.htm#RSPUB23700

  • How to automatically save excel report?

    Dear Sir.

    I'm generated excellent using labview,.

    Currently, my doubt is how to Save automatically this report in the directory specified?

    Please inform me,

    Thank you...

    Do you use report generation tools for that?

    If Yes, then you can use 'save the report in the file.vi. If you don't use a Toolbox, you can use "Save" method by calling invoke node

    and by the way "workbook" refers to it.

  • How to call Mutiple CSQ in single script

    Hi all

    We installed ipccexpress 4.0.4

    Can someone help me how to call several CSQ in the main or unique script.

    For example

    We have defined two csq on ipcc express server for lotus notes and the second password. We define of resources from CSQ Skll group with longer avaliability.

    Please answer as soon as possible. If you have multiple examples of scripts for the CSQ call in a script, please send it everywhere.

    Thanks in advance

    Concerning

    Sandeep Karan

    Hello

    Your message I understand you want to have a script with two CSQ? s where the customers calling for password changes are queued in a CSQ and customers who call for problems of notes get queued in the other.

    If so, the solution is simple, that is, assuming that you already have a way to allow the client to select what they want to report (note change of password or problem) by a quick menu.

    Simply create a variable string CSQ and two string parameters (e.g. CSQnotes & CSQpass). Then, in the results quick menu to set the string CSQ variable to the value CSQnotes or CSQpass (depending on what choice made by the client) and then the shot of a goto to your script queue main, where you can use the variable CSQ you just fill in.

    This way you have a very simple script and just two parameters for which you enter the exact name of the CSQ application configuration window (make sure they match exactly).

    HTH,

    Leo

  • How to call a region in a region by tabs?

    Hi all

    I have a model in the region based on JQuery to display various traditional reports in different tabs. The subregions are all displayed as intended, each in a different tab. I also have a search bar for all regions with a list of selection (number or displayed lines). When I change this list, a page sent occurs and I'm back on the first tab. Is it possible to create a branch which redirects to the region, in that I was? I gave each region a static ID, but I don't know how to call this REGION_STATIC_ID in the url. I'm quite new in APEX, jquery and all these things.

    BTW: I use APEX 4.2.

    Any help would be appreciated. Thank you

    Birgitt

    I found the solution: redirect to the same page, and I put the element with a value. But this is not only the ID I get from my report, but attached, I need my address of the tab. It looks like:

    Item 1: P502_SL value: #BUILDING_ID # TAB - HOME - tab - TAB - FLOORS

    And that's all!

    Thank you for your patience. Hope that I will find new questions on this topic...

    Kind regards

    Birgitt

  • How to automatically send a report after its creation?

    Hello

    I am a beginner and I would be grateful if someone could tell me some general information.

    I found this tutorial how to save and access report.

    Storage and access to the reports in the database

    Onclick is recorded in this report tutorial.

    Y at - it a way to send automatically each time that report is generating or first of all, I would like to save it (PDF, CSV,...) with the SQL script and then send it?

    I also found there related interactive process page that can send e-mail messages. Is it possible the process page to send e-mail with report or must be saved before sending?

    The reason is that we want to have a history of created.

    Thank you in advance.

    874887 wrote:

    The reason is that we want to have a history of created.

    Save the report, and then send it.

    I have call if ENGAGING between the two steps.

    The APEX_MAIL package to send an e-mail with an attachment.

    You should be able to edit the PL/SQL to do it all in one step

    declare
      l_report blob;
    -- Added this for APEX_MAIL
    l_mail_id NUMBER;
    begin
      l_report := apex_util.get_print_document (
      p_application_id => :APP_ID,
      p_report_query_name => 'blobquery',
      p_report_layout_name => 'blobquery',
      p_report_layout_type => 'rtf',
      p_document_format => 'pdf'
      );
      insert into report_archive (
      filename,
      mimetype,
      report,
      created_date,
      created_by
      ) values (
      'BLOB Query Search Results ('||to_char(sysdate,'DDMonYYYY')||')',
      'application/pdf',
      l_report,
      sysdate,
      :USER
      );
    -- COMMIT the insert so you don't e-mail out a report
    -- that was never saved
    commit;
    -- create e-mail here
    l_mail_id := APEX_MAIL.send( ... ); -- see document for usage
    APEX_MAIL.ADD_ATTACHMENT( .. ); -- see document for usage
    end;
    



    MK


  • How to call and parse the SOAP WSDL service in Swift 2.0 to Xcode 7.1

    I'm new to the SOAP and I don't know how to call SOAP Web service and parse XML. I also tried to try to Google.And all of the resources that I had was outdated. Y at - it a tutorial or examples that I can learn? Any help?

    Hello ColayHills,

    It's because SOAP is exceeded. It is based on XML and XML really nasty at that. You have other options or should you use SOAP?

  • How to call a second instance of the same VI?

    Hello

    I have a useful VI dealing with IO operations. To save some time, of what I would call the VI as a second instance do work at the same time. I created a sequence sub with the run option 'Use the new thread' and I called the Vi (a step of the sequence only). Execution time of the VI is about 20 seconds run Durin I called the subsequence and I carried on running my main sequence (parent). Since then 10 seconds to launch the subsequence (in the thread of sepatate I called the same VI as in the thought of subsequence the second instance will be created. However, instead of parallel work of the two instances of the same VI had to wait when mt subsequence end known call the VI th.

    So my question is, as in the topic: how to call a second instance of the VI even at the "same time"?

    Could you please tell me about the best approach to solve the problem?

    Any VI that you want to run in parallel must be paid also re-entrant, including screws.

  • How to call same vi for 4 times in a single vi?

    Hello.. I ve a vi named table 1 d Mult. I need to call this vi four times in another program of vi. The problem I've known is all the four outputs of vi are the same.

    My question is: how to call the same vi number many times?

    Thanks in advance

    Recursive calls in LabVIEW using VI Server

  • How can I activate the report for individule family members?

    How can I activate the report for individule family members?

    Hello Dan,.

    Activation of activity reports to the members of the family security is easier than the steps below.

    To activate the activity tracking

    1. on any computer, sign in to the Family Safety website with your Windows Live ID.

    2. on the family summary page, click view activity report next to the name of the child, you can turn on activity reports.

    3. Select turn on activity monitoring.

    4. click on Save.

    To learn more, follow this article to the solution and go to the section find out what your kids have been up to on their computer .

    Protect your kids with parental controls

    Note: Whenever changes are on our parental control settings, we need to update it so that the changes take effect. Click on the button Refresh (located on the left side of the ?) top right of parental control window (the client installed on your computer) to refresh and get the last parameters.

    Thank you and best regards.

Maybe you are looking for