BEx Analyzer 3.x language problem with GUI 710

Hi All,
We are having trouble to login to BEx Analyzer 3.x with GUI 710 with English language, even if we set language as EN in the logon pad by default it is logging into Japanese language. But 7.x Analyser is working fine.
We have BI 7.0 and BW 3.5 systems. 
SAP GUI 710 installed with latest available Frontend Patch ( bi710sp10_1000-10004472 , gui710_15-10002995 and bw350gui710_7-10004473 ) and we are using Excel 2003 on XP Professional.
Installed .Net Framework 2.0, Microsoft office patch - office2003-KB907417
Your help is very much appreciated.
Regards,
MKR

Hi,
Are you using different backend systems to connect for 3.x and 7.x? Because the file which prompts the SAP Logon is a common file used by both 3.x and 7.x.It shouldn't behave differently for the same system.
You can uninstall the SAPGui and Front End patch and then reinstall it.
The BW 3.5  patch  8  in SAP GUI 7.10 is released to the SMP now and is available for download.
Rgds,
Murali

Similar Messages

  • BEx Analyzer in different language

    Hi Experts,
    i got my Bex analyzer menus in a different language. How can i change it  ?
    regards
    Abhi

    atlast I solved it !!!
    my System Specification
    GUI 710
    patch level 7
    Microsoft Office 2003
    Language Problem with Bex Analyzer toolbar. (toolbar in German)
    Solution
    Install the 710 GUI using 'SAP ALL' self Extractor icon.
    The underlying problem were with Office 2003 patches.
    downloaded the patch from Microsoft website
    http://www.microsoft.com/downloads/details.aspx?FamilyID=1B0BFB35-C252-43CC-8A2A-6A64D6AC4670&displaylang=en
    Hope this solution helps someone else too...
    Regards
    Abhi

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • Language problem with Safari!

    I can't view the Arabic language correctly with "Safari". I chose the "Arabic (Windows )" as my "Default Encoding". I'm using "Safari 3.0.3 (522.15.5)". My OS is "Windows Vista Ultimate". "Arabic" is my current language for non-unicode programs. I don't have this language problem with neither "Internet Explorer 7" or "Firefox 2.0.0.7". I really like the "Safari Web Browser" but this problem si really annoying. How can I solve it? Thanks!

    Try to run nightly version of Safari: http://nightly.webkit.org or wait for final version of Safari. Localization issues are major known bugs in Safari.

  • BI analyzer in office 2003 problem with toolbar

    HI,
    We have Office 2003 SP3 and sap GUI 710 with new patch and new NET framework 3.5 SP1. When I run Analyzer and it will have open Excel, there is toolbar with Germany description, and when I push button for open, nothing will not is happened. We found only recommendation about patch for excel, but it didn't help me. Please help me with this problem.
    Thanks, Libor

    Hi,
    Please try the following....
    Uninstall:
    .NET Framework, if this is not 2.0
    SAP GUI
    Install:
    .NET Framework 2.0
    SAP GUI 710 - install GUI and Business Explorer
    GUI path 11
    BI Add - on for GUI "bi710sp09_900-10004472"
    Other Way:
    Applying the patch attached to the OSS Note 1121263 - BEx Analyzer 7.10
    Applying the Microsoft patch : http://support.microsoft.com/kb/908002/
    Rgds,
    Murali

  • Design Problem with GUI sub vi

    Hello community,
    in general, I would like to separate the GUI from the data, but I get
    a problem with this design approach in LabView:
    I often have sub VIs that are supposed to control something.
    Therefore, these VIs consist of a control loop. A GUI window should
    show the regulation process (showing how the tracking error is
    hopefully approaching zero etc.). As I said, this GUI should be a
    separate VI (separate from the control loop VI). Since the GUI has to
    be updated on each sample, it is clear that the GUI VI should be
    inside the control loop, and therefore, it should be a sub VI of the
    control loop VI.
    Now, the problem is that the control loop VI itsself is a sub VI
    because the whole regulation is just a subsystem of the whole program
    (The main VI doesn't have a GUI, but first starts a (GUI) input mask
    for the same reason: separate the GUI from the rest).
    But back to the GUI VI inside the control loop. I must check the 'Show
    Front Panel When Called' option. But I can't check the 'Close
    Afterwards if Originally Closed' option since the GUI VI would appear
    and disappear in the control loop - according to the loop's sample
    rate. However, if I don't check the 'Close Afterwards if Originally
    Closed' option then the GUI VI will continue to show, even after the
    control process is finished.
    So in other words: I need the possiblity to close the GUI VI
    programatically, after the control process is finished.
    Any ideas?
    Regards
    Johannes

    Hi tmh,
    thanks for your answer
    On Tue, 11 Nov 2003 10:26:32 -0600 (CST), tmh wrote:
    >I think you're on the wrong track trying to put your 'GUI VI' inside
    >your control loop. It might be a better design to have the control and
    >GUI handled by separate loops and use an appropriate method to pass
    >data between the two, e.g. a global variable to pass the setpoint from
    >GUI to control...
    I try to avoid globals. Now, suppose I had multiple unrelated control
    loops. I had to suppose a global variable for each of these
    subsystems. I already use globals for the GPIB device IDs. I wouldn't
    like more.
    >and a queue to pass readings from control to GUI. In
    >fact, you could even split the GUI into two loops: one to read user
    >input from the front pa
    nel controls and one to display data returned
    >by the control loop.
    But if I split the GUI: How can I view them simultaneously? The user
    must see input and output simultaneously, in one window.
    >You may find it's more convenient to make the GUI
    >the top-level VI and make the control loop a subVI of that (but
    >outside the GUI loops).
    Your approach sounds interesting. Is there a sample for this
    architecture in the examples?
    Anyway, I have to point out that I have several unrelated GUI windows
    in my application. There is no notion of a main GUI in my application.
    The control loop is just one feature of my application, so it doesn't
    make sense to use the control GUI as the top-level VI. At application
    startup a user input form is displayed (it also has some sort of menu
    selection). But even this window can't be toplevel since it provides
    an Option radio button (that shows and hides controls, accordingly) a
    CONTINUE button, and a STOP button which implies that the input
    form.vi must be
    in a loop.
    The problem is that I can't send messages to windows in LabView as I
    am used to in Win32/VC++.
    Johannes

  • Language problem with my jdbc connection

    Hello,
    i'm having a problem with my jdbc connection.
    the problem is that i'm connecting to MS- Access db the have arabic tables, and columns, it was working fine on a windows XP environment prepared for arabic language, but when i had to move to windows vista it did not work and it gave me an exception.
    i'm using netbeans 6.1 IDE, and the exception is
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3110)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338)
    when i printed the select statement and the exception it gave me:
    SELECT [??? ???????], [??? ??????], [??? ?????], [??? ?????], [????? ???????????] FROM EDU_DIVISION; [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect.
    the question marks are very weird to appear!!!!!!
    here is the code:
    public void edu_branch() {
            sucpy = 0;
            eflag = 0;
            asql = "SELECT [\u0643\u0648\u062F \u0627\u0644\u062C\u0627\u0645\u0639\u0629], [\u0643\u0648\u062F \u0627\u0644\u0643\u0644\u064A\u0629], [\u0643\u0648\u062F \u0627\u0644\u0642\u0633\u0645], [\u0643\u0648\u062F \u0627\u0644\u0634\u0639\u0628\u0629], [\u0627\u0633\u0645 \u0627\u0644\u0634\u0639\u0628\u0629], [\u0627\u0633\u0645 \u0627\u0644\u0634\u0639\u0628\u0629 \u0628\u0627\u0644\u0627\u0646\u062C\u0644\u064A\u0632\u064A\u0629], [\u0627\u0644\u0643\u0648\u062F \u0627\u0644\u0645\u062E\u062A\u0635\u0631] FROM EDU_BRANCH;";
            Connection connection;
            Statement statement;
            try {
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                connection = DriverManager.getConnection("jdbc:odbc:info");
                System.out.println("Connection to Access file is created...");
                statement = connection.createStatement();
                statement.execute(asql);
                System.out.println("Executing query : " + asql);
                aset = statement.getResultSet();
                if (aset != null) {
    //------------------------------Oracle operations--------------------------------------------------------------------                  
                    while (aset.next()) {
        can you help me please

    arabic language
    SELECT [??? ???????], [??? ??????], [??? ?????], [??? ?????], [????? ???????????] FROM EDU_DIVISION; >[Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect.
    the question marks are very weird to appear!!!!!!It failed to understand your unicode sql.
    it was working fine on a windows XP environment prepared for arabic language, but when i had to move to windows vista it did not workStrange. Maybe you need to compare the differences of some system properties on both hosts, for instance, sun.io.unicode.encoding, file.encoding, user.region, and so on.

  • JDeveloper Problem with GUI

    Hi All,
    I'm running JDev 3.1 on Win2000, and I'm having a bit of a problem with redraws of the GUI.
    When I click anywhere on the JDev GUI and trigger and action that involves a GUI redraw the little piece of the GUI under the mouse pointer graphic is not redrawn. It does not effect the functionality but it is annoying and will make the other developers I work with less keen about using it.
    Does anyone else have this problem? Is it a JDev or Win2k problem?
    Cheers
    d

    Probably an issue with the JRE used by JDev. on Win 2k. Have you tried 3.2x? I haven't seen that type of issue with it on Win 2k.

  • Discoverer Viewer Locale language - problems with data retrieved

    Hi all, I have a very strange problem.
    I'm using Discoverer Viewer 10g and when I connect to the same eul/database using Locale: Locale retrieving from browser, I see all my data different from "0" into my report; if I choose Greek as Greek's language I see ONLY "0" as data.
    All the queries for the reports are always the same, but something has problems with the language chosen.
    This doesn't happen, for example if I choose another language (Italian or French for example), but ONLY with Greek !!!!
    Anyone have had a similar problem in the past ?
    Thanks in advance
    Alessandro

    It appears as though there is a general JDBC problem. Please make sure your JDBC client is up to date with the Server. We have seen data conversion problems when there was a mismatch.

  • Language problems with std reports

    Dears gurus,
    We are facing some problems with standard reports due to translations...
    We have 4 languages actives at our ERP System, DE, EN, ES and PT... The completation Language is EN in all cases...
    The SMLT Import Logs for both languages (ES and PT) and completation with EN are not showing errors, but if we import at last the Language ES, the reports runs OK with logon language ES but with PT as logon language all texts are showed in DE, even that the completatin language is EN. If we re import PT language the reports runs OK with logon language PT but with ES as logon language all texts are showed in DE...
    Had anyone faced the same problem and solve it?
    Thanx a lot!!!

    Garth, we found that the reports with problem was created or provided by SAP trough Report Painter or Report Writer.
    We can solve the problem recreating the "Report Group" in the logon languaje that works bad. To do this you have to find in which Report Group  is the Report that you are running and using transaction GR52 complete attributes for this group, save (Logged in with the language that shows the problem)  and the problem is solved.
    I hope this helps you.
    Thanx
    Regards
    MJ

  • Language problem with streets in Brussels

    Dear,
    I have a problem with the Maps application on my Nokia 3710.
    Street names in Brussels (Belgium) are only available in Dutch. The equivalent name in French is between brackets, but it is impossible to search the street using the French version. This is very frustrating, because you don't always know the Dutch equivalent name of a street everyone - including the expats - calls by its French version (Brussels is 90% French-speaking.)
    How can I fix this?
    Many thanks in advance

    hi there,
    I just tried "boucher bruxelles" and got "beenhouwerstraat (rue des bouchers) brussel (bruxelles)",
    so it seems to work perfect with search. Shouldn't be a problem that dutch comes first in the resulting bilingual result.

  • Problems with install 710 Patch level 15

    Hi,
    i have installed patchlevel 15 of GUI 710. Istallation was OK. When i check the Installation,
    with tweak SAP GUI i get two error:
    File not found: C:\Programme\Java\jre6\lib\ext\VERSION.ini
    and
    File not found: C:\Programme\Java\jre6\lib\ext\VCTK.ini
    Has enyboby installed patch level 15 and get the same error.
    How can i solve this problem?
    thanks.
    Regards, Dieter

    Dieter:
    If your running Windows 7, this patch will not work however 14 will.  The updated patch will be available 1st quarter of this year from what my understanding is.

  • Problem With GUI ( Who can help me! )

    Hallo,
    It�s a very simple program to See the Clock on a panel. The program works well, but if I want to include a GUI to my program, it don�t want. I use runable action and I think that is be the problem.
    Here below you can see the code�s. I�m sure there is someone who can help me.
    Thanks a lot,
    Seyyed
    The code:
    public class Clock_maken extends java.applet.Applet
    implements Runnable {
    public volatile Thread clockThread = null;
    JLabel           Datuum_label;
    DateFormat      formatter;
    Locale           locale;
    Date           currentDate;
    String          today;
    public void init(){ 
    locale = Locale.getDefault();
    Datuum_label = new JLabel("date");
    public void start() {       
    Datuum_label.setForeground(Color.black);
    add(Datuum_label);
    if(clockThread == null) {
    clockThread = new Thread(this);
    clockThread.start();
    public void run() {
         Thread myThread = Thread.currentThread();
         while (clockThread == myThread) {
         currentDate = new Date();
    formatter =                     DateFormat.getDateTimeInstance(DateFormat.FULL,
              DateFormat.MEDIUM, locale);
    today = formatter.format(currentDate);
    Datuum_label.setText(today);
    try {
    Thread.sleep(1000);
    } catch (InterruptedException e){ }
    public void stop() {clockThread = null;}
    public static void main(String[] args){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
    lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Clock_maken phases = new Clock_maken();
    phases.init();
    phases.start();
    lunarPhasesFrame.pack();
    lunarPhasesFrame.setVisible(true);
    Now i want to create a GUI like folowing, but it dont work. Do u know wat is de probleem of mijn prograam.
    private static void createAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
         /*     JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
              lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    */ Clock_maken phases = new Clock_maken();
         /*     phases.init();
              phases.start();
              lunarPhasesFrame.pack();
         lunarPhasesFrame.setVisible(true);*/
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Continued here, with formatted code:
    http://forum.java.sun.com/thread.jspa?threadID=725022

  • Language problem with aperture

    Hi all,
    I am new in aperture.
    After installing the software (downloaded from appstore), the software is in english except keywords.
    All the standard keywords proposed by aperture are in french.
    I removed the software, and even deleted preferences files and any other related file to aperture (except my library which was still in the pictures file).
    After that I made sure english language was on top of the list in preferences and removed any other language.
    Reboot my computer and reinstall aperture from the Purchase tab in the appstore.
    Finally, keywords are still in french.
    did anyone already encounter this kind of problem ?
    Btw, I am using a french canadian keyboard but I don't think this has an impact on the laguage of the soft.
    Thx !
    Ben

    All the standard keywords proposed by aperture are in french.
    Where do you see "All the standard keywords proposed by aperture "? In the Keywords HUD? The Keywords Controls?
    As Frank Caggiano says:
    Keywords are on a per library basis, the keyword file is stored in the library package and if you create a new empty library you will start out with a minimal default set of keywords.
    So a new Aperture library shoul start out with default keywords sets in the language you set in the system preferences. But an existing library will keep the keyword sets that were used, when you created the library. Also, any image you already imported will keep the keywords in the original language. And if you import images already tagged with keywords in a different language, the keywords will not change the language according to the new system settings.
    The defaukt keyword sets  shown in the Keywords HUD and any custom keywords you create are stored in the library, but not the default button sets of the Keyword Controls. So where are you seeing the keywords in French?
    Regards
    Léonie

  • Thai Language problem with informix ODBC

    I have a problem about crystal report connected informix database.
    It displays Thai language incorrectly such as ºÃÔÉÑ· ˹Öè§ÈÙ¹Âì˹Öè§.
    Informix ODBC version is IBM Informix 3.82 32 BIT and crystal report version 11.
    Please help me to solve this problem.
    Thank you

    Please re-post if this is still an issue to the Data Connectivity - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

Maybe you are looking for

  • HR runtime error on agent login/logout

                       Good afternoon. Has anyone run in a a runtime error when running agent login/logout reports? I am unable to run this report. a runtime error occurred while executing the inquiry. i know there used to be bugs on this but. uccx, ha,

  • Error When I run my tomcat server.....

    org.xml.sax.SAXParseException: Element type "servlet" must be declared. I Have Included headder.... please find the attached web.xml file. <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Applic

  • Error in Personnel Calculation Rule XPPF

    Hi, Under PCR XPPF, I was trying to create processing link to wage type /803 for that I had copied it to ZP10 (my variant) but when I checked it, system was showing error "type of operation is different from Rule type" for the default element under /

  • Ipad update

    I tried to upgrade my iPad to iOS7 last night and  when attempting to turn device on all we get is an iTune icon and picture of USB cable and nothing works. Any ideas how to fix this. I connect the cable to my Asus windows 8 notebook and nothing happ

  • Itunes is completely frozen,can't do anything,any solutions?

    Hi everyone,my itunes used to work very well but now when I open it,it doesn't appear any message but I can't do anything,I can't touch any category with my mouse,so to sum up the page Itunes is completely frozen,please help me out!!!!!!!!!!!