Default parameters are missing in the cloned EUL

we have discoverer up and running perfectly on our existing instance - SIGMA
now we have a new instance - ALPHA,
we cloned the whole EUL from old instance(SIGMA),
IN ALPHA every thing is working fine, we have all the BA,folders and all the workbooks seem to work fine, but we have a issue with the default parameters.
the default parameters are missing from the workbooks, now this has become an big issue, because we have hundreds of reports and user want need them all with the default parameters
could somebody please help me on this issue
few questions:
when cloned does the default parameters get erased??
Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??
Could you please give me a best approach to bring in thoese default parameters??
any thoughts are highly appreciated
note: i can edit the worksheet and enter the default parameter and save the worksheet but we have got some hundreds of workbooks

Hi,
when cloned does the default parameters get erased??I would be surprised if the default parameters are erased. More likely is that they are not being used because the default value is not valid anymore or because Discoverer is trying to use the last parameter value. Check the value of the SaveLastUsedParamValue preference setting. Is this the same on Desktop, viewer and Plus?
Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??The default parameters will be save along with the workbook in the EUL5_DOCUMENTS table. The field is of type LONG RAW so you won't easily be able to see this field. You can use the workbook dump utility to check whether there are default parameters actually set up in the workbook.
Could you please give me a best approach to bring in thoese default parameters??You could try exporting and importing the workbooks into the new environment to see whether this fixes the issue.
Rod West

Similar Messages

  • Some parameters are missing values

    I am trying to invoke a crystal report using JRC API. I am using Business Objects XI.
    When I try to invoke the report after setting all parameters I am getting an error message "Some parameters are missing values ". Here is how my JSP code looks like
    ReportClientDocument oReportClientDocument = new ReportClientDocument();
    oReportClientDocument.open(reportName, 0);
    CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();
    //set the reportsource property of the viewer
    oCrystalReportViewer.setReportSource(reportSource);
    //set viewer attributes
    oCrystalReportViewer.setOwnPage(true);
    oCrystalReportViewer.setOwnForm(true);
    //set the CrystalReportViewer print mode
    oCrystalReportViewer.setPrintMode(CrPrintMode.ACTIVEX);
    //refresh the CrystalReportViewer if necessary (only required once)
    if (session.getAttribute("refreshed") == null)
    oCrystalReportViewer.refresh();
    session.setAttribute("refreshed", "true");
    String userid="emagia";
    String password="emagia";
    String rptuserid="tjordan";
    String fromdate="07/01/2008";
    String todate="07/12/2008";
    ConnectionInfo ci = new ConnectionInfo();
    ci.setUserName(userid);
    ci.setPassword(password);
    ConnectionInfos connections = new ConnectionInfos();
    connections.add(ci);
    oCrystalReportViewer.setEnableLogonPrompt(false);
    oCrystalReportViewer.setDatabaseLogonInfos(connections);
    ParameterFieldDiscreteValue val1 = new ParameterFieldDiscreteValue();
    val1.setValue(rptuserid);
    Values vals1 = new Values();
    vals1.add(val1);
    ParameterField param1 = new ParameterField();
    param1.setName("User Id");
    param1.setReportName("");
    param1.setCurrentValues(vals1);
    Fields fields = new Fields();
    fields.add(param1);
    ParameterFieldDiscreteValue val2 = new ParameterFieldDiscreteValue();
    val2.setValue(fromdate);
    Values vals2 = new Values();
    vals2.add(val2);
    ParameterField param2 = new ParameterField();
    param2.setName("Date Range from");
    param2.setReportName("");
    param2.setCurrentValues(vals2);
    fields.add(param2);
    ParameterFieldDiscreteValue val3 = new ParameterFieldDiscreteValue();
    val3.setValue(todate);
    Values vals3 = new Values();
    vals3.add(val3);
    ParameterField param3 = new ParameterField();
    param3.setName("Date Range To");
    param3.setReportName("");
    param3.setCurrentValues(vals3);
    fields.add(param3);
    oCrystalReportViewer.setEnableParameterPrompt(false);
    oCrystalReportViewer.setParameterFields(fields);
    oCrystalReportViewer.processHttpRequest(request, response,getServletConfig().getServletContext(), null);
    oCrystalReportViewer.dispose();
    In the Tomcat log this is what I get
    - JRCAgent3 received request: refreshData
    - JRCAgent3 attempting to acquire license
    - JRCAgent3 successfully acquired license
    - JRCAgent3 releasing license
    - JRCAgent3 received request: getPromptConnInfos
    - JRCAgent3 received request: compoundRequest
    - JRCAgent3 received request: setSQLLogonInfoRequest
    - JRCAgent3 received request: setSQLLogonInfoRequest
    - JRCAgent3 received request: fetchReportPageRequest
    - JRCAgent3 attempting to acquire license
    - JRCAgent3 successfully acquired license
    - Logon: Connecting to database using local JNDI server ...
    - Connection Opened null
    - Connection opened (Connection:  databaseType=JDBC  serverName=reports_dsn.dsn  state=open  databaseDriverName=crdb_odbc.dll).
    - Report parameters is not valid
    - Report parameters is changed
    - Handling report parameters changes
    - Validating report parameters
    - com.crystaldecisions.reports.dataengine.l: Some parameters are missing values
    - The report requires parameter values that need to be supplied by the client before further processing
    com.crystaldecisions.reports.dataengine.l: Some parameters are missing values
         at com.crystaldecisions.reports.dataengine.j.a(Unknown Source)
         at com.crystaldecisions.reports.dataengine.a9.a(Unknown Source)
    Can anybody tell me why I am getting this error??
    Any help will be appreciated.

    The problem may be that you are setting your report date parameters as a string when you pass the value to the report.   If the JRC does not recognize the parameter value as the correct type, it will throw the error you see when trying to pass them to the report.
    If they are a date type or a date time type in the report, they must be set as such using the Java Calendar object.
    Below is an example of how one would pass a date parameter to a report:
    //DATE VALUE PARAMETER.
         Calendar calendar = Calendar.getInstance();
         calendar.clear();
         calendar.set(2004, 1, 17);
         Date dateParamVal = calendar.getTime();     
         pfieldDate.setName("dateParam");
         pfieldDVDate.setValue(dateParamVal);
         //Add the parameter field values to the Values collection object.
         vals5.add(pfieldDVDate);
         //Set the current Values collection for each parameter field.
         pfieldDate.setCurrentValues(vals5);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldDate);
         //DATE-TIME VALUE PARAMETER.
         Calendar calendar2 = Calendar.getInstance();
         calendar2.clear();
         calendar2.set(2002, 5, 12, 8, 23, 15);
         Date dateTimeParamVal = calendar2.getTime();
         pfieldDateTime.setName("dateTimeParam");
         pfieldDVDateTime.setValue(dateTimeParamVal);
         //Add the parameter field values to the Values collection object.
         vals6.add(pfieldDVDateTime);
         //Set the current Values collection for each parameter field.
         pfieldDateTime.setCurrentValues(vals6);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldDateTime);
         //TIME VALUE PARAMETER.
         Calendar calendar3 = Calendar.getInstance();
         calendar3.clear();
         calendar3.set(2002, 5, 12, 13, 44, 59);
         Date timeParamVal = calendar3.getTime();     
         pfieldTime.setName("timeParam");
         pfieldDVTime.setValue(timeParamVal);
         //Add the parameter field values to the Values collection object.
         vals7.add(pfieldDVTime);
         //Set the current Values collection for each parameter field.
         pfieldTime.setCurrentValues(vals7);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldTime);
    Edited by: Merry Enns on Aug 5, 2008 8:11 PM

  • Crystal Report: ERROR - Some parameters are missing values

              mine report it possesses a single parameter ....
              this is the example of like tries of to change the value set up in the report...
              ERROR: Some parameters are missing values
              thanks help...
              EXAMPLE:
              <%@ page import="com.crystaldecisions.report.web.viewer.*"%>
              <%@ page import="com.crystaldecisions.report.htmlrender.*"%>
              <%@ page import="com.crystaldecisions.reports.reportengineinterface.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
              <%@ page import="com.crystaldecisions.common.keycode.*"%>
              <%@ page import="java.util.*"%>
              <%
              try {
              IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();
              String report = "report/ReportParametro1.rpt";
              IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report,
              request.getLocale());
              Fields fields = new Fields();
              ParameterField pfield1 = new ParameterField();
              Values vals1 = new Values();
              ParameterFieldDiscreteValue pfieldDV1 = new ParameterFieldDiscreteValue();
              pfield1.setName("CICCIA");
              pfieldDV1.setValue("SELECT descrizione, validoDa, validoA FROM tariffari");
              pfieldDV1.setDescription("Query Dinamica....");
              vals1.add(pfieldDV1);
              pfield1.setCurrentValues(vals1);
              fields.add(pfield1);
              CrystalReportViewer viewer = new CrystalReportViewer();
              viewer.setReportSource(reportSource);
              // layout
              viewer.setOwnPage(true);
              viewer.setBestFitPage(true);
              viewer.setHasLogo(false);
              viewer.setHasRefreshButton(true);
              // group navigation
              viewer.setHasToggleGroupTreeButton(false);
              viewer.setDisplayGroupTree(false);
              // page navigation:
              viewer.setHasGotoPageButton(false);
              // print/export
              viewer.setHasExportButton(true);
              //viewer.setPrintMode(CrPrintMode.PDF);
              viewer.setPrintMode(CrPrintMode.ACTIVEX);
              viewer.setIgnoreViewStateOnLoad(true);
              viewer.setParameterFields(fields);
              viewer.setEnableParameterPrompt(false);
              viewer.refresh();
              viewer.processHttpRequest(request, response, getServletConfig().getServletContext(),
              out);
              viewer.dispose();
              }catch(Exception e){
              out.println("Errore " + e.getMessage());
              %>
              

    I am facing the same problem. After selecting an export option (PDF/RTF), the same error message is coming up.
              Also, what needs to be done for displaying export option of EXCEL?
              Thanks,
              Farzal

  • IDOC in 51 status.Essential transfer parameters are missing in record

    Hi All,
    Essential transfer parameters are missing in record: 8701 000001
        Message no. VL561
    I am not understanding what is missing in the IDOC.
    Please help me in resolving the issue.
    Thanks,
    Forum

    hi,
    Do check whether the below points are mentioned or not...
    Outbound delivery
    Shipping point
    Sales organization
    Distribution channel
    Division
    Material number
    Delivery quantity
    Ship-to party
    Base unit of measure
    Inbound Delivery
    Base Unit of Measure
    Conversion factors for converting base and sales units
    Goods Receiving Point
    If it is given here in the doc, then check whether these are getting saved into the table or not..
    Tables are :
    LIKP, LIPS, VTTP...
    Hope it helps..
    Regards
    Priyanka.P

  • Crystal Report "some parameters are missing values" while exporting/printin

    I am able to pass parameters from a JSP to a crystal report through CrystalReportViewer and view the report. (I tried doing it using the code provided on this help forum. I was getting a message: "Some Parameters are missing values". I had to add 1 line: pfield1.setReportName(""); for every parameter field. And It worked..)
    Now I can see the "Print" and "Export" buttons. But when I try to print or export the report, I get the same message "Some Parameters are missing values".

    see posting "parameter driven export to excel" on April 26th

  • CRYSTAL XI SOME PARAMETERS ARE MISSING VALUES

    I have a huge problem with parameters in crystal reports XI.
    Iam developing using jdeveloper 10g and a jndi connection
    I use th following code into my jsp
    the report filelds are set correctly and they HAVE values
    but after the execution of the following code
    i get the following message
    ERROR SOME PARAMETERS ARE MISSING VALUES
    also I install both commonwinXI_chf and cXIwin_chf fixes from crystal and still nothing .Any solutions to this problem because Iam freaking out
    for once more crystal reports XI supports sucks
    my code:
    IReportSource reportSource= (IReportSource)session.getAttribute("reportSource");
    Fields fields=(Fields)session.getAttribute("reportFields");
    CrystalReportViewer crViewer=new CrystalReportViewer();
    crViewer.setReportSource(reportSource);
    crViewer.setParameterFields(fields);
    crViewer.setEnableParameterPrompt(false);
    crViewer.refresh();
    // my fields have values
    crViewer.setOwnPage(true);
    crViewer.setOwnForm(true);
    crViewer.setPrintMode(CrPrintMode.ACTIVEX);
    // if i set fields=crViewer.getParameterField then filelds variable is empty!!
    try{
    crViewer.processHttpRequest(request,response,getServletConfig().getServletContext(),out);
    crViewer.dispose();
    }catch(ReportSDKException e){
    out.println(e);
    }

    Sorry man sometimes i forget even my self!!
    In order to connect crystal with JNDI you have to set the correct parameters
    into CRConfig.xml
    for example
    <JDBCURL>jdbc:oracle:thin:@somewhere:ORA_DB</JDBCURL>
         <JDBCClassName>oracle.jdbc.driver.OracleDriver</JDBCClassName>
         <JDBCUserName>username</JDBCUserName>
         <JNDIURL>t3://somewhere:7001</JNDIURL>
         <JNDIConnectionFactory>weblogic.jndi.WLInitialContextFactory</JNDIConnectionFactory>
         <JNDIInitContext>/</JNDIInitContext>
         <JNDIUserName>weblogic</JNDIUserName>
    also
    you have to provide the same info into file
    CRDB_JavaServer.ini
    [CRDB_JDBC]
    CacheRowSetSize = 100
    JDBCURL =
    JNDIURL =t3://somewhere:7001
    JDBCUserName = guest
    JNDIUserName = weblogic
    JNDIConnectionFactory = weblogic.jndi.WLInitialContextFactory
    JNDIInitContext = /
    I put both files into WEB-INF classes directory
    and finaly in both cases you have to include in your project the driver libs
    in my case I use weblogic therefore I have included weblogic.jar into my classpath

  • Error in Delivery using ME2O : "essential transfer parameters are missing"

    Hi All
    We have a subcontracting PO for which when trying to create Delivery using ME2O we are getiing error "essential transfer parameters are missing in record 000001". I understand that this error is coming because shpping point is not ap[earing when click on create delivery tab.
    Any pointer in this regrd.
    Would like to inform that we have already connected the Vendor and Customer in respective master. Apart from that
    we have checked that shipping condition, loading group and plant is also set which determines the shipping point.
    Would appreciate usefule pointer as this is very urgent.
    Rgrds
    Yogesh

    Hi,
    Check following;
    OVX6 - Assign sales organization - distribution channel - plant
    SPRO > MM > Purchasing > Purchase Order > Set Up Subcontract Order > Here assign Delivery Type "LB" to Plant
    SPRO > MM > Purchasing > Purchase Order > Set Up Stock Transport Order > Define Shipping Data for Plants > Here assign the Customer Code of Plant and Sales Area to the Plant
    Note: - Customer Code of Plant is to be created in XD01.
    Check whether Material Master is extended to the Sales Area.
    OVL2 - Cross-check Shipping Point Determination

  • Essential transfer parameters are missing in record: 000001

    I have been trying to create a delivery ( Type LB) trough ME2O and get
    this error .
    Essential transfer parameters are missing in record: 000001
    Message no. VL 561
    Diagnosis
    Information necessary for this delivery is missing.
    System Response
    Depending on the category of the delivery being created, the system
    needs the following transfer data:
    Outbound delivery::::::::
    Shipping point
    Sales organization
    Distribution channel
    Division
    Material number
    Delivery quantity
    Ship-to party
    Base unit of measure
    Inbound Delivery::::::::::::::::::
    Base Unit of Measure
    Conversion factors for converting base and sales units
    Goods Receiving Point
    Outbound and inbound deliveries from goods movements::::::
    Plant and sales unit transfer data is always mandatory..
    Please help me how to fix this issue.
    Thanks in advance

    hi,
    Do check whether the below points are mentioned or not...
    Outbound delivery
    Shipping point
    Sales organization
    Distribution channel
    Division
    Material number
    Delivery quantity
    Ship-to party
    Base unit of measure
    Inbound Delivery
    Base Unit of Measure
    Conversion factors for converting base and sales units
    Goods Receiving Point
    If it is given here in the doc, then check whether these are getting saved into the table or not..
    Tables are :
    LIKP, LIPS, VTTP...
    Hope it helps..
    Regards
    Priyanka.P

  • Default icon are missing

    Hello,
    when i do security wipe in blackberry playbook. After all default icon are missing. Just internet browser only available on my play book.
    Any buddy can slove this error? Please, let me know.
    how to fix
    Thanks

    At the top, tap the battery icon > Restart.
    After reboot, do you see your other icons?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Events are missing in the calendar in Month view in Blend

    Type :
    Bug
    Initial condition :
    The blend software is running. The calendar view is opened.
    Action :
    Select the month view.
    Expected result :
    All events are displayed for each day.
    Obtained result :
    The events of the previous month are missing.

    Having the same problems where the UI elements are missing in the layout screen.
    using the Show/Hide layout Preview Button  I get an Program cannot  display the web page.
    The server is on a different box . Tried running the sapgui  from a vista machine and a xp machine and they both have the same problem.
    If I run Sapgui on the server box the Show/Hide layout Preview Button  does show a subset on the ui elements but not all the examples described in the "ABAP Trial Version for Newbies: Part 18 - Starting with Web Dynpro for ABAP"
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414900)ID1299772950DB10354599868941910736End?blog=/pub/wlg/6973
    Thanks in advance.

  • I update my IPhone4 to IOS6 from IOS4.3.3. My all songs are missing in the Iphone4. How to get those songs into my Iphone from ITunes. Even after sync also not coming to IPhone.

    I update my IPhone4 to IOS6 from IOS4.3.3. My all songs are missing in the Iphone4. How to get those songs into my Iphone from ITunes. Even after sync also not coming to IPhone.

    The iphone is not  storage/backup device.
    The sync is one way - computer to iphone.
    The only exception is itunes purchases.  File>Devices>Transfer Purchases
    You should copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • I recently removed an outlook account and now all of my calendar events are missing. The majority of them were added from my iphone 4s. How do I retrieve the events? Backing up with iCloud did not help, as I assumed it would.

    I recently removed an outlook account and now all of my calendar events are missing. The majority of them were added from my iphone 4s. How do I retrieve the events? Backing up with iCloud did not help, as I assumed it would.

    Outlook is a mail client for PC's (and Macs). It is not a type of account. Do you mean an "Exchange Account"?
    If so, then re-add it. The calendar events live on the Exchange Server. The only way to get them back is to re-add the account to the phone. The contents of Exchange and IMAP accounts are not part of the 'backup' as they already exist elsewhere.

  • UI elements are missing in the layout of a view

    Hi Guys,
    I've downloaded New SAP NetWeaver 7.01 SP0 ABAP Trial Version. After three times installation, I gave up.
    And I downloaded New SAP NetWeaver 7.01 SP3 ABAP Trial Version, it took more time than SP0 to install. Finally, it works.
    Then I read this blog, /people/dirk.feeken/blog/2007/07/20/abap-trial-version-for-newbies-part-18--starting-with-web-dynpro-for-abap, to develop a Web Dynpro report. After copy the context from component controller  to view, I couldn't find UI elements in the view.
    What I could see in the layout of the view are:
    CONTEXT_MENUS
    ROOTUIELEMENTCONTAINER
    Does anyone know how to find the UI elements?
    Thanks in advance.
    Regards,
    Jim

    Having the same problems where the UI elements are missing in the layout screen.
    using the Show/Hide layout Preview Button  I get an Program cannot  display the web page.
    The server is on a different box . Tried running the sapgui  from a vista machine and a xp machine and they both have the same problem.
    If I run Sapgui on the server box the Show/Hide layout Preview Button  does show a subset on the ui elements but not all the examples described in the "ABAP Trial Version for Newbies: Part 18 - Starting with Web Dynpro for ABAP"
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414900)ID1299772950DB10354599868941910736End?blog=/pub/wlg/6973
    Thanks in advance.

  • SSRS,MDX- Passed parameters are not hitting the main query in Dataset

    I have created a SSRS report which has to accept two parameters i.e., store name, Date(to show sales on particular date) in report. which are working fine for me. but, those passed parameters are not hitting the main query in main Dataset. what ever i
    pass in parameters, it is displaying all the rows(every city values). i think i am not correct in creating the statement in  Main dataset query, to receive those 2 parameters into the main query. can anybody please help me how to create the statement
    in main date set to display the results for the exact parameter i am passing(which has to be in MDX).
    ram

    Hi ramprasad74,
    According to your description, you want to use parameter in the report, then after parameter values are selected, corresponding data will be displayed in the report. But the parameters do not work and all the rows are displayed.
    To pass parameter to main report dataset, we need to define parameter for MDX query and assign parameter name same as SSRS report parameter. For detail information, please refer to the following steps:
    Create a Dataset to retrieve data for Store name parameter.
    Create Store name parameter, type name and prompt, set Date type to Text, check Allow multiple values check box, then select get values from the dataset.
    Create a Dataset for Date parameter.
    Create Date parameter, type name and prompt, set Date type to Date/Time, then select get values from the dataset.
    Create a new dataset used to retrieve data for the report, add statement like below to the mdx query: {STRTOMEMBER(@Date)} * {STRTOSET (@Store_name)}.
    In Query Designer pane, click Query Parameters and assign parameter name same as SSRS report parameter.
    For more information about SSRS Report with Single and Multi Selection Parameter using MDX Query, please refer to the following blog:
    http://www.codeproject.com/Articles/799265/SSRS-Report-with-Single-and-Multi-Selection-Parame
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • When syncing my iTunes to my iPad from the laptop, I get a list of missing songs; they are in the library, but not in the music folder on my HD. In particular, I uploaded 3 CDs at the same time, all are in my library - but two are missing from the folder.

    When syncing my iTunes to my iPad from the laptop, I get a list of missing songs; they are in the library, but not in the music folder on my HD. In particular, I uploaded 3 CDs at the same time, all are in my library, and all synced to the iPad - but the music from two of them are missing from the music folder. Questions are (a) where might they have gone? and (b) is there a way of "reverse loading" them back to my hard drive from the iPad? Thanks in advance!

    Hi dones49,
    It sounds like your issue here is that iTunes can not find the files for some of the songs you have brought into it. This happens occasionally even if the songs have not been moved from the location that iTunes places them on import or purchase. When you try to use the song, iTunes prompts you to find the file, as you have seen.
    To find the file, use the information in this article to navigate through the iTunes media folders -
    Locate and organize your iTunes files
    If you are still unable to locate the files, you may need to download them from the iTunes store again, or rip them from your CDs. See this article for assistance with downloading your past purchases -
    Download past purchases
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

Maybe you are looking for