BEx Analyzer error

When trying to open the BEx analyzer, I get the following error: SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed.
I can access the Bex analyzer using the RRMX transaction.
Waiting for your answer
Thank you
Ramona Leabu

Hi,
your excel server connection is broken.Try to login once again with RRMX or else  from start menu.
Regards,
Nikitha

Similar Messages

  • BEx Analyzer Error "NO APPLICATION DATA FOUND".

    Hello Experts,
    I have a problem, when i am going to create a query in BEx analyzer.
    I got this Error "NO APPLICATION DATA FOUND".
    I already check that Particular InfoCube, The Cube is fine and also it contains Data.
    But the Problem begins Same.
    Thankyou,
    Kshitij Deshmukh

    Hello,
    I have solved this problem on my own.
    Solution: 1st check your target over query is excuting...there is data or no... in Tcode  "LISTCUBE".
    Then data is available... or not.
    If every thing is ok...then dorp the query....create anothor and checked by only 2 fields....if is working then ....comptele it.....if data is there then no problem....report should run...
    check ur data is ready for reproting.... i means reporting icon is available or not.????
    If the Problem begin Same "NO APPLICABLE DATA FOUND".
    Then the Problem in Loading.
    2. Click on cube choose manage tab...there will be reproting symbol....
    Need to check each steps if data is there or Report not running....
    Finally delete the request then again load the data..and icon should come automatically...
    3. There is R and below one excel sheet fighre...icon
    4. Go and make a Report in BEx Analayzer..
    Data will fetching Automatically....
    Thank you
    Regards
    Kshitij Deshmukh

  • BEx Analyzer error in loading DLL

    Hello I have problem with BEx Analyzer. Each time I try to open it, there is an error message: 
    Microsoft Visual Basic
    Error in loading DLL .
    Last weak it was working! Do I need instal latest patch or what happend?
    Thanks for reply.
    Edited by: Marcel Horkovy on Mar 29, 2008 4:17 PM

    Problem solved. I instaled MS Visio (MS Office) but last weak I uninstaled it. BEx Analyzer wasn´t working. So I tried to instal MS Visio again. And here we are. BEx Analyzer is working. I uninstaled Visio again and BEx Analyzer is still working.
    Edited by: Marcel Horkovy on Mar 29, 2008 5:38 PM

  • 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

  • Bex Analyzer error -2147417848

    Hi ,
    I am getting following error 
    Run-time error '-2147417848 (80010108)':
    Automation error
    The object invoked has disconnected from its clients..
    Value help window crashes with error -2147417848 (80010108) .
    This happens, when selecting a value by moving to the right handside of value help selection window in Query Designer or Analyzer.
    Sometimes, this is followed by an runtime error '440'.
    When I serached the forum I found that i need to look Note 1039191 - "Value help window crashes with run-time error -2147417848.
    Please tell me how do I look at the oss note.
    Thanks.

    Run-time error '-2147417848 (80010108)':
    Automation error
    The object invoked has disconnected form it's clients.
    Once you are working with SAP BW BEx tool and accessing different version of SAP BW you might encounter an error in BEx Query Designer says:
    > u201C"Run-time error '-2147417848 (800010108)': Automation error The object invoked has disconnected from its clients".u201D
    BEx Query Designer crashes afterwards.
    Solution is to replace the RFC library librfc32.dll stored in your \WINDOWS\system32 on the client PC with a proper version depends on you SAP GUI version:
    620: Version >= 6206.6.1938.4727 (620x.x.x.4727).
    640: Version >= 6400.3.79.4740 (640x.x.x.4740).
    710: check the newest patch of SAP GUI on SAP FTP server.
    Thanks,
    Arun Bala G

  • BEx Analyzer error -2147417848 (80010108)

    Good morning,
    We are upgrading our GUI from 6.40 to 7.10, and with that, Analyzer 3.5 is reinstalled.  When we try to open Query designer 3.5 or Analyzer 3.5, we get Run-time error -2147417848 (80010108), method logon of object _CSAPLogonConnection failed.  We are unable to go any further.  And advise would be greatly appreciated.

    Hi Hari,
    Thks for the answer, that resolved the issue.
    I just have a question, Im in the process to test Office 2010 and when I try to run BEx, Excel raise the following error.
    *"Excel was able to open the file by repairing or removing the unreadable content."*
    *"This workbook has lost its VBA project, ActiveX controls and any other programmability-related features."*
    Do you know if we will be able to run BEx in office 2010? Does anyone knows if microsoft is taking care about make their office versions compatible with SAP?

  • Bex Analyzer error in Excel 2007

    Hi all,
    i am in excel 2007 and when i open a query in analyzer then i got a ciritical pop up,,sayin program needs to be terminated. do anyone have any solution?

    Hi,
    you can ask your Basis and Network Person to install these patches on your system. SAP patches can be downloaded from service market place / solman (these days). And rest will be available on Internet. You can also visit service.sap.com for more details (you need logon id for this).
    1. goto service.sap.com/bi
    2. expand "Product Information SAP NetWeaver 7.0 - BI"
    3. expand "BI Business Explorer"
    4. click on "MS Operating System & MS Office Compatibilities with BEx"
    there you'll find details about MS Operating System & MS Office Compatibilities with BEx.
    Hope this helps.
    Edited by: Ashish Tewari on Jun 10, 2008 3:12 PM

  • BEX Analyzer: Error when clicking in a filter hierarchy

    Hello,
    I am using the SAP BI7 version and I have a problem in the BEX anayzer. When I click in the filter zone and when I choose a filter caracteristic that contains a hierarchy I have the following error message and i am killed:
    <b>Class RSBOLAP 000:Error in the SAPMSSY1 method: uncaught exception
    Class BRAIN 299 System error int the CL_RSR_NET_RSMD_VHS_SVC program and form GET_HIER_NODE_READER:01.</b>
    Do you have ever had a same error? what can be solution?
    Thanks for your help!
    Regards,
    Julien

    Hellow Julien
    yes, i also encountered the same problem. But that is all the formula varialbles.
    For that some configuration has to be done by the BASIS people.
    Our basis peoples are working onthat.
    Award points, if this helps you.
    Regards
    Saravanan.ar

  • BEx Analyzer Error while generate pdf sap

    In BI 7.0 NW2004s I am getting an error while I am tyring to print and it convert PDF file... Report opend in Excel fine, very strange becuase some time it open in PDF and mostally time not...
    Is anyone please tell me where may found out ADS Adboe Documents Services software, and where may I installed in BI server... ?
    Thanks in Advanced
    Angeline Purnama

    Hi,
    I think you have BI system on which the usage type portal is also installed. Just go through the note 944221.
    Make sure you assign the default printer in SU01 for the users. Some times this works, it generally takes the default printer options from the SU01 settings for printing.
    No need to deploy the BI_BASES and other component, if you have installed usage type portal and BI-java then this components
    will be deployed by default. I think your systems has this things. Because in your above post you are saying you are running as webpage.
    Regards,
    Vamshi.

  • RFC_ERROR_MESSAGE error when i am opening BEx analyzer

    Hi GURUs,
    I am getting the following error when i am opening Query designer/Web application server/Query reporter in BEx Analyzer
    Error Group
    RFC_ERROR_COMMUNICATION
    Message
    CMALLC : rc=20 > Connect from SAP gateway to RFC server failed
    Connect_PM  GWHOST=122.169.253.181, GWSERV=sapgw30, SYSNR=30
    LOCATION    SAP-Gateway on host mgpl0003 / sapgw30
    ERROR       partner
                'ABTS-AP-Static-181.253.169.122.airtelbroadband.in:sapgw30'
                not reached
    TIME        Wed Sep 28 19:37:03 2011
    RELEASE     701
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2835
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       1006
    If anybody knows answer for this one please try to help me

    Hi Ramana,
    I think there is an issue with version of the BEx analyzer.If it is a new one then check any patches for that.Check like this and post this will work.
    Regards,
    Madhu.

  • Remote -Bex analyzer not working

    Hello experts,
    I am getting Bex analyzer error while running Query from Remote.
    RFC_ERROR_COMMUNICATION.In the detail screen, the system displays message "Partner not reached"
    Thanks for your help

    Hello
    Here is some analysis,let me know if you face any problems.
    Issue statement <b>ping</b> <IP address> (In this example:192.168.4.2)
    <b>Result</b> - No reply: Boot SAP Gateway host required.
    <b>Solution</b> - Ceck whether the TCP/IP port 33xx is open (where xx corresponds to the system number) and start the SAP gateway.
    The TCP/IP port is also partially defined in the services file as an sapgw<SID> or sapgwxx entry (where xx corresponds to the system number). The services file is in the Windows directory or in WinNT/System32/drivers/etc.
    Hope it Helps
    Chetan
    @CP..

  • 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.

  • A critical error has occurred in BEX Analyzer

    We have recently upgraged the SAP GUI to 710 Patch 12
    Excel 2003 on Excel 2007
    BW is on SAP_BW at 700with Patch2-bi710sp08_800-10004472
    When I am trying to execute a query through BEx Analyzer and i am getting the error:u201DSystem Exception thrown while marshaling RFCTYPE_CHAR to .NET typeu201C, error occured while communicating with the BI server. As a result, the system has been disconnected from the BI Server.I was able to execute the same query through Query Designer and also see the output. Output had around 2000 pages.
    Edited by: sunil sharma on Sep 30, 2009 2:46 PM

    Hi,
    Can you re try with MS office /SAP GUI (with Full options) reinstallation.
    Thanks,
    Prashant

  • Error when executing a report in Bex analyzer"

    Hi  all  ,
    when I am executing a report in Bex analyzer and selecting a hierrachy and execute the report it is giving an error " in Program CL_RSR_RRKO_HIERARCHY and Form SEL_TO_SELDR_EQSID.Any reason for this.
    thanks
    Rao

    Hi,
    go to RSSM and give your infoprovider name and check the authrization objects which are present in the infoprovider ...it will have option ticked.
    Basically authorizations are based on company code or sales org.
    give that authorization object in the first option in RSSM and check on which infoobject it is based.
    Also you can give your user id in one of the option in this transaction RSSM and then you can check for that authorization object do you have any values present for the included infoobjects or not.
    You will not have those values entry here in the authorization object for those selections which you are giving during the report run.
    Just change the vales here and give the desired value for which you are running the report.
    Save it.
    Hope it helps
    Thanks
    Message was edited by:
            Ajeet

  • Error in Bex Analyzer including the filter button command in Callback macro

    Hello,
    I have the following problem with the function filter button in the Bex Analyzer included in the callback macro:
    Because of using 2 hierarchies in the filter the setting drill down to level 2 in the query gives no right output in the Bex Analyzer. The drill down level 2 is not shown. SAP recommends the include of a filter button to solve this problem. With a filter button in the sheet the problem was solved.
    But after including the filter button command in the callback macro I get an error in MS Excel.
    The callback macro starts, the filter was set by the user and the data was refreshed. Because of the refreshing of the filter the callback function the callback function starts several times. After setting the filter the first time, the following macro avoids the several starting of the set filter function:
    Sub CallBack(ParamArray varname())
    On Error GoTo err_handler
       Dim lRange As Range
       Set lRange = varname(1)
    'Filter entfernend/delete filter
    Dim ZeichenFilter As Long
    ZeichenFilter = Len(Sheet4.Cells(41, 3).Value)
    Dim Filter1 As String, Filter2 As String
    Filter1 = Left(Sheet4.Cells(28, 3), ZeichenFilter)
    Filter2 = Left(Sheet4.Cells(41, 3).Value, ZeichenFilter)
    If Filter1 <> Filter2 And Filter2 <> "" Then
        onAction = True
        onAction = False
    End If
    'Filter setzen mit einmaligem durchlaufen/set filter and run one time
    If onAction = False Then
        onAction = True
        Call Sheet4.BUTTON_55_Click
        onAction = False
    End If
    exit_handler:
        Exit Sub
    err_handler:
        MsgBox Err.Description, vbOKOnly, "Error in " & " setMusterSub"
        Resume exit_handler
    End Sub
    After the filter was set the callback macro starts the second time. Then the Bex Analyzer erros with the sandglass. The working on VBA is possible, but not the working with Bex Analyer . Values in Excel weren’t shown.
    How can I avoid this error?

    Once I am adding VAR_VALUE_1 to the static parameters, the system generates two messages error:
    Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    System error in program SAPLRRS2 and form GET_SID-1
    Best Regards,
    Hanit

Maybe you are looking for

  • DB Calendar jobs created wrong SAPXPG_DBDEST RFC connection

    Hi All, I have just migrated our Development system from a disributed Windows System to Linux. We have ECC6, running on 2 Linux servers one is the CI and the other the DB host. I have installed a stand alone gateway on the DB host, but when I try to

  • Error: This entry already exists in the Financial Report Table OFRT..

    Hi , The above error appears only when we try to create any kind of templates in the database. Last time this error appeared when trying to create Profit and Loss Statement using Financial Report Templates. As a result i had to use copy express to co

  • How to use jsp in weblogic 5.1

    Hi all, We have PeopleSoft application running on Weblogic 5.1 SP12. How do we use JSP files in this weblogic version ? We are trying to use a custom jsp file. Quick help is much appreciated.. Thanks Maddy

  • Corrupted Adobe PDFL9.9 MUI DMG

    Just finished took a trial download Adobe Creative Suite CS5 (Design Premium) and now cant get passed error 6 (PS,BR,MP) Succeed but (AI,ID,FL) doesnt get install. I track down the problems and it seems that from the logs it tell me that installer ca

  • Apple Care plan for used Macbooks

    Hi, Some when in the Summer I'm considering purchasing a used Macbook preferably a mid 2012 model or even a 2013 model. BUT from what i have been told is you cannot purchase an apple care plan unless the Macbook is still under the manerfacuters warra