Passing elements to another track

Hello all!!
I have a doubt because we have two tracks in our Dev environment, and we need to pass some element from one track to another. How can this be performed??.
Regards IA

Armando,
As your development components are part of a software component, you can transport this component from one track to an other track manually from the 'Approval'-tab of your CMS.
Click the "Go to History" button in this tab, select the appropriate software component and click de "Forward..." button.
Select in the pop-up in the dropdown your target track and click the "Forward" button.
Hope this helps,
regards,
Alain

Similar Messages

  • Copying Clip in another Track

    Good morning,
    I am using FCE 3.0 and am having trouble copying clips into another track. I have tried the Copy/Paste method as well as dragging the selected clip with the <Option>key.
    The Copy/Paste method does not paste the clip at the playhead on a different track, and the <Option> key method simply moves the clip from one track to another.
    I'm sure I'm missing some simple element here and would like to know what it is.
    Thanks.

    Hi(Bonjour)!
    For the copy/paste way: pay attention to select the correct video and audio tracks targets.
    Sometimes, it's easier to place your playhead right after the last clip of the sequence and paste. Reposition the resulting copy.
    For the option drag: pay attention to use option key BEFORE clicking on your original clip, and drag.
    Check if your tracks are locked.
    Michel Boissonneault

  • When i try to open piano roll it is stuck on the same track regardless of whether another track is selected. I cannot elect a new synt track and pull up in piano roll

    When i try to use piano roll it always goes back to a single track. Even if I select another track or adda new blank track it will not open.
    Also if I add notes to the track that opens I cannot hear them when i place them on piano roll

    There's a little icon in the top left corner of the piano roll window that looks like a pair of chain links. If that is selected (goes yellow) then the piano roll editor is linked to the arrange page region selection(s). Sounds like what you want.
    It's really useful sometimes to be able to unlink, so that you can keep one piano roll open (to watch the timing of the notes, for example) and not haver it change each time you do something in the arrange page.
    Also, next to it is a little man running icon. If that is selected, the piano roll will chase the cursor. If not selected, it won't. Also useful sometimes.
    Hope that helps

  • Using Windows 8 64 bit Premiere Elements 12 , motion tracker gives me the folloing error; The media file seems to have an invalid entry in the catalog, please rename it for use.

    I'm trying to put a graphic over an object, but I keep getting this error message; The media file seems to have an invalid entry in the catalog, please rename it for use.

    Lonesomeless
    Thanks for the reply.
    I checked the link that I posted back in post 3 of your thread. It is working with at least Firefox and Chrome.
    ATR Premiere Elements Troubleshooting: PE12: Motion Tracking/What To Use To Track Object?
    What browser are you using?
    The blog post contains significant information related to Premiere Elements 12 Motion Tracking. But, if you cannot access it for some reason, then we will need to troubleshoot via communications in the thread.
    SG has asked if you are able to create Motion Tracking effect using one of the graphics included with the program. We will watch for your response to him on that question. Please include in your message to him whether you can obtain your file to track the object using Organizer Tab or Project Assets routes as well as Graphics Tab.
    The following is an excerpt from the blog post referenced....
    SOLUTION
    Various tutorials and online comments have pointed to places other than Graphics Tab where objects can be selected and used to track the moving object in the video when the Motion Tracking workspace is opened in the Expert or Quick workspace.
    Organizer Tab, Expert or Quick workspace to access Elements Organizer 12. Cascade Windows and drag a video or photo from Elements Organizer into the yellow track box of Motion Tracking workspace.
    Project Assets, Expert workspace. Drag text, video, or photos from opened Project Assets into the yellow track box of Motion Tracking workspace.
    Graphics Tab, Expert or Quick workspace. Create a png file (graphic) or prtl file (text) and place it in Clip Arts in the Program Files of the program to have a permanent resource. Then from Graphics Tab, drag the newly created graphic or text object into yellow track box of Motion Tracking workspace.
    Thanks.
    ATR

  • Using DC from another track ??? possible??

    Hi Experts,
    Out of curiosity i wanted to know whether i can access public part of some other DC DC1 from some other track T1 from a different DC DC2 of another track T2?
    If yes , can you please tell me how?
    Regards,
    Ashish Shah

    Hi Ashish,
    Ans: NO
    Explanation:
    U cannot connect to 2 tracks at once, U can only connect to one track at any time.
    So you cannot access public part of some other DC DC1 from some other track T1 from a different DC DC2 of another track T2?
    Because when u are connected to T2, Only dc's under S/w componentents in Track T2 can be seen and hence u cannot acess Public part of someother Dc in Track T1.
    Thanks n Regards,
    Archana

  • Pass parameter to another block

    I try to pass parameter to another block. but i have error message.
    error:PL/SQL: ORA-00904: "C1DATA_REF"."c": invalid identifier.
    Would you help me?
    ___________________________+++my code+++
    CREATE OR REPLACE PROCEDURE GETID
    (a IN TEST.COUNTRY%TYPE,
    b IN TEST.STATE%TYPE) AS
    V_ID TEST2.c%TYPE;
    CURSOR C1_DATA IS
    SELECT a,b,c FROM TESTSURVEYUNITS WHERE COUNTRY=a
    AND STATE=b ;
    BEGIN
    BEGIN
    FOR C1DATA_REF IN C1_DATA LOOP
    DBMS_OUTPUT.PUT_LINE ('SVU_ID IS:' || C1DATA_REF.c);
    END LOOP;
    END;
    BEGIN
    SELECT e,f,g,c FROM TEST2 WHERE SVU_ID=C1DATA_REF.c;
    DBMS_OUTPUT.PUT_LINE('PART 2'||C1DATA_REF.c||C1DATA_REF.e);
    END;
    END;

    Here it is reformatted. The SELECT statement in the second block won't work because there is no INTO clause and also because the cursor for loop in the previous block is out of scope. The loop has fetched all of its rows and has completed. What are you trying to do with the second select statement?
    CREATE OR REPLACE
    PROCEDURE GETID (a IN TEST.COUNTRY%TYPE
                    ,b IN TEST.STATE%TYPE) AS
    V_ID TEST2.c%TYPE;
    CURSOR C1_DATA IS
    SELECT a,b,c
    FROM   TESTSURVEYUNITS
    WHERE  COUNTRY=a
    AND    STATE=b ;
    BEGIN
       BEGIN
          FOR C1DATA_REF IN C1_DATA LOOP
             DBMS_OUTPUT.PUT_LINE ('SVU_ID IS:' || C1DATA_REF.c);
          END LOOP;
       END;
       BEGIN
          SELECT e,f,g,c
          FROM   TEST2
          WHERE  SVU_ID=C1DATA_REF.c;
          DBMS_OUTPUT.PUT_LINE('PART 2'||C1DATA_REF.c||C1DATA_REF.e);
       END;
    END;

  • Javascript: to pass values to another page

    hi all,
    i hav an interactive report. if i clik on a particular row, that row values must be passed to an another page (via javascript)
    i found this forum https://forums.oracle.com/thread/2467579 in which they hav used it for sending mail.
    but i wanted to pass those values to another page throug javascript bz, i hav installed a plugin nd wrking from it under right clik.
    ma  javascript function  is,
    function func(action,el, pos)
       window.location ="http://apex.oracle.com/pls/apex/f?p=71510:2:&SESSION.:::2:P2_X,P2_X2:'+ $(el).children('td[headers="EMPNO"]').text() +  ',' + $(el).children('td[headers="ENAME"]').text()";
    here i hav redirected it to the 2nd page and in the 2nd page i hav used 2 items to get these values.
    $(el).children('td[headers="EMPNO"]').text() +        ------->  this is to fetch the empno of that particular row and similarly for the name.
    but if i click on the right clik button , no action is happening... 
    but its working fine, if i use the function as,
    function func(action,el, pos)
       window.location ="http://apex.oracle.com/pls/apex/f?p=71510:2:&SESSION.";
    so somewhere is going wrong in passing the values in URL i suppose....
    and i hav used al d above things in
    http://apex.oracle.com/pls/apex/f?p=71510:1 (username: test / paswrd: pex14gm)
    pls help me out.....
    thanks in advance

    Try like this.
    function func(action,el, pos){
        var empNum = $(el).children('td[headers="EMPNO"]').text();
        var eName  = $(el).children('td[headers="ENAME"]').text();
        window.location ='http://apex.oracle.com/pls/apex/f?p=71510:2:&SESSION.:::2:P2_X,P2_X2:'+empNum+','+eName;
    It looks simple and neat.
    If you still didn't get post me workspace details.

  • DCs to move from one tract to another track

    Hi,
                  We have two tracks one is in DC0 and the other is DC1.
                   We have done lot of developments in the DC0 track and now we need to move this code
                   from DC0 track to DC1 track.
    Please let me know how to do this.
    Thanks,
    Anilkumar

    Anilkumar
    Your request to export import single DC from one track to another is unusual.
    It is usually SCs that needs to be moved.
    Explanation:
    The SAP approach to the software development is that you create SCs and develop DCs inside these SCs. DCs stays within their SCs for good.
    If another DC(1) needs to use original DC(0) then:
    - if DC(1) is in the same SC and DC(0), than DC(1) uses DC(0) via pub parts
    - if DC(1) is in SC(1) and DC(0) is in SC(0) (same or different track - des not matter), SC(1) should declare SC(0) as required. SC(0) should be imported to the same track as SC(1).
    There is never a need for DC to jump between SCs, because it makes it impossible to make any sense of version tracking and dependencies after that.
    If you need an entire SC with all the DCs to come over to another track, there are two ways:
    - create a new track and import assembled SC;
    - copy old track to new track and import assembled SC
    It has been discussed several times in forum like this:
    Re: Copying a track in JDI
    Regards,
    Slava

  • Used Dc dependency from one Track to another Track

    Hi All,
    Can you give me some solution for my scenario.
    1) I have imported two tracks Track1 and Track2 from the server and created project locally from Inactive DCs.
    2) I have already existing DC1 from SC1->Track1 and also i have another track Track2-->SC2. In SC2 i have created new dc DC2.DC2 is still in both Inactive DCs only.
    3) I need to use DC1 as used dc in DC2.
    4) when i tried to do Used Dc from DC2, i cannot able to see Track1 SCs and DCs, only Track 2 is visible.
    Can you please provide some steps or documents for me to proceed further, it will be very helpful for me.
    Can you tell how can add Public Part and Used DC.
    Thanks & Regards,
    Suresh T

    To get this working you'll need to do the following after following Slava's steps: Set up a transport connection (in CMS Landscape Configurator) from Track 1 to Track 2, so that SC1 becomes available in Track 2. You can import SC1 into Track 2 after it has been Approved in Track 1.
    Note that the following step that Slava mentioned should not be done manually: "Add SC1 to Requirement components in SC2 track." After the Update CMS procedure, you should click the Synchronize SC Dependencies button in Track 2. This should automatically add SC1 to the Required Components table.

  • Copy custom code from one track to another track

    How can we copy only new code from one track to another track. We don't want to merge the other DCs exisitng between 2 tracks. Is it possible through track connection? Pls give your valuable suggestions.
    Thanks,
    Santha

    HI,
    you just want to copy new code?
    i really dont understand this question.
    but as per my understanding
    1. you can copy a whole track..through track connection.
    2. You can do one thing if just want to copy new code, use NWDS and copy new changes into other tracks DC. it will be good.
    3. there is option for workspace comparision and integration. think of it, if suitable.

  • Comment récupérer les remarques concernant les personnes perdues en passant à Element 11 ?

    Etiquette de mot-clé « Personnes » : J’ai mis un nombre important de commentaires sous « Personnes » « Remarque » dans Element 10. En passant à Element 11, j’ai apparemment « perdu » ces informations. Comment puis-je les récupérer et les intégrer dans le catalogue d’Element 11 ? Qui peut m'aider? Marc

    1. Go to Media vue
    2. Click Tags
    3. Choose show people tags

  • Automation data copied to another track?

    I like the way I automated a track, and want to used that exact "volume" automation on the next track below in my arrange menu. Is there a way to copy/paste kind of process here to recreate this on another track?

    Prior to Logic 7, Logic included an Automation Folder. This was basically an arrange page, that had all the automation in your song viewed as if they were audio or MIDI regions. You could easily option/drag automation from one track to another this way.
    There is a way to it in version 7... read about it here:
    http://community.sonikmatter.com/forums/lofiversion/index.php/t21249.html
    I have my automation folder available as a screenset.
    Once set up, this is probably the quickest way to achieve what you're wanting. However, I have also used the method mentioned above, where you drag the region, and Logic asks if you want to copy it (as long as you have "Ask" selected in your Track Automation Preferences).
    Then just delete the copied region, and tell Logic not to delete the automation data.
    Do look into the automation folder though. It allows you to move and copy automation data, just like you do audio and MIDI regions.

  • Forward Chapter to another track

    Hello,
    I have multiple tracks with chapters on my DVD. I have the end jump on the last chapter set to go to the next track. This works nice but if I want to skip to the next track I can't. I must wait until that chapter is over and then it will automatically jump. How can I make it so if I hit the forward chapter button it will skip to another track?
    Thanks
    Dual 1.8 G5 4GB   Mac OS X (10.4.2)  

    I see....You can try a script at that chapter's end jump but I don't think the Next button will activate it either.
    One thing you could try (and if the above doesn't work then this would be my only answer) -
    make sure you have 15 sec - 1 sec of black at the end of your existing track. Make 1 chapter point from where the black begins and set your tracks end jump to the next track
    when you hit next it will go to the "first" chapter marker and the user will see black for 15 frames - 1 sec THEN it will jump to the track you need. Kinda of crude work around but if done right the user will not be able to tell - it will just take a little longer then actually skipping chapters.
    Do this for every track in your project
    In fact i do this on all tracks that have chapters because people love to push next and previous and are confused when they come to the end of a movie and all of a sudden the next button doesn't work
    Hope this helps
    PS - and hanumang is right - aviod setting end jumps on chapters in DVDSP

  • Making an element a child element of another

    I'm looking for a way in Adobe InDesign CS5+ to make one element a child element of another (similar to what you can do with Edit -> Paste Into).
    I can't use the app.pasteInto option unfortunately because in my script, the window is not visible.
    Is there any other way of doing this?
    Regards,
    pieter

    Hi
    I believe , you want users to click on thumbnail which should open lightbox with 9 images in it and where users can scroll inside the container to view those 9 images.
    You can use any composition , the triggers can be used as thumbnails and in Target container insert slideshow where there should be 9 slides with 9 images. So this would be similar effect, where user clicks on thumbnail and container opens with slides of 9 images, user can navigate using navigation buttons. Achieving a lightbox effect would somehow is not possible without using custom script.
    Thanks,
    Sanjit

  • My computer crashed.  I tried installing Elements on another computer and I get 'limit reached'.

    My computer crashed.  I tried installing Elements on another computer and I get 'limit reached'.

    You need to contact support directly for activation/deactivation and other installation issues. It’s usually possible to start a live chat, if an Adobe agent is free, and often to get the problem fixed right away. You will need your serial number. If an agent is not immediately available, refresh the page a few times until you see the green chat button, or try at a later time.
    To get help now click here for product support
    Can’t get immediate help? click here for further options

Maybe you are looking for

  • NullPointerException

    I have classes CDRack, Record and TestProgram. When I am trying to run TestProgram I have runtime error: java.lang.NullPointerException at CDRack.insert(Record,int) (CDRack.java:88) (pc 7) at Tester63.testAddings (Tester63.java:62) (pc 64) What's wro

  • How to call a EJB method from Session bean method

    Hi all, I'm new to J2EE programming. I have a simple doubt . I have already created a lookup method for EJB bean in Session bean . My question is how to call a method of an ENTITY bean (say insertRow) from SESSION bean method(Say invoke_insertRow) .

  • SQL Developer 3.0 Bug

    In ORACLE Developer 3.0.04 is a bug in showing the functions or procedures of a package. When "for update nowait" is included in source code no functions or procedures will be shown. select vts_server into v_server from vt_server where vts_status = 1

  • Reload Teredo Tunneling Adapter on a Pavilion

    Need to reload the driver for the Microsoft Teredo Tunneling Adapter on a Pavilion g7-1338dx This question was solved. View Solution.

  • Macro Help

    Dear Macro Experts I wrote this macro IF KF2 in period 4 > Average of KF2 from period 1 to 3, Action POP UP a message individually for each period beginning period 4. ENDIF That works but here is what I experience I need to click on the information m