SAP GUI Frantend for BI 7.0 BEx

Dear All,
I am working on SAP BI 7.0, I am not able to see the BI 7.0 BEx when I open the Query Designer. When I open the query designer that is displaying 3.5 Bex only in BI 7.0 Server also. I thought Front end problem, so please any one can suggest me how to get BI 7.0 BEx. What are the patches or Supporting packages need to update. I mentioned below which iam using.
<u>SAP GUI Detials</u>
Component  : SAP logon for Windows
Release        : 640 Final Release
File name        : saplogon.exe
File version   : 6405.5.25.1027
Build        : 0
Patch Level  : 25
Login SAP System --> System --> Status -->
S/W Componet            | Release       | Level        | Highest Support Pack |  S/W Component
SAP_ABA                        | 700             | 0012       | SAPKA70012    | Cross-AppCompnt
SAP_BASIS                 | 700             | 0012       | SAPKB70012    | SAP BasisCompt
PI_BASIS                        | 2005_1_700  |  0012     | SAPKIPYJ7C      |      PI_BASIS 2005_1_700
ST-PI                        | 2005_1_700  | 0003      | SAPKITLQI3        |     SAP Solution Tools Plug-In
SAP_BW                       | 700               | 0013       |  SAPKW70013 |      SAP NetWeaver BI 7.0
BI_CONT                       | 703             | 0005       | SAPKIBIIP5      |     Busi Intelligence Content
ST-A/PI                       | 01I_BCO 700 |  0000       |      -     | Serv tools for other App./Netweaver 04
Thanks and Regards,
Hari.
<u></u>

Hi Sushmita,
Thanks a lot give Information to me, but the problem is when iam going to install the SAP GUI 640, All add on’s are there except BI Add on, How can I select that Add on. Now what can I do suggest me. Hope I need latest SAP GUI right?, if I need latest one from where I can get it.
SAP Front end installation sreen i saw only these add ons.
1. SAP GUI
2.R/3 Add-on
3.General Add -on
4.Development tools
5.Legacy Components
6.Forms Design Tools
7.BW Add-on
8.CRM Add-on
9.KW Add-on
10.APO Add-on
11.SEM Add-on
but there is no BI add-on in the selection sreen at the time of Installation. please give me reply as soon as possible.
thanks and regards,
Hari.

Similar Messages

  • Reset SAP GUI passwords for number of users one time

    Dear,
    i need your help in how to Reset SAP GUI passwords for number of users one time, as we have non-SAP users, only ESS users that they are currently using Portal ESS, but we need to reset thier GUI passwords so that they will not be accessing the GUI.
    we need to do it one shot, one time for more than 600 users.
    is there any way?
    thank you

    You can also create an ABAP program which can be used to do a mass user password change.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password. Use this function only if you want to do random passwords. Otherwise you can upload your own password.
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. You upload a comma delimited file which is the username,password. If the password field is blank the program will generate its own. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
    gd_subrc TYPE i,
    v_filename_string TYPE string,
    p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
    dLine(40) type c,
    END OF itab.
    DATA: begin of it_Users occurs 0,
    UserID like BAPIBNAME-BAPIBNAME,
    Password Like XUBCODE,
    end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *& FILE_OPEN_DIALOG METHOD *
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
    window_title = 'Select File'
    default_filename = '*.txt'
    multiselection = ' '
    CHANGING
    file_table = it_tab
    rc = gd_subrc.
    LOOP AT it_tab INTO p_file.
    ENDLOOP.
    v_filename_string = p_file.
    START-OF-SELECTION.
    *& GUI_UPLOAD function *
    Upload file to internal table
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = v_filename_string
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = 'X'
    TABLES
    DATA_TAB = ITAB
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Loop through internal table and split the comma delimited file
    LOOP AT ITAB.
    SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
    it_Users-Password.
    APPEND it_Users.
    ENDLOOP.
    LOOP AT it_Users.
    if it_users-Password is initial.
    CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
    IMPORTING
    PASSWORD = p_npass
    else.
    p_npass = it_users-Password.
    endif.
    CALL FUNCTION 'BAPI_USER_CHANGE'
    EXPORTING
    USERNAME = it_users-userid
    PASSWORD = p_npass
    PASSWORDX = 'X'
    TABLES
    RETURN = it_ret2.
    Loop at it_ret2.
    if it_ret2-number = 039.
    write: / 'password changed'.
    else.
    write: / it_ret2-message.
    endif.
    endloop.
    Write: / ''.
    refresh it_ret2.
    ENDLOOP.

  • Reset SAP GUI passwords for number of users

    Dear,
    i need your help in how to Reset SAP GUI passwords for number of users one time, as we have non-SAP users, only ESS users that they are currently using Portal ESS, but we need to reset thier GUI passwords so that they will not be accessing the GUI.
    we need to do it one shot, one time for more than 600 users.
    is there any way?
    thank you

    Hi ,
    We can do it through the LSMW.
    <b>Reminder : Points should be given on answers.</b>

  • SAP GUI Configuration for Mac OSX

    Hi Everyone,
    I work for the UW-Milwaukee University Alliance hosting center, and am having trouble trying to figure out how to create a server configuration file that can be easily distributed to all of our customers.
    I'm not really sure what files are necessary for the SAP GUI application to load our specific settings.  Obviously it has something to do with the "connections" file located at USER/LIBRARY/PREFERENCES/SAP.
    When I enter all of the connections manually through the "expert" settings, the connections will show up and work, but when I go to close the program and open it again, they're all gone.  The server list is still in the "connections" file though.
    If anyone has some insight as to how this application works, configuration-wise, any help would be appreciated.
    Thanks in advance!

    Let's separate the issues of creating appropriate configuration files and distributing the files to your Mac users.
    With respect to distributing the files:
    This is explained in the HTML documentation distributed with the JavaGui, in the "Installing Custom Templates" section of the Administration > Configuration Files page.
    After you've created "connections" and "settings" files that you want to distribute, rename them to "connections.template" and "settings.template", respectively. Then use the command
    "jar -cf ./templates.jar settings.template connections.template"
    to make a "templates.jar" file containing them. Before the JavaGui is installed, put the "templates.jar" file in the same directory as the PlatinGUI-MacOSX-710rnumber.jar file. This will produce the "connections.template" and "settings.template" in the same directory as the JavaGui application, typically "/Applications/SAP Clients/SAPGUI 7.10revnumber".
    When a user launches the JavaGui application, if he DOESN'T ALREADY HAVE "connections" and "settings" files in his <home-directory>/Library/Preferences/SAP directory, the "connections.template" and "settings.template" files will be copied to his <home-directory>/Library/Preferences/SAP directory with the names "connections" and "settings", respectively.
    With respect to creating the "connections" and "settings" files, I'm not sure why what you are doing is not working.
    Which version of the JavaGui are you using?
    I assume that after configuring the connections, you clicked the "Save" button.
    When you go to SAPGUI > Preferences > Configuration > SAP Logon is anything listed there?
    As another approach, you might want to consider using central configuration files as shown in the HTML documentation Administration > Overview on Local/Central Files page.

  • SAP Gui 640 for windows.. what is compilation?

    Hi Experts,
    I went to service market place to see/dowload the latest patch for gui since we are using patch 11 and the latest one is 27. When I click on the "info" line, it opens a new window with the detail description such as:
    Patch name = gui640
    patch level= 27
    compilation= 5
    My main question is what is compilation is? and the number with it 5?
    Thanks,
    I appreciate your help
    I will post points for sure!!

    Hi,
    Installations and Upgrades -> A-Z Index -> G -> SAP GUI FOR JAVA -> SAP GUI FOR JAVA 7.20 -> Installation -> Dowloads
    Once you have gone to the above path, you just have to click on the DVD number 50105790_5, you will get a pop up to Open File, Save File, here you select save and it will go to the download directory in your Mozilla.
    Once the download is complete, it will prompt you a message about the completion in the mozilla download maanger, right click on it and select Open containing folder. It will take you to the file.
    Thanks
    Jaianandh V

  • Edit Bex Query in SAP Gui?

    Hi,
    Anyone know if it is possible to edit a Bex Query in the SAP Gui? For instance with a T-code or Program in SE38? Having problem with my Bex fontend and am not allowed to install patches on this computer. Only need to remove on Free charracteristic.
    Thanks,
    Martin

    Hi Martin,
    I don't think it is possible. I never heard of opening Query other than Query designer. I think best option will be to fix your computer and install patch.
    Regards,
    Kams

  • Change standard SAP GUI for HTML theme to portal theme

    Dear Experts,
    I have created transaction code for SAP GUI HTML for  a custom report program developed in SE38.
    We have created a URL iView in Websphere enterprise portal. The Transaction executing well and there are no issues.
    But the SAP GUI HTML uses SAP Standard theme. I wanted to change the input field background color which is similar to our portal theme.
    Please let me know , how to change the theme of the standard SAP GUI for HTML.
    Thanks in advance.
    any solution will be greatly appreciated.
    Best regards,
    Prabhu

    Hi Sushil,
    Could you please elaborate in detail with steps.
    Thanks for your help .. Greatly appreciated...
    Best regards,
    Prabhu

  • Create an install CD for SAP GUI Windows Patch Level 4

    Hello,
    I would like to create an Install CD for SAP GUI 720 for Windows with Patch Level 4
    so that my user just install once.
    From the market place, I can download Patch Level 0 distribution.
    It is a Zip file that I can extract and use to generate an Install CD.
    But it is LVL 0 only,
    Then, I can download the Patch 4 executable file.
    Unfortunately, the only way I can go to patch 4 is to execute this new program on my installed GUI.
    Is there a way to generate, or even better download, an install  CD that would contains the PL4?
    so that the user just does one install and does not have to run the patch executable after the install.
    If yes, how can I do it?
    Thanks in advance for your help.

    > No my idea was to generate a CD with PL 4 now.
    You can do that using an installation server, you can create a single .EXE file and burn in to a CD for the user.
    > We test it and stand to it for a long time.
    We tried to do that in the last 15 years we're doing SAP, unfortunately there come always situations, where you don't get around installing patches on PCs. This is especially true for BW, where the tools used depend (more or less) to the patchlevel of the backend system.  However,
    > Would someone know where I could get the release date of these compilation CD fro 720 Windows GUI?
    The patch dates/weeks are listed in "Note 1053737 - Expected release dates for SAP GUI for Windows & ITS Patches", however, they are estimates.
    I would assume that the next compilation will be released with Business Suite 7i2010 (or whatever name it is actually). Those compilation CDs are neverless always at least one patch behind the actual one.
    Markus

  • How to download free SAP GUI front end for ECC6

    Hi,
    How to download free SAP GUI -Front end for ECC 6
    SD

    Ask your Basis people and they  can give it to u, Its take almost 1 GB  of Space or even u can try in the internert for SAP GUI version for free download. SAP GUI for Windows 7.20 patchlevel  is now available.
    You may download it from the SAP Service Marketplace here.
    Best Regards,

  • Re:- SAP GUI - Need to understand what is installed as part of GUI

    Dear experts,
    I need to understand what is installed as part of the SAP - GUI installation for windows  like what are all the ocx/ dlls installed, ini files, changes in services files and change in registry things like that.
    Does any one has the details. Please help
    Warm Regards

    Hi,
    Please check this links.
    This might solve your queries.
    http://www.oit.duke.edu/techsupport/sap/sapgui/win/index.html
    http://web.mit.edu/sapr3/sw_dist/winstruct.html
    http://info.cba.ksu.edu/mchaney/sap.doc
    Please reward if useful
    Thanks.

  • Want to download SAP GUI

    Hi,
    I  have isntalled NWDS CE 7.1 in my system. Now i want to install SAP GUI to practice webdynpro for java. Can anyone tell me where i can download sap gui?
    which version is suitable for NWDS 7.1 (Compatible)
    Regards,
    Padmalatha.K

    Hi Matthias,
    it is not possible to connect to a CE system via SAP GUI. For administration and configuration use the NetWeaver Administrator http://host:port/nwa. For web application development use the NetWeaver Developer Studio which you need to install on your client machine, for Visual Composer application development you can use the web front end http://host:port/VC.
    Regards,
    Kevin

  • Mass change of sap gui theme

    hi,
    we need to change sap gui themes for all users. is it possible mass theme change for gui?
    thank you in advance

    Hello
    please pay attention to the note
    [1233328|https://service.sap.com/sap/support/notes/1233328]
    This will help you.
    br
    Sven

  • SAP GUI gets closed when executing the transactions SE38 and SE80

    Hi SAP Gurus,
    I am new to this forum and SAP too. I am part of BASIS.
    This issue is regarding transactions SE38 and SE80. The system gets closed when trying to open the transactions SE38 and SE80.
    I checked the authorizations, it is fine. The copy user works well.
    Then found that it may be regarding  SAP GUI.
    For solution, referred: https://scn.sap.com/thread/2099868
    Steps:
          Uninstall the sapgui
          Manualluy delete the folders related to them like
             X:\users\YourID\Documents\SAP
             X:\users\YourID\AppData\Local\SAP
             X:\users\YourID\AppData\Roaming\SAP\Common
          Re-install using the latest patch available
    Even after doing this the issue still persists.
    Over here one thing is clear that it is not regarding authorization and all because the copy user works fine. For the system,  administrator credentials are working well but only the person's user ID faces this issue.
    Someone please help me out in this regard.
    Thanks in advance.

    Hi Shiva,
         Which GUI Version you are using...Please use latest 7.3 Version to avoid any issues related to GUI logon....
    Can you clarify these doubts...
    1. Are you able to use remaining Tcodes except SE38 and SE80..?
    2. Are you getting  any error before close the session?
    3. If particular user id is facing this issue, then use that credentials and try to check from your end whether you are able to open that tcodes or not..
    Regards
    Santosh K

  • Configure Acrobat Reader tool buttons when Reader is started inside SAP GUI

    Hi,
    we have deployed some registry keys in "HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AVGerneral\cToolbars" to show some tool buttons in Acrobat Reader. This works fine when starting Acrobat Reader as standalone application.
    But in SAP GUI the Acrobat Reader starts with default tool buttons.
    Is there a chance to configure the Acrobat Reader tool buttons when the Reader is started inside a SAP GUI session?
    thanks
    Albert

    These are the settings in the registry to show/hide tools in the Adobe Reader 9 toolbar.
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cToolbars\cBasicTools\cInternalButtons]
    "a0"="Select"
    "a1"="Hand"
    "a2"="Zoomin"
    "a3"="ZoomDrag"
    "a4"="endBasicToolsGroup"
    "a5"="ZoomViewOut"
    "a6"="ZoomViewIn"
    "a7"="ZoomTo"
    "a8"="Zoom100"
    "a9"="FitWidth"
    "a10"="FitPage"
    "a11"="endZoomTypeGroup"
    "a12"="PanAndZoom"
    "a13"="Loupe"
    "a14"="SelectGraphics"
    "a15"="endZoomToolsGroup"
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cToolbars\cCommenting\cStamp]
    "bInternalExpanded"=dword:00000001
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cToolbars\cFile\cInternalButtons]
    "a1"="Print"
    "a2"="Save"
    "a3"="SaveFileAs"
    "a4"="FindDialog"
    "a5"="endDialogGroup"
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cToolbars\cPageDisplay\cInternalButtons]
    "a0"="endLayoutZoomTypeGroup"
    "a1"="Fullscreen"
    "a2"="endPageLayoutViewGroup"
    "a3"="RotateCCW"
    "a4"="RotateCW"
    "a5"="Wireframe"
    When starting Adobe Reader standalone this works fine.
    But starting Adobe Reader from a SAP GUI Session (for example in transaction CV03N) the default tools will be shown.
    Is there a chance to configure the Acrobat Reader tool buttons when the Reader is started inside a SAP GUI session?
    thanks
    Albert

  • MAC + SAP GUI

    Boa tarde,
    Estou tentando logar mas aparece o seguinte erro:
    Error: partner '85.36.223.XX:3209' not reached
    Thu Feb 10 12:15:26 2011
    Release 710
    Component NI (network interface), version 39
    rc = -10, module nibuf.cpp, line 4634
    Detail NiBufIConnect: connection pending after 10000ms
    System Call connect
    Error No 36
    'Operation now in progress'
    Alguem pode me ajudar??
    Grata,
    Flavia Basile

    Boa tarde Flavia.
    No SAP GUI Java (for MAC) você pode criar a STRING de conexão direto. É a maneira mais fácil.
    Se o SAP GUI Java já está instalado, siga os passos:
    1) Abra o SAP GUI;
    2) Clique em NEW e informe a DESCRIPTION;
    3) Vá para aba ADVANCED e marque a opção EXPERT MODE;
    4) Monte a STRING da seguinte maneira:
    4.1) Se o servidor estiver usando Load Balancing a string ficará assim:
    conn=/M/(IP_Address_Message_Server)/S/36(system_number)/G/(nama_group)
    4.2) Se o servidor NÃO estiver usando Load Balancing a string ficará assim:
    conn=/H/(IP_Address_server_SAP)/S/32(system_number)
    5) Salve e tente conectar.
    Por exemplo, no meu SAP GUI Java (MAC OS) minha string ficou assim:
    conn=/H/10.777.10.777/S/3200
    Minha release do SAP GUI é SAPGUI7.2rev4.
    Espero ter ajudado.
    Abs.
    Douglas Sant'Ana Santos
    Edited by: Douglas SantAna Santos on Mar 1, 2011 9:07 PM

Maybe you are looking for

  • Moving files in Content and Structure View hangs on Long Running Operation Status window

    Hello, I have the following issue in a site collection: when I go to site content and structure and browse to a document library, and I select multiple documents, click actions --> move and give the target destination, the screen keeps hanging in Lon

  • How do I make the plugin run automatically when a photo is imported?

    I am trying to write a new plugin where the metadata will be automatically added to the photo when I import the photo in the Lightroom. How do I make the plugin run automatically when a photo is imported? Thanks for  your help! Regards, Prosenjit

  • Opera Mini Video Quality

    Hi All, I use a BB 9360 Curve 3G and at times I use Opera Mini which is an amazing browser however when I watch youtube videos on it the quality of the video is pathetic as compared to the video quality when I stream videos on the BIS browser?? Pleas

  • After implementing Note 992032 getting errors in Bex workbook

    Hi All, After Implementing the note 992032 (You must first implement Notes 932065, 935140, 948389, 964580 and 969846, which provide information about using transaction SNOTE. Otherwise, problems and syntax errors may occur when you deimplement some n

  • Flash Player audio setting in Win'7 Volume Control

    OS is Win'7, up to date.  Flash Player is 11.4.  Browsers Firefox 15.0.1, Chrome 22, IE 9.  When playing a video on a website, the Flash Player volume setting in Volume Control (Windows Mixer) is set to the maximum, same as my speaker volume.  How ca