Creating Copy of a Sequence

Hi ppl...
I am trying to create a Copy of a Sequence in a Sequence file by using SequenceFile.GetSequenceByName and  SequenceFile.InsertSequenceEx method. Then I rename the Inserted Sequence. This Method doesn seem to work. Because both the sequences are getting renamed. How should i create the Copy of sequence...?

Hi,
You need to use the Clone method.
This example my point you in the right direction
http://forums.ni.com/ni/board/message?board.id=330​&message.id=2321&query.id=192912#M2321
Regards
Ray Farmer
Regards
Ray Farmer

Similar Messages

  • Importing to Library created "Copy To ...." Folders - Can I Delete Them ??

    I'm new to iTunes, and I'm usings Windows XP PRO SR3.
    I ripped some CDs to FLAC format (one folder per CD).
    Then converted FLAC to MP3 in a new folder tree
    (F:\Music\MP3\"one folder per CD")
    When I imported the sub-folders in the MP3 folder (my iTunes "root" folder), iTunes created a new subfolder F:\Music\MP3\"Copy To " folder for each of my original folders. This is a duplicate of a duplicate.
    Can I safely delete these "Copy To" subfolders ??
    How do I prevent iTunes from doing this in the future ??
    Advanced Setup Notes:
    "iTunes Media folder location" is: F:\Program Files\iTunes\iTunes Media
    "Keep iTunes Media folder organized" is Not Selected
    "Copy files to iTunes Media folder when adding to library" is Not selected.
    I prefer to manually control my folder/file usage.
    Thanks
    John

    I made the initial post .....
    Tried to reproduce the Importing to Library creating "Copy To ...." folders problem.
    But it didn't do it this time ??? I don't know why.
    Everything worked the way I thought it should.
    Thanks
    John

  • Copying Custom Access Sequences to CRM from R/3

    Here is the scenario we're working with:
    Use quotes in CRM which are then released to orders in R/3. Would like to use pricing procedures to default in fixed prices for certain materials. Have everything working fine in R/3. I am following the process outlined in the Replication guide.
    We created a new access sequence for pricing use SalesOrg/DistChan/Division/Batch. Created table A991 which has entries stored.
    Running DNL_CUST_CNDALL does not bring the access sequence across. Tried defining my own customizing object specifying the new table and I get the following error in SMW01:
    <b>Target table CNCCRMPRCUS991 is not actively available</b>
    Is there a certain order I was supposed to do this in?

    Hi Raghu,
    Please refer the Best Practices document for replicating BP's from R/3 to CRM. Please have a look the following document for your information.
    http://help.sap.com/bp_crmv340/CRM_DE/index.htm
    under Technical Information->Building Block Library->B09: CRM Replication. page no.45 onwards.
    Reward if it helps.
    Best Regards,
    Johnny.

  • Can I create a RAW image Sequence in Photoshop CS6?

    Hello Photoshop Gurus,
    I'm posting this because I've tried searching for an answer but I've only found one and it doesn't work for me.  I'm trying to create a RAW image sequence in Photoshop CS6 on a mac.  the box is greyed out.  The only answer I've found is to disable jpeg support in preferences but that didn't work.
    Just trying to create a timelapse from an image sequence without having to spend $20/month renting After Effects!
    Thanks!

    Do you have the Extended version of photoshop cs6?
    (not sure if you need the extended version or not)
    more info:
    Photoshop Help | Importing video files and image sequences
    It might be that you need to convert the images to another file format such as tif.

  • How to setup Compressor to create video from multiple sequences within FCP?

    I am wondering how I can set compressor up to create videos from multiple sequences within FCP. When I click file -> export - > compressor for a sequence and go into the program, it doesn't allow me to go back into FCP. I just get a spinning beach ball. Is there no way to set it up so I can prep a bunch of fcp sequences within compressor and then click submit and walk away? I have over 100 sequences that need to be exported so it would be a little difficult to do this one at a time. Thanks.

    Batch processing
    *Step one. Make sure everything in every sequence is rendered.*
    *Step two. Make a folder somewhere and name it something relevant.*
    *Step three. In FCP select all you sequences that you want to compress and right click (option), choose Batch Export from the contextual menu.*
    *Step three point one. In the batch export window click on settings and choose the folder you made in step two for the destination. Make sure Make Self-Contained is not check and include Audio and Video.*
    *Step four. Click export in the batch window.*
    Once that is done you can close FCP.
    Now in Compressor
    *Step five. Make a setting that will give you the output that you want (mpeg2, AC3, h.264, whatever). Make a destination for where you want to save the output.*
    *Step six. Make a droplet from the settings you made in step five.*
    You can quit Compressor now.
    *Step seven. Take the files that you batch exported from FCP in step three and four and drop them on the droplet you made in step six.*
    o| TOnyTOny |o

  • How do you create a column of sequenced dates in Numbers

    How do you create a column of sequenced dates in Numbers without typing in each date? For example: 01/05/15, 01/12/15, 01/19/15, 01/26/15, 02/02/15, etc.

    Hi Cha Ling,
    Another way,
    Enter your first two dates that show the desired interval- i.e. 01/05/15 and 01/12/15.
    Select both cells and choose fill from the contextual menu.
    Drag down to fill your column.
    quinn

  • Creating/Copying a Work Centre,also a Production Scheduler and Cost Centre.

    Hi All,
    I am trying to create a new work centre based on the settings of a previous one? First of all,how I can do this?
    Secondly,after I have created the new work centre (having copied being copied from another),I need to create a new production Scheduler and Cost Centre? How I will be able to do so,also?Will the Production Scheduller and Cost Centre assignments fom the old work centre be copied,too,or I will need to create/copy these from scratch?
    All help greatly appreciated,will award points to all useful answers.
    PAPJ1.
    Edited by: PAPJ1 on May 20, 2011 11:01 AM

    Hello,
    You can create a new work center by copying an existing work center. in the cr01 screen in the copy from column put the plant name and Ref. work center name and put enter. all the existing data will be copied to the newly created work center. no need to create new assignment to  Production Scheduller and Cost Center.
    Hope it helps.
    Regards
    Alok

  • Create Trigger (PK from Sequence) in SQL Developer 1.5.1

    Hi all
    I'm new to Oracle and am trying to create the equivalent of an autonumber field on a table using the Create Trigger (PK from Sequence) option (by right clicking on a table in SQL Developer).
    I've set up a sequence called REQUESTID and when using the above option it generates the following SQL:
    begin
    execute immediate 'create or replace trigger AutoNumber '||
         ' before insert on "REQUEST" '||
         ' for each row '||
         'begin '||
         ' if inserting then '||
         ' if :NEW."REQUESTID" is null then '||
         ' select REQUESTID.nextval into :NEW."REQUESTID" from dual; '||
         ' end if; '||
         ' end if; '||
         'end;';
         end;
    When I click Apply I get an ORA-00942 (table or view does not exist). Am I doing something daft here?

    Never mind - sorted it - I created the table under a different Schema to the System login being used in SQL Developer and so didn't have the permissions to create the trigger on the table.

  • Synchronize from audio option not available in 'Create mutli-camera source sequence' command?

    I watched Jason Levine demonstrate the 'create multi-camera source sequence' feature that allowed you to sync multi-camera clips automatically by clicking on an 'audio' option:(http://tv.adobe.com/watch/creative-cloud-for-video/dslr-editing-workflow-in-adobe-premiere -pro-cc-part-3-multicamera-dslr-workflow-with-automatic-audio-sync/)
    I loaded in three clips from three different cameras of the same shoot, and when I follow those instructions and select the above command, it doesn't present the dialogue to select the synchronize from audio feature:
    Am I doing something wrong? All three clips have audio...can't figure out why this feature isn't working for me??Is this not available in the Premiere Pro version we have available for download? I'm just in the process of upgrading to 6.02 now to see if thats the case...

    This will only be available in Premiere Pro CC due out June 17th.

  • Custom Image Capture that Auto Imports the OS WIM and Creates a New Task Sequence

    We just finished a consulting project where our customer requested an easy solution to capture thick images.  After hearing their reasoning it made sense for their circumstances.  The people that
    will be managing the system will be non-technical and all they wanted was a very, very simple method of capturing and deploying images with no learning curve.   They wanted the ability to Deploy the images via PXE.  
    This quickly became both our easiest scope project but making MDT simple for non-technical users can be challenging.   The MDT capture and staging steps are pretty easy for tech savvy person but for non-technical people it presented a learning
    curve that the customer wanted simplified. They didn’t want to understand sysprep, capture, importing an OS and then creating a Task Sequence to reference that new image.        
    So we changed the scope of our project to automate MDT to perform additional steps following the capture that would:
    Automatically Import the Captured OS into the MDT Deployment Share
    Automatically Create a new Task Sequence that references the newly imported image
    Auto Name the Task Sequence with the Model Name, Date and Time of Capture
    The Final Solution:
    Customer will setup a Windows PC Thick Image (All software and drivers)
    The customer will Kick-off the Sysprep and Capture Task Sequence
    The customized Task Sequence will capture, import the new image, and create a new TS with the new image
    Customer can then PXE boot a new computer and Deploy the image or stage to media and deploy the image
    We were able to remove the import OS and create new task sequence steps and this simplified it for our customer considerably.  If anyone is interested in this functionality
    let me know and I can send you instructions.  We used Vbscript, Powershell and PSExec.exe from PowerShell.  It seems to being working pretty good so far
    MDT Task Sequence Duplicator https://panaconsulting.egnyte.com/h-s/20130614/61707be809944999 Application Bundle Duplicator https://panaconsulting.egnyte.com/h-s/20130614/405e7d64e5d54610

    We just finished a consulting project where our customer requested an easy solution to capture thick images.  After hearing their reasoning it made sense for their circumstances.  The people that
    will be managing the system will be non-technical and all they wanted was a very, very simple method of capturing and deploying images with no learning curve.   They wanted the ability to Deploy the images via PXE.  
    This quickly became both our easiest scope project but making MDT simple for non-technical users can be challenging.   The MDT capture and staging steps are pretty easy for tech savvy person but for non-technical people it presented a learning
    curve that the customer wanted simplified. They didn’t want to understand sysprep, capture, importing an OS and then creating a Task Sequence to reference that new image.        
    So we changed the scope of our project to automate MDT to perform additional steps following the capture that would:
    Automatically Import the Captured OS into the MDT Deployment Share
    Automatically Create a new Task Sequence that references the newly imported image
    Auto Name the Task Sequence with the Model Name, Date and Time of Capture
    The Final Solution:
    Customer will setup a Windows PC Thick Image (All software and drivers)
    The customer will Kick-off the Sysprep and Capture Task Sequence
    The customized Task Sequence will capture, import the new image, and create a new TS with the new image
    Customer can then PXE boot a new computer and Deploy the image or stage to media and deploy the image
    We were able to remove the import OS and create new task sequence steps and this simplified it for our customer considerably.  If anyone is interested in this functionality
    let me know and I can send you instructions.  We used Vbscript, Powershell and PSExec.exe from PowerShell.  It seems to being working pretty good so far
    MDT Task Sequence Duplicator https://panaconsulting.egnyte.com/h-s/20130614/61707be809944999 Application Bundle Duplicator https://panaconsulting.egnyte.com/h-s/20130614/405e7d64e5d54610
    I would love to get the instructions to this process, as I have a simular client.

  • E- Rec - Hiding links - Create / copy requisistions in Recruiter start page

    I use a MSS view for creating Requisitions and hence want to hide Create / Copy requisitions link in Recruiter start page --> maintain requisitions.
    Cn it be done with context changes. If yes, Can some one provide some info on the steps required.
    Thanks
    G Raj

    Hi,
    if you want to change the the appearance (grouping, links, texts) of a startpage this is completely done in customizing or better said you can define your own startpages and use some parts of the sap delivery if you like. The customizing for sartpages can be found in the IMG (T-Code SPRO) under SAP E-Recruiting -> Technical Settings -> User Interfaces -> (Settings for User Interfaces with Business Server Pages (BSP)) -> Start Pages.
    We usually define customer startpages in every project, this is really no big deal.
    If you want to remove a link from a page you should start by analysing the standard startpage as you will have to "rebuild" it. The standard startpage for the recruiter is 0003. Important to know is that IMG only contains customer customizing. The sap standard delivery is stored in own tables which can only be accessed using table tools e.g. SE11 or SE16.
    The tables for startpage customizing are named T77RCF_SP*:
    T77RCF_SP_ID(C) - Startpages
    T77RCF_SP_ID(C)T - Startpages texttable
    T77RCF_SP_GROUP(C) - Startpage groups (the blocks with a number of links)
    T77RCF_SP_GROUPT/GRPCT - Startpage groups texttable
    T77RCF_SP_LINK(C) - Links
    T77RCF_SP_LINK(C)T - Links texttable
    T77RCF_SP_ASID(C) - assignment of groups to startpages
    T77RCF_SP_ASGRP(C) - assignments of links to groups
    The table without C is the standard delivery, the one with C is the one for customer customizing.
    Just take a sheet of paper and start by getting all groups to the startpage 0003. This should be 1005, 1000, 1001, 2000, 1002, 1004, 1003 but could differ depending on release and support package. As you only want to change the 2nd group you will be able to reuse the others. Next get the links to the group you want to change. In my system it's group 1000 which contains links 1000, 1001, 1003 and 1004 according to T77RCF_SP_ASGRP.
    When you have this info you can start customizing your own startpage. you will need to create a new group in the IMG node -> Define Start Page Groups. Just use the information you find in the standard delivery and assign the 3 links you want to keep. Then create your startpage and assign the standard groups and instead of 1000 your own.
    Althought it is possible to use the same numbers for IDs like SAP I prefere using 9NNN for the ids so you always know if its standard or customer. furthermore do not forget to udate your authorization roles and add the new startpage.
    Best Regards
    Roman Weise  
    PS: of course it is your decision to hide links. But even if the managers create the requisitions using MSS the recruiters will work with their startpage only and they will have to be able to create and maintain requisitions so i am not sure if hiding the link is a good idea.

  • Teach me how to create the opening "hallway" sequence using Adobe After Effects

    I need to create a memorial video for a loved one that passed away. Can someone teach me how to create the opening "hallway" sequence using AE? here is the video from youtube: https://www.youtube.com/watch?v=4191kcW07f0 . Thanks

    I'll give a very brief overview but, presuming that you are new to After Effects, understanding and executing on this overview will require learning the basics of After Effects.
    You'll be creating a 3D scene based on a few 3D layers: one each for the floor and each wall. Each of those 3D layers will be a precomposition layer; the wall layer with the pictures will be based on a precomposition in which you have placed your pictures as individual layers. You will create some 3D lights shining down from above. You'll create a 3D camera that you will then animate to move down the hallway.
    As I said, that is a very brief overview. Understanding each of those pieces will require some learning. After Effects is not a simple application, so you do need to be prepared to put in some learning time if you are going to do this yourself. Here is the place to start: http://adobe.ly/AE_basics
    All that said, I would recommend that you hire someone to do this for you. Learning a new and complex creative application under the time pressure (and other pressure) that you are under may be too much to ask.

  • How do I enable "create multi-cam source sequence" option?

    I am trying to create a multi-cam sequence of an interview. I have one audio file (.wav) and two different camera angles (.mov's). I highlight all three and right click, but the "Create Multi-Cam Source Sequence" option is disabled. I tried going to Clip in the menu as well. No luck. How do I enable this so I can create a multi-cam sequence?

    If you are in Premiere version CS6, unselect the audio and sync your video with in or out points, timecode or clip marker. I am assuming you are prior version CC as I believe audio disables 'creating multicam source sequence'. Versions CC and beyond have the ability to sync with audio, so not sure as to why your option is greyed out.

  • Creating new OSD task sequence causes PXE boot to fail

    I'm running SCCM 2012 on Server 2008 R2. Currently we have a standard task sequence we use for all of our Windows 7 deployments that is working fine. We use PXE boot to load up WinPE to select the task sequence to load and all is good.
    I've made a new task sequence to deploy custom configuration settings to a group of computers. I've duplicated much of the original task sequence, using the same boot media. After i deploy the new TS to the All Unknown Computers collection, PXE boot does
    not work anymore.
    It downloads WDSNBP, starts by DHCP referral, contacts the server. After that I just get a Pending Request ID: number says contacting server then fails. If i go back to my new TS and delete the deployment, all is good again.
    Can i create a new task sequence using an existing reference image? Has anyone seen this type of issue before? I see similar issues online, but it seems to be for people that cannot PXE boot at all. My problem is just that the new task sequence seems to
    kill PXE boot when it's deployed.

    This is from the log file, looks like it can't find the boot image. I'm using the same boot image for both of the task sequences though.
    <![LOG[Set media certificate in transport]LOG]!><time="11:35:45.257+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:9220">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.257+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.301+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[Client lookup reply: <ClientIDReply><Identification Unknown="0" ItemKey="0" ServerName="" ServerRemoteName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply>
    ]LOG]!><time="11:35:45.359+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:6204">
    <![LOG[Set media certificate in transport]LOG]!><time="11:35:45.419+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:9220">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.420+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.455+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[PXE::CBootImageManager::FindMatchingArchitectureBootImage]LOG]!><time="11:35:45.508+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1736">
    <![LOG[Getting boot action for unknown machine: item key: 2046820353]LOG]!><time="11:35:45.572+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="pxehandler.cpp:226">
    <![LOG[Set media certificate in transport]LOG]!><time="11:35:45.637+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:9220">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.637+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[Set authenticator in transport]LOG]!><time="11:35:45.678+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:7592">
    <![LOG[Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="2046820353" ServerName="" ServerRemoteName=""><Machine><ClientID>44f40eda-b0b0-44ae-87e1-9b9464046c39</ClientID><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="COL20062" OfferIDTime="20/02/2014 11:22:00 AM" PkgID="COL00086" PackageVersion="" PackagePath="http://TECH-SVR2.county-lambton.on.ca/SMS_DP_SMSPKG$/COL00045" BootImageID="COL00045" Mandatory="0"/></ClientIDReply>
    ]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:6402">
    <![LOG[Client Identity: 9ca0acb3-06b1-4737-9db0-1e4b75336ec9]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="libsmsmessaging.cpp:6428">
    <![LOG[PXE::CBootImageManager::FindMatchingArchitectureBootImage]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1736">
    <![LOG[PXE::CBootImageManager::FindBootImage: COL00045]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1652">
    <![LOG[Looking for bootImage COL00045]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1686">
    <![LOG[PXE::CBootImageCache::FindImage]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagecache.cpp:657">
    <![LOG[MAC=9C:B6:54:A3:53:19 SMBIOS GUID=70DCD781-5008-11E4-8264-8BD5B90C0061 > Could not find an available image BootImageID=COL00045]LOG]!><time="11:35:45.743+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="pxehandler.cpp:2095">
    <![LOG[PXE::CBootImageManager::FindMatchingArchitectureBootImage]LOG]!><time="11:36:05.335+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1736">
    <![LOG[PXE::CBootImageManager::FindBootImage: COL00045]LOG]!><time="11:36:05.335+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1652">
    <![LOG[Looking for bootImage COL00045]LOG]!><time="11:36:05.335+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagemgr.cpp:1686">
    <![LOG[PXE::CBootImageCache::FindImage]LOG]!><time="11:36:05.335+300" date="02-20-2014" component="SMSPXE" context="" type="1" thread="4532" file="bootimagecache.cpp:657">

  • 'create multi-camera source sequence' crashes premiere pro

    Hi,
    I use 'create multi-camera source sequence' to sync up 2nd system audio with DSLR footage.
    If i select more than say 10 clips to sync with an audio file it will crash premiere pro CC 2014 50% of the time.
    Does anyone else find this? is it naturally unstable?
    syncing by 'audio mixdown'
    I'm on a new Mac Pro 6 core, 16gb RAM, Pegasus 2 RAID.
    Cheers

    You can see a good tutorial on the entire process here - http://tv.adobe.com/watch/learn-premiere-pro-cc/multicamera-workflows-with-premiere-pro/
    The help page also gives step by step - Adobe Premiere Pro Help | Multi-camera editing workflow.  I was talking about step 4. Create a multi-camera target sequence.

Maybe you are looking for

  • My ipad2 is on Vodafone how can I get my 3 sim to work in it

    I got a ipad on Vodafone and the contract has now ended and I want to put my network 3 sim in it but it says no net work. Vodafone told me it was unlocked but I guess it is not dose anyone know how I can get it to work

  • 2 Apple ID's and Sync Music to ITunes Library

    I have 2 Apple ID's. On my IPhone I can listen to all music from both ID's. How do I sync ALL of the music from my phone (from the 2 Apple ID's) to my ITunes Library?

  • Some albums on my iPod have their songs in incorrect order

    I guess I'm just old school. I like to listen to my music in the order that it appears on the album. Almost all of the albums have the songs in the correct order, but few do not. In particular, Today was listening to American Idiot (Green Day), what

  • HP 6735s Backlight not working

    History - HP6735s cracked screen - replaced - works for 2 weeks then backlight went out - replaced inverter (twice in case one faulty). Replaced video cable. - Still not backlight. (LCD does work) Was wondering what could cause this? according to ser

  • Updating Attribute value

    I have a simple XML document. file. <result success="TRUE"> <plan> <step number="0" name="SelectTransportA"/> <step number="1" name="SelectFlight"/> <step number="2" name="GetMedicalFlightAccountB"/> <step number="3" name="SelectFlight"/> </plan> </r