Opening query in BEx field symbol issue

Hi,
I'm facing a problem in opening BEx Analyzer 7.0.
After starting BEx and logging on to the system a "BI Server error"-popup appears mentioning that there is a problem in the communication with the BI-server and that therefore the connection to the BI-server has been broken. The detailed error is: "Field symbol has not yet been assigned".
When clicking OK and logging on for the second time there is no problem.
Does anyone know how I can solve this?
Thanks,
Michel Scheres

Hi,
Front end is not installed properly. You can contact basis team it will resolve.
Regards,
Ajay.

Similar Messages

  • Getting below error while opening query in bex  3.5x

    Dear Guru's
    I am getting below error while opening query in bex  3.5x
    The following object were not found when accesing the server .
    Press repair to correct the problem (included parts of query deleted) press cancel to undo the last action.
    Regards
    Karan

    Hi,
    1) When a query administrator with the sufficient authorization (sap_all or the * authorization for the field in the authorization object) is creating the query in query designer including the 'attributes' which are not visible with the 'normal' authorizations, the query will not list the columns in the output when it is executed by the normal user.
    2) so create an authorization object for each of these attributes with * (full authorization)
    Regards,
    Marasa.

  • Unable to open Query in Bex Analyzer

    Hi All,
    I am unable to open query in BEx Analyzer though i am able to open it in RSRT.It gives me no error,as soon as i open query it shows processing then nothing happens.No selection screen nothing,no error also.
    Any pop up something like that  which is blocking the execution of Query??And its in production system,so its pretty urgent.

    Hi,
    RSRT works while Analyzer doesn't. I would check it from the authorizations/roles point of view.
    Some time ago I saw similiar error - due to lack of some rights the user was unable to run a query.
    After I looked into the data provider definition I saw nothing there. My (admin) rights were good enough to run the query and see the data.
    The user had no rights to read some infoprovider data. After granting the rights he could run the query.
    Regards. Leszek

  • Cannot open Query through BEX

    Hi all,
    I am on BW 3.5.
    I have a wierd problem when I try to open a query through BEx;
    as the variable entry screen comes up after I have selected a query, I can see the last opened workbook behind it.
    Then after I continue with the query putting in whatever options, the workbook opens.
    If I refresh, it tries to refresh the workbook, and there is no sign of the query.
    If I log on using a collegues user, BEx works as normal so, it must be down to the user settings or authorisations!!!
    Has anyone experienced this before.
    Thanks,
    Shane.

    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

  • Field symbols issue

    Hi,
    I am new to using field-symbols and having this peculiar problem:
    In a program, I am dynamically defining a table where employee subgroups will be columns.
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = IT_FIELDCAT
        IMPORTING
          EP_TABLE        = NEW_TABLE.
    * Create a new Line with the same structure of the table.
      ASSIGN NEW_TABLE->* TO <L_TABLE>.
      CREATE DATA NEW_LINE LIKE LINE OF <L_TABLE>.
      ASSIGN NEW_LINE->* TO <L_LINE>.
    Next, I intend to summarise this data according to company code, so I defined two other field symbols of type ANY TABLE :
      field-symbols: <BUKRS_TAB1> type any table.
      field-symbols: <BUKRS_TAB2> type any table.
      ASSIGN NEW_TABLE->* TO <BUKRS_TAB1>.
      ASSIGN NEW_TABLE->* TO <BUKRS_TAB2>.
    However, before I execute COLLECT, I found that these two <BUKRS_TAB1> & <BUKRS_TAB2> already contain the same data as ITAB_FINAL.
    Also, attempting to clear any of these field symbols results in CLEAR-ing of other field-symbols too.
    Any suggestions for me?

    Its OK, I used different NEW_TABLE for each field symbol and it is working fine.

  • Field symbol issue in upgrade version

    hi
    the system was upgrade from bi 3.1 to 7.0 version.the below code is working fine in 3.1.but the same code goes to dump in ECC Version.
    field-symbols: <l_sx_rrc0_rto> type rrc1_sx_rto.
      data: name(30)        value '(SAPLRRC0)G_SX_CUR_RTO',
    l_r_request     type ref to  cl_rsr_request,
    assign (name) to <l_sx_rrc0_rto>.
    ->  l_r_request =
      cl_rsr_request=>get_request_by_handle( <l_sx_rrc0_rto>-handle ).
    -->going dump there.
    Kiran
    Edited by: kiran jagana on Dec 9, 2011 5:33 PM

    field-symbols: <l_sx_rrc0_rto> type rrc1_sx_rto.
    data: name(30) value '(SAPLRRC0)G_SX_CUR_RTO',
    l_r_request type ref to cl_rsr_request,
    assign (name) to <l_sx_rrc0_rto>.
    ->  l_r_request =
    cl_rsr_request=>get_request_by_handle( <l_sx_rrc0_rto>-handle )."dump going here
    TYPE-POOL rrc1 .
    TYPE-POOLS: rro01, rro04, rrx1, rrs0.
    report as runtime object (RTO)                                       *
    TYPES: BEGIN OF rrc1_sx_instances,
                instance_id    TYPE rrx1_handle,
                report         TYPE rro01_sx_report,
                khandle        TYPE rrx1_handle,
                Area           type rrarea,          "E.M.
                Delta_buffer   Type Rrsi_TS_sid,     "E.M.
                texte          TYPE rro01_th_texte,
           END OF rrc1_sx_instances,
           rrc1_tx_instances TYPE rrc1_sx_instances OCCURS 0.
    TYPES: BEGIN OF rrc1_sx_rto,
                 handle       TYPE rsr_handle,
                 area         Type rrarea,            "E.M
                 repkey       LIKE rszcompkey,
                 rkb1d        TYPE rsr_s_rkb1d,
                 seldr_V      TYPE Rsdd_tsx_SELDR,
                 cur_inst     TYPE rrc1_sx_instances,
                 instances    TYPE rrc1_tx_instances,
                 modified     TYPE rs_bool,
                 r_format     TYPE REF TO cl_rsr_format,
            END OF rrc1_sx_rto,
            rrc1_tx_rto TYPE rrc1_sx_rto OCCURS 0.
    <l_sx_rrc0_rto>-handle  does not have any value.so it is going to dump.its upgrade error.same code works in 4.6c ,but not in ECC.in 4.6c <l_sx_rrc0_rto>-handle  has value '0001'.
    do the needful

  • Field Symbol Issue

    Hello Experts,
    I'm very new to field-symbols and having challenge when using them. Basically I'm only trying to use specific column value from one type of field symbol to another but keep having short dump. I tried to re-wirte my code using work area and it works though.
    Can somebody have a look at my code and tell me what is causing the problem and how to resolve it.
    DATA:
         lit_variables    TYPE STANDARD TABLE OF zut_variables INITIAL SIZE 0,
    FIELD-SYMBOLS:
          <fs_variables>     type  zut_variables,
          <fs_rang_var>     type  zus_variables.
        loop at lit_variables ASSIGNING <fs_variables>.
            if <fs_variables> is assigned.
               <fs_range_var>-high   = <fs_variables>-high.
               <fs_range_var>-low    = <fs_variables>-low.
               <fs_range_var>-sign   = <fs_variables>-sign.
               <fs_range_var>-option = <fs_variables>-zoption.
            endif.
        endloop.
    Many thanks in advance.

    Hi,
    As you are using same structure for field symbols , no need of using field symbols.
    You can use work area.
    If you doesnt no the structure , you can assign field symbol.
    field-symbols <fs> type any.                            
    Regards,
    Ravi

  • Error  in opening  Query  in Bex Query Designer

    Hi all,
    I am getting an error while opening the InfoProvider for a new Query in the Bex Query Designer.
    program error in class SAPMSSY1 method : Uncaught_exception.
    ASystem error in program CL_RSR and form GET_COB_PRO-02
    In RSRT:
    00000003      I>> Row: 78 Inc: LRRMSU13 Prog: SAPLRRMS
    00000003      ASystem error in program CL_RSR and form GET_COB_PRO-02- (see long text).
    With Regards

    Hi Raju,
    Check for the authorization
    Auth object : S_RS_ICUBE , S_RS_MPRO,S_RS_ISET
    Infocube subobject -> aggregate ,data ,definition.
    Auth object S_RS_COMP
    Activity                       01, 03, 16, 22  
    And let us know ...
    Hope that helps.
    Regards
    Mr Kapadia

  • Error when opening query in BEx Analyzer BI7

    Hi all,
    I get the following error when I open a query in the Analyzer.
    <b>Unable to convert character set 4103 to character set 4103. possible.</b>
    Afterwards it closes the connection.
    Any help will be appreciated.
    Cheers,
    Meurant.

    Hi Meurant,
    Most likely it is a mismatch between your Client GUI and sever.eps
    The following steps helped in some cases.
    1) Uninstall the SAP GUI on your m/c.
    2) Upgrade all you operating system patches to the required level...If it's Windows XP.....just
         get the latest updates from Microsoft.
    3) Re-install  GUI for  7.0
    Good luck, BB

  • Have to log on to open Query in BEX Browser

    We upgraded to SAP GUI 710. We sign on to the BEX Browser and when we go to open any workbook, we have to sign on again. Has anyone encountered this or have a solution to this?
    Thanks,
    Russ

    We upgraded to SAP GUI 710. We sign on to the BEX Browser and when we go to open any workbook, we have to sign on again. Has anyone encountered this or have a solution to this?
    Thanks,
    Russ

  • Sql query w/search field, pagination issue

    I have a page with a query which uses a search field. I am able to scroll through to different pages of the results.
    How can I always make certain that the results returned start on pagination = 1. For example:
    I leave P10_SEARCH_FIELD = null and scroll to page 2 (item 11-20). I then do a search for 'VAN'. The results return, however rather than page 1 appearing, page 2 appears. Is there a way to reset pagination so that it will always show the first item?
    thanks

    never mind. in the branch I checked the reset pagination for this page and that did the trick.

  • Field symbols and field groups

    Hi friends plz send me the answer for this query:
    What are field symbols and field groups.? what is the"component idx of structure" clause with field groups?

    Hi,
    A field group combines several existing fields together under one name
    like
    FIELD-GROUPS: fg.
    then you can use one insert statement to insert values in fields of field-group.
    INSERT f1 f2 ... INTO fg.
    Field symbols
    If u have experience with 'C', then understand this to be similar to a pointer.
    It is used to reference another variable dynamically. So this field symbol will simply point to some other variable. and this pointer can be changed at runtime.
    FIELD-SYMBOLS <FS>.
    DATA FIELD VALUE 'X'.
    ASSIGN FIELD TO <FS>.
    WRITE <FS>.
    Field symbols: are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program.
    Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs.
    Field Groups:
    A field group is a user-defined grouping of characteristics and basic key figures from the EC-EIS or EC-BP field catalog.
    Use
    The field catalog contains the fields that are used in the aspects. As the number of fields grows, the field catalog becomes very large and unclear. To simplify maintenance of the aspects, you can group fields in a field group. You can group the fields as you wish, for example, by subject area or responsibility area. A field may be included in several field groups.
    When maintaining the data structure of an aspect, you can select the field group that contains the relevant characteristics and basic key figures. This way you limit the number of fields offered.
    Field Groups / Extracts
    http://help.sap.com/saphelp_46c/helpdata/EN/9f/db9ede35c111d1829f0000e829fbfe/frameset.htm
    Field Symbols
    http://help.sap.com/saphelp_46c/helpdata/EN/fc/eb387a358411d1829f0000e829fbfe/frameset.htm
    Regards,
    Priyanka.

  • Error while trying to run Bex Query -------- Field symbol is not assigned.

    Hello Every body,
    I am facing the following error after giving some value in Selection screen and trying to run the Bex Query
    ERROR : Field symbol is not assigned.
    Thanks in advance,
    Praveen

    can u plz give details of variables, what it is build on and the value u r inputing,
    also is thr any dump.
    double click on the error message it shows u. it will give u the detailed error message. post that too

  • Problem in opening a query in BEX analyzer..

    i am using front end sap gui 7.20 with patch 9..
    my issue is that when i tried to open a query in bex analayzer. i get following error stating that
    you donot have suffiecent authorizations for the infoprovider XXXXXX
    function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    and i tried to open a query from bex query designer ..i am not able execute it
    and i get strange error while executing tcode rrmx..the status error states that microsoft excel is not installed, install microsoft excel viewer
    after installing microsoft excel viewer also..i get the same error...
    pls suggest asap guys

    Hi Satish,
    You can ask yur tech support team to install sap gui and in specify them to tick "SAP BW add ons".
    also Enable the macros for the analyser.
    Regards
    Rahul

  • Problem opening a query in BEx Analyzer 7.10

    Hello,
    we have problems with the BEx Analyzer, an empty screen is
    displayed when we open a query.
    I'm going to explain the steps:
    We open Analyzer, goto open query, logon into BW window appears and then, before the screen to select query from an Infoarea, roles, etc is load, the Analyzer seems to open the SAP Logon and an empty screen from R/3 appears.
    We can not close this R/3 empty window, only when we close the Analyzer this windows is closed.
    The problem happens with the SAP GUI 6.40, so we updated to
    SAP GUI 7.10, installed patches, addons and windows/ office
    patches but the problem persists.
    How can we solve this issue?
    Thanks in advanced.
    Best regards,

    Yes, I have done all the installations that the notes said and the pre-requisites:
    - Microsoft .NET Framework 1.1 + .NET Framework 1.1 SP1 + Hotfixes and windows update + Microsoft Visual J# .NET Framework 1.1.
    - Microsoft .NET Framework 2.0 + .NET Framework 2.0 SP1 + Hotfixes and windows update + Microsoft Visual J# .NET Framework 2.0.
    - Microsoft Officce 2003 patches (KB907417, KB945185) + Office 2003 SP3
    - bi710sp03_300 and bi710sp04_400
    - gui710_6-10002995.exe and kw710_1-10004321.exe
    But the problem persist.
    I have executed BI Frontend installation check tool (sapbexc710.xla) and seems everything is OK.
    Regards,

Maybe you are looking for