Activate BI based test reporting - error stating status values missing

During initial system setup of Solution Manager (as part of an EGI session) we also activated the BI component. I now wanted to activate BI-based test reporting, which is supposed to be done via:
- Work Center Test Management
- Settings
- BI Reporting Settings
When I reach this screen I get the following error message: "Please add customer defined status values in view u2018V_STATUS_MAPPINGu2019 and assign them to SAP standard values via transaction SM30." The rest of the screen is greyed out.
Looking at the mentioned table via SM30 I see that for each of the 10 entries maintained (like ALMOST_OK, ...) a customer defined status is maintained as well.
So what is the problem here?
Regards
Martin

It seems like system is also checking for any status that is not on the list, meaning that for every existing one there has to be a link and not only for every status that is in this view.

Similar Messages

  • 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

  • "Error Out.status":Value change event

    I get no event fired when the error out "status" changes?
    Solved!
    Go to Solution.
    Attachments:
    SLH-CANservicetest.vi ‏112 KB

    Just writing data to an indicator terminal doesn't cause a value change event.
    The only things that cause a value change event are user interaction with a control, or writing to the Value (Signalling) property of a control or indicator.

  • Report error: numeric or value error: character string buffer too small.

    Full Details:
    report error:
    ORA-20001: Error fetching column value: ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    MS Access runs this query but when I try to call a 'List of Values' in APEX that is in excess of 800 the error above displays. If I use a 'Pop Up' it will work but splits the list at 500. This is annoying and slower as I would like to be able to display all 850+ items in a named list of values. How do I increase the buffer size?
    Kind Regards,
    Steve

    Steve,
    Could you please post the query you're using? You're most like hitting one of two possible varchar2 limitations. If you're calling the apex_item API in your SQL query to render the select list, then you're limited to 8000 characters, this your option values and HTML code used to render this. In this case using the "XL" versions of the APIs might help, e.g. select_list_from_query_xl, because those return CLOBs. If you're already using those or if you're using the built-in display type "select list", then you could potentially hit the 32k character limit of varchar2 values in PL/SQL. In that case the best alternative is using a popup LOV instead.
    Regards,
    Marc

  • JDBC receiver report error message:  attribute action missing

    Hello Colleagues,
    I am working on a scenario:
    SAP ECC>XI proxy>XI server>JDBC adapter>oracle database.
    SAP ECC is sending a request(SQL query) to get the result from DB.
    The payload is
    ==========================================================================
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_B1_MES_GETMAT_IN xmlns:ns1="http://boe.com.cn/b1/cim">
    - <root>
    - <stmt>
    - <Query action="SQL_QUERY">
      <access>SELECT productspecname AS MATNR, productiontype AS DISGR, SUBSTR(factoryname,1,1) AS SHOP FROM PRODUCTSPEC WHERE activestate = 'Active'</access>
      </Query>
      </stmt>
      </root>
      </ns1:MT_B1_MES_GETMAT_IN>
    ============================================================================
    As you might already seen, the action attribute is there, but i always get the error log:
    Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)
    I searched for the threads in forum but it seems, people get the same error always due to the wrong XML document.
    but i check my xml, it looks right. why still get the "action attribute missing" error...
    Best regards, Charlie Cai

       <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_B1_MES_GETMAT_IN xmlns:ns1="http://boe.com.cn/b1/cim">
    - <root>
    - <stmt>
    - <Query action="SQL_QUERY">
       <access>SELECT productspecname AS MATNR, productiontype AS DISGR, SUBSTR(factoryname,1,1) AS SHOP FROM PRODUCTSPEC WHERE activestate = 'Active'</access>
       </Query>
       </stmt>
       </root>
       </ns1:MT_B1_MES_GETMAT_IN>
    In your query, are you executing Select Statement ?
    For Target JDBC, you can Insert data in table, Update Data in table & Execute Stored Procedures from PI System.
    using Actions
    INSERT
    UPDATE
    EXECUTE.
    Change your scenario Action as per your requirement.
    No idea for ACTION = SQL_QUERY.

  • SID Value Missing -  Error

    Hi All,
    DSO Activiation is sucessfully completed.But unable to execute reports based on this DSO.
    In RSRV Test it is giving Error that "SID values missing for 1 specifications of characteristic 0DOC_DATE"
    This error occuring for only Date Objects.
    Please give some solution.
    thanks
    Ramesh Babu

    Hi,
    SID error comes during activation of ODS because the related MD is not available for assigning SIDs.
    Whenever Master Data is loaded SID's are generated for those Master Data records.
    Now when you load Transaction Data these SID's will used (for the records which use above master data values). This results in performance gain.
    If Transaction Data is loaded first than the system checks for SID's. If they are not available system generate SID's. This results in a loss of performance.
    Now in the case if you don't have the setting selected (Further Processing Without Master Data/Always update data, even if no master data exists for the data) system will throw error No Sid?s found and load will terminate.
    So as a first step ensure that the related master data is loaded and Attribute change run has been triggered.
    OR
    Load the MD and Activate the MD (Modeling > InfoObject > Search the Infoobject > Right click > Activate Master Data)
    Once you perform this you can retrigger the activation. It should work fine.
    Else as a workaround you can blank out these particular values and activate.
    There is also one more workaround wherein you can create the Master data entries directly in BW itself. But both the above step should be done after consulting Business and considering data volume that needs to be edited/created.
    In most case once you perform the loading and activation of MD your activation should work fine when repeated.
    OR
    In the infopackage goto Update Tab and make the setting Update the records even if no master data exist and reload
    This may work.
    rgds,
    nkr.

  • Error while running test report

    I have just installed oracle application server 10g 10.1.2. on redhat linus AS4 on dell 64 bit machine.
    forms servlet works fine but when i use the following url to access test report
    It gives a very famous error error "REP-51002: Bind to Reports Server *** failed "
    http://zeropoint:7779/reports/rwservlet?report=test.rdf&destype=cache&desformat=pdf
    everything in infrastructure and application server middle tier is working fine.
    the URL
    http://zeropoint:7779/reports/rwservlet
    Works fine
    What might be the problem?
    Regards

    how are you martin
    well i have checked at client side but same problem. the status of report server is
    same as i told you after staring it through URL
    its 1/0
    i have done a freshj installation, but dont know why even after fress installation why isn't it working.
    Let me tell you another thing. My client has not any DNS right now and they are using host file on client side to resolve the server name but they are running successfullly in same netwrok let me tell you another thing that they are using 10.1.2.0.2 on red had advance server 3 on a 32bit machine and the machine on which i am working right now is 64-bit DELL machine with red hat linux advance server 4. I have done same hing in my office on AMD 64-bit machine and there my reports server is running fine.
    So do you think it might be a network problem?

  • Error 7 while using test report VIs

    I'm trying to figure out how to use the Labview test report VIs and I'm getting error 7 message. Please attached VI and error message. Does any one know this can be fixed?
    Thanks
    Attachments:
    LabviewTestReport.vi ‏21 KB
    Error 7.png ‏34 KB

    It looks like your file does not exist.  Have you created an .xls file by that name in the location?

  • RWI 00200 Error while scheduling the Bex Query based Webi report

    Dear All,
    I am facing the below error while scheduling the Bex Query based Webi report.
    Error:RWI 00200
    We are using BO XI 4.0 Sp05.
    Please advise

    Hi,
    I am on BO 4.0 SP05 Patch 6. Webi reports are just showing processing but not giving results. When I try to create new report it is throwing java security error.
    Tried applet patch upgrade(From link : https://websmp207.sap-ag.de/~sapidb/011000358700000902752013E) for webi certificate but didn't help.
    Please suggest what could be done.
    Thanks and Regards,
    Ankit Sharma

  • Error While Genrating Test Report in Test Plan Management

    Hi Guru's
      I am getting an authorization error while generating test report via STWB_info.
      Just i selected the test package and while click the test report i am getting this error.
    Error during authorization check
    Message no. TWBHS540
    Guide Me to solve this issue
    thanks in advance
    regards
    Anandh

    Hi,
    Please try the following:
    Start transaction SMGENDOC03
    Do not change anything but just hit the save button.
    Afterwards restart transaction STWB_2 and try again to generate again.
    Hope this helps.
    Cheers
    SH

  • Error while executing the test report

    Hello
    i tried to execute the test report for adobe forms
    FP_EXAMPLE_01 but it gave following error
    SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport : HTTP response contains unexpected content-type(100,101).
    is it due to improper configuration of ADS? we checked the ADS connection from SM59 which is ok and also the service /sap/bc/fp through internet which is also ok.
    Thanks in advance.
    Regards
    Rajeev

    hello
    i guess there was the problem of ADSUSER. Now i corrected that and the report FP_PDF_TEST_00 gives proper version of ADS.
    But when i execute test report FP_TEST_00 it asks me about printer and when i clicked Print Preview it gave following error
    "ADS: Request start time: Mon Jan 14 06:16:01 EST 2008(200101)".
    when debugged the code i found error in the class "CL_FP_PDF_OBJECT->execute_internal()" method which is getting called from the FM FPCOMP_CREATE_PDX with error code as "l_errcode = cpdfe_pdf_exe_print_adserror"
    but couldn't make anything from that. any clues?
    Regards
    Rajeev

  • Example "sample test report" doesn't run - Error -1073741819

    I am trying to run the "Sample Test Report.vi" example in a totally unmodified version. I receive the message
    "Unknown System Error in Font Style.vi->Set Report Font.vi->Sample Test Report.vi"
    I have some trouble finding where the error occurs exactly. Any ideas?
    Best regards
    Matthias
    Attachments:
    Sample_Test_Report_-_Error.PDF ‏67 KB

    Hi Matthias
    Check this knowledgebase:
    http://digital.ni.com/public.nsf/websearch/5A42F1725790DFBC86256B900075F884?OpenDocument
    Hope this helps
    Luca
    Regards,
    Luca

  • Test report download  error

    i created test report from solution manager, when i try to run macro "SAP_CREATE_TESTREPORT"  it gives error:
    "Unexpected value for encoding type: 50"
    i am using MS Word 2010, Solution Manager 7.0 EHP1
    Please help
    Edited by: Hasan Sidra on Nov 22, 2011 4:08 PM

    Hi Hasan,
    Try to In transaction SE38 run the report RSTWB_TESTREPORT_LOIO_CLEANUP once and afterwards try to create a new testreport.
    this should solve this issue.
    Also I'm not sure if this is the case but the 64bit version of office 2010 is not supported, so it may lead to problems in the future.
    reference to note  1442028 -  SAP GUI for Windows 7.20: No support for Office 2010 64bit
    Kind regards, Fabricius

  • How do I create a new Folder for each test report based on Serial number?

    I want to be able to create a new folder for each test report based on serial number. Each time a UUT is tested, I want the report to go to the appropriate folder. What is the best way to do this?
    Thanks

    Hello Tman,
    This is a slightly tricky question. The reason being, the report options like the report path etc, are set before you see the serial number prompt when you run your UUT. There might be other ways of getting around this, but a quick solution would be modifying the process model.
    I modified the PreUUT callback to set the report options. I passed the reportOptions as a parameter to this sequence. In the PreUUT sequence, I set the following fields:
    Parameters.ReportOptions.GeneratePath=False
    Parameters.ReportOptions.ReportFilePath= "c:\\"+ Locals.SerialNumber +"\\report.xml"
    I hope this would give you an idea.
    SijinK

  • Reporting errors or exceptions back to the caller

    I'm u sing OracleAS 10.1.3 and I'm exposing some of my PL/SQL procedures as web services. I was wondering what the convention is for reporting errors back to the caller. I read a little bit about Soap faults and some lack of support in the current JDev release.
    Are soap faults the standard way of reporting handled exceptions? What about returning a record like:
       type r_ws_response_string is record (
          result          varchar2 (4000),
          return_code     number,
          error_message   varchar2 (4000)
       );... and having the caller check the return_code. Bad idea?
    Any resources you can point is is appreciated (books/sites).
    -Vahid Pazirandeh

    Hi Toby,
    Yes, I've come up with a working solution.
    Essentially, I've made use of PL/SQL's OUT parameters and always reporting a status to the caller. At minimum, any procedure or function that I expose as a web service will have two out parameters: status, error_msg. The benefit of having a status being returned is that the caller can build logic based on different problems encountered, rather than just saying "an error occured". The error strings that you define are textual error codes, so they shouldn't change once you decide on an API.
    The caller will always check for the value of status, if it is not 'SUCCESSFUL', then something is wrong. They can then log the value of error_msg so that their developers can figure out what went wrong later.
    What's also nice is that the XML that's generated by JDeveloper looks clean when we're using one or more OUT params.
    I don't know what the best way is to deal with this problem, but this works for me. :) Here's an example:
    g_status_success        := 'SUCCESSFUL';
    g_status_bad_password   := 'ERROR_INVALID_PASSWORD';
    g_status_file_not_found := 'ERROR_FILE_NOT_FOUND';
    g_status_unknown_error  := 'ERROR_UNKNOWN_EXCEPTION';
    procedure give_me_file(password varchar2,
                           status out varchar2,
                           error_msg out varchar2,
                           file out blob)
    is
    begin
         if bad_password(password) then
              status := g_status_bad_password;
              error_msg := 'You entered the wrong password friend!';
              return;
         end if;
         file := get_top_secret();
         if file is null then
              status := g_file_not_found;
              error_msg := 'Your file could not be found';
              return;
         end if;
         status := g_status_success;
         exception
              when others then
                   status := g_status_unknown_error;
                   error_msg := 'An unknown error occured.  Please file a ticket.';
    end;Regards,
    Vahid Pazirandeh

Maybe you are looking for

  • Why do I have to authorize just to play one song?

    All of a sudden I am being asked to authorize my iTunes and my husband's mail address appears in the top line. He has never used iTunes, and he has his own Mac. He use to have an Apple forum log in, but he never used it either, he makes me do all the

  • A critical program error occured when running a workbook

    Some end users get a critical program error occured when running a workbook when they want to make selections. In the trace they get the following message System.ArgumentException: Item has already been added.  Key in dictionary: "44ABATDK7TYM365CYLQ

  • Swipe no longer works in Firefox since upgrading to Lion.

    I can no longer use the swipe gesture to move between pages on Firefox since upgrading to Lion.  I have tried it on both the Magic trackpad and the magic mouse. Anyone else haviong this issue?

  • Black shadow in the macbook air screen

    I have a macbook air early 2015 model. I found that bottom part of the screen is darker than the rest of the screen. There is about 5mm thick dark patch along the bottom edge. It seems that the screen near the bottom edge  glows little less than the

  • Is it Possible to set Top and Bottom Margin for each section?

    I've been googling and haven't found an answer to this problem. I need to specify a different top and bottom margin for each section in my document. The "document margins" apply to the whole document, so I've set those to a low amount, and I can set