Not to run report while landing in the Dashboard

Hi All,
This might be same question i am asking but not able to achive any perfect solution to this.
I dnt want to run the report when the user logs into the Dashboard and show the proper message saying select the prompts and then run the report.
Regards

Actually if you look at the Log, you'll see that a query will be sent to the database by default. The only way I am aware off to achieve this w/o the use of guided navigation is to use the section property (collapse/uncollapse), when a section is collapsed, no report is run upon landing on the dashboard: set the section default property to collapse.

Similar Messages

  • Error when I run report RSCMST to test the content server.

    when I run report "RSCMST" to test the my content server.    I get the error:
    header        HTTP/1.1 401 Authorization Required
                  date: Fri, 05 Dec 2008 20:20:45 GMT
                  server: Apache/1.3.41 (Unix) SAPCS/640
                  x-servertime: 20:20:45
                  x-query: create&pVersion=0046&contRep=ZTEST001&docId=020D3949CA03445AE10000000A14022B&compId=data&docPro ..
                  t=rud&accessMode=c&authId=CN%3DCPJ&expiration=20081205142027&secKey=MIH3BgkqhkiG9w0BBwKggekwgeYC
                  x-serverdate: 2008-12-05
                  x-pversion: 0046
                  x-errordescription: URI signature has expired
                  x-serverid: server="content01.ivo.com.cn";serverPort="1090"
                  x-servertype: SAP HTTP Content Server
                  content-length: 752
                  connection: close
                  content-type: text/plain
                  ~remote_addr:
                  ~uri_scheme_expanded: NONE
    want                 201
    bad           401
    time              17.974
    It seems that the "bad 401" means a http error.    I do not know how to configure it ?
    my content server uses the maxdb,  and http is apache, they are all running on redhat linux ese 5
    who can give me some advices?  thanks

    Victor,
            Looks like a web server authentication issue. I suggest you raise this issue in a basis/ web application server forum,
    Sojan

  • Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still emtire days are missing...

    Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still entire days are missing...

    I noticed an entire series of its always sunny in philadelphia is missing from my apple tv "purchased" section where i can stream it directly from itunes...I just purchased the new season and not showing at all

  • Reports as links in the Dashboards

    Hi Gurus,
    I have a requirement where I need to arrange the reports that are on the Dashboard as a link. For example I have 3 reports like this.
    Sales Report Invoice Report Purchase Order Report.
    Now I want to arrange these 3 reports on the Dashboard as Links
    Sales Report
    Invoice Report
    Purchase Order Report
    Let’s say when the user click on the Sales Report link it should show the complete report with the prompts. Is there any way to do that in Dashboards. Please Help.
    Thank You

    If you want reports as link in dashboard then drag report to dashboard and go to its peroperties.Select Link in a dashboard option.You can add all the reports in dashboard and choose this option.This will make reports to appear as links.
    If you select any value from prompt and click on go button that prompt values will be applied as filters to these reports.
    Regards,
    Sandeep

  • FRM-41214: Unable ro run report while calling a report from a form in 9iDS

    Am in the process of migrating from Developer 6i client/server to Developer 9iDS on Windows 2000.
    I have read through the various postings on this issue & have made changes accordingly. I also referred to the white paper on the Forms/Reports integration.
    As I am trying to do a prototype, am compiling my forms/reports on my local machine & not on the apps. server.
    I installed a report server on my local machine as,
    rwserver -install 9irep
    I have defined this as a NT service and it is up & running & so is my OC4J instance.
    I have defined a reports object in my Form Builder & set Report Server=9irep,
    Destype=Cache,
    Execution mode=runtime
    Communication_mode=synchronous.
    I also removed the /security tag from the <report server>.conf file as suggested in the white paper. Also set the single sign-on to NO for the reports service.
    I have replaced my run_product with the run_report_object built-in as follows.
    Declare
    report_id      REPORT_OBJECT;
    report_status VARCHAR2(255);
    rep_job_id      VARCHAR2(255);
    Begin
    report_id := FIND_REPORT_OBJECT('KS'); --Created in form under node "Reports"
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,'C:\Kalpana\9i_Prototype\ISSMDLCUST.rdf');
    rep_job_id := RUN_REPORT_OBJECT(report_id);
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    WHILE report_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    END LOOP;
    message(report_status); pause;
    IF report_status='FINISHED' THEN
    Web.Show_Document('http://houwdisndgd01:8888/reports/server/getjobid='
    ||rep_job_id||'?server=ks');
    END IF;
    End;
    I get an error message "FRM 41214: Unable to run report" right after the call to run_report_object.
    Can someone please tell me where am going wrong with my run_report_object built-in? (I also need help writing my web.show document to point it to my local machine/folders).
    Thanks
    Kalpana

    How I have implemented the same and works
    Local OC4J is running.
    I established a reports server "repserver90" as a service.
    I created a report named "C:\TMP\TMP\test_report.rdf"
    I created a form with a Reports object with properties:
    Name: "EMP"
    Filename: "C:\TMP\TMP\test_report.rdf"
    Execution mode "Batch"
    Communication mode "Sychronous"
    Report Destination Type "Cache"
    Report Destination Format "HTML"
    Report Server "repserver90"
    I call the report with the procedure:
    PROCEDURE TEST_REPORT IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('EMP');
    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,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no pdeptno='||:dept.deptno);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://localhost:8888/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Minas

  • Running reports from forms on the web

    On forms and reports 6i we used the following code to run reports from forms.
    We need to do the same on 9i forms and reports, we are running into problems.
    Any help will be appreciated.
    PROCEDURE web (inFileName VARCHAR2,
    inRecordGroup RECORDGROUP) IS
    outVirtualPath VARCHAR2(200) := '/forms90/f90servlet?p_url=/reports/rwservlet?'; outServer VARCHAR2(200) := 'server=rep_ora-app-4';
    outReport VARCHAR2(200) := 'report='||inFileName;
    outUserid VARCHAR2(200) :=
    'userid='||GET_APPLICATION_PROPERTY(USERNAME)||'/'||GET_APPLICATION_PROPERTY(PAS
    SWORD)||'@'||GET_APPLICATION_PROPERTY(CONNECT_STRING);
    outDesType VARCHAR2(200) := 'DESTYPE=CACHE';
    outDesFormat VARCHAR2(200) := 'DESFORMAT=PDF'; outUser VARCHAR2(2000);
    outCount INTEGER;
    error we are getting.
    FRM-42017:Module name must be specified.

    S Hatch (guest) wrote:
    : I'm thinking that you're going to have to install the Reports
    : cartridge, create an entry in the keymap with any parameters
    and
    : call your report via the url.
    : Dessislava Gantcheva (guest) wrote:
    : : How do I call a report from a form on the web?
    : : I have installed Windows NT Server 4.0 with SP 5, OAS4.0.7
    EE
    : : with patch 1, Developer 6.0 with patch 1. Developer server
    and
    : : forms server work fine in a non-cartridge implementation,
    but
    : I
    : : cannot run a report within a form. I just have no any info
    how
    : : to do this.
    I have entries in my keymap file and I can call my reports via
    the url, but I cannot run a report WITHIN a form. I mean to call
    a report by clicking on a button of a form on the web. The
    RUN_PRODUCT built-in does not work (at leas it seems like this)
    If any one has expiriense with it, please, give me a hint.
    Thanks
    null

  • Problems with running reports having parameters, on the web

    Dear all,
    I have recently installed Oracle 9iAS v1.0.2.2.1 on Suse linux 7.3. Also, installed
    Forms and Reports 6i alongwith it.
    Building and running reports both static and ones that accept parameters was a breeze.
    I could also run reports from the web successfully until now when I am trying to run a
    report that accepts parameters.
    When I enter the following URL:
    http://<webserver>/cgi-bin/rwcgi60?report=<some.rdf >userid=<user/passwd@db>
    server=<reportservername>destype=cachedesformat=html+paramform=yes
    This is what happens:
    1. I am prompted for a parameter value in the html format
    2. On entering a suitable value, I am prompted for information to connect to the
    database viz. username, password and database name
    3. Entering suitable values for the above results in a hung state. There is no output and
    the busy signal is all that I get for a long long time.
    4. Also, stopping this session results in other such sessions resulting in a hung state, too.
    That is to say, if I had run a report throug the web successfully before trying this
    one, after aborting this session, I cannot re-run the previous successful report. That
    too results in a hung state. I have to restart the reports server rwmts60 once again
    as well as the web server for things to work smoothly.
    I tried recreating the cgi env and ran a strace on the rwcgi60 command. It produces
    an error saying 'libzrc60.so.0: no such file or directory' where as it is very much
    present in the default LD_LIBRARY_PATH. This could be misleading as I am not sure
    how I correct I was in re-creating the CGI env.
    This is a problem I face only when I enter the "paramform=yes" option in the URL.
    Also, excuse me for my ignorance , but I have no idea how to interpret the cgicmd.dat file.
    It does mention that %P, %PT, %PC are amongst the currently recognised special
    parameters, though.
    Will someone please help me out asap as this is quite urgent.
    Thanks a million in advance
    Hema

    Hi Hema,
    There could be various things that explain this, but from your symptoms it looks like the engine is hung processing this report. This could be as simple as a PL/SQL trigger that is in an infinite loop. Anyway, a simple thing to do is to add TRACEFILE=filename&TRACEMODE=append&TRACEOPTS=TRACE_ALL onto your URL. This will create the specified file and dump information into it about what Reports is doing as it is processing your report. If it is hung in an infinite loop, you should be able to see how far it got when you kill it.
    Also, you can see the status of the reports job queue by using the http://.../rwcgi60?showjobs command. If the report is executing forever, you'll see it sitting there in the job queue.
    regards,
    Stewart

  • Few values of report column do not display in report while applying filter

    Post Author: anuragg11
    CA Forum: WebIntelligence Reporting
    There are 6 drill filters applied on the report to filter out the report column data. Few values of the report are not displaying in the report when using drill filter. Same issue is with report filter too. If filters are removed then values are appearing in the report. We are using version BO XI R2 & Java runtime JRE 1.4v. It doesn't look issue is with Java version because only few specific data of the report column are not shown in the report when using filter on the data. Example: One of Report data column contains below values: 24.2, 26.9, 120.1, 230, 274.9, 275.8, 333.2 Report is displaying all these values when there is no filter on any data. But report doesn't display data when applying filter on 274.9 or 120.1 howver filter on other values 24.2, 26.9, 230, 275.8, 333.2 are working fine.

    Hello,
    I think i know what your problem is.
    Although in table view your 2 requests combine perfectly and show separate results in pivot view BI unfortunaterly adds them up.
    One work around would be to go in your criteria add in each request a dummy column. This can be obtained the following way:
    1. click on a column to add it in the criteria (it doesnt matter which one)
    2. go into the edit formula of that column
    3. delete the formula and in its place write 'Dummy Column 1'
    Do the same for the second request by adding a "Dummy Column 2'
    Now the Pivot Table should also show up correctly
    Let me know if it goes well or if you have any further questions,
    Kostis

  • Run Reports from WebSite via the Report Server

    How do I run reports stored on the Reports Server via hyperlink
    from a WebPage ?? Pls. help!

    You can achieve by two way
    One :
    srw.set_hyperlink('http://servername/dev60cgi/rwcgi60.exe?
    run+report=reportname+userid=scott/tiger@hostname+destype=cache+d
    esformat=htmlcss+server=report_server_name+parameter 1
    = '||:deptno);
    you will have to make dev60cgi as virtual directory
    two :
    web.show_document('cgi-bin/rwcgi60.exe?
    run+report=run+report=reportname+userid=scott/tiger@hostname+dest
    ype=cache+desformat=htmlcss+server='||report_server_name'
    ||'+parameter=yes');
    you will have to make cgi-bin (your oracle2home ) as virtual
    directory

  • Did not coming Run report

    Hello Guys
    Im new in system center product. I have installed and configured System center config manager. Then software inventory from my clients and trying to report Computer with a specific product. I was right click and Run on this report. Not coming report windows.
    Whats my wrong? Any suggestions
    Thanks all.

    So your problem is not that the report is empty. It's that you do not even get a report window. I've seen this before when Report Viewer does not get installed.
    This is how I fixed it
    http://www.gerryhampsoncm.blogspot.ie/2014/02/configmgr-2012-reports-not-running.html
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • HTTP 404 File not Found running a page created with the wizard

    Hi all,
    I created a page "tabular form" with the wizard to delete and update records in a table.
    All pages of the application are ok. Only this page, when refresh after click on the "delete" or "submit" button send the message "HTTP 404 - File not found".
    OS - Windows XP
    DB - 10.1.0.4
    HTMLDB 2.0
    any idea?
    thanks in advance.

    Hi Scott,
    this is the error.log
    [Fri Oct 06 11:39:41 2006] [error] [client 10.20.101.243] [ecid: 1160127581:10.20.101.243:3860:2904:21,0] mod_plsql: /pls/htmldb/wwv_flow.accept HTTP-404
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: F51,F52,F53,F54,F55,F56,F57,F58,F59
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    This is my first application with htmldb and i don't understand where is the error because i don't added parameter after the wizard creation. I just created the page and run. If this page start the first time when is called from another page, why after refresh fail?
    thanks, Fabio

  • I got a new home dock station and it does not play my music while its in the dock. my neighbor has the same phone and hers works fine in my dock station.wondering why?

    I got a new dock station and it will not play any of my music while my iphone 3gs is docked. my neighbor has the same exact phone and hers plays fine..what could be the problem?

    Try This...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Safari is not playing .mpg videos while navegating in the web

    I am having problems with the Safari web browser.
    While navigating the web, if I want to watch a video that has an ".mpg" extension, it will simply open a new window and leave it blank without starting the QuickTime plug in to play the video.
    I remember Safari used to be able to reproduce almost any type of video files/extensions from the web (after installing Flip4mac...) directly in the web browser, however, not long ago it just simply stopped playing the .mpg extension videos.
    I want to be able to view .mpg videos directly in the web browser. Please help me out!
    I believe that .mpg is a really common type of file and I just can't believe that the web browser in my iBook G4 is not going to reproduce them....
    Thanks!
    iBook G4   Mac OS X (10.4.8)  

    Welcome to Apple Discussions
    In System Preferences>Quicktime>Advanced>Mime settings>MPEG, are all boxes selected (they ought to be)? If not, select all, and restart the computer. If all boxes are selected, does the same problem occur if using Safari in another User Account?
    Creating a New User Account: Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
    Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
    Log-on to the new account and start Safari. If the sites are accessible in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • How to run report to show all the records in the form view of Siebel 8.1.1

    Hi.
    My template has "for-each" section and there are more than 1 records in the form view. But when generating report, there is only one record in the report. Can anyone offers help? Thanks a lot.
    Edited by: user11948585 on 2009-11-18 下午6:08

    Hi ,
    Could you generate a sample XML from BIP Administrator for the IO on which report is based , and apply it to RTF and see if you are getting the desired values.
    Thanks!!

  • Not able to run report in the background

    I'm working in SCM 5.0.
    I've created a function module to run report /SAPAPO/BACKGROUND_SCHEDULING in the background but when I execute it the report is prompted (i.e. is not running in the background). The function module code is the following
        if i_vrsioid is initial or i_tproid is initial or i_proprf is initial.
         submit /sapapo/background_scheduling
                   using selection-set i_variant
                with simname = i_simname
               exporting list to memory and return.
        else.
         submit /sapapo/background_scheduling
                   using selection-set i_variant
                with vrsioid  = i_vrsioid
                with tpro_id  = i_tproid
                with thelp_id = i_thelpid
              with proprf   = i_proprf
                with simname  = i_simname
            exporting list to memory and return.
        endif.
      endif.
    Can you help me understand what is wrong?
    Many thanks,
    Diego

    hi in fm you can not use Submit or call transaction..
    try this way...
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = job_name
      IMPORTING
        jobcount         = job_nr .
    IF sy-subrc <> 0.
    ENDIF.
    jobs-report = '/sapapo/background_scheduling'.   "report name
    jobs-variant = 'i_variant'.                                    "Variant name
    wa_authchknam       = sy-uname.
    wa_pri_params-pdest = 'MP18'.        "Print parameters, output device
    wa_pri_params-plist = jobs-variant.  "Print parameters, text for cover
    wa_pri_params-prtxt = jobs-variant.  "Print parameters, text for cover
    wa_pri_params-prnew = 'X'.      "Print parameters, new spool requ
    wa_pri_params-prsap = 'D'.           "Print: SAP cover page
    wa_pri_params-prunx = 'D'.           "Print: SAP cover page
    wa_pri_params-prabt = 'X'.      "Print parameters, new spool requ
    wa_pri_params-paart = 'X_65_132'.    "Print parameters, new spool requ
    wa_pri_params-armod = '1'.    "Print parameters, new spool requ
    CLEAR wa_pri_params.
    CALL FUNCTION 'JOB_SUBMIT'
      EXPORTING
        authcknam               = wa_authchknam
        jobcount                = job_nr
        jobname                 = job_name
        priparams               = wa_pri_params
        report                  = jobs-report
        variant                 = jobs-variant .
    IF sy-subrc <> 0.
    ENDIF.
    CALL FUNCTION 'JOB_CLOSE'
      EXPORTING
        jobcount             = job_nr
        jobname              = job_name
        strtimmed            = 'X' .
    IF sy-subrc <> 0.
    ENDIF.
    Regards,
    Prabhudas
    Edited by: Prabhu Das on May 19, 2009 11:50 PM
    Edited by: Prabhu Das on May 19, 2009 11:57 PM

Maybe you are looking for

  • Not Getting Benifit Plan in a rule -- Please help urgent

    Hi Gurus, I need to query the benifit plan and need to override the system calculated values in certain conditions. But I am not able to query the benifit plan in a rule Made a rule like this   D TABLEP0169VARGBBPLAN &&&&        CONTINUE   0381 AMT=&

  • Print Help Airport Express Windows

    How do link my printer to the airport express. I have a EPSON STYLUS4700. I already connected the printer usb cable to the airport. Do i need to use bonjour and how do i use it or what do i do please help!  I want it so that i can print documents fro

  • Logic Pro Mountain Lion FIX

    Hey people. I'm as angry as the next person for this stupid lagging. For those who are working and don't have the time to swtich back to SL I have found you can pull logic out of the lag by right clicking the app from the dock and clicking the curren

  • Need help(I am a begner in Oracle)

    I am looking for a technical help that, suppose i have an data entry form for Items entry.when users entring(new items) the item_code i want to check it is already there in the table, if it is there i want to display all the fields in the same block.

  • Is there a setting that prevents you from moving into the next "set?"

    A couple times I have mistakenly hit my "next patch" button one too many and ended up in the next set. This is a problem because the backing track that was playing suddenly stops because I am in the next set, understandably. Is there a setting or map