New GUI

HI all;
We just have BI 7.0; but when I opened the query designer I still saw the old Query designer because I had GUI 640 ; so I installed new GUI 7.1 and got the new look of Query designer fine but I don't see a button to run the query on BEx analyzer. Only option I have is to Execute the query but it goes to the web.
The other issue I have is when I go to the BEx analyzer via RRMX the excel window opens but don't see any extra menu we used have to open the query save it...and etc.
Does someone have this issue before?
Thank you.

Hi Nitik,
  Follow these steps. It should help.
1)  Install Dot net framework Version 2 (Minimum required is 1.1)
2)  Install Microsoft Visual J# .Net
http://www.microsoft.com/downloads/details.aspx?FamilyId=E3CF70A9-84CA-4FEA-9E7D-7D674D2C7CA1&displaylang=en
3) Apply OSS Note 1025122 – Microsoft Office 2003 Update
http://www.microsoft.com/downloads/details.aspx?FamilyId=1B0BFB35-C252-43CC-8A2A- 6A64D6AC4670
4) Install Sap GUI 7.10 (Select both GUI and Business Explorer during Installation)
5) Upgrade the SAP GUI to Patch level 3
Rgds,
Abhishek

Similar Messages

  • Using my new GUI component in an applet :Help!!!

    I am seeking help for the following
    Define class MyColorChooser as a new component so it can be reused in other applications or applets. We want to use the new GUI component as part of an applet that displays the current Color value.
    The following is the code of MyColorChooser class
    * a) We define a class called MyColorChooser that provides three JSlider
    * objects and three JTextField objects. Each JSlider represents the values
    * from 0 to 255 for the red, green and blue parts of a color.
    * We use wred, green and blue values as the arguments to the Color contructeur
    * to create a new Color object.
    * We display the current value of each JSlider in the corresponding JTextField.
    * When the user changes the value of the JSlider, the JTextField(s) should be changed
    * accordingly as weel as the current color.
    * b)Define class MyColorChooser so it can be reused in other applications or applets.
    * Use your new GUI component as part of an applet that displays the current
    * Color value.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    public class MyChooserColor extends JFrame{
         private int red, green, blue;  // color shade for red, green and blue
         private static Color myColor;  // color resultant from red, green and blue shades
         private JSlider mySlider [];      
         private JTextField textField [];
    // Panels for sliders, textfields and button components
         private JPanel mySliderPanel, textFieldPanel, buttonPanel;
    // sublcass objet of JPanel for drawing purposes
         private CustomPanel myPanel;
         private JButton okButton, exitButton;
         public MyChooserColor ()     
              super( "HOME MADE COLOR COMPONENT; composition of RGB values " );
    //       setting properties of the mySlider array and registering the events
              mySlider = new JSlider [3];
              ChangeHandler handler = new ChangeHandler();
              for (int i = 0; i < mySlider.length; i++)
              {     mySlider[i] = new JSlider( SwingConstants.HORIZONTAL,
                               0, 255, 255 );
                   mySlider.setMajorTickSpacing( 10 );
                   mySlider[i].setPaintTicks( true );
    //      register events for mySlider[i]
                   mySlider[i].addChangeListener( handler);                     
    //      setting properties of the textField array           
              textField = new JTextField [3];          
              for (int i = 0; i < textField.length; i++)
              {     textField[i] = new JTextField("100.00%", 5 );
                   textField[i].setEditable(false);
                   textField[i].setBackground(Color.white);
    // initial Background color of each slider and foreground for each textfield
    // accordingly to its current color shade
              mySlider[0].setBackground(
                        new Color ( mySlider[0].getValue(), 0, 0 ) );
              textField[0].setForeground(
                        new Color ( mySlider[0].getValue(), 0, 0 ) );           
              mySlider[1].setBackground(
                        new Color ( 0, mySlider[1].getValue(), 0 ) );
              textField[1].setForeground(
                        new Color ( 0, mySlider[1].getValue(), 0 ) );
              mySlider[2].setBackground(
                        new Color ( 0, 0, mySlider[2].getValue() ) );
              textField[2].setForeground(
                        new Color ( 0, 0, mySlider[2].getValue() ) );
    // initialize myColor to white
              myColor = Color.WHITE;
    // instanciate myPanel for drawing purposes          
              myPanel = new CustomPanel();
              myPanel.setBackground(myColor);
    // instanciate okButton with its inanymous class
    // to handle its related events
              okButton = new JButton ("OK");
              okButton.setToolTipText("To confirm the current color");
              okButton.setMnemonic('o');
              okButton.addActionListener(
                   new ActionListener(){
                        public void actionPerformed (ActionEvent e)
                        {     // code permetting to transfer
                             // the current color to the parent
                             // component backgroung color
                             //System.exit( 0 );     
    //      instanciate exitButton with its inanymous class
    //      to handle its related events           
              exitButton = new JButton("Exit");
              exitButton.setToolTipText("Exit the application");
              exitButton.setMnemonic('x');
              exitButton.addActionListener(
                        new ActionListener(){
                             public void actionPerformed (ActionEvent e)
                             {     System.exit( 0 );     
    // define the contentPane
              Container c = getContentPane();
              c.setLayout( new BorderLayout() );
    //     panel as container for sliders
              mySliderPanel = new JPanel(new BorderLayout());
    //      panel as container for textFields           
              textFieldPanel = new JPanel(new FlowLayout());
    //      panel as container for Jbuttons components           
              buttonPanel = new JPanel ();
              buttonPanel.setLayout( new BoxLayout( buttonPanel, BoxLayout.Y_AXIS ) );
    //add the Jbutton components to buttonPanel           
              buttonPanel.add(okButton);
              buttonPanel.add(exitButton);
    //     add the mySlider components to mySliderPanel
              mySliderPanel.add(mySlider[0], BorderLayout.NORTH);
              mySliderPanel.add(mySlider[1], BorderLayout.CENTER);
              mySliderPanel.add(mySlider[2], BorderLayout.SOUTH);
    //add the textField components to textFieldPanel     
              for (int i = 0; i < textField.length; i++){
                   textFieldPanel.add(textField[i]);
    // add the panels to the container c          
              c.add( mySliderPanel, BorderLayout.NORTH );
              c.add( buttonPanel, BorderLayout.WEST);
              c.add( textFieldPanel, BorderLayout.SOUTH);
              c.add( myPanel, BorderLayout.CENTER );
              setSize(500, 300);          
              show();               
    //     inner class for mySlider events handling
         private class ChangeHandler implements ChangeListener {          
              public void stateChanged( ChangeEvent e )
    // start by collecting the current color shade
    // for red , forgreen and for blue               
                   setRedColor(mySlider[0].getValue());
                   setGreenColor(mySlider[1].getValue());
                   setBlueColor(mySlider[2].getValue());
    //The textcolor in myPanel (subclass of JPanel for drawing purposes)
                   myPanel.setMyTextColor( ( 255 - getRedColor() ),
                             ( 255 - getGreenColor() ), ( 255 - getBlueColor() ) );
    //call to repaint() occurs here
                   myPanel.setThumbSlider1( getRedColor() );
                   myPanel.setThumbSlider2( getGreenColor() );
                   myPanel.setThumbSlider3( getBlueColor() );
    // display color value in the textFields (%)
                   DecimalFormat twoDigits = new DecimalFormat ("0.00");
                   for (int i = 0; i < textField.length; i++){
                        textField[i].setText("" + twoDigits.format(
                                  100.0* mySlider[i].getValue()/255) + " %") ;
    // seting the textcolor for each textField
    // and the background color for each slider               
                   textField[0].setForeground(
                             new Color ( getRedColor(), 0, 0 ) );
                   mySlider[0].setBackground(
                             new Color ( getRedColor(), 0, 0) );
                   textField[1].setForeground(
                             new Color ( 0, getGreenColor() , 0 ) );
                   mySlider[1].setBackground(
                             new Color ( 0, getGreenColor(), 0) );
                   textField[2].setForeground(
                             new Color ( 0, 0, getBlueColor() ) );
                   mySlider[2].setBackground(
                             new Color ( 0, 0, getBlueColor() ) );
    // color of myPanel background
                   myColor = new Color (getRedColor(),
                             getGreenColor(), getBlueColor());
                   myPanel.setBackground(myColor);               
    // set methods to set the basic color shade
         private void setRedColor (int r){
              red = ( (r >= 0 && r <= 255) ? r : 255 );
         private void setGreenColor (int g){
              green = ( (g >= 0 && g <= 255) ? g : 255 );
         private void setBlueColor (int b){
              blue = ( (b >= 0 && b <= 255) ? b : 255 );
    // get methods (return the basic color shade)
         private int getRedColor (){
              return red ;
         private int getGreenColor (){
              return green;
         private int getBlueColor (){
              return blue;
         public static Color getMyColor (){
              return myColor;
    // main method                
         public static void main (String args []){
              MyChooserColor app = new MyChooserColor();
              app.addWindowListener(
                        new WindowAdapter() {
                             public void windowClosing( WindowEvent e )
                             {     System.exit( 0 );
    // inner class CustomPanel for drawing purposes
         private class CustomPanel extends JPanel {
              private int thumbSlider1 = 255;
              private int thumbSlider2 = 255;
              private int thumbSlider3 = 255;
              private Color myTextColor;
              public void paintComponent( Graphics g )
                   super.paintComponent( g );
                   g.setColor(myTextColor);
                   g.setFont( new Font( "Serif", Font.TRUETYPE_FONT, 12 ) );
                   DecimalFormat twoDigits = new DecimalFormat ("0.00");
                   g.drawString( "The RGB values of the current color are : "
                             + "( "     + thumbSlider1 + " , " + thumbSlider2 + " , "
                             + thumbSlider3 + " )", 10, 40);
                   g.drawString( "The current background color is composed by " +
                             "the folllowing RGB colors " , 10, 60);
                   g.drawString( "Percentage of RED from slider1 : "
                        + twoDigits.format(thumbSlider1*100.0/255), 10, 80 );
                   g.drawString( "Percentage of GREEN from slider2 : "
                        + twoDigits.format(thumbSlider2*100.0/255), 10, 100 );
                   g.drawString( "Percentage of BLUE from slider3 : "
                        + twoDigits.format(thumbSlider3*100.0/255), 10, 120 );
    // call to repaint occurs here     
              public void setThumbSlider1(int th){
                   thumbSlider1 = (th >= 0 ? th: 255 );
                   repaint();
              public void setThumbSlider2(int th){
                   thumbSlider2 = (th >= 0 ? th: 255 );
                   repaint();
              public void setThumbSlider3(int th){
                   thumbSlider3 = (th >= 0 ? th: 255 );
                   repaint();
              public void setMyTextColor(int r, int g, int b){
                   myTextColor = new Color(r, g, b);
                   repaint();
    //The following method is used by layout managers
              public Dimension getPreferredSize()
              {     return new Dimension( 150, 100 );
    The following is the code of application that tests the component
    //Application used to demonstrating
    // the homemade GUI MyChooserColor component
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class ShowMyColor extends JFrame {
         private JButton changeColor;
         private Color color = Color.lightGray;
         private Container c;
         MyChooserColor colorComponent;
         public ShowMyColor()
         {     super( "Using MyChooserColor" );
              c = getContentPane();
              c.setLayout( new FlowLayout() );
              changeColor = new JButton( "Change Color" );
              changeColor.addActionListener(
                        new ActionListener() {
                             public void actionPerformed( ActionEvent e )
                             {     colorComponent = new MyChooserColor ();
                                  colorComponent.show();
                                  color = MyChooserColor.getMyColor();
                                  if ( color == null )
                                       color = Color.lightGray;
                                  c.setBackground( color );
                                  c.repaint();
              c.add( changeColor );
              setSize( 400, 130 );
              show();
         public static void main( String args[] )
         {     ShowMyColor app = new ShowMyColor();
              app.addWindowListener(
                        new WindowAdapter() {
                             public void windowClosing( WindowEvent e )
                             {  System.exit( 0 );

    Yes, I want help for the missing code to add in actionPerformed method below. As a result, when you confirm the selected color (clicking the OK button), it will be transferred to a variable color of class ShowMyColor.
    // instanciate okButton with its inanymous class
    // to handle its related events
              okButton = new JButton ("OK");
              okButton.setToolTipText("To confirm the current color");
              okButton.setMnemonic('o');
              okButton.addActionListener(
                   new ActionListener(){
                        public void actionPerformed (ActionEvent e)
                        {     // code permetting to transfer
                             // the current color to the parent
                             // component backgroung color
                             //System.exit( 0 );     
              );

  • Adding Radio button & regular button to selection-screen without new gui

    Hi,
    Is there a way to add a radio button & regular button to a selection-screen without having to create a new gui, status and etc?
    Thanks,
    John

    Hi
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 4(30) TEXT-001 FOR FIELD P_1.
    SELECTION-SCREEN POSITION 1.
    PARAMETERS: P_1 RADIOBUTTON GROUP R1 DEFAULT 'X'.
    SELECTION-SCREEN END   OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 4(30) TEXT-002 FOR FIELD P_2.
    SELECTION-SCREEN POSITION 1.
    PARAMETERS: P_2 RADIOBUTTON GROUP R1.
    SELECTION-SCREEN END   OF LINE.
    Where the symbols text TEXT-001 and TEXT-002 have the label for the radiobuttons
    Max

  • New GUI 7.40 SAP printout problem

    Hello Expert,
    Recently we updated new GUI 7.40.When we are taking print out system is not giving any output. Pls find below spool request for printout,if any outdated please let us know how to resolve this.
    (3:42:37 PM) Number of processors: 2
    (3:42:37 PM) Icon DLL loaded.
    (3:42:37 PM)
    (3:42:37 PM) Network Communication via SAP-NiLib
    (3:42:37 PM) Hostname: XXXXNB0905012
    (3:42:37 PM) IP Address: 10.201.9.73
    (3:42:37 PM)
    (3:42:37 PM) SAPLPD version 740 Final Release.7400.1.0.32
    (3:42:37 PM)
    (3:42:37 PM) OS-Info: version = 6.1, build = 0/7601, text = Service Pack 1
    (3:42:37 PM) (C) Copyright 1992-2014 SAP AG
    (3:42:37 PM)
    (3:42:47 PM)
    (3:42:47 PM) Receive job for printer \\XXXXPS01\CNIRAD6075_MOB_5L_ENG (Berkeley LPD protocol / RFC1179)
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) Job 000pdcQb.KED for user srinivas.j.I queued.
    (3:42:47 PM) Start printing job 000pdcQb.KED on printer \\XXXXPS01\CNIRAD6075_MOB_5L_ENG
    (4:25:15 PM) Error: Unable to start print job, Windows rc = -1, Error = The operation completed successfully.
    (4:25:15 PM) Error: BG: saplpd_open_dc failed, msg = 808 SAPLPD:Windows Problem, siehe SAPLPD Protokoll

    Hi ,
    Please follow the below steps,
    1) Go to transaction SPAD
    2 Just click " Enter key"
    3) And the screen will appear below and click " change"  and select the printer name you want to change for exp:" LP01"
    Now you can able to see the option called "Access Method"
    Host Spool Access Method: F or G: Printing on Front End Computer
    Host printer: __DEFAULT
    Please remember in above step its two times under-scope then DEFAULT
    and SAVE the entry by clicking button SAVE which I marked red colour.
    Kindly let me know if you need any other details.
    Thanks,
    Brindavan

  • BEx Browser in New GUI

    Hi,
    In GUI 6.4 we have BEx Browser, but in New GUI 7.1 BEx Browser is not available, so in case if we want to use the BEx Browser in GUI 7.1 how can we use it.
    In our system we are not using WAD and are not connected to Portals, so how can i use the BEx Browser with the NEW GUI.
    Thanks,
    AM

    Hi,
    in GUI 7.10 the 3.x-Tools are included as add-in of the Front-End so install this and you get your old BexBrowser!
    But as mentioned it works only for 3.x-Workbooks!
    CU

  • New GUI Buttons

    Hi,
    Besides the existing GUI buttons in Labview, are there any place where new GUIs can be created or downloaded?
    Thanks alot
    From
    Don

    You can easily make your own using the control editor, e.g. cut& paste buttons from any existing windows program (e.g. MS Office) using a screen capture utility and an image editor.
    Also have a look at the openG button controls (see attached image). You can download and install it via the OpenG Commander.Message Edited by altenbach on 03-04-2005 08:31 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    openG-Buttons.gif ‏5 KB

  • Requesting all for urgent help ...Designing a new GUI for KM docs.

    Hi all,
    As i know the KM docs are opened in a new browser ( IE or Firefox ) can we display them in a sort of GUI which can have limited options like " No File save as ", or "Print " etc, can this be done? Can someone give me a workflow as to how these are fetched and executed in browser and **if i have the JSP scripts for blocking some browser options and keyboard keys where do i write them ?**
    Requesting your help please ,
    Many thanks in advance
    SantoshKumar Adapa
    Edited by: Santosh Kumar Adapa on Mar 25, 2008 7:49 AM

    Hi Sumit,
    Thanks for the reply the blog was a great starter for me, but my primary concern is like when u open a KM doc its displayed in a browser right like IE or Firefox, which has all file options like save as, print etc, now my task is to make the docs available to only a limited no of ppl who can only see them but cannot save it, for this i have been asked to display the KM docs in a new GUI which lacks all these options.I know tht we can use some scripting to block the browser options and disable the keyboard strokes even but i donot know how to integrate these scripts to where and how far is this approach feasable?
    Can you please help me out with this or else suggest me an alternate method of doing this using out KM layouts?
    Thanks in advance
    Santosh

  • Help needed on ALV variant with new GUI screen is created by set PF status

    Hi Gurus,
    I have created a new GUI screen for ALV grid display thru set pf-status, since i need two buttons on application toolbar.
    have been passing parameters to alv_grid_display FM for display-*
    i_save            = 'A'
    is_variant        = gwa_variant
    I have an ALV variant selection paramter on selection screen.
    Please guide me with some pointers on how to implement ALV variant selection thru selection screen.
    Many Thanks,
    Madan

    Hi,
    Search default variant for the report
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING
                i_save     = 'A'
           CHANGING
                cs_variant = i_variant1
           EXCEPTIONS
                not_found  = 2.
    If default variant is found , use it as default.
    Else , use the variant LAYOUT1.
      IF sy-subrc = 0.
        p_var = i_variant1-variant.
      ELSE.
        p_var = 'LAYOUT1'.
      ENDIF.
    endform.                    " SUB_VARIANT_INIT
    *&      Form  SUB_CHECK_PVAR
    Once the user has entered variant, check about its existence
    FORM SUB_CHECK_PVAR.
    If the name of the variable is not blank, check about its existence
    if not p_var is initial.
      clear i_variant.
      i_variant-report = sy-repid.
      i_variant-variant = p_var.
      CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
             EXPORTING
                  I_SAVE     = 'A'
             CHANGING
                  CS_VARIANT = I_VARIANT.
    If no such variant found , flash error message
         if sy-subrc ne 0 .
          message e398(00) with 'No such variant exists'.
         else.
    If variant exists , use the variant name to populate structure
    I_VARIANT1 which will be used for export parameter : IS_VARIANT
    in the function module : REUSE_ALV_GRID_DISPLAY
           clear i_variant1.
           move p_var to i_variant1-variant.
           move sy-repid to i_variant1-report.
         endif.
    else.
       clear i_variant.
    endif.
    ENDFORM.                    " SUB_CHECK_PVAR
    *&      Form  SUB_VARIANT_F4
    Display a list of various variants of the report when the
    user presses F4 key in the variant field
    form SUB_VARIANT_F4.
    i_variant-report = sy-repid.
    Utilising the name of the report , this function module will
    search for a list of variants and will fetch the selected one into
    the parameter field for variants
    CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
           EXPORTING
                IS_VARIANT         = I_VARIANT
                I_SAVE             = 'A'
                I_DISPLAY_VIA_GRID = 'X'
           IMPORTING
                ES_VARIANT         = I_VARIANT1
           EXCEPTIONS
                NOT_FOUND          = 1
                PROGRAM_ERROR      = 2
                OTHERS             = 3.
      IF SY-SUBRC = 0.
        P_VAR = I_VARIANT1-VARIANT.
    ENDIF.
    endform.                    " SUB_VARIANT_F4
    Thanks
    Ashu

  • ESW-520-24P - New GUI?

    We're testing out the ESW series to replace the existing small business series for many of our customers. I was disappointed to see it run the same GUI as the SFE and SGE series switches! It's so clumsy and takes 10x as long to configure. And yes, we modify the clumsy config file offline but it's not that straight forward and always results in some type of error.
    Anybody know when the ESW series switches will run the new GUI that the SF 300-24P new small business series runs? I gotta say, I'm very impressed with that GUI as it seem to collapse all the best features of all 3 previous GUI's together.
    For now, we will plan on sticking with the SF 300 series until the ESW has the updated GUI.
    Thanks
    -robert

    Hi Robert,
    I also really like the new look and feel of the new 300 series.
    We are trying to use a standard look and feel for the GUI on the small business products.
    So the Small Business  Routers, WAPs.Switches, Security appliances  that are coming online and are online for sale at the moment,  all have the  same look and feel.  I think the ESW switch, because it is really only used on UC5XX will stay the way it is, I have heard no mention of upgrading it's GUI.
    Anyway currently, the ESW family of switches  has an advantage of being managed by Cisco Configuration Assistant (CCA).
    Robert, for other folks that look at this posting,  I will include a link below to the newer 300 series product comparison pages.
    As you will have noticed already, the 300 series is generations ahead of the older  SRW series switches, even allows for Layer 3 routing between VLANs.
    But for consistency of changeover from old part to new part , if you ordered in the past a part number  SRW224G4,   the 300 series replacement is now SRW224G4-K9-XX  (where XX can be UK  NA  EU.......... country code of some kind.)
    http://www.cisco.com/en/US/products/ps10898/prod_models_comparison.html
    regards Dave

  • ITunes DEMANDS a new gui interface... what's with the Excel spreadsheet?!

    So does anyone else agree?
    I'm sick of this LIST thing for my songs. Sure, I can search around for album names and catagory stuff, but I want to custom browse my library VISUALLY, INTERACTIVELY. Perhaps by cover art, or custom art... ALMOST ANYTHING other than SOME DUMB, BORING, SUPER-LONG (now) LIST.
    Other than my vinyl collection, I intend to live in the digital music world. How can the same people who SPEARHEADED the whole gui thing, and visual thing, and icon thing, not come up with anything better than a LONG LIST OF SONG NAMES?
    Does anyone know if Apple (or anyone else writing shareware) is developing or EVEN THINKING of developing / spearheading a GUI for the future of music listening?
    If they are not... I'll tell you, something has gone wrong over there.

    Nodger:
    The other posters are correct - this is not a complaint forum. However, I would still like to offer some constructive advice.
    Stop using the Library as your primary sort and find too. Instead, create and use playlists.
    Making album or artist based playlists is laughably easy - iTunes is even smart enough to title them for you. Select all of the songs (or even some of them) from the same album, and from the file menu, select New Playlist from Selection. iTunes will automatically generate a playlist with the title of the album. Select a bunch of songs from the same artist (the ID3 tag for artist has to be identical in all of the tracks - same with album), and do the same thing, Voila! You've got a playlist with the name of the artist.
    If this doesn't float your boat, then I don't know what else will. You can create infinite number of playlists, smart or dumb - so why use the library - that big long list of song names, to locate anything.
    Lita

  • Configure new gui 7.10.

    I am working on two server
    1. Our Development Server.
    2. Our IDES Server.
    My problem is that
    when i am login my development server
    and open se38 tcode
    the new abap editor open but
    when i login to IDES server
    the new editor not support.
    i don't know what is the reson, if anyone know please resolve my problem.

    Hi,
    The front-end editor doesn't puerly depend on SAP GUI version. It is also dependant on WEB AS version or system version.
    On both servers (sap sessions) choose from menu bar system->status and check the system versions. I don't know from which version new ABAP Editor is supported, but there is definetely a distinction between them. I check both on ECC 5.0 and ECC 6.0 (system versions). Debugger here is different, I am using SAP GUI 7.10 though.
    Regards
    Marcin

  • New GUI components

    Hi,
    Is there any collection of fancy GUI components. Actually not really fancy, but kind of more advanced in new shapes. I'm trying to write an application. I need to create a table shape/spread sheet screen but the standard JTable is not exactly what I'm looking for.
    Thanks,
    S.

    by real time I only mean that I don't know how many results I will have until the search is complete, so I can't create the components beforehand, I have to do it when I get a result, while the program is running. I couldn't get anything but text to show up like that, but I think a JTable will suit my needs perfectly.

  • New GUI blog

    Hi guys,
    Wondering if some of you could take out 5 minutes of your time and have a look at my new blog.
    http://greengiraffesolutions.blogspot.com/
    I am a Swing specialist, and am become quite unhappy with the way GUIs are being designed in the industry.
    Articles aren't Swing specific (yet), but give an overview of architecture and design issues when confronted with developing a GUI. Please leave a comment.
    cheers
    Olly

    Interesting - I'll try to keep an eye on that as it grows.
    Although I think this might be an example of taking theories a bit too far,
    http://photos1.blogger.com/blogger/5421/3277/1600/screen6.png
    I've also got to question the thinking behind the mouseover colour on your blog title... it's the amazing disappearing hyperlink! :o)
    Oh and UI Hall of Shame has been dead for a while now, sadly.

  • How to make a all new gui in java

    I am fed up of using metal motif and windows look and feel gui in java...........how can i make a more fancy gui.......
    the one like ym or gtalk.......

    See The Java&#8482; tutorials: [The Synth Look and Feel|http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html]
    db

  • New GUI programming mode

    Hi
    a friend of mine shocked me sending this
    http://www.esnips.com/nsdoc/c1f0b2b7-0660-4485-9842-756bc0355228
    I was deploying a standard GUI apps to handle a ebook store but now I wonder if I should use this method to that allows clercks to perform advanced query on DB.
    Has someone never used this methods?
    Thanks

    Sorry but the link was
    http://www.esnips.com/web/ALADIN1183712423142
    by

Maybe you are looking for