Action Listner Problem

Hi:
I am implementing action listner
htmlCommandButton.addActionListener(new ImgButtonListener());
     public static class ImgButtonListener implements ActionListener             <--------- code executes till here
          @Override
          public void processAction(ActionEvent ae)throws AbortProcessingException   <---- This mehod is never called ???:( 
                       System.out.println("I am button");
        }Any Idea
Thankyou in advance,
dexter

Hi:
I figured it out. :P It might help other who deal with dynamic Faces. DON'T include form within form. Check html code generated by your program if is form within form then it is bad. get rid of all forms there can only be one form for all components. i.e.
TextInput custom control has its own form
You embedded this control in your page them it inherit its "form" tag too. Keep this in mind
Cheers,
DDexter

Similar Messages

  • LISTNER PROBLEM

    Hi friends,
    I am in serious problem. I am using AIX, oracle 9, sap4.7
    I restore the data files ,orarach,redolog from PRD server to Dummy PRD server(both have same SID & same palteform)
    now when i start the listner than it gives a error
    Started with pid=692428
    Error listening on: (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    IBM/AIX RISC System/6000 Error: 67: Address already in use
    And when i reboot the system than it gives an error:-
    tegaprod:oraprd 1> lsnrctl start
    exec(): 0509-036 Cannot load program lsnrctl because of the following errors:
            0509-130 Symbol resolution failed for lsnrctl because:
            0509-136   Symbol __pth_init (number 296) is not exported from
                       dependent module /usr/lib/libpthreads.a[shr_xpg5_64.o].
            0509-192 Examine .loader section symbols with the
                     'dump -Tv' command.
    I ALSO posted this thread on unix form .
    Link: [url]listner problem
    Please help me
    Thanks & Regards
    Karan
    Edited by: karan Singh on May 9, 2008 1:10 PM

    Hi
    check Note 723147 - ORA-12542: TNS: address already in use
    regards,
    kaushal

  • Looking for an idea to call action listner or other way to call java code

    Hi
    I'm building some project on JSF2
    I'm Looking for an idea to call action listner or other way to call java code from link(not commandlink)
    and i got a sign out button which i want to invalidate the session when its clicked...
    i cant do a redirect to a jsp... its a "special" link that does the log out , so i cant use the link for the session invalidation
    I dont want to use commandLink cause i need to put it into a form, and i don't to make my code uglier...
    any ideas?
    Im using JSF 2 (new to it)

    Under the constraints you have given the only thing I can think of is some kind of "pretty url" technique combined with JSF. Google can help you out. (Although that might be overkill for what you need.)
    Other than that I think you are looking at straight Java or JSP solutions that do not involve JSF.

  • Setting action listner to JTable header

    Hi,
    Does any one have any idea on how to set the action listner to column header? If you know the solution, please pass on.
    Thanks,
    Jeson.

    Hi friends,
    We found a way to add button to table header.Please find the below mentioned code. However, I am unable to set the tooltip. If you have any idea...still 5 dollars are available..
    Regards,
    Je.
    =======================================================================
    import javax.swing.JTable;
    import javax.swing.JScrollPane;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JButton;
    import javax.swing.table.JTableHeader;
    import javax.swing.table.TableColumn;
    import java.awt.Component;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.JLabel;
    import javax.swing.JButton;
    import javax.swing.ImageIcon;
    import javax.swing.BorderFactory;
    import javax.swing.SwingConstants;
    public class SimpleTableDemo extends JFrame {
    private boolean DEBUG = true;
    public SimpleTableDemo() {
    super("SimpleTableDemo");
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    String str1 = new String("First Name");
    String str2 = new String("Last Name");
    String str3 = new String("");
    String str4 = new String("# of Years");
    String str5 = new String("Vegetarian");
    Object[] columnNames = {str1, str2, str3, str4, str5};
    final JTable table = new JTable(data, columnNames);
    table.getColumn("").setHeaderRenderer(new IconColumnHeader("Month"));
    table.setPreferredScrollableViewportSize(new Dimension(500,130));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    //Add the scroll pane to this window.
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    public static void main(String[] args) {
    SimpleTableDemo frame = new SimpleTableDemo();
    frame.pack();
    frame.setVisible(true);
    class IconColumnHeader extends JPanel implements TableCellRenderer {
    private JLabel label = null;
    private JButton jbn = null;
    /** Creates a new instance of IconColumnHeader
    This adds the specified Icon to the column header*/
    public IconColumnHeader(String nam) {
    setBorder(BorderFactory.createRaisedBevelBorder());
    jbn = new JButton(nam);
    ImageIcon dissicon = new ImageIcon("C:/images/auto1.gif");
    jbn.setIcon(dissicon);
    jbn.setName("Month");
    jbn.setToolTipText("Month");
    add(jbn);// = new JButton(nam));
    /** Returns the table cell renderer component
    * @param jTable main table
    * @param obj value
    * @param param boolean value
    * @param param3 boolean value
    * @param param4 table row
    * @param param5 table column
    * @return cell rendere component
    public Component getTableCellRendererComponent(JTable jTable, Object obj, boolean param, boolean param3, int param4, int param5) {
    /*label.setText(obj.toString());
    label.setHorizontalTextPosition(SwingConstants.LEFT);
    label.setVerticalTextPosition(SwingConstants.CENTER);
    return this;*/
    jbn.setText(obj.toString());
    jbn.setHorizontalTextPosition(SwingConstants.LEFT);
    jbn.setVerticalTextPosition(SwingConstants.CENTER);
    return this;
    ====================================================================

  • Action script problem for audio player

    i have made a introduction with a  audio and controller. I am facing one problem. I will like to play as  soon as some one enter the page but it does not.
    My action script is pasted below and kindly advise me for any changes that can be done
    var soundReq:URLRequest = new URLRequest("Sonu Nigam_Alka Yagnik - Suraj Hua M.mp3");
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var resumeTime:Number = 0;
    sound.load(soundReq); sound.addEventListener(Event.COMPLETE, onComplete);
    up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
    down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
    function onComplete(event:Event):void
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(event:MouseEvent):void
    { soundControl = sound.play(resumeTime);
    pause_btn.visible = true;
    pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
    play_btn.visible = false; play_btn.removeEventListener(MouseEvent.CLICK, playSound);
    function pauseSound(event:MouseEvent):void {
    resumeTime = soundControl.position;
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function stopSound(event:MouseEvent):void {
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false; pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function increaseVolume(event:MouseEvent):void {
    volumeControl.volume += .5;
    soundControl.soundTransform = volumeControl;
    function decreaseVolume(event:MouseEvent):void {
    volumeControl.volume -= .5;
    soundControl.soundTransform = volumeControl;
    pause_btn.visible = false;

    i am having big problem with the coding below with the sound. As it we enter the site, the music auto start very loud which is not good at all for the ear drums. How do i adjust that?
    www.hitenkajal.co.uk
    var soundReq:URLRequest = new URLRequest("10 Kabhi Alvida Naa Kehna_0.mp3");
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var resumeTime:Number = 0;
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
    down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
    function onComplete(event:Event):void
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(event:MouseEvent):void
    soundControl = sound.play(resumeTime);
    pause_btn.visible = true;
    pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
    play_btn.visible = false;
    play_btn.removeEventListener(MouseEvent.CLICK, playSound);
    function pauseSound(event:MouseEvent):void
    resumeTime = soundControl.position;
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function stopSound(event:MouseEvent):void
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function increaseVolume(event:MouseEvent):void
    volumeControl.volume = 1;
    soundControl.soundTransform = volumeControl;
    function decreaseVolume(event:MouseEvent):void
    volumeControl.volume = 0.1;
    soundControl.soundTransform = volumeControl;
    pause_btn.visible = false;
    playSound(null);

  • Corrective actions setup problem

    Hi guys!
    I have problem with setup corrective action for listener avaliability when status is down and action doesnt work at all. I have create template Listener_stuff with metric trasholds for Response Time (msec) and Status is down. Other details for template are:
    Corrective Actions
    Critical LSNRCTL START LISTENER_TESTDB2
    Allow only one corrective action for this metric to run at any given time (checked)
    Advanced Threshold Settings
    Critical Threshold: Down
    Number of Occurrences: 1
    Collection Schedule: Every 1 Minute
    And corrective action details for listener are:
    Name: LSNRCTL START LISTENER_TESTDB2
    Description: lsnrctl start LISTENER_TESTDB2
    Target Type: Listener
    and *'OS Command' Corrective Action* details are:
    Command Type: Single Operation
    * Command: lsnrctl start LISTENER_TESTDB2
    I have saved credentials for that specific listener and host where listener resides. Also i have created notification rule when specific listener is down and that work ok.
    Other details are:
    Grid control OMS is version 10.2.0.3 , and agent version on test host is 10.2.0.4.
    Host has Red Hat Linux EL 4 OS
    Please help me with this, or send me some links with more detailed corrective action examples.....
    Thank you!
    Edited by: rootsman on Jan 11, 2012 1:21 AM

    And this is what i receive related to corrective action job:
    Corrective Action=LSNRCTL START LISTENER_TESTDB2
    Created By=SYSMAN
    Task Type=Host Command
    Target Name=LISTENER_TESTDB2_testdb.domain.com
    Target Type=Listener
    Timestamp=Jan 11, 2012 12:52:30 PM CET
    Status=Failed
    Metric=Status
    Metric Value=0
    Severity=Critical
    Rule Name=Listener_test
    Rule Owner=TEST
    Step Output=
    Command:Output Log
    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 11-JAN-2012 12:52:29
    Copyright (c) 1991, 2011, Oracle. All rights reserved.
    Starting /db/agent10g/bin/tnslsnr: please wait...
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    Linux Error: 2: No such file or directory
    ~~~End Step Output/Error Log~~~

  • Infotype 0000 Actions overview problem

    Hi mates,
    we are upgrading DEV system from 4.6C to 6.0.
    After upgrading the system we cannot see data on overview screen on infotype 0000, and on all other ITs we can see data.
    Could you tell me what could be the problem with IT0000?
    Thanks
    Romano

    Hi
    This problem may have two possible reason:
    1)IT0302.You may need to check your entries in T529A, as you might have
    activated this infotype (0302 additional actions)and therefore all
    completed actions saved in infotype 0000 (actions)also need to be logged
    in infotype 0302.
    if this IT has been activated y mistake then just deactivate it, if not
    you will need to running report 'RPUEVSUP'.(please check the documenta-
    tion of this report before hand).
    2)If you do not use IT 0302, you will need to check your setting in
    table T77S0.
    If the switch ADMIN EVSUP has value '1' In order to deactivate this
    functionality 'Additional actions' again, just set the value for this
    swith ADMIN EVSUP back to 'blank' in table T77S0.
    Group   Sem.abbr.   Value abbr
    ADMIN   EVSUP          ' '
    After deactivating this option, the infotype 0000 records should be
    diplayed again on the overview screen.
    Regards
    Ramana

  • GetURL action scritp problem

    I have a big problem with Macromedia Flash MX: primitiv action script associated with button (on (release) {
    getURL("page.html","framename");
    is not passed to frame "framename" of frameset, but open new window.
    On 10.4.6 and older this work perfect, but on 10.4.7. is wron on all browswrs (Safari, IE, Firefox)
    Please, help me somebody.
    Maybe is problem with java implementation...some updates...?

    this should work... but using frame is...anyway...
    try looking for allowScriptAccess in your embed and object
    tag and set it to "always" .. it help sometime when using getURL...
    other then this you could call a javascript function witch
    change the frame current src...

  • Bug in form action configuration: problem with multifield

    I’ve created a new page in content/geometrixx-outdoors/en/ and added a form component (from the foundation components).
    I configure the form’s start element with the action type ‘Mail’ and add a mail address in the Mailto field (xtype="multifield") in the action configuration area.
    I save the configuration and see the start node in the JCR having a property ‘mailto’ with the specified value (as expected).
    However, if I open the start element’s configuration dialog again and try to change the mail address (in Mailto) or add another mail address (in Mailto, CC or BCC), clicking the dialog’s OK button doesn’t close the dialog and save the values anymore.
    Only after I removw a multifield element, I’m able to save the values by clicking the OK button.
    (Tested with FF 11 and Chrome 18.)
    I'de like to see this problem fixed.
    Can I file this problem description as bug anywhere?

    I forgott to mention that I've already installed CQ5.5.
    Unfortunately, I see this bug not fixed yet.
    Note: it's the multifield (xtype="multifield") that's bothering me.
    This has nothing to do with the radio or checkbox field. There's no default selection possible.

  • BIZTALK bts action mapping problem with Message Schemas for the Composite Operation

    Hi,
    I have a message schema made with the composite operation.
    now, I have re-deployed my biztalk project and in the send port for this Oracle composite message the SOAP action header hasn't updated the correct action.
    now I tried several verations for this soap action mapping and this is what I got:
    ><BtsActionMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    >  <Operation Name="Select" Action="http://Microsoft.LobServices.OracleDB/2007/03/CompositeOperation" />
    >  <Operation Name="SQLEXECUTE" Action="http://Microsoft.LobServices.OracleDB/2007/03/CompositeOperation" />
    > </BtsActionMapping>
    Now as you can see the Composite schema has 2 operations one is from an Oracle VIEW and the second one is an Oracle SQL querry.
    please if someone could assist me with this issue?
    Message Schemas for the Composite Operation
    Message Schemas for the Composite Operation

    For Composite Operations you don't use the Action Mapping Xml for both the SQL Server and Oracle bindings.
    The Action for Oracle Composite Operations is:
    http://Microsoft.LobServices.OracleDB/2007/03/CompositeOperation
    by itself.  No Xml or anything.

  • Tower Defense Action Script Problem

    Hi, I've been working my way through a tutorial to create a tower defense game. I've ran into a slight problem with a bit of code:
    package{
              imporProxy-Connection: keep-alive
              Cache-Control: max-age=0
    I get an Identifier 1078 error, I was hoping that someone might be able to tell me a little more about what this is doing, and
    if anyone knows of a solution. Any help would be greatly appreciated!
    Here is the link for the tutorial
    http://www.flashgametuts.com/tutorials/as3/how-to-create-a-tower-defense-game-in-as3-part- 2/

    Remove the 2 lines. They're not AS.
    imporProxy-Connection: keep-alive
    Cache-Control: max-age=0

  • Put in DVD and then no dvd action, finder problems

    If I put a dvd in nothing happens and disk utility freezes.
    DVD wont come out, wont mount, wont spin.
    Eventually finder bogs down.
    REstart with disk in is necessary to regain normalcy.
    This is a fresh system reinstall a few days ago.
    Same problem prior to reinstall too.

    "by removing it and making an appointment at the genius bar?
    AASP???  nerd division of AARP?"
    Either genius bar or Authorized Apple Service Provider. That's so you don't have any clunk head messing with your Mac.

  • Listner problem in 11g

    Hi,
    Oracle Version:11.2.0.1.0
    Operating system:Linux
    We just installed the 11g software and created a database but unable to connect the database through client .
    status:Failure-Test failed:Listener refused the connection with the following error:ORA-12505,Tns:listner does not currently know of sid given in connect descriptor The connection descriptor used by the client was:192.168.3.14.........Here is my lisnter.ora file.
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER1 =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = oel5-11gr2.localdomain)(PORT = 1521))
    ADR_BASE_LISTENER1 = /u01/app/oracle
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.3.143)(PORT = 1521))
    ADR_BASE_LISTENER = /u01/app/oracle[oracle@virdemo app]$ lsnrctl start
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 14-DEC-2009 04:07:57
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/11.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/diag/tnslsnr/virdemo/listener/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.3.143)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 14-DEC-2009 04:07:57
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/diag/tnslsnr/virdemo/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.3.143)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    and my tnsnames.ora# tnsnames.ora Network Configuration File: /u01/app/oracle/product/11.2.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    CAPTURE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = oel5-11gr2.localdomain)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = capture)

    Hi,
    I was able to start the listener but unable to connect to database through client and i am getting error like this.
    status:Failure-Test failed:Listener refused the connection with the following error:ORA-12505,Tns:listner does not currently know of sid given in connect descriptor The connection descriptor used by the client was:192.168.3.14.........Here is my listner.ora file
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.3.143)(PORT = 1521))
    [oracle@virdemo admin]$ lsnrctl start
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 14-DEC-2009 06:45:38
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    Starting /u01/app/oracle/product/11.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/diag/tnslsnr/virdemo/listener/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.3.143)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date                14-DEC-2009 06:45:38
    Uptime                    0 days 0 hr. 0 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/virdemo/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.3.143)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    [oracle@virdemo admin]$

  • Action type problem

    Hi All,
    I Have written a program to delimit the most recent record of PA0000 and creating a new record by giving the Personnel.no , action type and date in selection screen.
    It is delimiting and creating a new record in PA0000 perfectly.
    But if i see in PA30 by selecting 0000 ActionsType in display mode i can able to see the newly created record,but i am not able see the new record in overview tab.
    hope my question is understood, otherwise please feel free if u have any doubts about my question.
    as this is urgent to me, please give me a reply .
    Thanks,
    JKR.

    Hi,
    Please activate additional actions.
    GO to :IMG>Personnal Mngt>Personnel Admin>Customise procedures>Actions-->Set up Personnal actions -->Activation 'Additional Actions'
    Remove Test and click on execute.
    then check with the overview in pa30 for actions infotype 0000
    Regards,
    Pranitha

  • Simple action creating problem

    Hi. I'm having a problem with this simple script. All I want
    to is "onClipEvent" go to the next frame in the current movie. I
    have it set to _root - but want to use the next frame in the movie
    symbol only. Anyone have advice?

    Is there any sites you guys know of that actually teaches you
    the concept of coding.(actionscript)

Maybe you are looking for

  • LR5 's Adjustment Brush doesn't seem to work-does the New Radial Filter have priority?

    So why in the world would I update Lightroom in the middle of a job.? Before I was able to do in and touch up shadowy areas using (K) adjustment brush, but now it doesn;t seem to work. The radial brush does a good job for a defined area but for SPOT

  • Nokia 5800 swipe to answer not working in firmware...

    Hello, I have updated my nokia 5800 xm  last week using nokia pc suite. Everything was working fine till last week. Now, whenever I recieve a call, I'm not able to answer the call by sliding the answer option in the screen. I have to unlock the touch

  • JDBC Persistent Store Exceptions Table needs to be renamed

    we are facing a situation almost every week in production. The only workaround is to rename the table everytime an boune the Weblogic. Oracle recommended to increase the statement timeout. Not sure if that will work. Can anyone provide what is the re

  • PowerBook G4 spits out Mac OS 10.5 Leopard Install DVD

    I bought Mac OS X Leopard and wanted to install it on my PowerBook G4 however it spits it straight back out of the disc drive. I tried to restart the computer and hold down C - this did not work either. When I test it out on my PowerPC the installati

  • Limiting lowermost position of desktop icons

    I use a third-party launch bar which is positioned horizontally along the bottom of the screen. Although it has a transparency feature, one inconvenience is that it obscures the lowermost desktop icons, and I periodically have to move it out of the w