Dashboard Prompts How to call in report

Dear All,
I created one dashboard prompts. How to call this prompts in report.
Thanks
Edited by: 816377 on Dec 12, 2010 11:01 PM
Edited by: 816377 on Dec 12, 2010 11:28 PM

Dear All,
Still i am not resolve the issue.
My source date column have the date formate like 10/12/2010 but my prompt i selecting calender values.
it's througing error like
"A date value was expected (received "2010-09-01 00:00:00").
Error Details
Error Codes: QABPH2PO "
What's the problem.
My requirements see the my previous post.
Thanks

Similar Messages

  • How to call PDF Report with parameters in jdeveloper 10.1.3

    Hi all,
    how to call PDF Report with parameters in jdeveloper 10.1.3
    for example I have Report name is repdept.pdf with parameter as deptno
    and I want call this Report from JSP page ?
    thanks
    frank

    Hi all,
    how to call PDF Report with parameters in jdeveloper 10.1.3
    for example I have Report name is repdept.pdf with parameter as deptno
    and I want call this Report from JSP page ?
    thanks
    frank

  • How to call a Report 10g from a parameter form..?

    Hello,
    pls i wanna know the procedure of :
    How to call a Report 10g from a parameter form..?
    regards,
    Abdetu..

    hopes it work for you.
    procedure get_report is
    pl_id paramlist;
    p_year varchar2(4);
    param_name varchar2(10) :'param';
    begin
    pl_id := get_parameter_list(param_name);
    if not id_null(pl_id_)then
    destroy_parameter_list(pl_id);
    end if;
    pl_id := create_parameter_list(param_name);
    p_year := year -- assign the value.
    add_parameter(pl_id,'p_year',text_parameter,p_year);
    execute_report('report_name',pl_id);
    end;

  • How to call standard report with in zprogram?

    Hi Sap experts,
    How to call standard report with in zprogram.
    For example if country is 'US' then call Zprogram(zprog_US).Inside zprogram call standard report(rhecm_change_proc_status).If country is 'CA' then call zprogram.Inside zprogram call standard report.For same othercountres like 'PR','GB','ES'.Actually HR_ECM_READ_FEATURE_CARGP will having the input as employee id and will return the CAREA(County like 'US','PR'......).Kindly help me what is the procedure?
    Regards,
    Sujan

    >
    sujan T wrote:
    > Thanks for your reply.
    >
    >    What is the logic to call the standard report from zprogram?Inside the zpogram how to call standard report?
    >
    > Regards,
    > Sujan
    no special logic is required
    If u want to use
    RPUAUDOO IN THE ZREPORT.
    Put the submit button where ever required
    ex: In zreport after certain process reacedu want to call then use
    submit rpuaudoo and return.
    Regards
    Sas

  • In Oracle 10g, How to call a report since an option of a menu (*.mmb)

    Hello
    In Oracle 10g, working since the browser, how to call a report since an option of a menu (*.mmb)? I know to call it in a form (*.fmb), therefore uses the fields bean area and the objects reports, but in a menu there is not neither canvas, neither fields, neither reports. Someone would be able to help me with that?
    Kisses. Thanks.
    Annie

    I understand that you had sent me everything,
    I sent for example to you that, no to insert it in your item's menu code,
    then,You have to modify it.
    ... but
    a menu (mmb) doesn't have to define him reports
    objects... then, what parameter I send to the
    function FIND_REPORT_OBJECT:
    This is not true
    Try out this, and then let me know
    You do not need to have a report object defined in the menu. It is enough to have it in forms.
    I tried to call a report from the menu in the folowing way:
    I created a menu and wrote the following code in one item:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := find_report_object('report2');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'reportserver1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'C:\p.pdf');
    v_rep := RUN_REPORT_OBJECT(repid);
    END;Then I created a form with a report object called report2.
    I attached the menu to this form and while running this form, I was able to successfully run the report.
    In your case, you have to make sure that you have the dummy report object in each form that will have this attached menu.
    You can replace by the actual report name as you have written in the code.
    Regards

  • Prevent dashboard prompt from filtering a particular report on page?

    I have a dashboard page with 1 prompt and 5 reports. The first object on the dashboard page is a dashboard prompt with a date range for created date.
    The request is to filter the first 4 reports based on the dashboard prompt, and then the last report NOT be filtered based on the prompt.
    Right now - the date range entered in the dashboard prompt is filtering all 5 reports.
    Is there any way to prevent the prompt from filtering a particular report on the dashboard page?
    Thanks!

    Just wanted to provide an update as to what I learned from the SR I opened.
    Dashboard prompts apply to all reports on the page which either:
    * Have the "is prompted" filter selected
    - OR -
    * Are filtered in any other way
    In my case, my last report was filtered on the created date to exclude any data prior to July 1, 2010. Because this hardcoded filter was applied, then the report automatically was picking up the date range filter from the dashboard prompt and applying that date range to the report instead.
    The workaround was to create a new column on the report formatting the date as YYYYMM and applying a filter to the report as >= 201007. With this, the dashboard prompt is now not applied to filter this report.

  • How to call a report in another report?reply plz

    how to call a report in another report?

    hi,
    chk this.
    *Code used to populate 'select-options' & execute report 
    DATA: seltab type table of rsparams,
          seltab_wa like line of seltab.
      seltab_wa-selname = 'PNPPERNR'.
      seltab_wa-sign    = 'I'.
      seltab_wa-option  = 'EQ'.
    * load each personnel number accessed from the structure into
    * parameters to be used in the report
      loop at pnppernr.
        seltab_wa-low = pnppernr-low.
        append seltab_wa to seltab.
      endloop.
      SUBMIT zreport with selection-table seltab
                                    via selection-screen.
    *Code used to populate 'parameters' & execute report 
    SUBMIT zreport with p_param1 = 'value'
                    with p_param2 = 'value'.
    Other additions for SUBMIT
    *Submit report and return to current program afterwards
    SUBMIT zreport AND RETURN.
    *Submit report via its own selection screen
    SUBMIT zreport VIA SELECTION-SCREEN.
    *Submit report using selection screen variant
    SUBMIT zreport USING SELECTION-SET 'VARIANT1'.
    *Submit report but export resultant list to memory, rather than
    *it being displayed on screen
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    *  Once report has finished and control has returned to calling
    *  program, use function modules LIST_FROM_MEMORY, WRITE_LIST and
    *  DISPLAY_LIST to retrieve and display report.
    Regards
    Anver

  • How to call BI report  from web dynpro

    Hi ,
    How to call  BI report from webdynpro application  and what are the prerequisites for that .
    Please provide an example to work with BI application frame UI element
    Thanks

    Hi Rajpal,
    Please go through this..
    calling BI report
    Cheers,
    Kris.

  • How to call crystal report from plsql

    How to call crystal report from plsql?

    http://asktom.oracle.com/pls/ask/f?p=4950:8:14685899341865976974::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:952229840241,

  • How to call a report via a URL, showing a parameter prompt, but no controls

    Hi,
    I want to be able to call a report online by passing in the URL to Portal. Want to show a prompt for a parameter value and nothing else, until the parameter is entered. I can get the report to display the parameter and the controls, and I can get it to display without the parameter and without controls. However, I can't seem to find a combination that enables me to prompt the user with a parameter, without showing any controls.
    Currently, I am showing the parameter and controls with this URL:
    http://{CURRENT_SERVER_URL}/Sector/Comments/Orders/Orders.xdo?_xpf=&_xpt=0&_xdo=%2FSector%2FComments%2FOrders%2FOrders.xdo&Order_No=&_xt=Orders%20and%20Shipments&_xf=html&_xmode=2
    Thanks
    Phil

    Hi Phil,
    http://{CURRENT_SERVER_URL}/Sector/Comments/Orders/Orders.xdo?PARAMETER1=jjj&PARAMETER2=&_xmode=6
    You have to pass the parameters in the url inorder to display them in page.
    Note : PARAMETER1, PARAMETER2.
    jjj was the values passed to first parameter1 as default.
    null was passed to parameter2 as default
    use xmode=2 or xmode=6 , first one, gives extra report link , second one doesn't.

  • **How to call a report from a form by passing a specfic value?????

    Hi Expert,
    I want to call a report from a form.My problem scenario like, a user is login to his account and there is a option called ADMIT CARD(Push Button).Now when he pressed the button a report will generate.I want that when he pressed the button the user id of the user will passed to the report and the report will generate corresponding to his details which was stored in the database.This scenario is like any online admit card.
    Suppose I want a details report of employee whose employee_id=100.How could I pass this value(employee id) to report which will generate a report details.
    Thanks,
    TAPAN
    Message was edited by:
    user630863

    Thanks for replying.
    Actually I am a beginner.I think that I have to use RUN_REPORT_OBJECT built-in.But I cannot understand the parameterlist.Can u plz give me any example or code then I am very thankful.
    Suppose I want a details report of employee whose employee_id=100.How could I pass this value(employee id) to report which will generate a report details.
    Thanks,
    TAPAN

  • How to call a report from a web application

    Hi,
    I have a web server in wich is installed Reports 6i. My question is how can I call reports 6i to generate a pdf using a .rep file from my web application (built with java)?

    Hi,
    The below link will be very useful for one who need idea on calling Oracle Report from Java Application,
    http://www.oracle.com/technology/products/reports/htdocs/getstart/examples/reportswebservice/index.html
    Thanks & Rgds,
    M T

  • How to: Call a Report (9i) from JDeveloper

    Hi,
    how can i call a Report from JDeveloper and how can i create a PDF File from an available report.
    I have created both, a jsp file and a rdf file.
    Thanks
    Achim

    Hello Achim,
    You do not need to create multiple files:
    - you can create a single file from the Builder and specify 'Paper anfd Web Layout'
    - save the files as JSP
    In this case the JSP file contains the both layout Paper and Web, in this case you can:
    - edit the web source (JSP) from JDeveloper
    - use Reports Builder to edit the Paper Layout -that you can format as PDF-.
    Regards
    Tugdual

  • How to call a report in forms?

    Hello
    I want to call a report in forms, but it always failures and I couldn't find any whitepapers or anything else on OTN.
    I'm using reports & forms 10g release 2 and a standalone forms & reports service (release2).
    I've created a simple report and store it as .jsp which based on view (already exist with data). In forms I create a button and I just want to show it on a seperate window (as PDF).
    How does it work? And which set_report_object_property do I need?
    Thanks in advance for any ideas or links
    Remo

    I put a pic on the web of my standalone forms&reports service.
    I couldn't figure out, what is the problem there. Start time of reports service is not available!
    http://ora.lausitz-elektronik.de/image/status.gif
    I also got the error message which is already described in this thread
    a binding error which I couldn't resolve :(
    Error calling report FRM-41213 unable to connect to Report Server
    remo

  • How to call a report from a menu ?

    I am converting 6i client/server forms to 9i.
    I have a menu that has an option on it to run a report for each menu item selected using RUN_PRODUCT.
    9i is making this obsolete, so how can I call a report from a menu (not a form) now then ?
    In a form it is fine cos I just use the Report Object - a menu does not have this facility.
    Thanks in advance.

    Hi,
    so here is how this should be done:
    1. Create a Reports node in the Forms module that uses the menu (you don't have to create one Reports Object for each report that you want to run)
    2. From the menu, before calling Run_Report_Object() use Set_Report_Object_Property() to set the phsical file name of the Reports that should be executed. This is kind of best practice and does not have a performance hit.
    There is a bug filed against Forms to extend the menu files with a reports Object node. This could require a change to teh file structure which is why we looking for Forms 10i to implement this. (If it turns out that we can have it without recompiling the menu modules then it may go into a patch set - however this seems unlikely from my point of view)
    Fran

Maybe you are looking for

  • How do I get my iPod touch to be recognized by my iTunes on my mac pro?

    How do I get my itune program on my mac pro to recognize my ipod touch?

  • Create SAP RFC iView with a structure as import parameter

    Hello All, I'm creating a SAP RFC iView from Portal SAP 7.4. I try call a RFC that have as import parameter a structure with various fields, but the portal recognizes the structure as string field, then I cannot fill the fields values, and when  I do

  • SAP Instance in "only display" mode

    Dear Guru, do you have any idea how can I set my R/3 4.6C in display mode? Shortly will be unavailable this old R/3 instance but for a small period we want to let this instance up and running but only in visualization mode, we want that all possible

  • Can't hear phone calls, can't open messaging app.  I've tried everything.

    Okay, so every time I receive a phone call, I can't hear them very loudly and my volume is at it's highest.  When I make a call, it doesn't even ring.  Last, but not least, when I try to open my messaging app, my phone freezes and then the app closes

  • Connector program

    Hi all, I'm trying to register a .NET program in SAP gateway. But when it gets registered it is registered wwith the below attributes TP Name: aspnet_w Syst type: NORMAL_CLIENT Status: Connection pending But I connected with the follwing parameters -