Re: Inherited display method

Dave
You need to make an explicit call to super.Display() in the Display() method of your subclasses. Alternatively, you can delete the Display() method in your subclasses if there is no additional functionality there.
You seem to be getting a bit confused over inheritance and overriding. If you override a method in a subclass (ie have a method with the same name and parameters), you will lose the functionality of the superclass's method - unless you explicitly call the super method. If you DON'T override it, you will inherit it automatically!
If you write a good framework for your application, you will rarely need to have a Display() method in your bottom level classes, as all required functionality will be inherited. Please let me know if you would like some tips on the development of such a framework (or if I haven't made any sense).
Regards
Sam Keall
[email protected] on 27/07/98 17:03:00
To: [email protected]
cc: (bcc: Sam Keall/GB/ABNAMRO/NL)
Subject: Inherited display method
I am trying to modify the display method in a custom window super class.
Within my application, the user should be able to hit the F3 key to
exit. I have coded it in a display method on a particular window and it
works. However, when I attempt to move the code to the parent window
class (so that I don't need to repeat the code for every window
subclass) it doesn't work. It seems that the display method isn't being
inherited (even though the books say that they are). After having
modified my display method in the window super class, I created a
subclass based on the super class. When I opened the display method for
the subclass, only the default code appeared, not the custom code that I
had created for the superclass.
Any assistance would be appreciated. It seems to defeat the purpose of
OO if I can't create a custom display method in a super class and have
it inherited by the subclass.
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

hi,
Well as cbacher has mentioned, if your Thread is running and you call the start method a InvalidThreadStateException will be raised, what you can do is like this, you can have ur class implement runnable as this will also you to call the run method multiple times using the start().
Your run code could have some kind of a check to see if the external event has occured, if not it should continue doing the process else it should finish the execution of the run method, thereafter you could call the start method again to restart the thread, that way you will not be essentially creating a new Thread object( you are calling start on an existing object). Hope this was useful.
cheerz
ynkrish

Similar Messages

  • Inherited display method

    I am trying to modify the display method in a custom window super class.
    Within my application, the user should be able to hit the F3 key to
    exit. I have coded it in a display method on a particular window and it
    works. However, when I attempt to move the code to the parent window
    class (so that I don't need to repeat the code for every window
    subclass) it doesn't work. It seems that the display method isn't being
    inherited (even though the books say that they are). After having
    modified my display method in the window super class, I created a
    subclass based on the super class. When I opened the display method for
    the subclass, only the default code appeared, not the custom code that I
    had created for the superclass.
    Any assistance would be appreciated. It seems to defeat the purpose of
    OO if I can't create a custom display method in a super class and have
    it inherited by the subclass.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Are you sure that compiles and runs successfully?
    Considering that display() is a non-static method and you're calling it from a static context. Also why does it print "Method inherited"? There's no inheritance happening here.
    As for the JVM accessing non-public classes. Well let's just say that the JVM can pretty well do as it pleases, considering it's running the program. Doesn't mean that's proper code though, so if you're New to Java, you should probably concentrate on the useful things in programming, instead of the oddball corner cases.

  • Inherited display method - Reply

    If a method that is defined in a super class, is ALSO defined in a child
    class, that child method is not automatically filled with the code in the
    parent's method of the same name. This is 'overriding' a method. Any
    common code would need to be in the child also.
    What you could do is have an Event Handler in your parent class that
    listens for & performs the 'F3' process. Your child class would inherit the
    event handler. Remove the 'when' clause from the parent's Display() and
    'register' for the handler. That takes care of the parent window. Have the
    child's Display() method register for this same (inherited) event handler
    and it will be good to go.
    If I've gotten this wrong, please someone correct me. I was working with
    Visual Basic all weekend & my brain is mush :)
    Steven Barnes
    EHRLICH 07/27/98 09:18am >>>I am trying to modify the display method in a custom window super class.
    Within my application, the user should be able to hit the F3 key to
    exit. I have coded it in a display method on a particular window and it
    works. However, when I attempt to move the code to the parent window
    class (so that I don't need to repeat the code for every window
    subclass) it doesn't work. It seems that the display method isn't being
    inherited (even though the books say that they are). After having
    modified my display method in the window super class, I created a
    subclass based on the super class. When I opened the display method
    for
    the subclass, only the default code appeared, not the custom code that I
    had created for the superclass.
    Any assistance would be appreciated. It seems to defeat the purpose of
    OO if I can't create a custom display method in a super class and have
    it inherited by the subclass.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Give it up DeathMoment. You are back to the blind copy and paste.
    I don't know where you think those magic methods are coming from. And by the way I don't know where you stole the code for the "quicksort" but on top of the other problems (like it was wriiten for an array of int and you have an array of Item) it is not even a quick sort. It appears to be some sort of merge sort.
    So anyway unless by some miracle you stop thinking that you can cobble together your code from things you find lying by the side of the old information superhighway you are pretty doomed.
    So0 please don't bother asking any more questions. Unless you are actually willing to put real effort into what you are doing. The results thus far are just pathetic. Pathetic.

  • Re: [iPlanet-JATO] Re: using begin childName Display method

    Steve,
    It sounds like you have your display fields in a container view, and
    that container view is inside of a view bean. I haven't tested whether
    the fireChildDisplayEvents has a "deep" effect on its container view
    children. Meaning that you may have to set fireChildDisplayEvents="true"
    for the <jato:containerView> tag instead. If all else fails and you need
    to just get it working, you can set the fireDisplayEvents="true" for
    each display field tag separately.
    craig
    stephen_winer wrote:
    I should clarify my earlier statement. The data I want to display is
    coming from a model (tied in in the createChild method). I want to
    conditionally reformat the text that is being substituted in the JSP
    for a JATO form element, but I want this to happen on the server, not
    with JavaScript. The begin<childName>Display and
    end<childName>Display methods allow me to do this, in theory, but I
    can not get them to execute.
    Steve
    --- In iPlanet-JATO@y..., Belinda Garcia <belinda.garcia@s...> wrote:
    I don't currently use a begin or end Display method. I merely bind
    the fields to
    the model when the child is created and use the setValue to
    initially set the
    value to what's in the model. I get nulls though if I try to use a
    tiled View. I
    haven't quite got this figured out.
    Belinda
    X-eGroups-Return:
    sentto-2343287-1135-1008613974-belinda.garcia=sun.com@r...
    X-Sender: stephen_winer@y...
    User-Agent: eGroups-EW/0.82
    From: "stephen_winer" <stephen_winer@y...>
    X-Originating-IP: 155.188.191.4
    X-Yahoo-Profile: stephen_winer
    Mailing-List: list iPlanet-JATO@y...; contact
    iPlanet-JATO-owner@y...
    Date: Mon, 17 Dec 2001 18:32:48 -0000
    Subject: [iPlanet-JATO] using begin<childName>Display method
    Content-Transfer-Encoding: 7bit
    I want to be able to conditionally show/hide data as well as
    format
    it for display without touching the model. I found the
    begin<childName>Display and end<childName>Display methods that
    provide the hooks to do this, but I have been unsuccessful in
    getting
    these method to execute. I added the
    fireChildDisplayEvents="true"
    attribute to the jato:useViewBean tag, but this has not helped.
    I
    also added some debug to the ContainerViewBase class in the
    public
    boolean beginChildDisplay(ChildDisplayEvent event) method to see
    what
    was happening. The displayMethodMap was returning null for the
    child
    display methods that were in the view bean. I covered all the
    bases
    (compiling, redeploying, etc.) and nothing has worked. Is there
    anything I am missing or is there some working example of this?
    Steve
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    >For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    The hidden field was present in the page, but it looked like this:
    <input type="hidden" name="jato.defaultCommand" value=""../search"">
    Seems like there is a small bug in the code generating this tag.
    FYI - I am using JATO1.2
    What file displays this text? Maybe I can go in and fix it and rejar
    it.
    Steve
    --- Mike Frisino wrote:
    Steve,
    Can you check the HTML source that shows up in the browser? Do you see an entry that looks like this at the bottom of the form in
    question?
    >
    <input type="hidden" name="jato.defaultCommand" value="/search">
    To answer your question - it should work as you described. Some of the JatoSample make use of the defaultCommandChild. Can you try
    running the sample BasicSample->Field Types and let us know what you
    see.
    >
    Failing this you can send me your jsp file , maybe there is some subtle issue there. michael.frisino@s...
    >
    >
    ----- Original Message -----
    From: stephen_winer
    Sent: Friday, December 07, 2001 8:05 AM
    Subject: [iPlanet-JATO] Using the defaultCommandChild in a form
    I am trying to set the defaultCommandChild in my jato:form tag to be
    the searcg button. The search button definition is:
    <jato:button name="search"/>.
    The form tag definition is:
    <jato:form name="PendingIA" defaultCommandChild="/search">
    Clicking on the search button works fine, but hitting return in one
    of the textFields (which submits the form) passes a value of "" to
    the createChild method in my viewBean, which throws an error. Why
    does this not just work as normal and trigger the handleSearchRequest
    () method?
    Steve
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    Service.
    >
    >
    >
    [Non-text portions of this message have been removed]

  • Re: [iPlanet-JATO] using begin childName Display method

    Oops. Sorry about that, Craig. I didn't realize I might leave that impression.
    I'm sure the tiled
    views work since you have so many examples of these and it's a relatively
    simple concept, isn't it?
    Not to mention a necessary one. I didn't have time to debug my code and find
    out what I was doing
    wrong where the tiled views are concerned. I decide to just try to implement
    tiled views later and
    just stick with one of everything for now and get that working.
    Yes, I have reviewed your comments and am taking them into consideration. I am
    able to save and
    retrieve values with my model at this point.
    Thanks.
    Belinda
    X-eGroups-Return:
    sentto-2343287-1143-1008622698-belinda.garcia=sun.com@r...
    X-Sender: craig.conover@s...
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4)Gecko/20011019 Netscape6/6.2
    X-Accept-Language: en-us
    From: "Craig V. Conover" <craig.conover@s...>
    X-Yahoo-Profile: cvconover
    Mailing-List: list [email protected]; contact
    [email protected]
    Date: Mon, 17 Dec 2001 13:00:10 -0800
    Subject: Re: [iPlanet-JATO] using begin<childName>Display method
    Content-Transfer-Encoding: 7bit
    Belinda,
    He may also be binding the models, howerver, he needs to change the way
    the value appears before it is displayed which is why you would use the
    display events.
    Your null value issue is a completely different issue and has nothing to
    do with it being a tiled view. I don't want anyone getting the idea
    that the tiledView binding is broken. It does work. You issue should
    have something to do with the inconsistent way in which you are getting
    your model. At least from what I could tell in your source code that you
    sent me.
    Have you reviewed my comments I sent to you in your source code?
    craig
    Belinda Garcia wrote:
    I don't currently use a begin or end Display method. I merely bind the
    fields to
    the model when the child is created and use the setValue to initially setthe
    value to what's in the model. I get nulls though if I try to use a tiledView. I
    haven't quite got this figured out.
    Belinda
    X-eGroups-Return:
    sentto-2343287-1135-1008613974-belinda.garcia=sun.com@r...
    X-Sender: stephen_winer@y...
    User-Agent: eGroups-EW/0.82
    From: "stephen_winer" <stephen_winer@y...>
    X-Originating-IP: 155.188.191.4
    X-Yahoo-Profile: stephen_winer
    Mailing-List: list [email protected]; contact
    [email protected]
    Date: Mon, 17 Dec 2001 18:32:48 -0000
    Subject: [iPlanet-JATO] using begin<childName>Display method
    Content-Transfer-Encoding: 7bit
    I want to be able to conditionally show/hide data as well as format
    it for display without touching the model. I found the
    begin<childName>Display and end<childName>Display methods that
    provide the hooks to do this, but I have been unsuccessful in getting
    these method to execute. I added the fireChildDisplayEvents="true"
    attribute to the jato:useViewBean tag, but this has not helped. I
    also added some debug to the ContainerViewBase class in the public
    boolean beginChildDisplay(ChildDisplayEvent event) method to see what
    was happening. The displayMethodMap was returning null for the child
    display methods that were in the view bean. I covered all the bases
    (compiling, redeploying, etc.) and nothing has worked. Is there
    anything I am missing or is there some working example of this?
    Steve
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    The hidden field was present in the page, but it looked like this:
    <input type="hidden" name="jato.defaultCommand" value=""../search"">
    Seems like there is a small bug in the code generating this tag.
    FYI - I am using JATO1.2
    What file displays this text? Maybe I can go in and fix it and rejar
    it.
    Steve
    --- Mike Frisino wrote:
    Steve,
    Can you check the HTML source that shows up in the browser? Do you see an entry that looks like this at the bottom of the form in
    question?
    >
    <input type="hidden" name="jato.defaultCommand" value="/search">
    To answer your question - it should work as you described. Some of the JatoSample make use of the defaultCommandChild. Can you try
    running the sample BasicSample->Field Types and let us know what you
    see.
    >
    Failing this you can send me your jsp file , maybe there is some subtle issue there. michael.frisino@s...
    >
    >
    ----- Original Message -----
    From: stephen_winer
    Sent: Friday, December 07, 2001 8:05 AM
    Subject: [iPlanet-JATO] Using the defaultCommandChild in a form
    I am trying to set the defaultCommandChild in my jato:form tag to be
    the searcg button. The search button definition is:
    <jato:button name="search"/>.
    The form tag definition is:
    <jato:form name="PendingIA" defaultCommandChild="/search">
    Clicking on the search button works fine, but hitting return in one
    of the textFields (which submits the form) passes a value of "" to
    the createChild method in my viewBean, which throws an error. Why
    does this not just work as normal and trigger the handleSearchRequest
    () method?
    Steve
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    Service.
    >
    >
    >
    [Non-text portions of this message have been removed]

  • Inherited abstract method IGCIControllerDelegate

    Hi,
    I created only view in NWDS,the implementation it can't recognize the IPrivateview and context values.i deleted and created agine but agine it shows same,and the error is inherited abstract method IGCIControllerDelegate,please give me solution,what is the problem?

    Hi Sumit,
    I closed and agine opened but iam getting the same error.Please tell me .

  • Problems with display() method

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class lifeCycle extends JApplet implements ActionListener
         JLabel messageInit = new JLabel("init ");
         JLabel messageStart = new JLabel("start ");
         JLabel messageDisplay = new JLabel("display ");
         JLabel messageAction = new JLabel("action ");
         JLabel messageStop = new JLabel("stop ");
         JLabel messageDestroy = new JLabel("destroy ");
         JButton pushButton = new JButton("Hit me!");
         int countInit, countStart, countDisplay, countAction, countStop, countDestroy;
              public void init(){
                  Container con = getContentPane();
                  con.setLayout (new FlowLayout());
                  ++countInit;
                  con.add(messageInit);
                  con.add(messageStart);
                  con.add(messageDisplay);
                  con.add(messageAction);
                  con.add(messageStop);
                  con.add(messageDestroy);
                  con.add(pushButton);
                  pressButton.addActionListener(this);
                  display();
                  showStatus("complete");
              public void start(){
              ++countStart;
              display();
              showStatus("complete");
              public void stop(){
                  ++countStop;
                  display();
                  showStatus("complete");
              public void destroy(){
                  ++countDestroy;
                  display();
                  showStatus("complete");
              public void actionPerformed(ActionEvent e){
                  Object source = e.getSource();
                  if(source == pushButton){
                   ++countAction;
                   display();
                   showStatus("complete");
    }Just trying to learn the basics of life cycles in the swing applet. The display() method is where we're having problems, I'm getting the "cannot resolve symbol" message. I was just wondering what I'm doing wrong here. Thanks!
    Kate

    hi,
    I'm not sure what your applet is suppose to do but i've made some changes. I've moved your Container object declaration out of the "init()", and instead of "pressButton" I changed it to "pushButton" and "display()" to "con.setVisible(true)".
    hope this will resolve your issue. Here is the edited code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class lifeCycle extends JApplet implements ActionListener
         JLabel messageInit = new JLabel("init ");
         JLabel messageStart = new JLabel("start ");
         JLabel messageDisplay = new JLabel("display ");
         JLabel messageAction = new JLabel("action ");
         JLabel messageStop = new JLabel("stop ");
         JLabel messageDestroy = new JLabel("destroy ");
         JButton pushButton = new JButton("Hit me!");
         int countInit, countStart, countDisplay, countAction, countStop, countDestroy;
            Container con = getContentPane(); // Moved from init() to here
              public void init(){             
                  con.setLayout (new FlowLayout());
                  ++countInit;
                  con.add(messageInit);
                  con.add(messageStart);
                  con.add(messageDisplay);
                  con.add(messageAction);
                  con.add(messageStop);
                  con.add(messageDestroy);
                  con.add(pushButton);
                  pushButton.addActionListener(this);
                        // edited from "pressButton" to "pushButton"
                  con.setVisible(true); //used the Container object you created
                                              // instead of "display()";
                  showStatus("complete");
              public void start(){
              ++countStart;
              con.setVisible(true);   //used the Container object you created
                                            // instead of "display()";
              showStatus("complete");
              public void stop(){
                  ++countStop;
                  con.setVisible(true);   //used the Container object you created
                                                // instead of "display()";
                  showStatus("complete");
              public void destroy(){
                  ++countDestroy;
                  con.setVisible(true);  //used the Container object you created
                                                // instead of "display()";
                  showStatus("complete");
              public void actionPerformed(ActionEvent e){
                  Object source = e.getSource();
                  if(source == pushButton){
                   ++countAction;
                   con.setVisible(true);  //used the Container object you created
                                                   // instead of "display()";
                   showStatus("complete");
    }

  • The type must implement the inherited abstract method???

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.ActiveEvent;
    import java.applet.*;
    public class MoveIt extends Applet implements ActionListener
         private Image cup;
         private Panel keyPad;
         public int yaxis = 15;
         public int xaxis = 15;
         private Button keysArray[];
         public void init()
              cup = getImage(getDocumentBase(), "cup.gif");
              Canvas myCanvas = new Canvas();
              setBackground(Color.blue);
              setLayout(new BorderLayout());
              Button up = new Button("Up");
              Button down = new Button("Down");
              Button right = new Button("Right");
              Button left = new Button("Left");
              Button center = new Button("Center");
              add(myCanvas, BorderLayout.NORTH);
              add(keyPad, BorderLayout.SOUTH);
              keyPad.add(up, BorderLayout.NORTH);
              up.addActionListener(this);
              keyPad.add(down, BorderLayout.SOUTH);
              down.addActionListener(this);
              keyPad.add(right, BorderLayout.EAST);
              right.addActionListener(this);
              keyPad.add(left, BorderLayout.WEST);
              left.addActionListener(this);
              keyPad.add(center, BorderLayout.CENTER);
              center.addActionListener(this);
         public void paint( Graphics g )
              g.drawImage( cup, xaxis, yaxis, this );
         public void ActionPerformed(ActionEvent e)
              String action = e.getActionCommand();
              if(action.equals("Up"))
                   yaxis = yaxis - 15;
              if(action.equals("Down"))
                   yaxis = yaxis + 15;
              if(action.equals("Left"))
                   xaxis = xaxis - 15;
              if(action.equals("Right"))
                   xaxis = xaxis + 15;
              if(action.equals("Center"))
                   xaxis = 125;
                   yaxis = 60;
    }How come there is an error:
    The type MoveIt must implement the inherited abstract method
    ActionListener.actionPerformed(ActionEvent)
    What the hell does that mean?

    A class that implements an interface must define the methods of the interface. Your applet (or the one you borrowed) states at the top that it implements the ActionListener interface. If you go to the API, you'll see that this interface declares a method "actionPerformed", and so this class must have a method that matches the one in the interface. I see that your applet will have some Buttons. You'll need an actionPerformed method if you want the buttons to use your class (this) as their action listener.
    Edit: I see that you already have an "ActionPerformed" method, but note that case matters, and this is not the same as "actionPerformed". Change one letter and you're on your way.
    Edited by: Encephalopathic on Jan 15, 2008 8:44 PM

  • Open the workitem for display method

    Hi Guys,
    I have an issue with CRM BO BUS2000116.Actually we need to send an attachment to the workitem.so when the user executes the workitem.He/She will read the workitem text and the click on the attachment.The attachment should take into web ui page.
                But we are facing a peculiar issue.We have created a task with the display method(standard).So when the user executes the workitem its directly redirecting to the web ui page.but our requirement is to open the workitem.User will read the WI text and then he may click on the attachment.

    Hi- My understanding is, you need to show something to the user as workitem text and need to provide attachment. When clicking on the attachment, URL needs to open
    Have you tried to create a link in a method (before the approval task) using FM- "SAP_WAPI_ATTACHMENT_ADD" . If yes, then in the CRM worklist you will see this as an link under 'Attachments' (at bottom)
    You will be giving some workitem text in task description and this will be displayed at top.
    Let us know your output
    Vinoth

  • Object life cycle in Display method! See pex attachment!Again! ( sorry

    from Mr. Mohee Jarada
    Email(s):
    [email protected]
    Budapest - Hungary
    [email protected]
    Hamburg - Germany
    <<ObjectLife.pex>>
    Hi,
    After importing the attached pex file, you will notice that the object is
    died or de-instantiate immediately after the "self.close()" method in
    display() method!

    Please read the "Servlet 2.2 Specification", chapter 3 - The Servlet Interface, item 3.3 - Servlet Life Cycle

  • Object life cycle in Display method! See pexattachment!

    from Mr. Mohee Jarada
    Email(s):
    [email protected]
    Budapest - Hungary
    [email protected]
    Hamburg - Germany
    Hi,
    After importing the attached pex file, you will notice that the object is
    died or de-instantiate immediately after the "self.close()" method in
    display() method!
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    from Mr. Mohee Jarada
    Email(s):
    [email protected]
    Budapest - Hungary
    [email protected]
    Hamburg - Germany
    Hi,
    After importing the attached pex file, you will notice that the object is
    died or de-instantiate immediately after the "self.close()" method in
    display() method!
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Creator in custom field entry point display method - Process Manager

    Hi All,
    I'm trying to create a custom field in Process Manager that grabs the creator user id and the current calendar year and displays a table of vacation taken for the year in an entry point. The problem is that I cannot figure out how to grab the creator's uid without using an iProcessInstance object which is not created until the form is submitted.
    Does anyone know how I can do it?
    Thanks in Advance for your help
    -Dug

    Hi Ghanesh and SRM experts,
    I went through your link mentioned below and I have the EXACT same issue. I am using SRM 5.5 and I have added a custom field to the quotation item level. I am unable to make this field editable no matter what I do .
    1)  I have gone through all notes mentioned in your scrap and I have implemented them all .
    2) I have added the custom field to INCL_EEW_PD_ITEM_CSF_QUOT and INCL_EEW_PD_ITEM_CSF.
    3) I have also implemented BADI BBP_CUF_BADI_2 and I confirm that the method MODIFY_MODE_QUOT is never getting called. MODIFY_SCREEN is getting called , and the value of the flag ET_FIELDS-XINPUT is always 'X'. Still the quotation field is display only.
    Your post is dated a few months back. If you have solved this problem could you please let me know how.
    Help from anyone who anything about the above will be appreciated.
    Thank You .
    Regards,
    Ajali Sen

  • Want the old display method

    I was using I-Tunes ver 9 and I was loving the display options we had available but now that I had to reinstall it those display options have all changed and are no longer available. How could I go back to the old version without having to rebuilt all my library ???

    The main differences between iTunes 11 and earlier versions are the loss of coverflow and ability to have multiple windows open.
    In Windows, you can restore much of the look & feel of iTunes 10.7 with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album (Grid) view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    With iTunes 11.0.3 you can enable artwork in the Songs view from View > Show View Options (CTRL+J) making it more like the old Album List view.
    If you feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • How to display method result invoke from toolbar button on ADF

    Hi,
    I don't know how to display a message error or result, it is return from the method that is invoke from de toolbar button.
    thank for your help,
    Alex

    What type of UI? Swing? JSF? What is the method you are invoking ? a backing bean method? A method in an AM? How are you binding the button to the method?
    You might want to read this first:
    http://blogs.oracle.com/shay/2007/03/02

  • BPM Display method

    Hi,
    I am new to BPM. I am trying the display("Hello!"); function to display the result of my variable. But i do not know where the method would dump the output.
    Where do i see the output of this method. Is there some console where this value gets printed.
    Please help.
    Thanks
    Sumit

    Hi Sumit,
    To display the result of variable, you can make use of logMessage predefined method provided by ALBPM/OBPM.
    logMessage("My value of variable: " + variable);
    To view the result of the variable you can go to the logviewer tab.
    There you can find the message as well as the value of your variable.
    display function can also be used for this purpose but it will pop up the message at the run time. you can able to see it in your logviewer also.
    If you are using ALBPM 6.0/OBPM 10gr3 then right click on the editor and select option Run this to view the message pop up.
    Bibhu
    Edited by: Bibhuti Bhusan on Nov 1, 2010 2:16 AM

Maybe you are looking for