Updation of Duplicate item taken by Parial-data search

Hi all,
i have written programm to retrieve the Data by Partial data search,by setting the Flag as DB_DUPSORT.I am retrieving the Data back but i can't update the Record by using cursor->put(),by setting th FLAG CURRENT.
will it possible,if duplicates are present there...??

Hello,
Have you taken a look at:
http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/db_set_flags.html#DB_DUPSORT
http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/dbc_get.html#DB_CURRENT
http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/dbc_put.html#DB_CURRENT
If these do not help answer your question, please post a small
stand-alone test which reproduces the issue.
Thanks,
Sandra

Similar Messages

  • WebPart is raising the following error "Invalid data has been used to update the list item.The field you are trying to update may be read only"

    I have created a farm solution and then i deploy it to SharePoint server, the code looks as follow, and i use it to update a page info values (as the current page values represents old info):-
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["Pages"];
    web.AllowUnsafeUpdates = true;
    foreach (SPListItem items in list.Items)
    items["Author"] = "SharePoint";
    items["Created"] = "01/08/2014 01:44 PM";
    items.Update();
    list.Update();
    web.AllowUnsafeUpdates = false;
    protected void Page_Load(object sender, EventArgs e)
    but when i try adding this web part to a page i got the following error:-
    Invalid data has been used to update the list item.The field you are trying to update may be read only
    so can anyone advice?

    i only changed lines bitween 
    web.AllowUnsafeUpdates = true;
    and
    web.AllowUnsafeUpdates = false;
    and other parts of code remains without change
    so it will updates all pages in current web
    yaşamak bir eylemdir

  • Invalid data has been used to update the list item. The field you are trying to update may be read only.

    Trying to follow Serge Luca's Step by Step Tutorial. Creating Workflows for Windows Sharepoint Services and MOSS2007.  http://sergeluca.spaces.live.com/blog/cns!E8A06D5F2F585013!859.entry
    I have an onWorkflowActivated, followed by an ifElse condition and a log to history.
    In the IfElse, each branch has a code segment, that trys to update the status column in the list that the workflow is attached to.
    private void Authorize_ExecuteCode(object sender, EventArgs e)
    // tried serveral methods
    WorkflowProperties.Item["Status"] = "Automatically Approved";
    // tried all of the following (one at a time)
    item.update();
    WorkflowProperties.Item.Update();
    WorkflowProperties.Item.SystemUpdate();
    //tried this as well.
    Microsoft.SharePoint.SPListItem item = WorkflowProperties.Item;
    item["Status"] = "Automatically Approved";
    item.Update() ;
    On the update call I keep getting "Invalid data has been used to update the list item. The field you are trying to update may be read only."
    Could someone explain how to update "Status" column of the list item that the workflow is working on?
    Thank you very much.
    Bill
     

    Hi:
    you can do the following:
    add the following code to the workflow.xml file (under the MetaData section)
    Code Snippet
    <ExtendedStatusColumnValues>
    <StatusColumnValue>Branch1</StatusColumnValue>
    <StatusColumnValue>Branch2</StatusColumnValue>
    </ExtendedStatusColumnValues>
    then add 2 SetState activities one in each branch of the IfElse.
    for the code behind of setState1 (branch1) write the following code:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max);
    for setState2 (branch2) write the following:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max) + 1;
    where state is the variable assigned to the field State in the properties of the SetState(design lever), or instead of state u can use the following code:
    Code Snippet
    ((SetState)sender).State
    where sender is the object sent through the function parameter.
    hope this answered your question
    Best Regards

  • Invalid data has been used to update the list item. The field you are trying to update may be read only (Lookup Field).

    Hi.
    I am getting below error while adding value to look-up field.
    Invalid data has been used to update the list item. The field you are trying to update may be read only.
    I have tried many forums ans post but didn't come to know what's the root cause of issue. I am also posting Code for creating and adding lookup field.
    CAML to create lookup field (It works Fine)
    string lkproductNumber = "<Field Type='Lookup' DisplayName='Product Number' StaticName='ProductNumber' ReadOnly='FALSE' List='" + pNewMaster.Id + "' ShowField='Product_x0020_Number' />";
    Code to insert value to lookup field
    ClientContext client = new ClientContext(SiteUrl);
    client.Load(client.Web);
    client.Credentials = new NetworkCredential(this.UserName, this.Password, this.Domain);
    // Lookup Lists
    List pmList = client.Web.Lists.GetByTitle("Product_Master");
    //List Conatining Lookup Columns
    List piList = client.Web.Lists.GetByTitle("Product_Inventory");
    client.Load(piList);
    query.ViewXml = "<View/>";
    ListItemCollection collection = pmList.GetItems(query);
    client.Load(collection);
    client.ExecuteQuery();
    int prodid=0;
    foreach (ListItem item in collection)
    if (Convert.ToString(item["Product_x0020_Number"]) == ProductNumber)
    { prodid = Convert.ToInt32(item["ID"]); }
    ListItem piItem = piList.AddItem(new ListItemCreationInformation());
    piItem["Product_x0020_Number"] = new FieldLookupValue() { LookupId = prodid };
    piItem.Update();
    client.ExecuteQuery();
    Exception Detail
    Microsoft.SharePoint.Client.ServerException was caught
    Message=Invalid data has been used to update the list item. The field you are trying to update may be read only.
    Source=Microsoft.SharePoint.Client.Runtime
    ServerErrorCode=-2147352571
    ServerErrorTypeName=Microsoft.SharePoint.SPException
    ServerStackTrace=""
    StackTrace:
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
    at WebServiceProviders.ClientServices.NewProductInventory() in Z:\.............ClientServices.cs:line 889
    InnerException:
    Quick response is highly appreciated.
    Thanks
    Mehar

    Try some thing like below,
    your data value that needs to be update should be in this format "ID of the lookup";#"Title of the Lookup" 
    For example,
    listItem["Product_x0020_Number"]
    = "1;#iPhone";
    listItem["Product_x0020_Number"]
    = "2;#Mobile";
    Hope this helped you....

  • ALE BOM. Updates ALL! items with validity date & change no.

    Hi All,
    We are having problems where ALE-BOM sent with change in validity date (with change no) to a particular item. What happens is that ALE-BOM will instead update ALL! items with the same validity date and change number.
    Next,when we process ALE again for the same BOM with a different validity date(with change no), then only that
    particular item is updated with validity date and change no.
    Would anyone know what could be the problem that when changes are sent for the first time all items are updated?
    [Version: SAP 4.6C/ SAPKH46C48]
    Regards,
    Neeth

    Dear:
                   The error itself telling you the correction. You profit center which is assigned to your cost center has a validity date less than the one you are now assigning.You can check in KE52 against the profit center assigned to your cost center master data. However the best thing is to go to KS01 and create this cost center with desired validity date.
    This will resolve your issue.
    Regards

  • HT2905 No Display Duplicates under File. How to find and remove duplicate items in your iTunes library

    I now have iTunes ver 11.0.4.4 under Windows 7. I lost all iTunes stuff when updating to Windows 7. I have loaded thousands amd thousands of music files from backup disks, but there are many duplicates. I am attemping to re-establish my old library. I used to be able to remove duplicates quickly with the old iTunes. The new iTunes doesn't seem to offer the same service. Is there any way to remove duplicates quickly, or must I do it one by one?

    When deduping use Shift > View > Show Exact Duplicate Items as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks. If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    See also HT2905: How to find and remove duplicate items in your iTunes library
    tt2

  • Sales order duplicate item

    Hi,
    Can someone help and explain me why there's a duplicate item in my sales order.
    In the sales order document a variant component doubled from ITem 10, item 20 then ITEM 21 then item 30..... Irregularities of item number. The config was defaulted by 10's.
    EX.
    Item Material QTY Unit ItCategory
    10 Variant 1 pc YTM1
    20 componet A 200 in3 YTM2
    21 componet A 200 in3 YTM2<<<<----
    (duplicate of ITEM 21)
    30 Variant 1 in3 YTM2
    40 ................................................................
    50 ................................................................
    The config for numbering is by 10. What are the possible reasons why item 21 appeared?
    Please help
    Thanks,

    Hi Chrisell
    This problem you were facing because in VOV8 you have Item increment and Sub-item increment . Because of this you were getting the duplicating item in the sales order.Apart from that you might have maintained the BOM . because of that duplication item in the sales order is taking place .
    Kindly check the STPO & STPU tables wheather they are getting updated or not
    STPO --- BOM item data
    STPU ---   BOM sub-item data
    STAS --- BOM item selection
    Regards
    Srinath

  • Multiple key items for a single data item?

    hi all. In my application multiple key items may have the same data item, such as:
    key data
    1 abcd
    1 abcd
    1 abcd
    2 efg
    2 efg
    but it may lead to a lot of duplicate storage spaces. I can use two dbs by giving each data item an ID, just like:
    db1
    key data
    1 1
    1 1
    1 1
    2 2
    2 2
    db2
    key data
    1 abcd
    2 efg
    is there any other simple solutions? thanks in advance

    Hello,
    This sounds like a data modeling question. I think your solution is reasonable, though you'll get a lot of good ideas and info if you read up on normalization for relational schemas - there's a ton of literature out there. Just do a search for "database normalization".
    Normalization is intended to eliminate redundancy and also avoid various update anomalies.
    Warm regards.
    ashok

  • Updating BOM Sub Items using CS_BC_BOM_CHANGE_BATCH_INPUT

    Hello,
    I am trying to update BOM sub items by using this function module. I am filling up all fields in all tables, still it is giving error.
    Any body has any sample code for this function module...
    Unfortunately there is no documentation for this FM and very little usage in standard programs...
    Regards,
    Krishna.

    Hi,
    My Code for create
    DATA: BOM_HEADER     TYPE CAD_BICSK ,"STRUCTURE FOR HEADER DATA
          IT_BOM_ITEM    TYPE TABLE OF CAD_BOM_ITEM,"INTERNAL TABLE FOR ITEM
          WA_BOM_ITEM    TYPE CAD_BOM_ITEM,"WORK AREA FOR ITEM
          IT_BOM_SUB_ITEM  TYPE TABLE OF CSSUBITEM ,"INTERNAL TABLE FOR SUB ITEM
          WA_BOM_SUB_ITEM  TYPE CSSUBITEM ,"WORK AREA FOR SUB ITEM
          IT_DMS TYPE TABLE OF CLS_CHARAC,"INTERNAL TABLE FOR DMS_CLASS_DATA
          WA_DMS TYPE CLS_CHARAC,"WORK AREA FOR DMS_CLASS_DATA
          IT_SAP_FIELD TYPE TABLE OF RFCDMSDATA,"INTERNAL TABLE FOR SAP_FIELD_DATA
          WA_SAP_FIELD TYPE RFCDMSDATA,"WORK AREA FOR SAP_FIELD_DATA
          E_RETURN       TYPE CAD_RETURN-VALUE,"STRUCTURE FOR RETURN
          E_MESSAGE      TYPE MESSAGE-MSGTX,"STRUCTURE FOR MESSAGE
          E_MESSAGE_LEN  TYPE CAD_RETURN-MESSAGE_LEN."STRUCTURE FOR MESSAGE LENGTH
    LOOP AT IT_DATA INTO WA_DATA.
        MOVE-CORRESPONDING WA_DATA TO WA_DATA1.
        APPEND WA_DATA1 TO IT_DATA1.
      ENDLOOP.
      SORT IT_DATA1 BY MATNR WERKS.
      DELETE ADJACENT DUPLICATES FROM IT_DATA1 COMPARING MATNR WERKS.
      LOOP AT IT_DATA1 INTO WA_DATA1.
        CLEAR: BOM_HEADER, WA_BOM_ITEM,WA_RET.
        REFRESH: IT_BOM_ITEM.
    FILL BOM HEADER
        PERFORM DATE_FORMAT USING WA_DATA1-DATUV CHANGING BOM_HEADER-DATUV.
        BOM_HEADER-MATNR = WA_DATA1-MATNR.
        BOM_HEADER-WERKS = WA_DATA1-WERKS.
        BOM_HEADER-STLAL = WA_DATA1-STLAL.
        BOM_HEADER-STLAN = WA_DATA1-STLAN.
        BOM_HEADER-ZTEXT = WA_DATA1-ZTEXT.
        LOOP AT IT_DATA INTO WA_DATA WHERE MATNR = WA_DATA1-MATNR and werks = wa_Data1-werks.
    FILL ITEM
          if wa_data-postp = 'T'.
            WA_BOM_ITEM-POSNR     = WA_DATA-POSNR.
            WA_BOM_ITEM-POSTP     = WA_DATA-POSTP.
            WA_BOM_ITEM-POTX1     = WA_DATA1-ZTEXT.
          else.
            WA_BOM_ITEM-IDNRK     = WA_DATA-IDNRK.
            WA_BOM_ITEM-POSNR     = WA_DATA-POSNR.
            WA_BOM_ITEM-POSTP     = WA_DATA-POSTP.
            WA_BOM_ITEM-MENGE     = WA_DATA-MENGE.
          endif.
          APPEND WA_BOM_ITEM TO  IT_BOM_ITEM.
        ENDLOOP.
        CALL FUNCTION 'CAD_CREATE_BOM_WITH_SUB_ITEMS'
          EXPORTING
            I_BOM_HEADER   = BOM_HEADER
          IMPORTING
            E_RETURN       = E_RETURN
            E_MESSAGE      = E_MESSAGE
          TABLES
            BOM_ITEM       = IT_BOM_ITEM
            BOM_SUB_ITEM   = IT_BOM_SUB_ITEM
            DMS_CLASS_DATA = IT_DMS
            SAP_FIELD_DATA = IT_SAP_FIELD.
        WA_RET-MATNR = WA_DATA1-MATNR.
        if e_return = 0 .
          wa_ret-status = 'SUCCESS'.
        ELSE.
          wa_ret-status = 'ERROR'.
        ENDIF.
        WA_RET-WERKS = WA_DATA1-WERKS.
        WA_RET-MSG = E_MESSAGE.
        APPEND WA_RET TO IT_RET .
      ENDLOOP.
      LOOP AT IT_RET INTO WA_RET.
        if wa_ret-status =  'ERROR'.
          APPEND wa_ret to it_erv.
          ENDIF.
        WRITE: /.
        WRITE:(12) WA_RET-MATNR,(6) WA_RET-WERKS,(8) wa_ret-status,(70) WA_RET-MSG.
      ENDLOOP.
    Regards,
    Manesh.R

  • How to update an existing item in a sharepoint list using the WSS adapter for Biztalk

    Is there a way that a record in SP list be updated using WSS adapter in biztalk ?
    BizTalk 2013 and SP 2013 ..
    Regards
    Ritu Raj
    When you see answers and helpful posts,
    please click Vote As Helpful, Propose As Answer, and/or Mark As Answer

    A ListItem has its own unique row id so in all likelihood, an insert with the same data will result in a new list entry. The Lists Web Service however, has an UpdateListItem method which will take an update request. [refer
    http://msdn.microsoft.com/en-us/library/office/websvclists.lists.updatelistitems(v=office.15).aspx ]
    There is another note in the conference (marked answered) to your List Item Update problem. Probably worth a try too. [refer
    http://social.msdn.microsoft.com/Forums/en-US/bee8f6c6-3259-4764-bafa-6689f5fd6ec9/how-to-update-an-existing-item-in-a-sharepoint-list-using-the-wss-adapter-for-biztalk?forum=biztalkgeneral ]
    Regards.

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All
    I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields .
    Suppose lets consider there are A,B,C,D,E,F,G,H columns.
    Now i want to create one form with the fields A,C,E.
    When the user enter the existing data of list for columns A,C..based on C value the E column value should change and update that particular item in the list.
    Please guide me without visual web part can we acheive this by Sharepoint designer 2013 or what would be the preferable solution.
    Please help me on this as it is very urgent from me..
    Thanks in Advance
    Sowjanya G

    Hi,
    According to your post, my understanding is that you wanted to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.
    I recommend to create workflow associated to the list and then start the workflow automatically when an item is changed.
    In the workflow, you can add condition and actions as below:
    If current item: C equal to Test1
         Set E to Test2
    Then the value of the filed E will be changed based on the value of the filed C.
    In addition, if you create the form using InfoPath, you can add rule to the filed C as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Help needed in removing duplicate items of list box  in java

    How to remove duplicate items of list box while dynamically inserting (on-click event)
    It is not identifying duplicate data
    Variable name is HP_G1
    HP_dmg1 = (DefaultListModel) HP_G1.getModel();
    int a = HP_G1.getModel().getSize();
    System.out.println("HP list no--------> "+a);
    if(a!=0)
    for (int j=0; j<a; j++)
    String item1 = String.valueOf(HP_List.getModel().getElementAt(j));
    System.out.println("HP list added--------> "+item1);
    if(HP_dmg1.equals(item1)){
    HP_dmg1.remove(j);
    else
    HP_dmg1.addElement(GPL);
    }

    Your code is unreadable, so I'll ignore it. In the future please press the message editor's CODE button to format code.
    As to your problem, to the point you normally use a Set instead of List when you don't want duplicates in a collection.

  • Fbl1n txn for updating vendor line item

    hello every one iam trying to update vendor line item when a billing document get cancelled in vf11 i have tried bapi  BAPI_ACC_DOCUMENT_REV_POST .
    the requirement is whenever a billing document get cancelled the commision need to get credited again for example if vendor line item is
         St Assignment         DocumentNo Type     Doc. Date  S DD Amount in local cur. LCurr Clrng doc. Text
            COMMISSION         1700000014 CP       31.08.2011                    71.26- INR
    it need to get like this
         St Assignment         DocumentNo Type     Doc. Date  S DD Amount in local cur. LCurr Clrng doc. Text
            COMMISSION         1700000014 CP       31.08.2011                    71.26 INR
    that means the amount in local currency need to get into + one like above
    Please help ASAP & if some one give me code also that will be very helpul for me

    Hii ali this is my code & below iam showing u what wasthe data in  my return table please suggest me what to do
          DATA : P_REVERSAL     LIKE  BAPIACREV ,
                 TRAN_DOC(20)   TYPE  C         ,
                 p_busact       LIKE BAPIACHE09-BUS_ACT ,
                 p_objkey       LIKE BAPIACREV-OBJ_KEY  .
          DATA : P_RETURN  LIKE  TABLE OF  BAPIRET2  ,
                 WA_RETURN  TYPE  BAPIRET2          ,
                 WF_REMARKS  ,
                 PLANT     TYPE VBRP-WERKS         ,
                 bill_no   type vbrk-vbeln         ,
                 belnr     type BELNR_D  ,
                 AWKEY     type AWKEY    .
    data : date1 type sy-datum .
    date1 = sy-datum+0(4) .
    select single belnr AWKEY from bkpf into (belnr , AWKEY)    where blart = 'CP'     and
                                                     budat = sy-datum and
                                                     xblnr = vbrk-kidno . "bill_no .
          IF SY-SUBRC = 0 .
              CONCATENATE belnr AWKEY+10(4) date1 INTO TRAN_DOC .
            ENDIF .
      SELECT SINGLE WERKS  FROM VBRP INTO  PLANT  WHERE VBELN = vbrk-kidno .
            p_reversal-obj_type   = 'BKPFF'.
            p_reversal-obj_key    = tran_doc.
            p_reversal-obj_key_r  = tran_doc.
            p_reversal-pstng_date = sy-datum.
            p_reversal-comp_code  = tran_doc+10(4).
            p_reversal-reason_rev = '02'.
            p_reversal-ac_doc_no  = tran_doc+0(10).
            p_busact = ' '.
            CALL FUNCTION 'BAPI_ACC_DOCUMENT_REV_POST'
            EXPORTING
              reversal = p_reversal
              bus_act  = p_busact
            IMPORTING
              obj_key  = p_objkey
            TABLES
              return   = p_return.
                  IF sy-subrc = 0.
                ---commit Work
                        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                          EXPORTING
                            wait = 'X'.
                  ELSE .
    *****Use the below statement, if the BAPI is sending back the 'RETURN' internal table.
                    READ TABLE p_return INTO WA_RETURN WITH KEY TYPE = 'F'.
                       IF SY-SUBRC EQ 0 .
                           CALL FUNCTION 'MESSAGE_TEXT_BUILD'
                          EXPORTING
                            MSGID = WA_RETURN-ID
                             MSGNR = WA_RETURN-NUMBER
                            MSGV1 = WA_RETURN-MESSAGE_V1
                             MSGV2 = WA_RETURN-MESSAGE_V2
                            MSGV3 = WA_RETURN-MESSAGE_V3
                            MSGV4 = WA_RETURN-MESSAGE_V4
                          IMPORTING
                            MESSAGE_TEXT_OUTPUT = WF_REMARKS.
                       ENDIF.
                    ENDIF.
    1     E     RW     609     Error in document: BKPFF $ DEVCLNT300          000000     BKPFF     $
    2     E     RW     632     Document BKPFF 1700000061WPL12011 DEVCLNT300 cannot be reversed          000000     BKPFF     1700000061WPL12011
    3     E     F5     814     Document type ZX not defined          000000     ZX
    4     E     F5     814     Document type ZX not defined          000000     ZX

  • Cannot reject/delete sales order line item due to del.date in 2210

    Hi all,
    not sure if anyone else had this issue already....
    Situation :
    Sales order line item entered with delivery date in 2210.    We would like to correct this order but can't....
    every time SAP issues error :
    Error determining posting period (info
    S008, variant GL, RC 3)               
    I believe this is because we haven't maintained our calendars yet for 2210 :-D
    Question : without us having to load/define the calendar...is there a utility/oss program which we can use to delete the line item, or reject it...or even update the delivery date?
    Thanks for your help!

    If the system pop ups the error message M2012, then please refer note 10891 or 37532.  If the error message number is different, please update the forum.
    thanks
    G. Lakshmipathi

  • Duplicate item filename error

    here's the story:
    i had a 1tb drive (drive 1) and a 1tb back-up drive (drive 2). drive 1 crashed and i returned it and got a new drive (drive 3). i copied over the media from drive 2 to drive 3. it finished. then when i restarted, drive 2 was dead too. i can't find my disk warrior so rescuing that drive will have to wait. so now i have drive 3 and i mount it and start fcp 5. looks like most of my copied media has gotten trashed in the move. all looks green and when i go to the finder to try to play the clips, they are corrupt. so i delete all the media and start digitizing everything. (feature length show here and 45 hour long tapes...no fun). i get about 12 tapes in and then move the system from my home to work. restart and go to start digitizing on tape 12 where i left off at home and i get the "additional items found" dialogue box pop up. i respond "add". then i get an error : "duplicate item filename". i have the choice to rename,skip or abort.i trash the preference settings. i reset the scratch disk. there are no media clips on the system with dupe names. what can i do? please do not suggest that i add a 1 to everything. i am batch capturing 30+ more tapes and each tape has 40 clips. i am not going to type 1 after each clip and do them one by one. help please. is this a meta data error on the capture drive...i wouldn't think so as i reset the capture disk to the internal to try to eliminate that as a possibility.

    bump

Maybe you are looking for