JSP vs Swing

can we achieve all the functionality by programming in Swing,than what we get by JSP.
moreover can we develop a website in Swing?

oxbow_lakes wrote:
Lets be clear about this - Swing is infinitely more
capable GUI-wise than HTML/JavaScript (which is what a
JSP can give you). Right on! [smile]
Responsiveness can indeed be better
in some cases, because you don't have to go to the
server every time (ie. you can embed business-logic in
the application).Urr... responsiveness in a Swing gui should never be any slower than a thin client... typically, it should be orders of magnitude faster. There are many obvious reasons why this is true.
Also, there is no need to embed business logic in the Swing application. Instead, you just make requests back to your app server for business logic processing.
The problems you have, however, with Swing are
many-fold.
1. Most browsers will NOT, by default, support Swing
(or Java1.2). Most browsers, of course, being IE5.
Hence you need plug-in technology. Which can be a bit
of pain as therefore you have to worry about
client-browser requirements.This is what Java Web Start is all about. (I think you mention that later). It's a great solution.
2. Distributing applets over the web can give rise to
versioning problems on the client-side. If your applet
takes a long time to load you want it to be stored on
the client's machine. However if you make a change to
the business logic, you need to distribute this change
out to clients.Again, this is solved by Java Web Start. It caches your application, and also ensures that you have the latest version each time you run it. On top of that, it lets developers create incremental updates to their applications.
3. Swing is much more complicated than HTML so making
things like dynamic, interactive tables will take more
time than in simple HTML/JavaScript where it is easy.I disagree. Handling a mouse click is almost exactly as simple as handling a mouse click with JavaScript. (I might even argue, simpler). Swing differs in that there is so much more power available to you.
4. If in processing the page you need to communicate
with the server then this is simple using JSP - the
page is being executed on the server already. No
problem. Using Swing, however, you will need to use
maybe RMI or raw Socket communication to a server
process. The former is more finicky and the latter
requires cleverer code on the server-side to listen to
unpack the incoming streams (all of which is invisible
to you when using JSP). Add firewalls to the equation
and you might find that client-server communication is
well-nigh impossible. Or just beyond your area of
expertise.Communication is not a hard problem to solve. For example, you can write EJB client code from your application just like you would from a servlet (or JSP). Application servers like Weblogic multiplex RMI and HTTP on the same port.
People also use the same controller pattern for Swing apps that they do for JSPs - where the controller logic is stored in servlets. This means that the Swing app makes requests to servlets for business logic processing. This has the two effects of preserving MVC architecture in the system and also effectively 'tunneling' requests through any firewall that allows HTTP. With Java's built in networking support, that's a piece of cake.
The answer is... if you are absolutely needing very
fancy graphical stuff that must be interactive, then
Swing will probably be better - it will be more
responsive and flexible. Otherwise, stick to JSP and
avoid the headaches.I disagree again. When will people realize that the browser was never designed for this task and is woefully inadequate!? [argghh]
I've written Swing-based and browser-based interfaces. Most of my headaches don't come from those mentioned above. Rather, my headaches come from trying to design interactive, intuitive, and fast interfaces using tools never intended for such a feat. Incompatibilities between browsers (implementations of the HTML spec, JavaScript, CSS, DOM) just add more fuel to the fire.
God bless,
-Toby Reyelts

Similar Messages

  • Conversion tool from JSP to SWING

    Hi,
    I have to convert all my JSP pages into SWING. Is there any tool which can convert JSP pages into SWING?
    Thanks,
    Prakash

    You're passing the string as a number in the onclick call to ChangeAbu.
    Add quotes around the <%=PccrNumber%> to make it a string:
    So change
    > " onclick="ChangeAbu(<%=PccrNumber%>)"></td>
    to
    " onclick="ChangeAbu('<%=PccrNumber%>')"></td>
    and see if that helps

  • JSP and Swing

    Hello friends,
    I am developing a web interface for a knowledge base. Now I have designed my interface in Java Swing. The main reason for choosing Swing is that I need JTree in my program.
    I would like to know whether we can use this swing files inside JSP? If not, How to create tree structure in JSP,in which nodes are added according to the values in the database?
    Another doubt is that, can we use swing for web applications?

    You can't use swing with JSP. JSP produces (mainly) HTML pages to run through the browser.
    With JSP no Java is run on the client machine, so Swing objects are out of the question.
    You have two options:
    1 - If you want to use swing, you will have to write it as an Applet / Application (run java on the client)
    2 - Investigate javascript/dhtml tree structures - there are several around. And it has been brought up several times on this forum.
    Good luck,
    evnafets

  • Search engin, JSP or swing Application

    Hello,
    i want to build a search engin(like Google) on a special archive ,the question: is swing endurance the load of all search results to display it or there will be any problems in displaying, thus ,it is preferable to using ordinary web page.
    thanks

    A search engine usually has two pieces. One piece gathers the data and organizes it so it can be searched. The other piece queries that data and presents the results. Many times a database is used to store the searchable data. For a fairly complex set of searchable data, the limiting factor is usually the speed of the data search. It really doesn't matter if the user interface is C, Java or Fortran.

  • Catching response of jsp into swing

    hello,
    After your reply about NVP API ,now i am able to make payment through PayPal API .
    But now there is anew problem .
    i have a Swing application and i want to capture the response of NVP into swing
    is there any way to do this?
    thanks
    jitendra
    ideavateSolution

    Probably the Windows registries of some workstations in your company are messed up and don't recognize the mime-type, or are running old versions of Internet Explorer that don't understand the official mime-type (vnd.ms-excel). Try updating the Internet Explorer installation of a workstation that does not understand the mime-type and verify if it is working.

  • Swing or JSP

    Iam making a application for my company which will be accessed by more than 300 centers all over country. So the GUI I would make should use JSP or SWING . What are the pros and cons of each. The application will be dealing Finance matters.So at client end SWING or JSP ?
    Plz Help me

    To give you a good answer I would need a lot more information, but right now it sounds like your best bet is to use JSP. Here are two enormous reasons why:
    1) You will not have to deploy any software at the client end - as long as they have a web browser they will be able to connect. They do not even need Java support. This has several related advantages, including that you will never have to deal with "updating" the clients - you can change the code on your end freely.
    2) The total amount of work you put into it is probably going to be a lot less. Since you are just using HTML and not writing a GUI proper, it will be a lot easier.
    The main reason you might discover that you do NOT want to use JSP is that it limits your functionality. For example, if you decide you need an interactive chat room you are going to end up coming back to Swing and deploying either an applet, Java Web Start app, or standalone application... unless you do not mind it being a really crappy chat room.
    Drake

  • Reading RTF file content from JSP which stored in database as image format

    <%@page import="java.sql.*" %>
    <%@page import="java.net.*" %>
    <%@page import="java.io.*" %>
    <%@page import="java.*" %>
    <%@page import="javax.swing.*" %>
    <%@page import="javax.swing.text.*" %>
    <%@page import="javax.swing.text.rtf.*" %>
    <%
         Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
    Connection con=DriverManager.getConnection("jdbc:sqlserver://local:1433;databaseName=database;user=sa");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select Document from docrev where UniqeId ='199207' ");//("select data from rtfdata");227317
         rs.next();
         byte bt[]=rs.getBytes(1);
         InputStream fi = new ByteArrayInputStream( bt );
         RTFEditorKit rtf = new RTFEditorKit();
         JEditorPane editor = new JEditorPane();
         editor.setEditorKit( rtf );
         rtf.read( fi, editor.getDocument(), 0 );
         Document d=editor.getDocument();
         String str=d.getText(0,d.getLength());
         /*OutputStream fo=new FileOutputStream("temp3.rtf");
         fo.write(str.getBytes());*/
    %>
    <html>
    <body>
    <p><textarea name=myarea style="background:#FFCC99" cols=100 rows=50><%=str%></textarea>
    </body>
    </html>
    Edited by: Santhu538 on Oct 23, 2007 10:16 PM
    Edited by: Santhu538 on Oct 23, 2007 10:25 PM
    Edited by: Santhu538 on Oct 23, 2007 10:26 PM

    Please use code tags while posting code. See the code button above the text area?
    It's a good practise not to mix jdbc code in your jsp (mvc and all that you see)
    Finally you'll have to quickly decide on your front end - jsp or swing. It looks like the former, but then with the code you have posted, the server is apt to pop up some windows prompting the user who has logged on (to the server) to choose the files for the client :)
    ram.

  • Send arraylist to swings from servlet

    Hi,
    I send string to jsp from swings using URL(pass as a query string)
    And then call servet from jsp(submit some values to this servlet from jsp)
    Now i want to send ArrayList to my swings ,
    How it is,
    i know call servlet from swings,retrive values from servlet to swings. This is two way communication,
    But now my requirement is one way, i didn't call servlet directly from swings, i call from jsp
    Help me,
    Thanks in advance

    Thanks for reply
    i write code in my swing as
    ArrayList pdetails;
    URL url=new URL(getCodeBase()+"sample.jsp");
                URLConnection con =url.openConnection();
                con.setDoInput(true);
                con.setDoOutput(true);
                con.setUseCaches(false);
                OutputStream outstream = con.getOutputStream();
                ObjectOutputStream oos = new ObjectOutputStream(outstream);
                oos.writeObject(pdetails);
                oos.flush();
                oos.close();
                AppletContext context=getAppletContext();
                context.showDocument(url,"_blank");my jsp code is
    <%@page import="java.io.*,java.util.*"%>
    <%
    ObjectInputStream inputFromApplet = null;
    ArrayList transmitContent =null;
    inputFromApplet = new ObjectInputStream(request.getInputStream());
    System.out.println(inputFromApplet);
    transmitContent = (ArrayList) inputFromApplet.readObject();
    out.println(transmitContent);
    %>
    but i got an exception like this21:28:50,078 WARN [[jsp]] Servlet.service() for servlet jsp threw exception
    java.io.EOFException
    at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream
    .java:2232)
    at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputS
    tream.java:2698)
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:750
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:268)
    at org.apache.jsp.sample_jsp._jspService(org.apache.jsp.sample_jsp:52)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:322)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    14)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
    lter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:178)
    at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrinc
    ipalValve.java:54)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
    yAssociationValve.java:174)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
    e.java:74)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :868)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
    rocessConnection(Http11BaseProtocol.java:663)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
    int.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
    kerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)

  • How can i display console outputs in my form?

    Hi,
    <p>I have an application which performs some actions like, insert 200 rows in the database. While inserting data i am using <code>
    int i=0;
    system.out.println ("Insert "+i+" row in database");
    i=i+1;
    </code>
    The output displays on the commnad line.</p>
    <p>what i am trying to do is i have a form, which has text area. I want to display the console output "Insert 1 row in database" and next "Insert 2 row in database"..... and soon in the text area. How could i do that?</p>
    <p>Thanks in advance!!</p>

    Hi Petes,
    Thanks for you response. I am very new to java. I just started learning jsp and have bit knowledge of swing. I am confused how to use jsp and swing componenets together. Can you please guide me a bit?
    Also i am using AJAX to update form field. I am able to work with the rest except bringing the console output in the text area.
    Do you think i have some other way to do it?
    Do you think, it is a good idea , if I will save the output strings in a file and with the help of jsp i can read the file in textarea.
    Pin2g

  • Visual design view in Studio Enterprise 8

    I have recently discovered both Studio Enterprise 8 and Studio Creator, previous to which I was only using netbeans. However, I've been looking for a way to create either JSP applications or standar java applications with an IDE that has a visual design view in it.
    Studio Creator has a visual design view only for JSP pages, but it does not seem to have the robustness of Studio Enterprise 8. Studio Enterprise 8 has a Palette tool, but for the life of me I cannot find the visual design view in it. Is there a way to activate a visual design view in Studio Enterprise 8? or, do I need to download an add-on?, or do I really need to create projects in Studio creator to later transfer only the JSP pages to Studio Enterprise?
    Any help would be greatly appreaciated.
    TGD

    Besides the visual designer for JSP (Creator) , Swing GUI and UML (JSE8), what other types of visual designers are you expecting or wish for in JSE 8?

  • Getting image stored in database !!

    Hey !!
    I'm really trying to solve so much problems i'm having with javafx !!
    So, like the title may suggest, i'm having problems as to get image from the database !!
    Everything seems fine but it tells me that there is "Exception while runing Application"
    here is the code !!
    @James D, i will come back bugging yu again to see how to use the stored images and display them inside the combobox and to render them ^^
    I haven't well understand how well as to use the enum struc in which yu declared the composed <Image,String> type ^^
    import java.awt.image.BufferedImage;
    import java.io.ByteArrayInputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javafx.application.Application;
    import javafx.event.Event;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.ComboBox;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    import javax.swing.JOptionPane;
    * @author Minedun6
    public class DynamicCustomComboBox extends Application {
        Connection c = connection.ConnecrDb();
       PreparedStatement pst = null;
       ResultSet rs = null;
       ComboBox box1;
       ImageView view;
        @Override
        public void start(Stage primaryStage) {
            box1 = new ComboBox();
            box1.setPrefSize(100, 25);
            box1.setOnShowing(new EventHandler() {
                @Override
                public void handle(Event t) {
                    box1.getItems().clear();
                    try {
                String sql = "select libelle_constr,img_constructeur from constructeurs where libelle_constr='Citroen';";
                pst = c.prepareStatement(sql);
                rs = pst.executeQuery();
               while(rs.next()){
                   box1.getItems().add(rs.getString("libelle_constr"));
                   InputStream input = new ByteArrayInputStream(rs.getBytes("img_constructeur"));
                   Image imge = new Image(input);
                   view.setImage(imge);
            } catch (Exception e) {
            JOptionPane.showMessageDialog(null, e);
            StackPane root = new StackPane();
            root.getChildren().addAll(box1);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setTitle("Hello World!");
            primaryStage.setScene(scene);
            primaryStage.show();
        public static void main(String[] args) {
            launch(args);
    }

    In any real application, it's a mistake to mix your presentation (user interface) code with your persistance (database access) code.
    Why? You want maintainability, flexibility, and testability.
    Maintainability:
    Suppose you want to change the structure of your database. E.g. the database admin (which may be you, or someone else) determines that the database design you have is inefficient and needs to be changed. If your database code is scattered over the whole application, mixed in among your user interface code, tracking down what needs to be changed will be a nightmare. If all your database code is in a single class, or perhaps a set of classes in a single package, then the updates are localized and much easier to manage. Furthermore, you can build the new database access code on its own, test it out, and then when you are sure it works just switch your user interface code to use the new persistance layer instead of the old one. The same applies if you decide you're going to use a completely different technology to store the data; perhaps you want to use something like Hibernate instead of plain JDBC, or maybe you decide you want to make the data accessibile via a web service.
    Flexibility:
    What if you (or, more likely, your manager) decides they're going to change to a new user interface technology. Maybe they decide to switch to a web application (i.e. HTML-based) instead of a desktop application. You obviously need to rewrite the user interface code, but you should be able to keep all the database access code you've written. If your database access code is all jumbled up with the user interface code you're replacing, it's going to be way harder to reuse that code. If the two are separated out, you just build a new user interface in whatever new technology you're using, and access the same class(es) you used for your database access without touching them.
    Testability:
    This whole thread is actually a demo of how testability is much harder if you don't properly separate your code. You posted "getting image stored in database", thinking that was your problem. It wasn't; your problem was actually an error in the way you'd set up your JavaFX code. Because the two were completely mixed together, it was hard to know where the error was. The error you had was actually a really simple one; it would have been much easier to see if you had simpler, properly separated code; but because you didn't organize your code like that it took you days to figure out the problem. This was only a couple of dozen lines of code; imagine how this looks in a real application with hundreds or thousands of classes.
    The point is that decisions about how to access your data (standalone database, web service, or EJB?; plain JDBC, JPA, Hibernate, etc?) , and decisions about the presentation technology (desktop or web? JavaFX or Swing?, or Servlets/JSPs, JSF, Swing MVC, or any of a huge number of frameworks) are completely independent. You should be in a position to change those decisions - to redesign aspects of the application - with the least amount of effort possible. Failing to properly design things will make this much harder, or likely completely impossible.
    These are real concerns that affect every application that goes into production.
    Even if you're just making a small application, it will benefit you to set things up correctly from the outset.

  • GUI Problem

    Having a problem with jRadioButtons and an action event when a button is pushed. We want to have a calculation run when the user pushes the OK button. Need to know which radion button is selected so the calculation has the right data. Here is some of the code I have tried from other sources but can't get it to work.
    /*public boolean action (Event evt, Object arg) {
    if(evt.target.equals(jRadioButton7yearloan))
    Calc7year();
    else if(evt.target.equals(cb2))
    t.setText("Radio button 2");
    else if(evt.target.equals(cb3))
    t.setText("Radio button 3");
    else
    return super.action(evt, arg);
    return true;
    public class RadioListener implements ActionListener
    public void actionPerformed(ActionEvent e)
    String factoryName = null;
    if (e.getActionCommand() == seven)
    Calc7year();
    else{}
    public void Calc7year()
    double LA = Double.parseDouble(jTextFieldAmountInputBox.getText());
    double IR = 0.0535;
    double T = 15;
    Payment = (((IR/100) / 12) * LA) / +
    (1- (Math.pow (1+ ((IR/100) / 12), (T * -12))));
    jTextFieldOutputCalc.setValue(Payment);
    private void jButtonOK_actionPerformed(ActionEvent e)
    System.out.println("\njButtonOK_actionPerformed(ActionEvent e) called.");
    //jTextFieldOutputCalc.setValue(Payment);
    RadioListener();
    private void jButtonOK_mouseClicked(MouseEvent e)
    System.out.println("\njButtonOK_mouseClicked(MouseEvent e) called.");
    RadioListener();
    }

    When you post code use the "code" formatting tags. This link also has some further guidelines to help you get better answers.
    http://www.physci.org/codes/sscce.jsp
    The Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]How to Use Buttons has an example using radio buttons and a ButtonGroup that might help you.

  • Why can't I print the content of a row in the ResultSet twice?

    An exception was thrown when I tried to print it twice like this:
    while (rs.next()) {
    System.out.println(rs.getString(1));
    System.out.println(rs.getString(1));
    }Why?

    An exception was thrown when I tried to print it
    twice like this:
    while (rs.next()) {
    System.out.println(rs.getString(1));
    System.out.println(rs.getString(1));
    }Why?The real question is: why would you want to do that? ResultSets shouldn't be printed like that. MVC separation says that printing is View, and ResultSet is persistence. Better to iteration through the ResultSet once, loading the data into an object or data structure, close the ResultSet in a finally block, and then pass the object or data structure for rendering (be that printing or JSP or Swing or whatever your View is).
    %

  • Which technology is fast and lightweight anong all webtechnology in java/j2

    hi,
    friends i want to know that which java technology or J2EE technology(JSP,SERVLET,SWING,APPLET,struts and etc) is lightweight and fast.
    because i am going to use the simplest and lighweight web component component .
    So friends Plese tell me that which technology is fast and easy and lightweight anong all webcomponent of java/J2EE

    hi,
    friends i want to know that which java technology or
    J2EE technology(JSP,SERVLET,SWING,APPLET,struts and
    etc) is lightweight and fast.Please define "lightweight" and "fast".
    because i am going to use the simplest and lighweight
    web component component .Lighter than air, faster than thought.
    So friends Plese tell me that which technology is
    fast and easy and lightweight anong all webcomponent
    of java/J2EEThey're all lightweight and fast. Now how will you choose?
    You should choose the technology based on the problem at hand and what you know well, not their alleged reputation for speed and lack of mass.
    %

  • Java Developers Urgently Required-Guildford UK -up to 45,000 per annum

    Permanent Java Developer urgently required for a leading pre-press work flow software house.
    We need developers with the following skills:
    Java J2EE
    JSF OR Spring OR Struts
    JSP Servlets / Swing
    JDBC SQL
    JDOM / HTML / JavaScript / CSS / XML / XSL / DTD / XPATH
    Desktop: Windows XP
    Eclipse3 / CVS
    Basic UML
    These skills are an advantage.
    C++/Perl/AJAX
    Parking, excellent working hours and an immediate start available for the right candidate.
    Please Contact:
    Kelly Riddell
    01483 300515
    [email protected]

    I think that it is something wrong with kernel and graphic drivers but i'm not able to solve it from the beginning of using of Arch by me.
    I'm not so sure this issue is software-related only because in my case it seems the laptop screen enters power-saving mode (10-min timeout) on its own without any events logged (as shown by dmesg) so my next thought was OK, I'm going to get rid of this issue disabling the screen power-saving timeout in the BIOS and set it to never power down or something like that and from then on managing power mode manually; ie: when I want to power down I will just use systemctl suspend/hibernate which work fine ... problem is: there are no related options in my BIOS for such timeout.
    The only timeouts I have are in /etc/systemd/logind.conf set to 30min (#IdleActionSec) (commented) by default so these are not in effect because the screens goes blank after 10m which is less than the (default) 30m in logind. Maybe setting loggind to 9m (un-commented) to catch the event before the machine-default one ?
    IdleActionSec=9min
    IdleAction=suspend
    Will check it and report back.

Maybe you are looking for

  • HD partitions, keychain, filevault, time machine - coordinated setup

    Let me start by saying this question covers numerous individual components of OS X and how to set them up in a manner which makes sense. Thus I hope this is in the correct forum. This could be a very long question and perhaps beyond this forum. In th

  • ITunes has messed with my internet?

    I don't really know whether it was the iTunes update or not, but since I have no other clues, I thought I'd start here. Basically, a few minutes after I upgraded iTunes and Quicktime last night, my internet started messing up. It works, but there are

  • Why do certain applications open automatically

    why do certain applications open automatically?

  • Message in Scheduled

    Hello All, Scenario is JMS to SAP ECC. The message which triggered by JMS appllication is successfully processed by SAP PI and sent to SAP ECC. But in SAP ECC, the message is in scheduled status(with green flag). Can you please help me here Regards,

  • CL_GUI_ALV_GRID: Line selection and backend table

    Dear community, is there a way to propagate line selection of ALV GRID GUI automagically to the backend data table? This is my scenario: 1) A table containing several records with one column 'SELECTED' for selection status 2) ALV_GRID to display the