Insert marker while recording

I saw a video by Dr. Pooja Jaisingh in which she said there is a keyboard shorcut that will insert a marker while recording in Captivate 7.The marker is to mark slides which you need to redo. Can someone tell me the keyboard shortcut to insert this marker, please?
DJ
PS - I really want to insert a click box with a keyboard shortcut while recording. Apparently, this can not be done. So I thought I'd use this redo marker to mark where I want the click boxes.

There is a shortcut key possible for each interactive object, also for click boxes, look in the Action accordion of its properties. So if you want a big shape button with shortcut Enter (or something else) on each slide to Play...
To time for rest of slide: use CTRL-E on timeline. When you copy/paste the click box it will retain that timing.
On Master slides you can only add shape buttons:
http://blog.lilybiri.com/why-i-like-shape-buttons-captivate-6
I also did a webinar for Adobe about using shape buttons, but search is down on Adobe's blog site. It is labeled 'Lilybiri's favourite...'
About click boxes: they don't have an object style because by definition they are invisible to the user. hence...
However I don't understand why one of these methods doesn't work for you:
Create a click box on the first slide, time it for rest of slide and use the transform accordion or mouse to resize it to the slide size, then copy it, select all the other slides in the Filmstrip and paste.
Use the existing click boxes that were added automatically on the slides during a Training simulation, resize one of them and make its timing for rest of slide. Then use the small curved arrow in top of the Timing accordion to apply this to all click boxes, same for the Transform accordion to apply the resizing for all click boxes.
Both work for me. Are you sure you were on a regular and not on a master slide?
Lilybiri

Similar Messages

  • Problem of user key while inserting a lead record

    hi all
    i am trying to insert a lead record. I have created WSDL client in java environment. I have used Web Services V2.0 and Generic WSDL.
    I have given following 3 field values as they are the required fields on Lead object to create a record
    LeadLastName
    LeadFirstName
    LeadOwner.
    I have called LeadInsert() service to enter the record into the application.
    now my problem is that i get following error:
    The record with search specification '[Id] = "\?"' in business component 'Lead' (integration component 'Lead') has been deleted by another user since it was retrieved.(SBL-EAI-04289)
    I am confused as i am inserting a new record why the value of ID has to present in the database?
    is it something related to Child insert?
    thanks in advance.
    regards

    Hi,
    Not sure what is the problem you are facing
    My code like this works fine without any issues
         LeadStub ls = new LeadStub(wsLocation);
         crmondemand.LeadStub.LeadInsert_Input leadInsert_Input2 = new crmondemand.LeadStub.LeadInsert_Input();
         crmondemand.LeadStub.ListOfLeadData param = new ListOfLeadData();
         crmondemand.LeadStub.LeadData newLead = new crmondemand.LeadStub.LeadData();
         newLead.setLeadFirstName("Venkatesan");
         newLead.setLeadLastName("Sundaram");
         param.addLead(newLead);
         leadInsert_Input2.setListOfLead(param);
         ls.LeadInsert(leadInsert_Input2);
         System.out.println("Lead inserted successfully");
    Hope this helps
    -- Venky CRMIT

  • "Mark a good take while recording" Command

    I can't figure out what this is supposed to do for me . . .
    When I use this command, the current take is used in the comp (as always) but only until the point I hit the command any following comped material is cleared - then the comp becomes "on-the-fly" comp, which I don't understand. How is this useful?
    Then if I "move comp to new track" (not the "on-the-fly comp") this "on-the-fly comp" disappears from the comp list, but if I use "Export comp to new track" the "on-the-fly comp" is not deleted . . .
    Does anyone understand what this is all about?
    Thanks,
    James

    Make sure you are using a cardioid pattern mic facing away from the hi hat while recording. I'm sure you knew that already. Like I said, drummers should be willing to compromise when trying to get a good sound.
    Like another poster said, mic the bottom - that is where the majority of the "snare" sound is from. Take a foam coffee cup and put the head of the mic through it - it'll help limit the polar pattern of the mic further to reduce bleed from the hi hat.
    When you mic the top and the bottom, reverse the phase of the bottom mic (or top, depending) and that may help cancel out some of the hi hat sound, as well as possibly give you a tighter snare sound. However, this does not always work - flip the phase, then flip it back and see how each one sounds.
    After you record it, gate the snare, or pick the best sounding snare hits and use them appropriately to replace snare hits overrun by bleed. This is where pro tools Strip Silence plugin is exceptionally useful. . . I don't think Logic has this function though. Hope this helped.

  • Shooting stills while recording video with the SX50

    Has anyone done this?  I was shooting some video yesterday and was happy with how it came out until I realized that pressing the shutter button while recording video actually caused the video to insert a black frame and included the shutter sound.  What is this?
    My Kodak Z990 was able to do this same function (take pictures during videos) and even though some of them would turn out a bit blurrier than I would have liked, it never insert a black frame and sure didn't stick the shutter sound in there.  Did Canon do this on purpose?  I'm going to have to try and pull this video into some video editor to remove the frame and sound and hope it works.
    Lesson learned, I guess.  I'll take pictures and video separately from now on, just in case, but it's unfortunate that Canon screwed up badly on this feature.

    Charleyhorse,
    The items you mentioned need to be set before you start the video. Once the G16 is running the video, you cannot make adjustments to white balance, ISO, etc. The people I deal with all run the video for their G16's in Auto mode and let the camera make the decisions. But like myself, they don't use video very often, so hopefully someone with video experience on the G16 can give some better insight.
    Steve M.

  • Inserting one table records to the another table

    Hi There
    Though i don't close the Result set , My program throws the following Exception
    java.sql.SQLException: ResultSet is ClosedBecause of this my program Inserts only one record in the another table
    My code is this
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.DefaultComboBoxModel.*;
    import javax.swing.table.*;
    import java.sql.*;
    import java.util.*;
    public class SearchBook extends JDialog implements ActionListener
         private JComboBox comboCategory,comboAuthor;
         private JSplitPane splitpane;
         private JTable table;
         private JToolBar toolBar;
         private JButton btnclose, btncancel;
         private JPanel panel1,panel2,panel3,panel4;
         private JLabel lblCategory,lblAuthor;
         private Container c;
         //DefaultTableModel model;
         Statement st;
         ResultSet rs;
         Vector v = new Vector();
         public SearchBook (Connection con)
              // Property for JDialog
              setTitle("Search Books");
              setLocation(40,110);
              setModal(true);
              setSize(750,450);
              // Creating ToolBar Button
              btnclose = new JButton(new ImageIcon("Images/export.gif"));
              btnclose.addActionListener(this);
              // Creating Tool Bar
              toolBar = new JToolBar();
              toolBar.add(btnclose);
              try
                   st=con.createStatement();
                   rs =st.executeQuery("SELECT BCat from Books Group By Books.BCat");
                   while(rs.next())
                        v.add(rs.getString(1));
              catch(SQLException ex)
                   System.out.println("Error");
              panel1= new JPanel();
              panel1.setLayout(new GridBagLayout());
              GridBagConstraints c = new GridBagConstraints();
              c.fill = GridBagConstraints.HORIZONTAL;
              lblCategory = new JLabel("Category:");
              lblCategory.setHorizontalAlignment (JTextField.CENTER);
              c.gridx=2;
              c.gridy=2;
              panel1.add(lblCategory,c);
              comboCategory = new JComboBox(v);
              comboCategory.addActionListener(this);
              c.ipadx=20;
              c.gridx=3;
              c.gridwidth=1;
              c.gridy=2;
              panel1.add(comboCategory,c);
              lblAuthor = new JLabel("Author/Publisher:");
              c.gridwidth=2;
              c.gridx=1;
              c.gridy=4;
              panel1.add(lblAuthor,c);
              lblAuthor.setHorizontalAlignment (JTextField.LEFT);
              comboAuthor = new JComboBox();
              comboAuthor.addActionListener(this);
              c.insets= new Insets(20,0,0,0);
              c.ipadx=20;
              c.gridx=3;
              c.gridy=4;
              panel1.add(comboAuthor,c);
              comboAuthor.setBounds (125, 165, 175, 25);
              table = new JTable();
              JScrollPane scrollpane = new JScrollPane(table);
              //panel2 = new JPanel();
              //panel2.add(scrollpane);
              splitpane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,panel1,scrollpane);
              splitpane.setDividerSize(15);
              splitpane.setDividerLocation(190);
              getContentPane().add(toolBar,BorderLayout.NORTH);
              getContentPane().add(splitpane);
         public void actionPerformed(ActionEvent ae)
              Object obj= ae.getSource();
              if(obj==comboCategory)
                   String selecteditem = (String)comboCategory.getSelectedItem();
                   displayAuthor(selecteditem);
                   System.out.println("Selected Item"+selecteditem);
              else if(obj==btnclose)
                   dispose();     
              else if(obj==comboAuthor)
                   String selecteditem1 = (String)comboAuthor.getSelectedItem();
                   displayavailablity(selecteditem1);
                   //System.out.println("Selected Item"+selecteditem1);
                   System.out.println("Selected Author"+selecteditem1);
         private void displayAuthor(String selecteditem)
              try
              {     Vector data = new Vector();
                   rs= st.executeQuery("SELECT BAuthorandPublisher FROM Books where BCat='" + selecteditem + "' Group By Books.BAuthorandPublisher");
                   System.out.println("Executing");
                   while(rs.next())
                        data.add(rs.getString(1));
                   //((DefaultComboBoxModel)comboAuthor.getModel()).setVectorData(data);
                   comboAuthor.setModel(new DefaultComboBoxModel(data));
                   //rs.close();
              catch(SQLException ex)
                   System.out.println("ERROR");
         private void displayavailablity(String selecteditem1)
                   try
                        Vector columnNames = new Vector();
                        Vector data1 = new Vector();
                        String bname,bauthor,bcategory,bref1,bavail,bid;
                        int bref,mid,num;
                        rs = st.executeQuery("SELECT * FROM Books where BAuthorandPublisher='" + selecteditem1 +"'");     
                        while(rs.next())
                             bname = rs.getString("BName");                         
                             bauthor = rs.getString("BAuthorandPublisher");
                             bcategory = rs.getString("BCat");
                             bref = rs.getInt("BRef");
                             if(bref==1)bref1="Yes";
                             else bref1 = "No";
                             mid = rs.getInt("Mid");
                             if(mid==0)bavail="Available";
                             else bavail="Issued To:"+mid;
                             bid = rs.getString("BId");
                             System.out.println("Book Name is::"+bname);
                             System.out.println("Book Availabilty::"+bavail);
                             num = st.executeUpdate("insert into BSearch Values('"+bid+"','"+bname+"','"+bcategory+"','"+bauthor+"','"+bavail+"','"+bref1+",')");
                             System.out.println("Inseted in the table");
                        /**ResultSetMetaData md= rs.getMetaData();
                        int columns =md.getColumnCount();
                        String booktblheading[]={"Book ID","Book NAME","BOOK AUTHOR/PUBLISHER","REFRENCE","CATEGORY"};
                        for(int i=1; i<= booktblheading.length;i++)
                             columnNames.addElement(booktblheading[i-1]);
                        while(rs.next())
                             Vector row = new Vector(columns);
                             for(int i=1;i<=columns;i++)
                                  row.addElement(rs.getObject(i));
                             data1.addElement(row);
                             //System.out.println("data is:"+data);
                        ((DefaultTableModel)table.getModel()).setDataVector(data1,columnNames);
                        //DefaultTableModel model = new DefaultTableModel(data1,columnNames);
                        //table.setModel(model);
                        //rs.close();
                        //st.close(); */
                   catch(SQLException ex)
                        ex.printStackTrace();
    }Please help me Friends. I am very new to java. otherwise give me some suggestion to implement this idea in effective manner.
    Thank you for your service
    Cheers

    Hi
    Here i am Posting My programs code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.DefaultComboBoxModel.*;
    import javax.swing.table.*;
    import java.sql.*;
    import java.util.*;
    public class SearchBook extends JDialog implements ActionListener
         private JComboBox comboCategory,comboAuthor;
         private JSplitPane splitpane;
         private JTable table;
         private JToolBar toolBar;
         private JButton btnclose, btncancel;
         private JPanel panel1,panel2,panel3,panel4;
         private JLabel lblCategory,lblAuthor;
         private Container c;
         //DefaultTableModel model;
         Statement st,st1;
         ResultSet rs,rs1,rs2;
         Vector v = new Vector();
         public SearchBook (Connection con)
              // Property for JDialog
              setTitle("Search Books");
              setLocation(40,110);
              setModal(true);
              setSize(750,450);
              // Creating ToolBar Button
              btnclose = new JButton(new ImageIcon("Images/export.gif"));
              btnclose.addActionListener(this);
              // Creating Tool Bar
              toolBar = new JToolBar();
              toolBar.add(btnclose);
              try
                   st=con.createStatement();
                   rs =st.executeQuery("SELECT BCat from Books Group By Books.BCat");
                   while(rs.next())
                        v.add(rs.getString(1));
              catch(SQLException ex)
                   System.out.println("Error");
              panel1= new JPanel();
              panel1.setLayout(new GridBagLayout());
              GridBagConstraints c = new GridBagConstraints();
              c.fill = GridBagConstraints.HORIZONTAL;
              lblCategory = new JLabel("Category:");
              lblCategory.setHorizontalAlignment (JTextField.CENTER);
              c.gridx=2;
              c.gridy=2;
              panel1.add(lblCategory,c);
              comboCategory = new JComboBox(v);
              comboCategory.addActionListener(this);
              c.ipadx=20;
              c.gridx=3;
              c.gridwidth=1;
              c.gridy=2;
              panel1.add(comboCategory,c);
              lblAuthor = new JLabel("Author/Publisher:");
              c.gridwidth=2;
              c.gridx=1;
              c.gridy=4;
              panel1.add(lblAuthor,c);
              lblAuthor.setHorizontalAlignment (JTextField.LEFT);
              comboAuthor = new JComboBox();
              comboAuthor.addActionListener(this);
              c.insets= new Insets(20,0,0,0);
              c.ipadx=20;
              c.gridx=3;
              c.gridy=4;
              panel1.add(comboAuthor,c);
              comboAuthor.setBounds (125, 165, 175, 25);
              table = new JTable();
              JScrollPane scrollpane = new JScrollPane(table);
              //panel2 = new JPanel();
              //panel2.add(scrollpane);
              splitpane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,panel1,scrollpane);
              splitpane.setDividerSize(15);
              splitpane.setDividerLocation(190);
              getContentPane().add(toolBar,BorderLayout.NORTH);
              getContentPane().add(splitpane);
         public void actionPerformed(ActionEvent ae)
              Object obj= ae.getSource();
              if(obj==comboCategory)
                   String selecteditem = (String)comboCategory.getSelectedItem();
                   displayAuthor(selecteditem);
                   System.out.println("Selected Item"+selecteditem);
              else if(obj==btnclose)
                   dispose();     
              else if(obj==comboAuthor)
                   String selecteditem1 = (String)comboAuthor.getSelectedItem();
                   displayavailablity(selecteditem1);
                   //System.out.println("Selected Item"+selecteditem1);
                   System.out.println("Selected Author"+selecteditem1);
         private void displayAuthor(String selecteditem)
              try
              {     Vector data = new Vector();
                   rs1= st.executeQuery("SELECT BAuthorandPublisher FROM Books where BCat='" + selecteditem + "' Group By Books.BAuthorandPublisher");
                   System.out.println("Executing");
                   while(rs1.next())
                        data.add(rs1.getString(1));
                   //((DefaultComboBoxModel)comboAuthor.getModel()).setVectorData(data);
                   comboAuthor.setModel(new DefaultComboBoxModel(data));
              catch(SQLException ex)
                   System.out.println("ERROR");
         private void displayavailablity(String selecteditem1)
                   try
                        Vector columnNames = new Vector();
                        Vector data1 = new Vector();
                        String bname,bauthor,bcategory,bref1,bavail,bid;
                        int bref,mid,num;
                        //rs2.Open();
                        rs = st.executeQuery("SELECT * FROM Books where BAuthorandPublisher='" + selecteditem1 +"'");     
                        boolean tr=true;
                        while(rs.next())
                             if(true)
                                  bname = rs.getString("BName");                         
                                  bauthor = rs.getString("BAuthorandPublisher");
                                  bcategory = rs.getString("BCat");
                                  bref = rs.getInt("BRef");
                                  if(bref==1)bref1="Yes";
                                  else bref1 = "No";
                                  mid = rs.getInt("Mid");
                                  if(mid==0)bavail="Available";
                                  else bavail="Issued To:"+mid;
                                  bid = rs.getString("BId");
                                  System.out.println("Book Name is::"+bname);
                                  System.out.println("Book Availabilty::"+bavail);
                             num = st1.executeUpdate("insert into BSearch Values('"+bid+"','"+bname+"','"+bcategory+"','"+bauthor+"','"+bavail+"','"+bref1+",')");
                             System.out.println("Inseted in the table");
                   catch(SQLException ex)
                        ex.printStackTrace();
    }Thank you for your service

  • Increase the Insert performance while using th e DBlink

    Dear Friends ,
    I am trying to insert 4 lacs records into a table by using the DB-Link.It is taking very long time ( 1hour) to insert the records,is there any other way where to increase the performance.
    This is my insert statement.
    insert /*+ APPEND PARALLEL NOLOGGING */ into target_table
    select * from source_table@dblink_name

    There is little chance alter table your_table noparallel would help (if parallel keyword was specified at table creation)
    It seems you'll have to be more specific (I consider using parallelism as the last resort so consequently I don't have much experience)
    - is this a one time job ?
    there are several other methods (export/import, datapump, external tables ...) to get the job done
    - is this a regular procedure ?
    is it feasible to use methods mentioned above
    - how frequently has to be performed ?
    is it still feasible to use methods mentioned above (taking dblink performance as not acceptable)
    - is it mandatory to transfer 400 000 rows from the other database ?
    wouldn't be better to pull from the other database just the rows you need ?
    wouldn't be better to make the other database the driving site ?
    Regards
    Etbin
    Edited by: Etbin on 25.12.2011 13:30
    Try to remove (not sure if it can be done) the status answered as others would think no other contributions are needed
    you are supposed to mark the thread answered when you think a satisfactory solution from your point of view has been provided. Take a look at FAQ link (on upper right)

  • Try to insert 10.000 records, but stop at 500 records

    I try to insert 10.000 records to 4 coloumn table at sun solaris oracle, from visual basic application, but it stop at 500 records, and when I try to insert record 501, it never succeded.
    Is there limitation in oracle database in insertion procedure ?

    Hi,
    There is no such limitations in Oracle Database. The insertion process is going on, but it looks like hanging. You can do one thing to trace the happenings.
    1. Paste progress bar item in your screen
    2. Set Min = 1
    3. Set Max = Total no of records from source table(where 10,000 records are there)
    4. You might have one Do while..loop structure to insert a record to a target table. Within that loop, increase the value of process bar. So,while inserting a record, the progress bar value will change.
    So, you can trace whether the process is running or not.
    I think, this will help u to trace the process.
    N.Swaminathan

  • While Recording BDC

    Hi experts,
    I m totally new for BDC.So kindly tell me in detail.
    I have a requirement that I have to add field in already developed BDC.Tell me steps and...
    1.While recording whether we have to enter data or have to use F4 help .
    2. After recording where to go to see the field details.
    Aastha

    Hi,
    Just enter the new value in the field you want to record if its already exist just delete that record and give any relevant record. As it is just a recording it will take that value in the developed program.
    After creating the program from the recording find out the changed values and comment all the changed things then just give the wa_tab-pono. which is from the loop.
    That is there by looping the internal table and edit all those changed values which are recorded and give the work area field in those place  for example see below.
    LOOP AT int_tab INTO wa_tab.
        PERFORM bdc_dynpro      USING 'SAPMP50A' '1000'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
    *INSERTING THE PERNR VALUE*
        PERFORM bdc_field       USING 'RP50G-PERNR'
                                      wa_tab-pernr.            "'00001011'.
    Here 00001011 is the recorded value and give the wa_tab-pernr from the loop.
    Do like this for all the recorded values.
    Hope u get this concept.
    Thanks,
    Sakthi.

  • What is the best approach to insert millions of records?

    Hi,
    What is the best approach to insert millions of record in table.
    If error occurred while inserting the record then how to know which record has failed.
    Thanks & Regards,
    Sunita

    Hello 942793
    There isn't a best approach if you do not provide us the requirements and the environment...
    It depends on what for you is the best.
    Questions:
    1.) Can you disable the Constraints / unique Indexes on the table?
    2.) Is there a possibility to run parallel queries?
    3.) Do you need to know the rows which can not be inserted if the constraints are enabled? Or it is not necessary?
    4.) Do you need it fast or you have time to do it?
    What does "best approach" mean for you?
    Regards,
    David

  • Oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID

    I implemented a save point in a task flow by creating a save point in a method action The following is the code from managed bean for creating the save point:
                 ControllerContext cc = ControllerContext.getInstance();
    if (cc != null) {
    SavePointManager mgr = cc.getSavePointManager();
    if (mgr != null) {
    String id = mgr.createSavePoint();
    savePointId = id;
    It worked fine in local (Integrated Weblogic server). It also worked fine initially when I deployed the changes to the DEV weblogic server. But after a couple of days, in DEV server I get the following error everytime when trying to create a save point:
    Caused By: oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID '4d233555-ea0c-4bae-9f17-cc6c
    7124870f'. oracle.adfinternal.controller.savepoint.SavePointUtil.createAndLogSavePointException(SavePointUtil.java:56)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:245)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.sun.el.parser.AstValue.invoke(Unknown Source)
            at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
            at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:173)
            at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:163)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:1035)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:926)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:824)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:554)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:158)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:115)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:84)
            at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
            at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
            at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
            at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
            at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
            at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
            at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:479)
            at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
            at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
            at java.security.AccessController.doPrivileged(AccessController.java:284)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: java.sql.SQLException: Connection has already been closed.
            at weblogic.jdbc.wrapper.PoolConnection.checkConnection(PoolConnection.java:58)
            at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:94)
            at weblogic.jdbc.wrapper.Connection.prepareCall(Connection.java:543)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:221)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
    At the bottom of the stack, this statement "Caused By: java.sql.SQLException: Connection has already been closed." intrigues me, but why this error occurs after a couple of days or after particular number of connections or access to the application.
    This same issue is also happening in all environments including PROD. Please help. JDeveloper version used is 11.1.2.1.0.

    We got the solution from Oracle support. 
    Passivation Fails With Error "Connection has already been closed" in PoolConnection.checkConnection() (Doc ID 1330271.1). Problem is caused by the WebLogic Server Connection Pool feature "Inactive Connection Timeout". When this parameter is set up, WLS will forcibly release reserved connections back into the pool. This is a problem for ADF BC that relies on keeping the JDBC connection associated to its
    Application Module instance.
    Set the "Inactive Timeout Session" to 0 (default), so that the JDBC connection stays active while
    the corresponding Application Module instance is active:
    Thanks....

  • Heavy white noise/hiss while recording guitar through audio interface

    I have just purchased a new MacBook pro 2011 (low end 15") and have tried recording with an m-audio fast track audio interface. Unfortunately I'm getting terrible white noise and hiss while recording my guitar. The guitar is plugged straight into the interface using a guitar lead which is then usb connected to my mac.
    I am pretty sure it's not the interface because it's brand new. Also I have tried three different guitars and all have the same out come.
    Please help
    Things that may help diagnose the problem:
    I have installed a new driver.
    When the gain and presence is increased the noise is worse.
    The output is not hitting the red mark.
    Thanks
    Andre

    I had your problem and I resolved it! i have my mic and guitars plugged into my Eurorack UB1202 analog mixer which outputs to my MacBook Pro via Bheringer UCA222 audio interface then back to my mixer and to my headphones/speakers. i noticed a white noise last night while i was working and all I did to fix it was unplug the audio interface from the outside usb hub (closest to the screen) and plugged it into my middle hub. the noise has now stopped and its crystal clear.
    TL;DR try plugging your audio interface into different usb hubs. it worked for me. hope that helps!

  • Output Plug-In Effects without Recording (While Recording!)??

    I am using Logic as sort of a MainStage/Logic hybrid: I am recording live performances on multiple tracks (using a Tascam M-164UF mixing board with multiple outs via USB 2.0). At the same time, I am routing plug-in effects (such as delay) through a MOTU Ultralite on Firewire bus back into the mixing console.
    This all works splendidly. However, I do not want to record any audio on channel strip tracks that I am only using for effects; I just want to software monitor. For example, I am sending an AUX output from the Tascam board into an audio track containing a delay plug-in, than routing its output via the Ultralite into a channel on the Tascam. But I don't want to record on this track while recording other tracks.
    Hope this makes sense. Any ideas for a simple effective way to achieve this?

    I think I answered my own question. The "I" button (input monitoring) button seems to achieve this. If anyone has any other hints regarding this or a better method, it would be appreciated. In the meantime, I will read more about the input monitoring button, and will mark this as answered.

  • Monitoring Sound Out While Recording

    Does anyone know what would be the correct settings in Logic Pro for monitoring the sound output while recording a guitar? In Garage Band, all you have to do is turn on monitoring and you can hear the throughput. I used to be able to do it in an old version (4.8) of Logic. Since I upgraded to Logic 7, I have not been able to hear the "real time" guitar while I record. Any help would be greatly appreciated. (By the way, I am using an iMic to connect to the USB input . I'm using a G5 (2.7ghz dual proc) PowerMac.

    Mark - Thanks for your reply. Yes, I've tried experimenting with that all night long. I can see that it affects the output meter in the track mixer, but still no sound. When I select the iMic input , the sound does not route through to the physical line out on the G5. I can open up Garage Band and then go back to Logic and then hear the output. The problem with this setup is then after I record a track, you can't hear the output of what you just recorded without first going in and selecting the "built-in audio" setting of the audio options (changing from the iMic setting). I never had this problem with the ancient version (4.8) of Logic I used on my old iBook.
    Thanks again for your reply.
    Jack

  • Cannot playback while recording

    While recording a show, I cannot go back AT ALL.  It just will not work.  I have to start the entire program over using Play to get back to where I was in order to go back at all.  This is ridiculous.  I have rebooted the box a number of times.  I will not totally reset the box because the last time that was done, it wiped out all of my settings and favorites (even though tech support said it wouldn't).
    Is the only solution to this a new box? I don't want to go to the trouble of getting a new box and discover I have the same annoying problem.

    Replacing the box would fix troubles caused by physical issues. This is not caused by a physical problem. This is a software function. We would need to reprogram the box. The reprogram will cause personalized settings and favorites to be lost. If you would like to go through with this, please send me a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • How can I use zoom while recording on my iPhone 4S?

    How can I use zoom while recording on my iPhone 4S?

    Christina_319 wrote:
    How can I use zoom while recording on my iPhone 4S?
    You can't change the zoom while recording.

Maybe you are looking for