Stop enter parameter for report instance

hello everyone:
I have a problem when i schedule one of my report:
this report contains a few parameters
when i schedule it, i pre-enter the parameters' value (at schedule -> parameter panel)
after report finish to run, the report instance gose to user's inbox.
the problem is:
when user try to view the report instance in their inbox, infoview ask user to enter parameter again. it only appear first time user view the instance, if user close the report and reopen it , it will skip the enter parameter step and get into the report stright away.
any ideas to stop it?
thanks

Hi,
Here are the steps :
Go to CMC > Select  Report >click on Schedule report > click Default Settings option > Under Paramter Option > Uncheck Prompt While vewing Option > Save
Now enter the parameters and Schedule the report to the following destination.
Hope this will resolve the issue.
Regards,
Rameez
Edited by: ramzraja on Aug 23, 2011 7:22 AM

Similar Messages

  • How to select entered parameter for report?

    I developed a report in SSRS 2008R2 with several parameters. But now when the use selects the Supervisor from this query, it automatically changes to a different supervisor!
    Select Distinct
    Null As [supervisor_id],
    '-All-' As [supervisor_name],
    0 as sort
    UNION ALL
    select distinct
    supervisor_id,
    staff_name as [supervisor_name],
    1 as sort
    from staff_view v WITH (NOLOCK)
    where staff_id not in ('07BBA230-CA6E-402E-AEAF-FF1CB48AA41A','6394C3A3-5402-4578-BBF1-31FFCDD4EB90')
    Order By sort, [supervisor_name]
    In my report I have a SupervisorID parameter which uses supervisor_id as the value and supervisor_name as the label. (This is the Text datatype).
    I also tried running this as a text query instead of store proc, but this exhibited the same behavior. I also broke down this view into the source tables with the same behavior:
    select distinct
    supervisor_id,
    [supervisor_name] = evolv_cs.dbo.FormatName(people_rv.last_name,people_rv.first_name,people_rv.middle_name) +
    Case When IsNull(staff_rv.end_date, '12/31/2100') < GetDate() Then
    ' (Ended: ' + Convert(Varchar(10), staff_rv.end_date,101) + ')'
    Else '' End,
    1 as sort
    FROM
    staff_rv with (nolock)
    INNER JOIN people_rv with (nolock) ON staff_rv.people_id = people_rv.people_id
    INNER JOIN agency_rv with (nolock) ON staff_rv.agency_id = agency_rv.agency_id
    where supervisor_id is not null and
    staff_id not in ('07BBA230-CA6E-402E-AEAF-FF1CB48AA41A','6394C3A3-5402-4578-BBF1-31FFCDD4EB90')
    Order By sort, [supervisor_name]
    I'm not sure what else to try?
    Also, the code for FormatName is:
    ALTER FUNCTION [dbo].[FormatName](@last [nvarchar](4000), @first [nvarchar](4000), @middle [nvarchar](4000))RETURNS [nvarchar](100) WITH EXECUTE AS CALLERAS EXTERNAL NAME [EvolvSQLCLR].[UserDefinedFunctions].[FormatName]
    Ryan D

    Hi ironryan,
    Thank you for your question.  
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.  
    Thank you for your understanding and support. 
    Best Regards,
    Simon Hou

  • Customized name for report instances under publication (BOXI 3.1)

    Hi All,
    Is a there any way to have custom name for the report instances under publication history (default enterprise location). I can see we can customize report instance names using placeholders if destination is email or local drive or enterprise inbox, but doesn't have similar option under publication history.
    Basically we have a Agency Report which has to be distributed to individual agencies through email while another copies will be maintained under publication history. But unfortunately there is no way (as it seems to me) to find out which report instance is for which agency (unless one manually opens and checks the report).
    So my query to you is that, is there any work around to customize report instances name under publication history.
    Thanks in advance.
    Regards,
    Mukesh

    Hi,
    My client has exactly the same requirement; for instances/documents to be published to default location with custom instance and document names.
    I'm really struggling to find any built in capability to do this however I hope I'm wrong on this!
    At the moment I'm writing a publication extension to do this but again I hope this isn't necessary!
    Does anyone know if this is possible?

  • Passing of userid as a parameter for report viewing in Flex portal

    Hi,
    We are using flex application and Business Objects reports are integrated with it. We had created one service id which is used to access reports from application. Also we want to implement Data Access in Business Object's Reports. and for the same we want to pass UserID as a parameter internally from Flex code to the reports. We cannot use @BOUserID as we are using single service id. We want to pass "UserID" as a parameter (which we can get from Flex application) and pass this to Report OR Universe which internally filter out the data accessible to the respective user. Kindly advise on the same.
    Thanks,
    Eswar

    I've resolved this issue by creating a prompt in universe and inserting the security table in the universe structure

  • Parameter for report title

    Hello,
    I have a report with many pages and I need the same title on every page. To do so, I would like to use a parameter which could be defined by the user through a VBS inputbox and then reused on each page.
    I tried something with scalar parameters : B1, B2, B3... (see attached file) but I don't know how to change their values. Is it possible to do it this way? Otherwise, do you have any other method?
    Thank you in advance for your support
    Jérémy
    Solved!
    Go to Solution.
    Attachments:
    text_parameters.JPG ‏164 KB

    Hello Jeremy,
    In addition to Brad's suggestion with the properties, have a look at the "Master Layout" function in DIAdem.
    A Master layout allows you to define some standard elements (those could include logos, texts - including variables, boxes, etc.) that will appear on each page of your report in the same location and cannot be edited or moved by the person working on the layout (somewhat like a watermark)
    Let us know if you have questions about this function, it's pretty neat ...
         Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Date Parameter for Report

    Hi,
    How can I add a date parameters to a report using date pickers?
    Please Help!!! :)

    William,
    Most of the time you'll want to allow for a range of dates to be selected using the BETWEEN operator. But since your trying to do an exact match try the following:
    select "CSC_MASTER"."LEAD_LOGON" as "LEAD_LOGON",
    "CSC_ACTIVITY"."ACTV_DESC" as "ACTV_DESC",
    "CSC_MASTER"."PRIORITY" as "PRIORITY",
    "CSC_ACTIVITY"."ACTV_DT" as "ACTV_DT",
    "CSC_ACTIVITY"."ACTV_TIME" as "ACTV_TIME",
    "CSC_MASTER"."STATUS" as "STATUS"
    from "CSC_ACTIVITY" "CSC_ACTIVITY",
    "CSC_MASTER" "CSC_MASTER"
    where "CSC_MASTER"."CSC_ID"="CSC_ACTIVITY"."CSC_ID"
    and (to_char(actv_dt,'dd-mon-yyyy') = lower(:P32_SEL_DT))Make sure the format string in the to_char matches the format string you're using for the date picker.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    Edited by: dmcghan on Dec 5, 2008 10:45 AM
    Removed lower from left side as it was not needed...

  • Stop Enter key for acting in a JTable

    I am having some problems with scrolling because of the Enter key. I there a way to override or stop the enter key from acting in a JTable?

    The following code simulates a mouse click on a cell when enter is pressed. You should be able to change it to do nothing, or add other functionality.
    table = new JTable(model)
         protected void processKeyEvent(KeyEvent e)
               if ( e.getKeyCode() == KeyEvent.VK_ENTER
               &&   e.getID() == KeyEvent.KEY_PRESSED )
                   int column = table.getSelectedColumn();
                   int row = table.getSelectedRow();
                   Rectangle r = getCellRect(row, column, false);
                   Point p = new Point( r.x, r.y );
                   SwingUtilities.convertPointToScreen(p, table);
                    try
                         Robot robot = new Robot();
                         robot.mouseMove(p.x, p.y );
                         robot.mousePress(InputEvent.BUTTON1_MASK);
                         robot.mouseRelease(InputEvent.BUTTON1_MASK);
                         robot.mousePress(InputEvent.BUTTON1_MASK);
                         robot.mouseRelease(InputEvent.BUTTON1_MASK);
                         robot.mouseMove(0, 0 );
                    catch (Exception e2) {}
               else
                   super.processKeyEvent(e);
    };

  • How use parameters on a html region for report query region

    Hi all.
    I have created a number of report regions which initially query some data.
    The requeriment now is to have a date range (initial and final) and use this range as a parameter for report queries.
    i created a new region containing these two date values. Now i need to:
    - Give this date fields and initial value: say first and last day of current month.
    - Perform a validation to ensure initial date is less or equal to final date.
    - And most importantly, i need to reexecute the queries based on this date range.
    How do i do it...?
    Thanks in advance ...!

    Start here http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21679/toc.htm#
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_ses_val.htm#HTMDB25030
    I can guarantee that it will be easy

  • Optimal value of processes parameter in AMS instance

    Hi
    If we have several database instances on single server which are accessing ASM instance. How can we calculate optimal value of PROCESSES parameter for ASM instance
    Here, I would like to mention that we are using Goldengate also for replication and for this our ARCHIVE DG is on ASM
    Rgds
    Harvindr

    I have seen systems with multiple database instances (4-6) and running very well with just the defaults. That being said, follow the recommendations. GG, IIRC, talks to the database which does all of the reads/writes for GG. Therefore, 50+50*n RDBMS INSTANCES.
    http://docs.oracle.com/cd/E11882_01/server.112/e10803/config_gg.htm
    "Oracle GoldenGate 11g introduces a new optimized method of reading log files stored in Oracle ASM. *This new method uses the database server to access the redo and archived redo log files, instead of connecting directly to the Oracle ASM instance*. The database must contain the libraries with the API modules. The libraries are currently included with Oracle Database release 10.2.0.5 and 11.2.0.2. For information for accessing the API modules for other releases, see "Optimized Access for Oracle GoldenGate to Redo Log Files in ASM - for Oracle Database Releases other than 10.2.0.5 and 11.2.0.2" in My Oracle Support Note 1333171.1 at https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1333171.1 "

  • How to suppress "enter parameter values" screen in crystal reports for Visu

    Hi,
        I am passing parameters to the report through program.  But still the "Enter Parameter Values" Dialog is shown every time I run the application.  Code used to pass parameters is given below:
                    rptCBBookRpt objRptCBBook = new rptCBBookRpt();
                    objRptCBBook.SetParameterValue("@Branch", strBranch);
                    objRptCBBook.SetParameterValue("@CoName", mdlFinIF.objCommon.CoName);
                    objRptCBBook.SetParameterValue("@Heading", strHeading);
                    objRptCBBook.SetParameterValue("@UserInfo", mdlFinIF.objCommon.ReportInfo());
    How can I suppress the "Enter Parameter Values" dialog.  Please help.
    Cris Evan

    Well, no. But this being a community, not technical support, you may get a response, perhaps even an actual answer, or you may not...
    If you are not getting a response or an answer, you may want to consider obtaining a dedicated support here:
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    Look at samples here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Check out the [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23] - it will apply to your version of CR...
    And of course, developer help files.
    - Ludek

  • One parameter for multiple Crystal reports in Publication

    Does anyone know if it is possible to enter one identical parameter for multiple Crystal reports in publication when scheduling? BOE 3.1 SP3 Windows, Java.
    To elaborate I am creating publication with multiple reports, each report has one parameter and this parameter is identical in every report in publication. So instead of entering this parameter many times I would like to enter once. 
    If yes point me in the right direction to get the how to or post the steps.

    Daniel,
    Thank you so much for your answer. It was very helpful. In the end, it didn't work but it helped me figure out what was happening. I use a different form for the reports and I had it coded in the form which report to use. I created a second form for the second crystal and then I used an if statement to choose the form and it worked like a charm.
    Thanks so much again!

  • How to disable "Enter Parameter Values" for optional paramters?

    I'm having issues getting the Crystal Reports .NET Viewer to suppress the "Enter Parameter Values" dialog for optional parameters.  I have templates created using Crystal Reports 2008 and am linking against the CR for VS 2010 runtime.
    Within the report template the optional paramter has "Optional Prompt" set to "True".  This particular parameter also allows multiple values and is used in record selection.  Within the record selection it is using HasValue().
    It seems the parameter is set up properly as I have other parameters that are set within the code that are not prompted for.  If I pass in the optional parameter through the code the "Enter Paramater Values" dialog also does not appear and the report is generated correctly.  All of the parameters are set using ParameterFields and they are set before the ReportSource is set.
    Looking through the .NET API documentation it seems like the CrystalReportViewer should have an "EnableParameterPrompt" property that would do what I want however it doesn't seem to be a valid parameter as I get compile errors when I try to use it...  Not sure if it matters or not but I am using managed C++ and our application is built using Visual Studio 2005.  Could that maybe have something to do with it?
    Thanks,
    -Ben

    OK, I'm going to answer my own question as with a little more digging I was able to find out that I needed to set some stuff on the report document to specify that there are no values.  Still not sure why "EnableParameterPrompt" is not valid for me though as it seems like that would work as well.  At any rate here is what I needed to do:
    ReportDocument->ParameterFields[<Optional Parameter Name>]->CurrentValues->Clear();
    ReportDocument->ParameterFields[<Optional Parameter Name>]->CurrentValues->IsNoValue = true;
    -Ben

  • How to create a user parameter for a report

    Hi,
    I am writing a report in ORACLE 6.0, and I need to create a user
    parameter for my report.
    My database includes fields: item_id, item_cost, and item_desc.
    What I want to do is: set up a user parameter for item_cost, and
    the report will prompt the user to enter number into this
    parameter, then the report will display item_id and item_desc
    depending the user-entered item_cost.
    thanks.
    Jun

    My SQL code is below:
    select item_id, item_invo, item_desc
    from tb_item
    where item_invo=:p_1
    but I got an error message:
    REP-0788:Warning: The value of restricted LOV parameter p_1 is
    not among the selectedble values.
    Would you help me again? Thanks.
    Jun

  • How to pass a value to the export parameter for a method (public instance)?

    Hello,
      I am trying ABAP OO newly. How to pass a value to the export parameter for a method (public instance) called in a report? This *export parameter has a reference type of structure.
    Thanks in advance,
    Ranjini

    Hi,
    "class definition
    class lcl... definition.
      public section.
        method m1 imporitng par type ref to data.  "now you can pass any reference to the method, but this way you have to maintain this reference dynamically inside the method (you can't be sure what that reference is really "pointing" at)
    endclass.
    "in program
    data: r_lcl type ref to lcl...
    create object r_lcl.
    call method r_lcl
      exporting
         par    =  "pass any reference variable here
    Regards
    Marcin

  • Report parameters for pdf instance

    Hi,
    is there a way to read the parameters from a pdf report instance? I already successfully retrieved the report parameters from a CrystalReport using the IReport.getReportParamters. Is there a similar way to do this for pdf instances or Excel instances?
    Thanks in advance.

    Hello Sebastian,
    The InfoObject representing the scheduled instance to PDF should implement the IReportProcessingInfo interface, that defines the method to retrieve the params.  You should cast to IReportProcessingInfo.
    It's undocumented, but works.
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Win 8.1 not remembering dual monitor setup after reboot

    Hello, I am running Windows 8.1 64-bit Enterprise N with the following hardware: HP ENVY TouchSmart 4-1245tu Sleekbook with Intel HD 4000 Graphics Dell Monitor HDMI Out from laptop to VBGA In on monitor (HDMI to VGA Convertor used to connect with sec

  • Titles work in iMovie but not after I export them

    Everything seems to be working normally in my iMovie project but when I export the video, some of the titles are no longer readable (they seem too transparent). When I view the project is full screen mode - it works but once I finalize it and export

  • I had about a dozen pinned links for several months. They all suddenly disappeared. How to get them back.

    I have been running Firefox 19.0.2 for several months and have pinned a number of sites. There were no problems with the pinned sites until this afternoon. I came home and found Firefox running, but all pinned sites gone. I rebooted Firefox and then

  • Which is better for reading  in XML

    When wanting to read in XML using JSP is it better to read it in straight from the JSP page or write a java bean that does it?

  • Multi-monitor enable

    I just upgraded to this MS-6526G with P4 1.8. Now I'd like to enable dual monitor support by disabling onbaod VGA and adding PCI card BUT... BIOS doesn't have initial boot PCI/AGP setting like my previous MB did. Help please.