Suppressing BEx Analyzer messages

Dear all,
I would like to suppress SAP BEx Analyzer messages (In BW 3.5). I know that the in the BEx you can use the setting suppress warnings, but is the also a way to control this from the back-end?
Be aware the messages are Analyzer messages not query messages. So RSRT setting won't help.
I've looked at the blog How To Suppress Messages Generated by BW Queries from Marc Bernardbut this is not the solution
Suggestions are welcome.
many thanks
Rob

Hi there,
No they don't.
Maybe we're not talking about the same how to. Here it is:
[http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414700)ID1791455950DB00849752428597445659End?blog=/pub/wlg/11067]
In this how to, you're supressing in the back-end a particular message that is not in the RSRT for all the users or all the options when this message appears.
Diogo.

Similar Messages

  • Where do I suppress Bex Query Message

    Experts -
    My users are getting an error message on their Bex Query "Characteristic xxxxx was changed in InfoCube xxxxx. Adjust the query".
    I searched SDN and I found out that if you go to TCODE RSRT and then TCODE SUPPR_ALL, you can then suppress the message globally.  Well, this above message is not found anywhere in TCODE SUPPR_ALL.  
    I then found out that if you go to TCODE SE91, you can find your message there. I did...its Message #651.  But, how do suppress this message from ever showing up on the users BEX Query?
    Thanks!!

    Suresh -
    "Go to RSRT -- give the query name click on the messages tab and try to supress there."
    Result:  I did this too and I dont see message #651 for my specific query
    "In Bex tool bar click the last but one icon.There you can suppress warnings from the server"
    Result:  what Bex tool bar?  I am using the portal to display this report.

  • Error In WorkBook Bex Analyzer : Messages available

    Hello Experts,
    When i open a Workbook, I have this message in the status bar:
    "Messages available; double-click to display them"
    When I double click, I have a pop-up window with warning "there is a condition.., results row supress..."
    Our client don't want to see the message ""Messages available; double-click to display them", When he opens his workbook.
    How can we do this, Please?
    I found this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/89/127f4a697c49a7896f18a45dd30e8b/content.htm
    But it doesen't work!
    Many thanks.
    Best regards,
    Amine

    Hi Amine,
    Option 1)
    Try this - there is an option called "Show messages for problem analysis" in the behavior tab of global settings. try to uncheck that if it is checked.
    or
    Option 2)
    Try Note 1009903 - Suppressing messages for all queries
    or
    Option 3)
    Use tcode RSRT and type in the tcode "SUPPR_ALL" and check all the suppress messages.
    Hopefully you will succeed.
    Regards
    Sunny

  • Bex analyzer error message

    Dear gurus,
    I have created a user exit variable, and created on customer exit EXIT_SAPLRRS0_001 what i need.
    My problem is that when a value is not found, on the exit i send a message to screen:
    MESSAGE ID 'ZMIICF' TYPE 'E' NUMBER '023' with sy-uname RAISING dummy_exception.
    If i test query on transaction rsrt, the message is sent to screen, but when i try to do it on bex analyzer message is not sent.
    Could someone help me on this?
    Thanks in advance,
    Vitor Ramalho

    Frank,
    Here goes the code.
      WHEN 'Z_TIPO_MOEDA'.
    Adicionado a 27.08.2009 por VCAVACO
    Validação do Tipo de Moeda de acordo com Centros de Custo
        CLEAR: range, range_n, ind, ind_n, n_preench, preench, sucesso.
        IF i_step = 2.
    Seleccionar o campo pretendido
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'Z_REST2_CC'.
            IF loc_var_range-opt EQ 'BT'.
         Quando é um range de valores o só entra no loop 1 vez
              SELECT  * FROM zgtap_og_cc_mt INTO TABLE lt_zgtap_og_cc_mt_aux
                 WHERE ( ( centro_de  >= loc_var_range-low AND centro_de  <= loc_var_range-high )
                    OR   ( centro_ate >= loc_var_range-low AND centro_ate <= loc_var_range-high )
                    OR   ( centro_de  <= loc_var_range-low AND centro_ate >= loc_var_range-high ) ) .
              IF sy-subrc EQ 0.
                LOOP AT lt_zgtap_og_cc_mt_aux.
                  MOVE lt_zgtap_og_cc_mt_aux TO lt_zgtap_og_cc_mt.
                  APPEND lt_zgtap_og_cc_mt.
                ENDLOOP.
               Se é encontrado algum registo na tabela que contenha algum dos centros do range,
               guarda os extremos do range e marca com sucesso a consulta
                lt_range-centro_de  = loc_var_range-low.
                lt_range-centro_ate = loc_var_range-high.
                APPEND lt_range.
                range = 'X'.
              ELSE.
               Caso não encontre nenhum registo, preenche o campo range_n que dita o não sucesso da consulta
                range_n = 'X'.
              ENDIF.
            ELSEIF loc_var_range-opt EQ 'EQ'.
         Quando são valores individuais faz o select para cada registo, ou seja,
         percorre o loop várias vezes
              SELECT * FROM zgtap_og_cc_mt
                 INTO TABLE lt_zgtap_og_cc_mt
                      WHERE ( centro_de  <= loc_var_range-low
                        AND   centro_ate >= loc_var_range-low ).
              IF sy-subrc EQ 0.
               Marca como sucesso a consulta do registo
                ind = 'X'.
              ELSE.
               Marca como não sucesso a consulta do registo
                ind_n = 'X'.
              ENDIF.
            ELSEIF loc_var_range-opt EQ 'CP' AND loc_var_range-low = '*'.
              SELECT * FROM zgtap_og_cc_mt
               INTO TABLE lt_zgtap_og_cc_mt.
              IF sy-subrc = 0.
                n_preench = 'X'.
              ELSE.
                preench = 'X'.
              ENDIF.
            ENDIF.
          ENDLOOP.
         Quando nenhum dos centros estiver na tabela o tipo de moeda deve ser 20
          IF ( range_n EQ 'X' AND range = ' ' ) OR ( ind EQ ' ' AND ind_n EQ 'X' ) OR preench = 'X'.
            CLEAR l_s_range.
            l_s_range-low  = '20'.
            l_s_range-high = '20'.
            l_s_range-sign = 'I'.
            l_s_range-opt  = 'EQ'.
            APPEND l_s_range TO e_t_range.
         Quando todos os centros existirem na tabela o tipo de moeda deve ser 00
          ELSEIF ind EQ 'X' AND ind_n EQ ' '.
            CLEAR l_s_range.
            l_s_range-low  = '00'.
            l_s_range-high = '00'.
            l_s_range-sign = 'I'.
            l_s_range-opt  = 'EQ'.
            APPEND l_s_range TO e_t_range.
         Quando um dos centros existir na tabela, mas não forem todos, deve dar mensagem erro
          ELSEIF ( ind EQ 'X' AND ind_n EQ 'X') OR n_preench = 'X'
              OR ( range = 'X' AND range_n = 'X' ).
           MESSAGE ID 'ZMIICF' TYPE 'E' NUMBER 023 INTO l_dummy.
           g_message->add_msg( ).
           MESSAGE i023(zmiicf).
            MESSAGE ID 'ZMIICF' TYPE 'E' NUMBER '023' WITH sy-uname RAISING dummy_exception.
          ELSEIF range = 'X' AND range_n = ' '.
          Quando um dos centros do range existir na tabela, deve verificar se todos os centros do range
          são contemplados na tabela
            LOOP AT lt_range.
              LOOP AT lt_zgtap_og_cc_mt WHERE centro_de  <= lt_range-centro_de
                                          AND centro_ate >= lt_range-centro_ate.
              ENDLOOP.
              IF sy-subrc NE 0.
         Quando um dos centros existir na tabela, mas não forem todos, deve dar mensagem erro
                MESSAGE ID 'ZMIICF' TYPE 'E' NUMBER '023' WITH sy-uname RAISING dummy_exception.
               MESSAGE i023(zmiicf).
              ELSE.
                sucesso = 'X'.
              ENDIF.
            ENDLOOP.
            IF sucesso = 'X'.
         Quando todos os centros existirem na tabela o tipo de moeda deve ser 00
              CLEAR l_s_range.
              l_s_range-low  = '00'.
              l_s_range-high = '00'.
              l_s_range-sign = 'I'.
              l_s_range-opt  = 'EQ'.
              APPEND l_s_range TO e_t_range.
            ENDIF.
         ENDIF.
          ENDIF.
        ENDIF.
    Many thanks,
    Vitor Ramalho

  • Error Message while opening workbook or Query in BEx Analyzer

    Hi all,
    Whenever I try to open any workbook or query using Bex Analyzer I get an error message saying "Serious error occured while reading history folder" Message class RSOBJS, number 170. But this doesnt stop me from opening the workbook or the query.
    Kindly help me to suppress or eliminate this message. I am not able to find this message in the list of messages available in RSRT either.
    Thanks and Regards
    Mui Kanva

    Hi Mui Kanva,
    Does your problem occur in a copied system?
    I have same problem in our Quality-BW (copied from productive system). WE are in our QBW not able to activate personalization correct and get the same error messages. I suggest the reason in the fact, that the source-system Myself (QBW) does not work correct. This reason causes that export data sources could not be activated via RFC-Connection.
    Please check to activate your source system?
    We accept the error messages in our QBW and did not activate the RFC connection.
    Regards
    Andreas

  • Error message during BEx analyzer execute

    Using BEx analyzer, system show error message like below:
    Variable 0P_FVAEX could not be replaced;
    Program error in class SAPMSSY1 mehtod: UNCAUGHT_EXCEPTION
    System error in program CL_RSR_REQUEST and form TEXT_ELEMENTS_GET:VARIABLES_SUBMIT(see long text)
    Who can solve this problem? Thanks!
    Message was edited by:
            Almini Sanbra

    Dear sanbra,
    We have faced the same error and its resolved after applying the
    Following:
    I have applied the following Note
    1079186 Error when you filter by characteristic values
    Please also apply the following patches to your system:
    Support packages and patches ->SAP netweaver->SAP Netweaver->
    SAP Net weaver 2004s->Entry by component->BI java
    Update with the latest patches
    1)BIBASES12P_4-10003477.SCA Patch for for BI BASE SERVICES 7.00  SP12  4
    2)BIWEBAPP12P_4-10003476.SCA Patch for BI WEB APPLICATIONS 7.00 SP12  4
    3)BIIBC12_0-10003495.SCA SP for BI INFORM. BROADCASTING 7.00  0
    Regards,
    Suman Raju.
    ***********IF useful some points please***********

  • Wrong message while running report in bex analyzer

    Hi Experts,
    I have created an authorization object based on compnay code. I use the option RSECADMIN => Analysis => Execute As, to test this authorization object. When I give incorrect company code value, it displays correct message that is 'No authorization'.
    But when I test in bex analyzer for same report, with same incorrect company code value instead of showing 'No authorization' message, it shows 'No applicable data found' message. Is there anything wrong here?
    How can I show the correct authorization message 'No authorization' in bex analyzer, when incorrect company code is supplied?
    Thanks,
    Purvang

    Hi Pratap,
    thanks for reply.
    I also thought that way initially but then was skeptical of different message received while testing in RSECADMIN. If SAP is going to show 'No applicable data found' message then how will a user have any idea that actually he is not authorized for the supplied value of company code.
    does anyone know if this is bug or is there any workaround to show right message i.e. no authorization.
    Thanks,
    Purvang
    Edited by: Purvang on Oct 19, 2011 3:18 AM

  • Messages in Bex Analyzer

    Hi
    Unlike the WAD solution for BI-IP, the BEX Analyzer front-end does not give proper messages. We inserted the message item but the End user does not get error messages even the planning is locked or the infoprovider is not active.
    Does some of you experienced the same issue ?
    Regards,
    Thomas

    Hi Armelle,
    I'm assuming you are referring to 'System Messages' webitem in WAD. This webitem is typically used to display system messages, information, warnings & errors that occur at runtime. So you would not be able to specify an Information message at design time.
    Activate Input help by making it 'ready for input' in BEx Query Designer, in WAD you would need to check 'Display Variable' setting to enable the variable screen for input. Not sure if this was what you meant
    --Priya

  • Message when opening BEx Analyzer after an upgrade to 3.5

    When I open BEx Analyzer after an upgrade to 3.5, I get a message:
    Internal Error when generating the history.  Use a different view
    Is this because it is the first time I am logging onto BEx after the upgrade or is this an issue? Thanks

    Niten,
    As A.H.P suggested what version of BW did you upgrade from ? and what version of SAPGUI are you using - try and reinstall SAPGUI or install SAPGUI6.40 final.
    Also please give your front end support pack levels. This could also be due to a front end SP issue.
    Some other things that could help would be :
    Were there any problems / issues when upgrading ?
    Arun
    !!!!  Oops looks like I posted at the same time as you!!!!
    Message was edited by: Arun Varadarajan

  • Working in BEx Analyzer but giving error dump in Web Analyzer

    Hello Experts,
    I have a BEx Query, that has couple of customer exits for initial filter selection, and some base KFs and conditions as part of definition. When I run this query in RSRT or in Bex it was running fine, and results showing up in 3 to 5 seconds hardly 10 seconds.
    but the same query throwing error in Portal / Web Analyzer.
    error contains;
    Error Summary : error processing the current request
    root cause: The initial exception that caused the request to fail was:
    java.lang.UnsupportedOperationException
    Messages: warning there is a condition on Plant and Material to suppress results.
    contest: under this heading many line of HTML code
    when I debug the query in RSRT, I found any issue, all the exits, and the query is quite OK.
    does anyone has any idea, whats going wrong?
    we cannot suspect the portal / Java patches or anything, Because we have other queries running good.
    could someone give me some idea..how to go through this portal/web related errors.?
    Appreciate your time and help

    Thanks for your help.
    This issue was caused by "Bad programming in Customer Exit". Exit is trying to give too many Single values as selection to certain batch characteristics plus some are redundant. So code logic modified to fetch distinct values hence problem solved.
    it worked in BEx analyzer but not in Web is just because of its limitations. As I said there is no syntax errors in the exit rather bad logic.
    Thanks Again

  • Error when starting Bex analyzer

    Hi All!
    We have a world wide BW-SEM application. In one country they get the following error message when starting Bex analyzer:
    <install error> Missing ActiveX component: Business Explorer Global Services
    Does anyone have a hint on what to do?
    Thanks for your help!
    Best Regards
    Pontus

    hi
    try to check with SAPBEXC.xla
    and take a look oss note 585643
    may need to manual register .dll with regsvr32
    Do an Installation check of the BEx Analyzer as follows:
    In the bex analyzer menu, Business explorer -> Installation Check -> Once the excel sheet opens, press the start button to start the check. Check the entries in red to see any missing/old ocx, dlls.

  • BEx Analyzer not working in SAP GUI 7.10

    Dear All,
    BEx Analyzer 7.0 is not working on SAP GUI 7.10. Following are the details:
    OS: Windows XP SP2
    Installed the following softwares (in the sequential order):
    1. Microsoft .Net Framework 2.0 SP1
    2. MS Office 2003 (without any service packs)
    3. SAP GUI 7.10 (used SAPAllSetup.exe) to install both BEx Analyzer 3.5 and BEx Analyzer 7.0 alongwith SAP GUI 7.10.
    While BEx Analyzer 3.5 runs fine, 7.0 does not.
    Upon running BEx Analyzer 7.0 from the Programs menu, I see a toolbar on the left hand side on MS Excel in German. Whenever I click on any button, they do not respond.
    When I tried to install update for Office 2003 (KB907417), I received the message stating the patch has already been applied.
    I also applied SAP GUI 7.10 Patch Level 8, but still the problem remains the same.
    Running Tcode RRMX from the SAP GUI opens MS Excel with both the toolbars of 3.5 (on top) and 7.0 (on left). As before, 3.5 works fine, while 7.0 does not.
    Do I need to install Office SP2 or SP3, as well? Or something else? Any solutions?
    Thanks and Regards,
    Sachin.

    Hi All,
    This problem is due to .NET 2.0 assembly(nothing but .dll's),
    Step1 : Check if you can see this C:\WINNT\assembly\GAC exists
    If it does and still getting the error, then follow these steps,
    1) Uninstall office03
    2) Uninstall GUI
    3) Uninstall .Net 2.0
    4) Reboot
    5) Install .dll(WindowsXP-KB935448-x86-dll.exe) fix(this is due to .net1.1 and 2.0 coexistence)----- only if u get a critical message at startup.
    5a) Reboot
    5b) Install .net1.1
    5c) Reboot
    5d) Install .net2.0
    5e) Reboot
    6) Install office 03
    6a) Reboot
    7) Install .PIA's (O2003PIA.MSI)
    7a) Reboot
    8) Install setupall.exe for GUI
    9) Install KB907---- (office2003-KB907417-FullFile-ENU.exe)
    10) Reboot
    Let me know if you encounter any problems.
    OR....
    Update the Latest Patchs of GUI & Bex.
    BI710SP03_300-10004472.EXE
    bi710sp04_400-10004472.exe
    gui710_6-10002995.exe
    Hope it helps you...
    @shaik

  • Cannot open query in Excel (BEX analyzer)

    Hello Experts,
    Issue: Cannot open the BEX report in Excel but can open the same report on IE.
    1) I am trying to open a BEX report "ReportA" in Excel (BeX Analyzer).
    2) As soon as the report opens it shows me a message "Do you want to open the 3.X workbook for upgrade"
    3) I click on "OK"
    4) then i get a message window listing a lot of warnings liike " Access to project denied"  "creation of items failed"
    5) i click on "OK"
    6) Now, variable entry screen appears
    7) i enter values and click on "OK" the report does not show any data.
    Now, the same report "reportA" when i open it in Internet Explorer, it displays data. What can be reason for this problem in BEX analyzer ?
    Please comment.
    Regards,
    Suraj S Nair
    Edited by: Suraj S Nairon Dec 28, 2009 10:50 AM

    Hi Suraj,
    If you want to execue your query, you can use the bex analyzer.
    If you are opening the query from query designer 3.x query in 7.0 fronend, it will get upgraded and then cannot be reveted.
    In your case this automatic migration might be havng some issues, owing to complexities.
    Please recheck.
    -Vikram

  • No data in Portal Report but have data in Bex Analyzer

    Hi experts,
    I have problem regarding portal reports. When you view the report using the bex analyzer, there is data. But when you view the report in the portal from iview, there is no data.
    Please help experts.
    Thanks

    Hi Emmanuel (that's weird, I am an Emmanuel too! and we both have Filo origins),
    There can be heaps of reasons for this.
    1) Please try to run the query in transaction RSRT by entering the query name and clicking "Java Web". See if that gives you results. If that gives your results, then the iView that was saved in the portal might need some reconfiguration. Check it out.
    2) Check the logic of your user exit variables. The sequence of the I_STEP calls is a bit different if you run a query in the Portal. For example, if you don't have a mandatory variable in your query, then the olap engine will call I_STEP=1 to 3 before it shows the variable screen. This behaviour is not documented in help.sap.com. However, it does work that way.
    3) Try to check the caching settings for your iView. It might be caching the result. You can change this in Content Administration in the portal.
    Try the above and see if it helps. Otherwise, post another message.
    Cheers.

  • The BEx Analyzer cannot generate VBA code due to the security settings

    Hello experts,
    when I try to open a query in BEx Analyser I get this error message for each Item of the Query:
    Diagnosis
    The BEx Analyzer cannot generate VBA code due to the security settings.
    System Response
    VBA code is not generated.
    Procedure
    Choose Tools -> Macro -> Security.
    On the Trusted Publishers tab page, select Trust access to Visual Basic project.
    Choose OK.
    Close the BEx Analyzer and continue working as before.
    Access to Visual Basic project is only needed when generating VBA code.
    This only takes place in design mode or when 3.x workbooks are upgraded.
    Of course I did exactly what was recommanded in the "procedure-section" of this error message. But BEx ist still not working!
    I use SAP NetWeaver 7.0 together with MS Excel 2007
    Thanks
    Axel

    Hello experts,
    I am an additional person interested in the way this issue was solved.
    I confirm that the issue is coming from the SP2 of Microsoft Office (I have another environnement without the SP2 and everything works well), and I am in a situation where I can't remove the update.
    Regards
    Guillaume P.
    EDIT :
    Solution found : I applied the bi710sp10p_1001-10004472.exe patch
    (downloaded via the download maanger : Support Packages and Patches - Entry by Application Group" SAP Frontend Components" BI ADDON FOR SAP GUI" BI 7.0 ADDON FOR SAP GUI 7.10)
    Edited by: GUILLAUME PETIAUX on Apr 13, 2010 10:29 AM

Maybe you are looking for