Sequence Error: Unable to perform edit

Hi,
I'm trying to drag a clip from the bin to the timeline, but FCP is very unhappy about it.
"The duration of the resulting sequence would exceed the maximum duration, which is 12 hours (or 6 hours for sequences with high audio rates)."
So, I guess I have to take some clips off the timeline. Or maybe there's a setting to increase the max duration?
Thanks
G5 Quad   Mac OS X (10.4.6)  

Yep.
Your sequence is your timeline. Once you create a new sequence, it will reside in your browser. When you double click on it it will open a new "tabbed" timeline.
Just a note. Depending on a projects complexity and the speed of your system, things can slow down when you start dealing with large amounts of footage and sequences. So sometimes it helps to close sequences that you're not using.
If you run into "slow" issues, it can also help to create a separate project to deal with separate large sequences.
Have fun
rh

Similar Messages

  • Getting error Unable to perform transaction on the record.

    Hi,
    My requirement is to implement the custom attachment, and to store the data into custom lob table.
    my custom table structure is similer to that of standard fnd_lobs table and have inserted the data through EO based VO.
    Structure of custom table
    CREATE TABLE XXAPL.XXAPL_LOBS
    ATTACHMENT_ID NUMBER NOT NULL,
    FILE_NAME VARCHAR2(256 BYTE),
    FILE_CONTENT_TYPE VARCHAR2(256 BYTE) NOT NULL,
    FILE_DATA BLOB,
    UPLOAD_DATE DATE,
    EXPIRATION_DATE DATE,
    PROGRAM_NAME VARCHAR2(32 BYTE),
    PROGRAM_TAG VARCHAR2(32 BYTE),
    LANGUAGE VARCHAR2(4 BYTE) DEFAULT ( userenv ( 'LANG') ),
    ORACLE_CHARSET VARCHAR2(30 BYTE) DEFAULT ( substr ( userenv ( 'LANGUAGE') , instr ( userenv ( 'LANGUAGE') , '.') +1 ) ),
    FILE_FORMAT VARCHAR2(10 BYTE) NOT NULL
    i have created a simple messegefileupload and submit button on my custom page and written below code on CO:
    Process Request Code:
    if(!pageContext.isBackNavigationFired(false))
    TransactionUnitHelper.startTransactionUnit(pageContext, "AttachmentCreateTxn");
    if(!pageContext.isFormSubmission()){
    System.out.println("In ProcessRequest of AplAttachmentCO");
    am.invokeMethod("initAplAttachment");
    else
    if(!TransactionUnitHelper.isTransactionUnitInProgress(pageContext, "AttachmentCreateTxn", true))
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    ProcessFormRequest Code:
    if (pageContext.getParameter("Upload") != null)
    DataObject fileUploadData = (DataObject)pageContext.getNamedDataObject("FileItem");
    String strFileName = null;
    strFileName = pageContext.getParameter("FileItem");
    if(strFileName == null || "".equals(strFileName))
    throw new OAException("Please select a File for upload");
    fileName = strFileName;
    contentType = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");
    BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, fileName);
    String strItemDescr = pageContext.getParameter("ItemDesc");
    OAFormValueBean bean = (OAFormValueBean)webBean.findIndexedChildRecursive("AttachmentId");
    String strAttachId = (String)bean.getValue(pageContext);
    System.out.println("Attachment Id:" +strAttachId);
    int aInt = Integer.parseInt(strAttachId);
    Number numAttachId = new Number(aInt);
    Serializable[] methodParams = {fileName, contentType , uploadedByteStream , strItemDescr , numAttachId};
    Class[] methodParamTypes = {fileName.getClass(), contentType.getClass() , uploadedByteStream.getClass() , strItemDescr.getClass() , numAttachId.getClass()};
    am.invokeMethod("setUploadFileRowData", methodParams, methodParamTypes);
    am.invokeMethod("apply");
    System.out.println("Records committed in lobs table");
    if (pageContext.getParameter("AddAnother") != null)
    pageContext.forwardImmediatelyToCurrentPage(null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    if (pageContext.getParameter("cancel") != null)
    am.invokeMethod("rollbackShipment");
    TransactionUnitHelper.endTransactionUnit(pageContext, "AttachmentCreateTxn");
    Code in AM:
    public void apply(){
    getTransaction().commit();
    public void initAplAttachment() {
    OAViewObject lobsvo = (OAViewObject)getAplLobsAttachVO1();
    if (!lobsvo.isPreparedForExecution())
    lobsvo.executeQuery();
    Row row = lobsvo.createRow();
    lobsvo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    public void setUploadFileRowData(String fName, String fContentType, BlobDomain fileData , String fItemDescr , Number fAttachId)
    AplLobsAttachVOImpl VOImpl = (AplLobsAttachVOImpl)getAplLobsAttachVO1();
    System.out.println("In setUploadFileRowData method");
    System.out.println("In setUploadFileRowData method fAttachId: "+fAttachId);
    System.out.println("In setUploadFileRowData method fName: "+fName);
    System.out.println("In setUploadFileRowData method fContentType: "+fContentType);
    RowSetIterator rowIter = VOImpl.createRowSetIterator("rowIter");
    while (rowIter.hasNext())
    AplLobsAttachVORowImpl viewRow = (AplLobsAttachVORowImpl)rowIter.next();
    viewRow.setFileContentType(fContentType);
    viewRow.setFileData(fileData);
    viewRow.setFileFormat("IGNORE");
    viewRow.setFileName(fName);
    rowIter.closeRowSetIterator();
    System.out.println("setting on fndlobs done");
    The attchemnt id is the sequence generated number, and its defaulting logic is written in EO
    public void create(AttributeList attributeList) {
    super.create(attributeList);
    OADBTransaction transaction = getOADBTransaction();
    Number attachmentId = transaction.getSequenceValue("xxapl_po_ship_attch_s");
    setAttachmentId(attachmentId);
    public void setAttachmentId(Number value) {
    System.out.println("In ShipmentsEOImpl value::"+value);
    if (getAttachmentId() != null)
    System.out.println("In AplLobsAttachEOImpl AttachmentId::"+(Number)getAttachmentId());
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "AttachmentId", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_EMP_ID_NO_UPDATE"); // Message name
    if (value != null)
    // Attachment ID must be unique. To verify this, you must check both the
    // entity cache and the database. In this case, it's appropriate
    // to use findByPrimaryKey() because you're unlikely to get a match, and
    // and are therefore unlikely to pull a bunch of large objects into memory.
    // Note that findByPrimaryKey() is guaranteed to check all AplLobsAttachment.
    // First it checks the entity cache, then it checks the database.
    OADBTransaction transaction = getOADBTransaction();
    Object[] attachmentKey = {value};
    EntityDefImpl attachDefinition = AplLobsAttachEOImpl.getDefinitionObject();
    AplLobsAttachEOImpl attachment =
    (AplLobsAttachEOImpl)attachDefinition.findByPrimaryKey(transaction, new Key(attachmentKey));
    if (attachment != null)
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "AttachmentId", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_EMP_ID_UNIQUE"); // Message name
    setAttributeInternal(ATTACHMENTID, value);
    Issue faced:
    When i run the page for the first time data gets inserted into custom table perfectly on clicking upload button,
    but when clicked on add another button on the same page (which basically redirects to the same upload page and increments the attachment id by 1)
    i am getting the below error:
    Error
    Unable to perform transaction on the record.
    Cause: The record contains stale data. The record has been modified by another user.
    Action: Cancel the transaction and re-query the record to get the new data.
    Have spent entire day to resolve this issue but no luck.
    Any help on this will be appreciated, let me know if i am going wrong anywhere.
    Thanks nd Regards
    Avinash

    Hi,
    After, inserting the values please re-execute the VO query.
    Also, try to redirect the page with no AM retension
    Thanks,
    Gaurav

  • Frm-40505:ORACLE error: unable to perform query in oracle forms 10g

    Hi,
    I get error frm-40505:ORACLE error: unable to perform query on oracle form in 10g environment, but the same form works properly in 6i.
    Please let me know what do i need to do to correct this problem.
    Regards,
    Priya

    Hi everyone,
    I have block created on view V_LE_USID_1L (which gives the error frm-40505) . We don't need any updation on this block, so the property 'updateallowed' is set to 'NO'.
    To fix this error I modified 'Keymode' property, set it to 'updatable' from 'automatic'. This change solved the problem with frm-40505 but it leads one more problem.
    The datablock v_le_usid_1l allows user to enter the text (i.e. updated the field), when the data is saved, no message is shown. When the data is refreshed on the screen, the change done previously on the block will not be seen (this is because the block updateallowed is set to NO), how do we stop the fields of the block being editable?
    We don't want to go ahead with this solution as, we might find several similar screens nad its diff to modify each one of them individually. When they work properly in 6i, what it doesn't in 10g? does it require any registry setting?
    Regards,
    Priya

  • FRM-40505  Oracle Error: Unable to perform query(URGENT)

    Hi I developed a form with a control_block and table_block(based on table)
    in same Canvas.
    Based on values on control_block and pressing Find button detail block will be queried.
    Control_block ->
    textitem name "payment_type" char type
    text item name "class_code " char type
    push button "find"
    base table: --> payment_terms(termid,payment_type,class_code,other colums)
    table_block is based on above table
    Now I have written when-button-pressed trigger on find button..
    declare
    l_search varchar2(100);     
    BEGIN
    l_search := 'payment_type='|| :control_block .payment_type||' AND class_code='||:control_block .class_code ;
    SET_BLOCK_PROPERTY('table_block',DEFAULT_WHERE,l_search);
    go_block('table_block');
    EXECUTE_QUERY;
    EXCEPTION
         when others then
         null;
    END;
    I am getting
    FRM-40505 Oracle Error: Unable to perform query
    please help..

    You don't need to build the default_where at run time. Just hard-code the WHERE Clause property as:
        column_x = :PARAMETER.X
    But, if for some compelling reason, you MUST do it at run time this should work:
        Set_block_property('MYBLOCK',Default_where,
            'COLUMN_X=:PARAMETER.X');
    Note that there are NO quotes except for first and last. If you get some sort of error when you query, you should actually see :Parameter.X replaced with :1 when you do Help, Display Error.

  • Troubleshoot Error - Unable to perform table-based value assignment config

    After to creating class, characteristics, and value assignment type, the system is unable to perform table-based value assignment configuration. The following error is displayed:

    Hi Mr. SAP,
    Based on the diagnosis, you can figure out that most likely someone is already editing the customizing table or might you are not authorized..
    In case if you have the access to SM12 Transaction code, kindly check if an entry present there. If yes it means the table is locked and you can't proceed on that. you have to reach out to the specific resource to unlock the table who did a lock, else you need to reach out to BASIS to make that entry delete.
    Regarding authrization for locking of table, please check SU53 after the execution of the T-code, if you are missing any role. If you find anything there, then reach out to your Security team to get and assigned roles to your profile.
    Regards,
    Abhi

  • Sequencer Error - Unable to save package

    I am trying to package Perspective Search v10.3 on a Windows 7.1 Sequencing Box using Microsoft Virtualization Application
     Sequencer - APP-V 5 SP2 Hotix 4 (Same error occurs on Hotfix 3)
    I begin creating a new package, run the Perspective Search msi installer (both custom & default), the msi installs correctly, I then choose Finished and click Next and get the below error:
    An attempt to prepare the package for saving failed (Error: 6629309790487068677)
    This event appears in the Microsoft\AppV\Sequencer\Admin log
    I have searched for this error to no avail. The closest I read was to do with shared _rel files but I have searched for these and they don't exist.
    Any help/pointers appreciated.
    I also checked the scratch directory but couldnt find anything there to help and not sure if I should be looking there anyway.
    Cheers
    Michael

    My sequencer will simply crash with "An error was encountered while trying to prepare the package for saving. Please check the event log for more details" (translating from Dutch here so I hope I got it right) "Er is een fout opgetreden
    bij het voorbereiden van het opslaan van het pakket. Raadpleeg het gebeurtenislogboekbestand voor meer informatie."
    I am not yet finding the culprit but at least I know I am not alone... Thanks for the pointer.

  • FRM-40505 ORACLE error: unable to perform query

    I have a block based on a table but when I issue an execute_query in "WHEN_NEW_BLOCK_INSTANCE" I get the above error.
    I know can access this table because immediately after this I select some fields from the table into variables and display them. However when I try and assign them to the fields in the block I get "FRM:41051 You cannot create records here."
    Can you please help.

    If I set "Insert Allowed" and Update Allowed" to yes I can assign values I've selected form the table to the fields but the execute_query still fails.
    By the way, I have a where clause in the property block to limit the number of rows brought back to 1

  • Vmm Protection Error, Unable to perform the live migration due to cloud protection issue for G2 system..Error (23833)

    Error (23833)
    The selected cloud does not support protection, or the recovery point objective requested for the virtual machine xxxx (30 seconds) is not within the range that the cloud supports.
    Recommended Action
    Select a different cloud, enable protection for the cloud, or change the requested recovery point objective for the virtual machine to a value greater than or equal to NO_PARAM seconds, and then try the operation again.

    Microsoft has not provided me with much support on this issue, but I was able to resolve this myself. What you need to do is remove the DR Protection attribute from your VM using the command below.
    Source:
    Stop protecting a virtual machine
    $vm = get-scvirtualmachine -Name "SQLVM1"
    Set-SCVirtualMachine -VM $vm -ClearDRProtection
    It is important to note that this command does nothing, unless the Azure Site Recovery provider is installed on your VMM server, and your VMM server is registered in ASR. Once I had run this command against my virtual machines, I was able to uninstall the
    provider and unregister my server from ASR. Now my VM's are free to live migrate again.

  • Unable to perform the request error while selecting completed tasks in UWL

    Hi,
    When user is selecting the Completed Task in the UWL, the below error is displaying
    error: Unable to perform the request. Try again and if the problem persists, inform your system administrator.
    While selecting completed tasks in the drop down, it is showing "Completed Tasks(30)". But after selecting "Completed Tasks(30)" from the drop down, the above error message is getting.
    How can we resolve this??
    Note: We are using EP 7.0 SP 17. When I checked in sdn, I found that there is a problem with completed tasks earlier to sp14. But in SP14, this issue was fixed. But why we are facing this issue?
    Thanks,
    VV

    Hi,
    Please let us know if you can found any relevant logs on
    1) dafault.trc file
    <Drive>:\usr\sap\<sys-id>\JC<inst-no>\j2ee\cluster\server0\log\
    2) UWL logs:
    usr\sap\<version>\JC00\j2ee\cluster\server0\log\applications\sap.com\u
    wl
    Also Have a look on note 1120556.
    Please remember to evaluate the replays, this incentive the SDN to keep growing,
    regards,
    Fabio

  • Error in Opening Worklist -"Unable to perform the request.............."

    Hi,
    On clicking on Worklist in portal, a user is getting the following error:
    "Unable to perform the request. Try again. If the problem persists, inform your system administrator" error .
    Any pointers will be of great help.
    Please let me know how should I go about to solve this problem

    You see this error in a lot of situations. Where exactly is this issue happening ? (clicking on item or clicking on attachment....)
    Check the UWL log and post more details. You may choose to increase the log severity to ALL.
    1. You may try to assign the user more authorizations and check if it fixes the issue.
    2. Make sure that the work item is still valid in the corresponding backend system.
    3. Based on your UWLJWF version - check for available SAP Notes
    4. If you have not already implemented, try to implement sapnote_0001133821 - UWL Destination Service Configuration
    5. Make sure that the user id validity is far enough in the future in the backend system
    6. Upgrade to the latest support pack
    Thanks,
    Shanti

  • Sequence error when creating a multiclip, help!!

    I have a bunch of clips I select and try to build a multiclip sequence with from 2 cameras with synced timecode, and after I click to build the multiclip sequence and go through the settings, I get an error that says:
    Sequence Error: Unable to add clip to sequence. Possible media limits problem in clip or sequence.
    this happens if I select 20 clips or 2 clips. Anyne have any suggestions? FYI, I am editing in native hdv.
    Thanks

    There has to be enough overlap between clips, I think 36% or so. Could that be a problem.

  • Sequence Error - ProRes/R3D footage

    I am trying to edit ProRes HQ files converted from R3D @ 2048x1152.
    Everything I do comes up with this message:
    Sequence Error: Unable to add clip to sequence. Possible media limits problem in clip or sequence.
    When I try create a subclip - when I try dragging subclips back into the timeline - just trying to drop selected audio tracks onto the timeline - MOVING a clip in the timeline... pretty much anything.
    Any help would be appreciated, it seems like it's just a glitch in the software, but I need a solution!
    ~

    sounds like a timecode problem where the limits of the original master clip were well beyond the in/out points of the clip you have in hand. We get the error when we've had to reload a clip that rolled off the end of the tape. The system sees the original media in and out points. We load the clip by hand and then relink the footage to the new clip. We get the error because the new media end point is earlier than the old one. We ignore it. Sound like something may have changed in your loading process.

  • Multicamera Problem - Sequence error

    Hi everyone,
    I captured 4 tape, 2 cameras, and when I edit my work in Multicamera I can't delete the clip from the timeline. An error appear:
    Sequence error: Unable to add clip to sequence. Possible media limits problem in clip or sequence.
    Any Idea to resolve this problem?
    Thank you very much.
    Nayaril

    This has happened to me too, seems to be an intermittent problem with multiclip sequences. The only thing I could do was quit the application and load the latest autosave of the project and redo some work.
    A quick google of the error message suggests there's no solution to this yet, seems to be a glitch or bug.

  • Media Manager Sequence Error when trying to archive video.

    When we are done with a project we like to use media manager to consolidate only the used video (with handles) to save space.
    This has never posed a problem until lately. On about five of the last projects when the media manager begins reconnecting media we get the following error:
    "Sequence Error: Unable to add clip to sequence. Possible media limits problem in clip or sequence"
    The only option is to abort so a new sequence is never created. Also, it will not tell me which clip caused the error. I tried moving everything into a new sequence and got the same error. Then I tried it without handles, then I tried it without deleting the unused media. I have also tried the projects on other computers (All 10.6.4, all FCP 7.02) All had the same error.
    The only other reference to this error I can find deals with a multicam edit. None of these projects have any multicam edits.
    Anyone got any ideas what is going wrong? I have tried to think if we are doing anything differently lately and the only thing i can come up with is using more of Tiffen's DFX filters.

    May have found the solution. Short story: I think it was some weirdness trying to media manage a sequence with a freeze frame of a video clip. I have had some issues in the past with final cut handling freeze frames.
    Long story and workaround is available here:
    http://forums.creativecow.net/readpost/8/1096223

  • Service template problem - Unable to perform the job because one or more of the selected objects are locked by another job - ID 2606

    Hello,
    I’ve finally managed to deploy my first guest cluster with a shared VHDX using a service template. 
    So, I now want to try and update my service template.  However, whenever I try to do anything with it, in the services section, I receive the error:
    Unable to perform the job because one or more of the selected objects are locked by another job.  To find out which job is locking the object, in the jobs view, group by status, and find the running or cancelling job for the object.  ID 2606
    Well I tried that and there doesn’t seem to be a job locking the object.  Both the cluster nodes appear to be up and running, and I can’t see a problem with it at all.  I tried running the following query in SQL:
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    but all this gives me is an error that says - conversion failed when converting from a character string to uniqueidentifier msg 8169, level 16, State 2, Line 1
    I'm no SQL expert as you can probably tell, but I'd prefer not to deploy another service template in case this issue occurs again.
    Can anyone help?

    No one else had this?

Maybe you are looking for