Problem editing columns, using local view in Bex Analyzer...

Hi,
After upgrade to BI 7.0, we are unable to amend/modify, using the local view of a query, the properties of the report columns...
Please provide pointers on resolution to this ...
Thanks,
SG.

Hi,
We already have the below patch as mentioned in the SAP Note:
""SAP BW 3.5 Frontend Patch 2 for SAP GUI 7.10" or higher."
Problem still persists.
Thanks,
Shantanu.

Similar Messages

  • Create local view with Bex Analyzer 7.0

    Hi,
    with the Bex Analyzer 3.5 it was possible to create and use a local views based on a query in a workbook.
    With this "workaround" it was possible to create just one Query for different views and charts.
    Is there something similar in BI 7.0???
    I know there is a query view, but this is not what i want.
    Thx a lot.
    Br
    Mike

    I think the reference is to the BEx 3.x Change Query button. You had the option in a refreshed query or Workbook to Change Query Local View or global view.
    With Change Query Local View it was easier for a user with no global change authorizations to drag and drop, rearrange and change properties of their query results as needed. Then they could save locally as a workbook and each time they open it the personalized version can be refeshed as such, all without having to change original query.
    How do users do that in 7.0?

  • ABAP - Editable report using Excel view

    hi friends
    In my report i am using REUSE_ALV_GRID_DISPLAY
    Function module to display the data in alv format. I am using the view in
    Excel format.
    My requirement is,
    If i change the data in the
    excel sheet that should reflect in the internal table.
    I am able to do changes, but the data is not getting change in the internal
    table.
    The purpose of this is, the output of this report will be the
    input of another program after changing the output in excel(only, bcoz in
    excel they will change using some formulas).
    Note:
    I am
    getting the changes to internal table if i use grid display not in excel
    format.
    Can anyone suggest me how to solve this problem?

    Hi u can esily do this using Object oriented ALVs. Heres the code :
    *& ALV using objects : ADD, MODIFY RECORDS
          Data Declaration
    DATA : ITAB1    TYPE TABLE OF SFLIGHT,
           G_CUST1  TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           G_GRID1  TYPE REF TO CL_GUI_ALV_GRID,
           LT_FCAT1 TYPE LVC_T_FCAT,
           LS_FCAT  TYPE LVC_S_FCAT.
         Start of selection
    START-OF-SELECTION.
      PERFORM POPULATE_TABLE.
    END-OF-SELECTION.
      CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
          PBO module
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'ZSAB1'.
    SET TITLEBAR 'xxx'.
      IF G_CUST1 IS INITIAL.
        CREATE OBJECT G_CUST1
          EXPORTING
            CONTAINER_NAME    = 'CC1'.
        CREATE OBJECT G_GRID1
          EXPORTING
            I_PARENT          = G_CUST1.
      ENDIF.
      PERFORM FCAT_SFLIGHT.
    to display the ALV Grid
      CALL METHOD G_GRID1->SET_TABLE_FOR_FIRST_DISPLAY
        CHANGING
          IT_OUTTAB       = ITAB1
          IT_FIELDCATALOG = LT_FCAT1.
    transfering the grid from display mode to editable mode
      CALL METHOD G_GRID1->SET_READY_FOR_INPUT
        EXPORTING
          I_READY_FOR_INPUT = 1.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Form  fcat_sflight
          Filling Field Catalog
    FORM FCAT_SFLIGHT.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          I_STRUCTURE_NAME       = 'SFLIGHT'
          I_CLIENT_NEVER_DISPLAY = 'X'
          I_BYPASSING_BUFFER     = 'X'
        CHANGING
          CT_FIELDCAT            = LT_FCAT1.
      LOOP AT LT_FCAT1 INTO LS_FCAT.
        IF    LS_FCAT-FIELDNAME EQ 'PRICE'
         OR LS_FCAT-FIELDNAME EQ 'PLANETYPE'
         OR LS_FCAT-FIELDNAME EQ 'FLDATE'.
          LS_FCAT-EDIT = 'X'.
          LS_FCAT-CHECKTABLE = '!'.      "do not check foreign key relations
          MODIFY LT_FCAT1 FROM LS_FCAT.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " fcat_sflight
    *&      Module  USER_COMMAND_0100  INPUT
          PAI module
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'SAVE'.
          PERFORM SAVE_DATA.
        WHEN 'LEAV' OR 'CANC' OR 'BACK'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "USER_COMMAND_0100 INPUT
    *&      Form  save_data
          checking the changed or added data is consistent
    FORM SAVE_DATA.
      DATA: L_VALID TYPE C.
      CALL METHOD G_GRID1->CHECK_CHANGED_DATA
        IMPORTING
          E_VALID = L_VALID.
      IF L_VALID IS NOT INITIAL.
        PERFORM UPDATE_DATABASE.
        MESSAGE S000(0K) WITH TEXT-S01.
      ENDIF.
    ENDFORM.                    "save_data
    *&      Form  update_database
          Update records to DB table
    FORM UPDATE_DATABASE.
      DATA: LS_SFLIGHT TYPE SFLIGHT,
            LS_OUTTAB LIKE LINE OF ITAB1,
            LT_INSTAB TYPE TABLE OF SFLIGHT.
      LOOP AT ITAB1 INTO LS_OUTTAB.
        MOVE-CORRESPONDING LS_OUTTAB TO LS_SFLIGHT.
        APPEND LS_SFLIGHT TO LT_INSTAB.
      ENDLOOP.
      MODIFY SFLIGHT FROM TABLE LT_INSTAB.
    ENDFORM.                    "update_database
    *&      Form  POPULATE_TABLE
          POPULATE TABLE I_KNA1
    FORM POPULATE_TABLE .
      SELECT * FROM SFLIGHT INTO TABLE ITAB1.
    ENDFORM.                    " POPULATE_TABLE

  • Edit CSS using Code View when double-clicking in CSS Panel

    In CS4, when I wanted to open a linked style sheet for editing, I could right click or double click any CSS entry in the CSS panel to Go to Code. This would open the style sheet and goes to the line where the rule is defined. It's properly set in the Preference pane to Edit using Code view but hasn't worked ever since upgrading to CS5 and it is a real hinderance on my productivity.
    Does anyone else have this problem. More importantly what is the fix?
    (I noticed this question had been asked before but was never answered http://forums.adobe.com/message/210015)

    OK, I may have found something. It seems to be an issue with template (.dwt) files. Can you reproduce and test this theory?
    When I open a template child page, everything seems to work as expected.  It doesn't seem like I can reproduce your symptoms.

  • ALV: Search help for editable column using OVS/Input Help Component Usage?

    Hi all,
    Is is possible to assign a value help like OVS or "Input Help Component Usage" to a editable ALV column using Web Dynpro?
    Thanks and regards,
    Ulrich

    Hi Madhu,
    Than I must have made something wrong because this is exactly what I've tried.
    I'll check my freely prgrammed value  and the assigning again.
    Thanks a lot for your quick reply.
    Ulrich

  • Problem in executing query in browser and bex analyzer

    i am not able to execute query in browser nor bex analyzer...
    problem is that i dont have option to run in bex analyzer in query designer (menu bar seems missing in query designer and how can i get enabled
    and when execute the query in browser using bex query designer ..it prompts me with following error
    URL http://saperpdev.saperpdev.com:8002/sap/bw/BEx call was terminated because the corresponding service is not available
    Note
    ■The termination occurred in system ERD with error code 403 and for the reason Forbidden.
    ■The selected virtual host was 0
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:SAPERPDEV_ERD_02-v:0-s:403-r:Forbidden
    and i tried to open the query from bex analyzer  level
    it prompts me as follows
    macros are disabled because the security level is set to high and digitally signedtrusted certificate is not attached to the macros,to run the macros change the security level to lower settings
    pls suggest me

    hi suman,
    thanks for your response.. but let me be more clear
    i am using sap gui 7.20 front end and when i execute rrmx i am able to navigate to BEx analyzer but when i tried to open a report which i create i get following error message..
    you do not have sufficient authorization for infoprovider zic_proj
    function module  /SDF/AL_MAP_TRANSID_LOGH doesnt exit
    second thing is that i tried from bex query designer to execute the report ..but i am not able to execute the report...
    i hope some connections seems missing..please let me know what to do ASAP..
    and where can i post this question to get fast reply

  • Problem-taking a long time to open Bex Analyzer

    We upgraded from BW 3.1 to BI 7.0 SP9, Front End SP 9, Patch 3, Revision 370 and have a problem when we try to access Bex Analyzer.  The response time is very poor. It can take as long as 3 minutes (or longer) for Bex Analyzer to open after we click on the Bex Analyzer option.  When we were on BI 7.0, Front End SP 7, the response time was better but since upgrading to FEP 9, the time to open Bex Analyzer from our PCs is very long. Has anyone else experienced this problem? If so, how was it resolved? Thanks

    You might want to trouble shoot with web log from BINW2004s forum topper and Front end Champ Prakash ...
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4087">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4087</a>
    Hope it Helps
    Chetan
    @CP..

  • BW ERROR while calculating local formula in Bex analyzer

    Hi gurus,
    Their is an error comming up on a report which is  opened in Bex Analyzer. When we create local formula i encounter this error.
    It says"
    "Program error in class SAPMYSS1S method :uncaught exception "
    "System error in program SAPLRRK0 and form DELETE_FST-01"
    Not sure of why this error is comming up.
    DO we need to update a OSS note for this.
    Please suggest .
    Regards,
    Balaji Raj

    Search SCN & Marketplace.

  • Error while executing  view in Bex Analyzer

    Hi Gurus,
    When i am executing the view(0PY_MC02_Q0102_V02)  in analyzer i am getting the error :
    Error Group
    RFC_ERROR_SYSTEM_FAILURE
    Message
    Exception condition "NO_VALUE_FOR_SID" raised.
    I checked all the master data info objects and loaded the master data still i am getting the error.But when i saved the query with same view name it is executing. This error is only for some standard views but not all the standard views.can any one please help me in this issue.
    *Points to be assigned.
    Thanks
    Raju.k

    If any underlying query of a view is changed it thinks that something has changed and throws you an error.
    The solution for this is to open the view and save it again.
    This solves the warning message problem which is not the same as yours. But try this out this might help.
    ~abhijit

  • Display name of the view in BEX Analyzer

    Dear All,
    If you run a view, the name of the underlying query is always shown in the report. Is there a way to show the name of the view instead IN bex aNALYZER?
    Please reply ASAP.
    Shailja.

    Hi,
    go  through this
    "http://help.sap.com/saphelp_nw04/helpdata/EN/0d/af12403dbedd5fe10000000a155106/content.htm"
    Any help let me know.

  • Using button control in BEx Analyzer to filter on multiple items

    I'm trying to create a button control in BEx Analyzer to duplicate the following command:
    DATA_PROVIDER=*&FILTER_IOBJNM_1=<StructureID>&FILTER_IOBJNM_2=<StructureID>&FILTER_IOBJNM_3=<StructureID>&FILTER_VALUE_1=<Item1>&FILTER_VALUE_2=<Item2>&FILTER_VALUE_3=<Item3>&MULTI=X
    where <StructureID> is the technical name (the 25-character alphanumberic string) of the structure I want to filter on, and the three items within the structure have technical names <Item1>, <Item2>, and <Item3>. This command works fine on the web, but when I set up a button in BEx Analyzer with the following attributes, it only filters on one item:
    Name             Index  Value
    CMD              1         SET_FILTER
    DATA_PROVIDER    1         DP_1
    FILTER_IOBJNM    1       <StructureID>
    FILTER_VALUE     1       <Item1>
    CMD              2         SET_FILTER
    DATA_PROVIDER    2         DP_1
    FILTER_IOBJNM    2       <StructureID>
    FILTER_VALUE     2       <Item2>
    CMD              3         SET_FILTER
    DATA_PROVIDER    3         DP_1
    FILTER_IOBJNM    3       <StructureID>
    FILTER_VALUE     3       <Item3>
    Any ideas?
    Thanks,
    Jason

    Jason,
    thank you for the information. This morning I found out myself by checking the 3.5 Web API Reference which basically offers everything I need.
    To facilitate data entry you could try using a reference command area somewhere in your excel sheet where you can easily enter the command data and also can make use of copy/paste. I tried this and it works fine - much better than to enter the values in the dialogue.
    Best regards
    Thomas

  • Using Variants Created in BEx Analyzer in BEx Broadcaster

    We are experiencing an issue where variants created in BEx Analyzer are not available to be selected in BEx Broadcasting.
    What we are trying to achieve is when we have a Variant that is created in BEx Analyzer, we want to use the same variant in our BEx Broadcaster, which is found under the Tab General Precalculation and the option Determine from Variants.
    For some background, we are on NW04S Patch 9 with BEx Front End 3.5 Patch 10.
    Does anyone have any inisight on this issue?
    Thanks.

    Please disregard question.

  • Max column in one view of BEx web analyzer

    Hi,
    could anyone please tell me how many columns maximum are displayed in one screen of BEx web analyzer?
    I remember it is 6 columns. if more than 6 columns, the more columns will be cut. Am I correct?
    Thank,

    Hi,
    U can display more than 6 columns,Open the web template in your webapplication designer, select the table section and go in the properties. There you'll be able to specify the number of columns.
    You need to change the  following parameters within the Web ApplicationDesigner.
    DATA_COLUMN_FROM
    DATA_COLUMN_TO
    BLOCK_coLUMN_SIZE
    BLOCK_COLUMN_STEP_SIZE
    There is no "simple" way to use scrolling instead of paging ...although if you set the DATA_COLUMN_TO = 0, then all columns are displayed, which means you can use your browser scroll bars, but the leading column(s) won't be frozen.
    But you can change these values when you drop an Analysis_Item onto a template in the WAD, but not sure if you are able to edit the standard tables from the WAD. f you go to transaction SE38 and run program RS_TEMPLATE_MAINTAIN_70,  then you can search for the name of the standard table that is being used, and potentially add in the required commands there to change the number of columns that are displayed. If you are only seeing 6 columns, then you may find there is a table called 0PATTERN_TABLE_14R4C or something along those lines ...
    **Pls assign points ,if info is useful***
    Regards
    CSM Reddy

  • Local formula created in web analyzer not reflected in bex analyzer.

    Hello all,
    I had created a Local formula in the web analyzer and saved the query as a view. Now, when I open the same view in
    bex analyzer then I cannot find the local formula column; i.e. it is not reflected in the bex analyzer.
    Is this an error or this is not possible?
    Thanks in advance,
    Sandy.

    Hello Sandy,
    If you create the formulo at the web analyzer you will not be able to see it at the bex analyzer. Only if you create at the query designer, so you will be able to see it at the web and bex analyzer.
    Thanks,
    Diego Ferrary

  • How to use the chart option in bex analyzer

    Hi Expert
    i want to know how to use the Chart in Bex Analyzer.
    Next week i hve End user Training. my user wanthow to use the chart option in Analyzer.
    plz let me know how to use chart & any Document on that plz reply me.
    Reagards
    siva
    Edited by: patel siva on Sep 16, 2008 4:34 PM

    Check here:
    https://reporting.uky.edu/BWBExContextMenu.pdf
    http://help.sap.com/saphelp_nw70/helpdata/EN/8b/4ffd9b07474279b3bbee75a60db41f/content.htm
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/5b/30d43b0527a17be10000000a114084/frameset.htm
    Thanks..
    Shambhu

Maybe you are looking for

  • Error in creation of TDS Certificate.

    Hi I am facing one problem in creation of TDS Certificate after successful creation of Remittance challan (j1inchln) and Bank challan updation(j1inbank).  The error msg is as follows: "Please maintain entries in layout  customizing:" When I an went s

  • This is a TEST of ATT Commercial Mobile Alert System.

    How can I stop this? it happens like 3 to 4 times a day and it is so annoying. Worst is when it Happens in the middle of the night and it keeps my screen on all night killing my battery. also happens when I dont notice it tell I check my phone and it

  • 1080i versus 1080p display - Mini Mac & 46" LC-46D62U SHARP monitor?

    We solved our scattered image resolution problem on our new 46" SHARP LCD monitor running on a mini mac (Thanks to BSteely's recommendations). But we are working with a 1080i resolution by lack of having the option available to set it to 1080p. The m

  • How to change format in iMovie 10?

    I've spent a lot of time trying to figure out how to change project settings to anything other than HD 1080. There doesn't seem to be any way to do change to SD. iMovie help doesn't mention it. Is this kind of like Numbers find and replace, a feature

  • Desk top pics and screensavers on Macbook

    Sorry but I am finding this whole forum thing incredibly difficult to make work and am absolutely technically illiterate. All the jargon leaves me only more confused. Don't even know if am posting this on right page since can't find anywhere else to