Setting Default Global Settings for Bex Analyzer 7 for all users

We need to set default settings for Bex Analyzer Global Settings when we install SAP-GUI 7.2 in our user's workstations. The current default settings are that all of them are turned off. We would rather not have to run around and change each of our 1,000 user's settings.
Ed:. Apparently [OSS Note 1254112|https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/sapnotes/index2.htm?numm=1254112] discussed how to adjust Windows Registry settings to resolve this.
Edited by: Charles Belt on Apr 28, 2011 10:01 AM

Just so any one is looking for the correct solution and it worked for me.
Small correction to the information in the OSS note 1254112.
for setting the legacy version setting use the below string in the registry
"LAUNCH_VERSION" = "LEGACY"  insted of "LaunchLegacyVersion"
Kiran

Similar Messages

  • Webi Vs Bex Analyzer for the same query

    Hi Experts ,
    I face an issue in Webi Vs Bex Analyzer for the same query :
    Output of Bex query:
    Transport System     Location ID     Quantity
    PIPEC1-Z4          LOCCP1-Z4     1,000.000 BBL
                              LOCCP2-Z4     400 TO
                              LOCGAL-Z4     *
                              LOCRAS-Z4     200 TO
                              Result     *
    Here as the Unit of measure is different, the RESULT displays a *
    Only in cases where the unit of measure is the same, the result
    is displayed correctly.
    However in webi, the sum function blindly adds up without any possibility
    to check whether the uom is the same.
    How can I check to add only when the units are the same ?
    Regards, Jerin.

    Hi Jerin,
    Each Key Figure used in a BW query can have up to three different sets of information:
    Numeric value of the Key Figure corresponding to the Key Figure without the unit.
    Unit or Currency information, A Dimension object with character format that contains the unit or currency. For example, 'USD', 'u20AC', 'km'
    Formatted value, representing the user-specific formatting. A Dimension object with character format that contains the Key Figure and the unit (formatted value) based on user preferences configured on the SAP server. For example, '200 USD', '345 u20AC', '25 km'
    Each Key Figure is represented with a Measure object in a Class u201CKey Figures.u201D In the case where the Key Figure is configured in BW with a unit, an additional Dimension object will be added representing the unit information. The u201CFormattedu201D value represents the numeric value Formatted as a string value, following the user-specific formatting settings.
    Or if doesn't appear the Unit, for some CKF or RKF it happens, you can add to your BEx query and then to the universe the unit or currency and create a separate dimension with that information.
    I hope this help you.
    Best regards,
      Fede

  • How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    When you use the Canon driver, the 2 sided printing is set in a different location. There is an entire menu dedicated to it (at least on my mx892). The printer dialog box has a menu selector in the middle of the screen (I think it says "layout" by default). If you click on it, you will see the duplexing options at the bottom. Much more flexibility than the single checkbox available with "airprint". The interface is unusual (at least for me) but you can pre-set up many different configurations (Fast Duplex, Fine Single-sided, B&W, Photo, etc etc.)

  • User Settings for BEX Analyzer - Max number of values displayed

    Hi Experts,
    we are trying to change the Maximum number of values that get displayed from 1000 by default to some other number.
    the setting windows that I refer to above can be reach by this path.
    When you open up a Query in Analyzer, you are prompted to Variable Entry screen, if you click on the select on the list box next to a field (double squre boxes) then on the next pop windown that opens on the top right there is settings button (guy's face and box) this should bring you to User setting window, here go to Value Restrictions tab, you will see 1000 selected under No. of Displayed values....we want this number to be different by default for ALL Users.
    What is the t-code or path to change this number in BW.

    Hi,
    its standard to have 1000 rows in sap BW 7.0. We can't change the default standard setting.
    Thanks,
    venkat

  • Here is a solution for BEX analyzer NW04S layout - setFilterStyle

    Hi all,
    I had a problem with a workbook that contains multiple sheet with differebts queries.
    The problem was, that the filter panel had the same style on each sheet. And like the number of charactéristics are different for each quey, the layout was not well.
    To correct this :
    - I have modify the  'setFilterStyle'  macro   and now, the filter panel is displayed correctly on each sheet.
    I hope this solution will be able to help you ...
    Regards,
    Martine
    Here is the modified macro:
    '--- Reformat the Filter Area with the correct stlyes
    Sub setFilterStyle()
    Dim i As Integer
    Dim lRange As Range
    Dim lsheet As Worksheet
    On Error Resume Next
    'i = 16
    'Calculate Filter-Area
    'While Sheet4.Cells(i, 3) <> ""
    '   i = i + 1
    'Wend
    'Filter Area
    For Each lsheet In ThisWorkbook.Worksheets
        i = 16
        While lsheet.Cells(i, 3) <> ""
            i = i + 1
        Wend
      If lsheet.Range("C14").Value = "Filter" Then
        Set lRange = Range(lsheet.Cells(15, 3), lsheet.Cells(i - 1, 4))
        lRange.ClearFormats
        With lRange.Borders(xlEdgeBottom)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
        With lRange.Borders(xlEdgeRight)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
         With lRange.Borders(xlEdgeRight)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
        With lRange.Borders(xlEdgeLeft)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
         With lRange.Borders(xlEdgeTop)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
        With lRange.Borders(xlInsideVertical)
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = 47
        End With
        lRange.Interior.ColorIndex = 2
      End If
    Next lsheet
    ' No more filter Area
    For Each lsheet In ThisWorkbook.Worksheets
        i = 16
        While lsheet.Cells(i, 3) <> ""
            i = i + 1
        Wend
    If lsheet.Range("C14").Value = "Filter" Then
      'Calculate Filter-Area
        l_old = i
        While lsheet.Cells(l_old, 3) = "" And l_old <= 200
            l_old = l_old + 1
         Wend
         Set lRange = Range(lsheet.Cells(i, 3), lsheet.Cells(l_old - 1, 4))
         lRange.ClearFormats
      End If
    Next lsheet
    End Sub
    '--- Service Function to get the Name Object back
    Private Function getName(i_name As String) As Name
       Dim l_name As Name
         For Each l_name In ThisWorkbook.Names
            If l_name.Name = i_name Then
                Set getName = l_name
            End If
         Next l_name
    End Function

    Hello,
    You can set the default workbook as the SAP standard provided.
    To do this, please open the BExAnalyzer and goto the
    "Global settings" screen (Its on the BExAnalysis Toolbox menubar).
    In the "Select Default workbook" tab click on the "Use SAP Standard"
    button.
    This would set the default workbook. Close Analyzer and reopen it.
    It should work fine.
    Some additional information for you:
    The default workbook that is used can be seen in table RSRWBTEMPLATE.
    Check the workbook that is assigned to your user. If there is a blank
    workbook assigned to your user, this uses the SAP Standard Global
    Wokrbook. If your user iD doesn't exist in this table, then it will use
    the workbook assigned to the <blank> user id. If the <blank> user id is
    assigned to <blank> workbook, this means that any user id that doesn't
    have an entry in this table will be use the global workbook. Don't make
    any manual updates to this table, but it can be used to see who is
    assigned to what workbook. You should specify using the standard workbook
    for your user id through the properties in the BEx Analyzer. Ensure that
    the entry is updated in this table. Also, you will need to close BEx
    Analyzer and log back on to see the change.
    Regards,
    Manjunath

  • How to set default company logo in bex report(analyzer)?

    hi,
    i have a requirement that i need to create default template for my queries in bex analyzer. whenever i execute my query in analyzer the company logo should be on top of the query. i know how to do it in workbook but could you explain me how to set the default company logo in bex reports?
    thanks
    vadlamudi

    See the following document on creating a workbook template with an image: [http://www.researchsummary.ca/bw/Sample_Ch10.pdf]
    In BW, there is a table that stores the default workbook. The following snippet of code allows you to identify a custom workbook template as the default template for all end users.
    *& Report Z_SET_BEX_USER_TEMPLATE *
    *& Program to update all user's default template *
    REPORT Z_SET_BEX_USER_TEMPLATE.
    TABLES: rsrwbtemplate,
            usr01.
    PARAMETER: wbid LIKE rsrwbindex-workbookid.
    SELECT
    FROM
      usr01.
      MOVE: usr01-bname TO rsrwbtemplate-templateuser,
            wbid TO rsrwbtemplate-workbookid = wbid.
      UPDATE
        rsrwbtemplate.
      IF sy-subrc 0.
        INSERT
          rsrwbtemplate.
      ENDIF.
    ENDSELECT.

  • Issue with Data Provider name in variable screen for BEx Analyzer

    Hello all,
    We got an issue with Data Provider name in Variable screen in BEx Analayzer.
    We want to change the DataProvider name there to Description of the report instead of its Technical name.
    Any inputs are appreciated.
    Thanks
    Kumar

    You have to create a workbook to do this.
    Refresh your query/report. In Bex analyser, there is one toolbar named BEx design toolbox, If you are not able to see it in analyser, right click on the toolbar space of BEx analyser and click on BEx design toolbox. Here, goto to design mode, by clicking on a sysbol like 'A'. after that place the curser where you want to see the Query description. and click on insert text (T) in BEx toolbox. click on it and check "Query description" in constant tab. in the general tab you need to assign a dataprovider, for that assign your query name in workbook settings (in Bex design toolbox). also check the "display caption" in general tab.
    Pravender

  • Execute button for BEx Analyzer in the Query Designer

    Hello,
    My current BEx Query Designer 7.1 and we are using Excel 2003. Currently, I can execute query through BEx Web but I am also looking for green check button of BEx Analyzer also. Could you please tell me how can I incorporate/add this BEx Analyzer check box in Query Designer so that I can execute query both in BEx Web as well as BEx Analyzer.
    Thanks very much in advance.
    Regards,
    Md

    Hello Hyma/Prasanna,
    Thanks for your reply and it's solved my problem.
    If I logon BEx Analyzer and  open or changed query through it, I can see green check box in Query Designer. Now I can run query both in BEx Analyzer as well as BEx Web.
    Regards,
    Md

  • Problems installing SAP GUI 7.1 patch level 4 for Bex Analyzer

    Hi all,
    I have a problem installing the SAP GUI for BW - running office 2003, have tried to install without success.  The old Bex tools seem to work, but not the new ones and when opening any of the tools report designer or web application designer I get the error : System configured incorrectly.  The new functionality in Bex Analyzer do not respond when clicking on the icons.
    Thanks,
    Dirko

    Hello
    please download the compialtion 3 cd of sapgui 710.
    http://service.sap.com/installations
    Entry by Application Group
    SAP Frontend Components
      SAP GUI FOR WINDOWS
       SAP GUI FOR WINDOWS 7.10 CORE
        Installation
    Compilation 3 cd is delivered with the sapgui patch level 11!
    Also the sapgui patche you can find in
    http://service.sap.com/patches
    Best Regards
    Sven

  • BEx Analyzer for Power Users

    Hi
    My Power users have been given access to design their queries in Bex Designer and publish via the web.
    For no reason, they don't have access to run their queries via Bex Analyzer. I am trying to push for them to have access to Bex Analyzer but I need some concrete reasons for them to be able to have this. I have always been a fan of being able to develop in BEx and immediately view in BEx
    Can anyone think of advantages or reasons why the Power Users should view in Bex Analyzer?

    The BEx Analyzer would give the users the power of BW and with it the power of XL. This could be a very good option when one is faced with a very rigid formatting requirement. One can use the BEx/workbook combination to design a formatted report which could otherwise have not been possible with the web. Of course some formatting features are as I understand are provided with the new report designer in NW04s, but XL could still be powerful for this.
    Some developments in BW could be avoided if we use XL like when you have to manipulate data from multiple areas and queries. For instance, you could have a sales query, a Finance query and even a purchasing query in a workbook and do some calculations with the data. If you were to do it in the QAD, you might have to have created a multicube with all the above and then write a query.
    In addition to that one can use the macro feature of xl and carry out further formatting/analysing/processing of the data
    Cheers
    Anand

  • BEx Analyzer for connection issue

    Hi Everyone,
    I received the following message while using RRMX transaction from SAP BI 7 system and unable to connect BI and BEx Analyzer.  However, I am able to connect to BW system from BEx Analyzer when manually enter user id and password after this error.  There is no issues in Dev, QA and has this issue in Preproduction system.
    Verified with my colleague who have same SAP GUI 7.2, MS Excel 2003 versions and my colleague is able to conenct to BEx Analyzer successfully.  Please advise.
    Error Group
    RFC_ERROR_COMMUNICATION
    Message
    SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=camccvrrb.gotd.gm.com, GWSERV=sapgw23, SYSNR=23
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       connection to partner 'camccvrrb.gotd.gm.com:3323' broken
    TIME        Tue May 17 08:19:12 2011
    RELEASE     720
    COMPONENT   NI (network interface)
    VERSION     40
    RC          -6
    MODULE      gwxx.c
    LINE        646
    DETAIL      NiIRead: P=0.10.0.4:3323; L=127.0.0.1:3136
    SYSTEM CALL GwRead
    COUNTER     2
    Thanks
    Prasad

    HI Prasad,
    This is a known issue.
    Implement these three notes on your system: 1435326, 1471630, 1498947(manual steps).
    If persist, let me know.
    Best regards,
    Edward John

  • BIOS not detecting notebook hard drive after setting default BIOS settings.

    I had my Ubuntu 14.04 installed in my laptop in a drive named "Notebook hard drive" in addition to a pre-installed Windows 8. Today I set the default BIOS settings in my laptop and when I rebooted it and tried to use Ubuntu by pressing "F9" key and choosing from the BIOS menu I found my "Notbook hard drive" option missing. My Ubuntu drive is still there but I have no way to access it. Is there any way I can get it back to working?
    This question was solved.
    View Solution.

    Try disabling secure boot in the BIOS and then restarting the notebook.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Email Alerts are working for some but not all users

    If some users are getting the alerts and some not, it seems more likely that the issue is with your email server or email clients, not with your SW setup.
    Have you checked SPAM / Junk folders on the server and on the clients?

    We have alerts setup for multiple scenarios.  All of our users are setup the same but not everyone is getting the alert.  We are using the spiceworks mail servers and I have checked the Spiceworks App Notifications are set to Yes.  Any ideas?  
    This topic first appeared in the Spiceworks Community

  • How do i use an active directory group for vpn and not all user

    hi all,
    i have an asa 5515x...
    how do i use a particular group in active directory to have vpn/anyconnect access?  right now i believe it's for all user on my current config,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    !integrate with active directory
    aaa-server LDAPSERVERS protocol ldap
    aaa-server LDAPSERVERS (vlan192) host 10.0.0.2
    ldap-base-dn dc=company,dc=com
    ldap-scope subtree
    ldap-naming-attribute sAMAccountName
    ldap-login-password 12345678
    ldap-login-dn cn=administrator,cn=Users,dc=company,dc=com
    server-type auto-detect
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    say i want this "vpn-group" object group in AD and my vpn is only anyconnect and no other vpn types.
    thanks for any comment you may add.

    The best way is to use Dynamic Access Policies (DAP). Cisco has a white paper (here) that shows how one can choose the LDAP group as one of the DAP criteria.
    DAP requires the Advanced Endpoint Assessment feature, so your licensing must support that.

  • I want to set default printer settings to be used only for a specific type of application, certain documents. All other print jobs should use a different default setting for the printer.

    I am printing a specific document from a web based application. This document need to be printed in landscape. So I would like to set the default settings for this specific printer to landscape. But for all other printers it should be portrait. But this does not seem to work. The browser picks the settings from the standard/default printer and uses this for all print jobs.

    Embie wrote:
    I was told by support that my problem was a hardware problem and that HP would not replace the faulty hardware.  Great.  I will replace my faulty hardware manufacturer.  Simple, HP never again.
    In the hour since you have registered you have posted seven messages, none of which contain any useful information that would allow someone here to help you.  Please read this post then provide some details in a new thread.  What printer model? What operating system? How is the printer connected - USB, wired LAN, Wireless LAN, bluetooth?  What is the problem you are having (with the printer...)?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

Maybe you are looking for

  • Not Able to Access the Properties of Workspace and Target

    Hello I have install PB 11.2 Build 9027 on my laptop ( Winows 7 (64 bit))). PowerBuilde is open and able to see the existing code. But when I am trying to access the properties of Workspace or target for Source code control Setup, Properties will not

  • Youtube loading and unloading

    I have a flash site that ive developed. I'm loading youtube videos via "loadMovie".. Works great and all but, for some reason i cant unload or remove the movie clip that its loaded into, or even load a new movie over it.

  • Oracle 10g Help?Create database error

    I am unable to run a script createDB having command create database kmaa.I open up SQL*Plus, connect and login without any trouble as well. When I try to create a database I get the following: SQL> CREATE DATABASE kmaa; CREATE DATABASE kmaa Error at

  • BAPI Implementation 'FTR_MAINFLOW_CREATE'

    Dear All, I have done the implementation of 'FTR_MAINFLOW_CREATE'. The data update with these BAPI is very slow and the system throws the dump TSV_TNEW_OCCURS_NO_ROLL_MEMORY or TSV_TNEW_PAGE_ALLOC_FAILED after updating about 400-500 records. Can anyo

  • IPhone won't connect to the Internet at all!

    Hello, it's my first time here. Big problem... my iPhone doesn't connect to the Internet! Restarted and reset the phone many times but nothing works (Email, apps, safari etc). Every time I try to connect to the internet using Safari it keeps trying t