Make a duplicated composition unique???

Hi a Quick question, if I have a composition and when i duplicate it in the timeline can I make that a unique composition or do i have to go to the project tab and duplicate it there then copy and paste all animation and effects from the original composition, that gets kind of time consuming if I have many composition inside every composition.
thanks in advance.

I'm also looking for this functionality, but can someone confirm:
if I duplicate a nested hierarchy using True Comp Duplicator, does the duplicate structure become truly unique? in other words, if I go in and change part(s) of the duplicated subcomps, will the original remain unchanged?
cheers
LML

Similar Messages

  • How to Allow null in on column If i Create Composite Unique

    Hi All,
    I have table EMP_APPROVAL having COL1,COL2,COL3
    COL1,COL2 are Mandatory and COL3 Most of the times null.
    I CREATED COMPOSITE UNIQUE KEY BUT IT ALLOWS ONLY ON RECORD NULL VALUE IN COL3.
    is there any suggestion!
    Thanks,
    Nr

    If COL3 is NULL, the index has no entry for that row. If COL3 is not null, you could do this:SQL> CREATE TABLE T(
      COL1 NUMBER NOT NULL,
      COL2 NUMBER NOT NULL,
      COL3 NUMBER
    table T created.
    SQL> CREATE UNIQUE INDEX IDX_T ON T(NVL2(COL3,COL1,NULL),NVL2(COL3,COL2,NULL),COL3)
    unique index IDX_T created.
    SQL> INSERT INTO T
    SELECT LEVEL, LEVEL, DECODE(MOD(LEVEL,2),0,LEVEL, NULL)
    FROM DUAL
    CONNECT BY LEVEL <= 1000
    1,000 rows inserted.
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME => USER, TABNAME => 'T')
    anonymous block completed
    SQL> SELECT /*+ gather_plan_statistics */ * FROM T
    WHERE (NVL2(COL3,COL1,NULL),NVL2(COL3,COL2,NULL),COL3) = ((8, 8, 8))
    COL1 COL2 COL3
       8    8    8
    SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,'ALLSTATS LAST'))
    | Id  | Operation                   | Name  | Starts | E-Rows | A-Rows |   A-Time   | Buffers |                                                                                                                                                                                                             
    |   0 | SELECT STATEMENT            |       |      1 |        |      1 |00:00:00.01 |       3 |                                                                                                                                                                                                             
    |   1 |  TABLE ACCESS BY INDEX ROWID| T     |      1 |      1 |      1 |00:00:00.01 |       3 |                                                                                                                                                                                                             
    |*  2 |   INDEX UNIQUE SCAN         | IDX_T |      1 |      1 |      1 |00:00:00.01 |       2 |                                                                                                                                                                                                             
    Predicate Information (identified by operation id):                                                                                                                                                                                                                                                         
    2 - access("T"."SYS_NC00004$"=8 AND "T"."SYS_NC00005$"=8 AND "COL3"=8)To me, this would make little sense. I would create a normal index on COL1,COL2,COL3 for use in queries (whether COL3 is NULL or not). I would use the above function-based index just for selective uniqueness.

  • Composite unique constraint on parent and child values?

    Is it possible to have a composite unique constraint containing values from child elements? The below example has the 'child' elements are out-of-line but this is preferred but optional, as I know you cannot have a unique constraint across tables without having a reference table containing the constraint and both columns. How does xdb handle this requirement?
    allowed:
    <parent ID="1">
       <child><name>test1</name></child>
       <child><name>test2</name></child>
    </parent>
    <parent ID="2">
       <child><name>test1</name></child>
       <child><name>test2</name></child>
    </parent>not allowed:
    <parent ID="1">
       <child><name>test1</name></child>
       <child><name>test1</name></child>
    </parent>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:xdb="http://xmlns.oracle.com/xdb"
               xdb:storeVarrayAsTable="true"
               elementFormDefault="qualified">
        <xs:element name="parent" type="Parent_T"
            xdb:columnProps="CONSTRAINT parent_pkey PRIMARY KEY (XMLDATA.ID)"
            xdb:defaultTable="PARENT"/>
        <xs:complexType name="Parent_T" xdb:SQLType="PARENT_T" xdb:maintainDOM="false">
            <xs:sequence>
                <xs:element name="child" type="Child_T" minOccurs="1" maxOccurs="unbounded" xdb:SQLName="CHILD"
                          xdb:SQLInline="false" xdb:defaultTable="CHILD" "/>
            </xs:sequence>
            <xs:attribute name="ID" xdb:SQLName="ID" use="required" />
        </xs:complexType>
        <xs:complexType name="Child_T" xdb:SQLType="CHILD_T">
           <xs:sequence>
             <xs:element name="name" type="xs:string" xdb:SQLName="NAME"/>
           </xs:sequence>
         </xs:complexType>    
    </xs:schema>xdb:columnProps="CONSTRAINT parent_pkey PRIMARY KEY (XMLDATA.ID),*UNIQUE(XMLDATA.CHILD.NAME)*" raises nonexistant attribute
    One possible solution would be to copy the value of the parent primary key to the child element, then I could create a composite unique constraint using only values from the child. However, I have this same requirement elsewhere in my schema nested further down, and it may become messy / bad design having to cascade all the primary keys down the schema. For example I have a recursive element in which two attributes need to be unique only within the parent:
    <parent id="1">
       <child a="1" b="1">
          <child a="1" b="2">
             <child a="1" b="1" /> *not allowed
          </child>
       </child>
       <child a="1" b="2" /> *not allowed
    </parent>Possible fix:
    <child a="1" b="2" parent_id="1" />
    <xs:complexType name="Child_T>
       <xs:sequence>
          <xs:element name="child" xsd:SQLInline="false" xsd:columnProps="UNIQUE(XMLDATA.a,XMLDATA.b,XMLDATA.parent_id)" minOccurs="0" maxOccurs="unbounded" type="Child_T">
       </xs:sequence>
       </xs:element
    </xs:complexType>Is there a better design?
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production                          
    CORE     10.2.0.4.0     Production                                      
    TNS for Linux: Version 10.2.0.4.0 - Production                  
    NLSRTL Version 10.2.0.4.0 - Production

    You can do something like this :
    SQL> DECLARE
      2 
      3    xsd_doc xmltype := xmltype('<?xml version="1.0" encoding="utf-8"?>
      4  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb">
      5    <xs:element name="name" xdb:SQLType="VARCHAR2">
      6      <xs:simpleType>
      7        <xs:restriction base="xs:string">
      8          <xs:maxLength value="30"/>
      9        </xs:restriction>
    10      </xs:simpleType>
    11    </xs:element>
    12    <xs:element name="child" xdb:SQLType="CHILD_T">
    13      <xs:complexType xdb:SQLType="CHILD_T" xdb:maintainDOM="false">
    14        <xs:sequence>
    15          <xs:element ref="name"/>
    16        </xs:sequence>
    17      </xs:complexType>
    18    </xs:element>
    19    <xs:element name="parent" xdb:SQLType="PARENT_T">
    20      <xs:complexType xdb:SQLType="PARENT_T" xdb:maintainDOM="false">
    21        <xs:sequence>
    22          <xs:element ref="child" maxOccurs="unbounded" xdb:SQLCollType="CHILD_COLL"/>
    23        </xs:sequence>
    24        <xs:attribute name="ID" type="xs:integer" use="required"/>
    25      </xs:complexType>
    26    </xs:element>
    27    <xs:element name="root" xdb:defaultTable="MY_XML_TABLE" xdb:SQLType="ROOT_T">
    28      <xs:complexType xdb:SQLType="ROOT_T" xdb:maintainDOM="false">
    29        <xs:sequence>
    30          <xs:element ref="parent" maxOccurs="unbounded" xdb:SQLCollType="PARENT_COLL"/>
    31        </xs:sequence>
    32      </xs:complexType>
    33    </xs:element>
    34  </xs:schema>');
    35 
    36  BEGIN
    37 
    38    dbms_xmlschema.registerSchema(
    39      schemaURL => 'test_parent.xsd',
    40      schemaDoc => xsd_doc,
    41      local => true,
    42      genTypes => true,
    43      genbean => false,
    44      genTables => false,
    45      enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_NONE
    46    );
    47 
    48  END;
    49  /
    PL/SQL procedure successfully completed
    SQL> CREATE TABLE my_xml_table OF XMLTYPE
      2  XMLTYPE STORE AS OBJECT RELATIONAL
      3  XMLSCHEMA "test_parent.xsd"
      4  ELEMENT "root"
      5  VARRAY xmldata."parent" STORE AS TABLE my_parent_tab
      6  (
      7    VARRAY "child" STORE AS TABLE my_child_tab
      8  )
      9  ;
    Table created
    SQL> ALTER TABLE my_parent_tab ADD CONSTRAINT parent_uk UNIQUE (nested_table_id, "ID");
    Table altered
    SQL> ALTER TABLE my_child_tab ADD CONSTRAINT child_uk UNIQUE (nested_table_id, "name");
    Table altered
    Then :
    SQL> insert into my_xml_table values (
      2  xmltype('<root><parent ID="1">
      3     <child><name>test1</name></child>
      4     <child><name>test2</name></child>
      5  </parent>
      6  <parent ID="1">
      7     <child><name>test1</name></child>
      8     <child><name>test2</name></child>
      9  </parent></root>')
    10  );
    insert into my_xml_table values (
    ERREUR à la ligne 1 :
    ORA-00001: violation de contrainte unique (DEV.PARENT_UK)
    SQL> insert into my_xml_table values (
      2  xmltype('<root><parent ID="1">
      3     <child><name>test1</name></child>
      4     <child><name>test1</name></child>
      5  </parent>
      6  <parent ID="2">
      7     <child><name>test1</name></child>
      8     <child><name>test2</name></child>
      9  </parent></root>')
    10  );
    insert into my_xml_table values (
    ERREUR à la ligne 1 :
    ORA-00001: violation de contrainte unique (DEV.CHILD_UK)
    SQL> insert into my_xml_table values (
      2  xmltype('<root><parent ID="1">
      3     <child><name>test1</name></child>
      4     <child><name>test2</name></child>
      5  </parent>
      6  <parent ID="2">
      7     <child><name>test1</name></child>
      8     <child><name>test2</name></child>
      9  </parent></root>')
    10  );
    1 ligne créée.http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb06stt.htm#sthref987

  • How to Alter any table to make some fields Composite Primary Key

    I need to Alter Table to make some fields Composite Primary Key.
    Is it possible to do this ?
    Please give any example.
    Regards,
    AgrawalV

    Agrawal
    If you are looking for an example to create a composite primary key, here you are.
    sql> Alter Table myTable add constraint pk_myTable primary key(col1, col2, ...coln) ;
    where
    pk_myTable is the name of the primary key constraint,
    myTable is the name of the table that you want to create a constraint on and
    col1...coln are the column names in the table <myTable)

  • Regarding Composite unique key

    hi all
    Can anybody tell me the syntax of Composite unique key
    Regards
    S

    if u'r looking for composite primary key, this might help,
    alter table <table_name> add constraint <constraint_name> primary key (<col1>, <col2>, ...<coln>)[pre]                                                                                                                                                                                                                                                                                                                                                   

  • RFC function as a Web service - how to make wsdl type names unique

    Hello,
    We have a RFC function module, converted into a web service named ZVIEW_AGREEM, which works perfectly. Note that we only have a basic CRM system (Basis 7.31 SP 11), we don't have PI.
    There is a client request to create a new version of this web service, named ZVIEW_AGREEM_2 : there is a new field "output_parameter2" in the response. The response type has XSD type named "VAGResult" (that we entered manually in the service definition).
    The client also asked us to keep the old web service so that to be able to switch to the new one at a future date.
    So, we duplicated the function module, duplicated the DDIC structure, and inserted the requested field, and then we made the web service.
    It's okay except that the client complains that his software doesn't accept the WSDL, because we kept the same external type name "VAGResult", and it's different between the 2 web services (in the second, there is the extra "output_parameter2"). Both are assigned the standard SAP namespace urn:sap-com:document:sap:rfc:functions.
    Do you know if there is a way to make SAP control the unicity of external type names to avoid having WSDL types with the same name and different structures?
    Thanks.
    Sandra
    Attached is the WSDL of ZVIEW_AGREEM_2; ZVIEW_AGREEM is exactly the same but doesn't have "output_parameter2".

    Thanks.
    But the question is more about the fact that we may name a type as we want, SAP does not check (VAGResult in the screen capture below, which becomes <complexType name="VAGResult"... in the WSDL). It may be the same name as a type in another Web Service, both types may have completely different structures. It's a problem from a "philosophical" perspective, as these types share the same namespace "urn:sap-com:document:sap:rfc:functions"; the client software doesn't accept that, we have to rename it; I'd like to know whether SAP proposes a way to prevent choosing a name if it's already chosen for another type of different content.

  • Cannot Edit Duplicated Compositions(CS6)

    Situation.
    1) Dowloaded a project from Video Copilot.
    2) Imported The Project into the project I'm working on(VCProject into a lyric video)
    3)Duplicated The Project IN THE PROJECT BIN(This is still inside a folder, maybe this is my problem)
    4) I still get changes across ALL of the duplicated comps. I copied the precomps and replaced them as well, still gave me the same thing. Ctrl + D'ed and manually copied them.
    I know this has been discussed, but I need a clear cut reason as to why this is happening. I've done duplications before so I know I'm not insane in saying I'm doing something wrong, but what is it?
    I can upload a video if necessary, I don't think anyone's done that.

    Every pre-comp or nested comp that is inside a duplicated comp needs to also be duplicates. AE builds everything in a composition from a reference to source file whether it is footage, a nested comp, or a solid. If the reference, the nested comp, the footage, or even the solid is not changed things don't change in the duplicated comp.
    Did you follow that?

  • How to Make One custom field unique apart from Userkeys defined by Oracle?

    Hi,
    I have one requirement to make a a number field to be unique at Account level. I know as per Siebel on Demand Account Name & Location combination is using as UK. But as per my requirement, i want to restrict user to not entering duplicate value in a defined custom field. How can we achieve this.
    All helpful suggestions are welcome..
    Regards,
    Subbu

    No, you cant create unique custom fields... I know, it's terrible.

  • How to make a custom column unique in sharepoint?

    in sharepoint i created workflow, and in tasks lists i added 3 custom columns
    my requirement is in those 3 , 1 column should be unique, For example, i added columns, empId,name dept,
    in those empId should be unique, if any one who enter the same empId while creating, it won't accept,
    is it possible?
    any ideas, thanks in advance

    hi,
    but i don't know why you are trying to map with Managed Property.
    to find a column unique or not what is the need to do above process?
    if you add custom column in a list, it should be in the lists, if it is not visible in the default view then
    follow this link.
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1689192&SiteID=1
    if you want the code, how to check the column is unique or not through events see here
    http://www.codeproject.com/spoint/ExtendingSPS.asp?print=true
    download the code and let me know if any issues.
    thanks

  • How do I make a photo composition

    I have 4 separate photos of my best friend, his wife, daughter, & son. Actually they are funny, goofy photos taken with Photo Booth.
    I want to combine (and edit) these 4 phots into a "family portrait" that I will frame as an anniversary gift.
    However, as this is a one-time occurrence project, I do not want to spend the money on photoshop, aperture, final cut pro...or whatever. That would be a lot of money to spend for 1 photo project!!
    Anyway....any ideas on if there are any shareware programs or something that I can use? Or do I have the software on my Mac and don't even realize it?
    Thanks for your help!

    Jim:
    One application that Terence didn't mention is Photoshop Elements for Mac. It has about 80% of the full blown Photoshop's capabilities at 1/7 the price (~$89). It is capable of what you want to do and more advanced editing.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Is there a way to make secure zone content unique for user?

    Hi, we have a client who wants to have a secure zone on their site which will allow them to upload images and notify the user, so that when they login they will see their particular images (in a gallery with lightbox etc) but other secure zone users cannot see their images, they will only see their own images.
    I am looking at a combination of secure zone/web app/image gallery functionaity but cannot work out if this is even feasible (without some had core scripting).
    Does anyone know how we can set this up?
    Cheers
    Cam

    Hi,
    You can do this via web-apps (placed inside a secure zone). A webapp can be customized to allow users to add and edit their submissions, can be integrated with google maps, can have expiry dates, can require payments, etc. Here's a complete reference: http://helpx.adobe.com/business-catalyst/topics/web-apps.html
    Kind Regards,
    Alex

  • How do I use FILE_GET_NAME and make my resulting dataset name unique?

    Okay, here's a case where I have a bunch of pieces to the puzzle -- a little knowledge here, a little knowledge there -- but I'm having trouble putting them together.
    I am working on an RFC that is called by XI as part of an interface.  This interface will execute every 15 minutes.  As part of the RFC's execution (which is very simple and straight-forward) I would like to write out a dataset of the processing results.  I have already learned how to use the OPEN DATASET, TRANSFER, and CLOSE DATASET commands, so I'm good to go there.
    Here's what I'd like to do:  Because this can run every 15 minutes, I don't want to keep overwriting my dataset file with the latest version.  I'd like to keep the dataset name unique so it doesn't happen.  Obviously, the first thought that comes to mind is adding a date/time stamp to the file name, but I'm not sure how -- or the best way -- to do this.
    Also, I was told I should put the file -- for now -- into the DIR_DATA directory.  I had no idea what this meant until I was told about t-code "FILE" and that this was the logical file name.  Someone in-house thought I'd need to use a function called FILE_GET_NAME to make things easier.
    Okay, so I need to use FILE_GET_NAME apparently, somehow plugging in DIR_DATA as the directory I need, and I want the resulting file name to have the date/time added at run time.  I'm thinking when it comes to batch processing and writing out datasets, this has to be something that someone's already "paved the road" doing.  Has anyone done this?  Do you have a little slice of code doing just this that you could post?  This would go a long way toward helping me understand how this "fits" together, and I would greatly appreciate any help you can provide.
    As always, points awarded to all helpful answers.  Thank you so much!

    hey,
    here is the brief description of logical & physical path.
    in the physical path, we will give total path of the file,where the file is located actually in the server.
    for example : /INT/D01/IN/MYFILE.
    this is the physical path in my client for a particular file.
    some times this have problems like D01 above in the path,
    is development system. if we move to quality, it will be Q01 etc..
    to make every file independent of the server location, we use logical path concept, which is nothing but, instead of giving the total physical path like above,we will give this logical path & file name. before that we will create a logical path in sap & assign some physical path to it.
    the below function module is used to get the actual physical path by giving the logical path name & file name
    *&      Form  GET_PHYSICAL_PATH
          text This form used to get the Physical Filepath by giving the Logical path & the File name.
    FORM GET_PHYSICAL_PATH.
      DATA : LV_FILE(132) TYPE C,
             V_LENGTH TYPE I   ,
             LV_LOGNAME LIKE FILEPATH-PATHINTERN.
      LV_LOGNAME = P_LPATH.
    *--this P_LPATH is a parameter in the selection screen
    *--this P_FNAME is the actual file name as below
    *--PARAMETERS : P_LPATH TYPE RLGRAP-FILENAME,
                    P_fname TYPE RLGRAP-FILENAME.
      CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
           EXPORTING
                CLIENT                     = SY-MANDT
                LOGICAL_PATH               = LV_LOGNAME
                OPERATING_SYSTEM           = SY-OPSYS
                FILE_NAME                  = p_fname
           IMPORTING
                FILE_NAME_WITH_PATH        = LV_FILE
           EXCEPTIONS
                PATH_NOT_FOUND             = 1
                MISSING_PARAMETER          = 2
                OPERATING_SYSTEM_NOT_FOUND = 3
                FILE_SYSTEM_NOT_FOUND      = 4
                OTHERS                     = 5.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
    *--ur total physical(absolute) path will be in LV_FILE.
        V_FILEPATH = LV_FILE.
      ENDIF.
    ENDFORM.                    " GET_PHYSICAL_PATH
    unique naming for ur file names;
    after getting the physical path from the above function module, append date& time stamp to the file as below.
    CONCATENATE V_FILEPATH
                SY-DATUM
                SY-UZEIT
                INTO V_FILEPATH.
    This way you can make your file name unique always
    regards
    srikanth
    Message was edited by: Srikanth Kidambi

  • How can I make the paths visible in a composite pattern created via the Swatch Palette?

    I created a swatch, used it to make a large composite pattern.  I can't find the paths.  They are needed so that
    a laser cutter can follow them for production.  What am I missing?

    Try selecting everything with the pattern and use Expand (or Expand Appearance, which ever is available) from the object menu. You might need to cleanup quite a lot depending on how you constructed the paths in the original pattern tile.

  • AE CS6 - 3D Compositing and Color Correction workflow

    AE CS6 - 3D Compositing and Color Correction workflow
    Hello everybody,
    I have some questions about work flow in AE concerning compositing and Color Correction. I saw many tuts about (f.e. Lynda.com Premiere Pro Color Correction and Enhancement... and tuts by Andrew Davis here in creative.cow).
    Essentially, he have this CC work flow:
    GRADING (primary and secondary)
    Adjusting Tonality (Brightness and Contrast)
    Adjusting Colors (White balance and fix color dominance)
    MATCHING
    Conforming colors of different clip shoted with different camera and lighting set up.
    ENANCHING LOOK
    Giving to all clips a unique "look"
    But what does it  happen if we have NOT just some clips but ALSO a 3D object (rendered in a 3d sw or, actually also a 3d object inserted by 3D Element by videocopilot)
    or/and
    a keyed clip from a green screen shot?
    How does this footage (3d object and green screen keyed shot) transform
    the aforementioned work flow?
    We have to consider that this footage (3d object and green screen keyed shot) must to be pre-multiplied to make a right compositing but when you make CC it must be again "straight"... (NOT pre-multiplied)
    Is really hard also understand how dale this work flow between AE and Pre Pro if you want to make CC in Pre Pro after compositing in AE.
    I try to present a work flow for this (very common) situation:
    I have a landscape clip as a background
    a keyed clip (pre-multiplied) with a Character watching sky
    and a 3d (pre-multiplied) object U.F.O. on sky.
    When I have done compositing, how make I a right CC of all footage if I have two clip (3d object and green screen keyed shot) still  pre-multiplied?
    I think, but I'm not sure, that should be a good idea to send to Pre Pro a composited Comp with separate layers (by dynamic links)  to have  all single separate layers (Background, 3d object and green screen keyed shot.. but also the Color Warping...!). Than, in Pre Pro you should make a CC (Grading)  just for a BG and than try to Match (Matching) this color corrected BG with 3d obj and keyed shoot. But we have a problem at this point cause our 3d object and green screen keyed shot are still pre-multiplied, and before make matching we have to re- multiplied theme, but how? And if we re pre-multiplied them, compositing will be also right?
    Or maybe, before exporting comp from AE to Pre Pro, he have to create both layers for 3d object and green screen keyed shot, one pre-multiplied and one "Stright"? But, again, how to combine them to have a right compositing and a a right CC?
    Anybody can help me to understand or maybe suggest any tuts to dale this common issue in AE- Pre Pro?
    Many, many thanks!

    Dave is correct. (And so is Mylenium. No need to be rude, when he was jsut trying to explain that you were introducing unnecessary complexity.)
    The color matting is removed to interpret the alpha channel when you import the footage. After that, any color correction that you do to a layer based ont hat footage item doesn't have anything to do with whether the channels were straight or premultiplied for the source item.
    You color-correct your individual items to amke them match as part of the compositing process in After Effects. Then, if you want to do a color grade of the shot in Premiere Pro along with other shots, you'd be working on the single rendered/flattened composite, so the details of the original elements that went into the composite are irrelevant.

  • How to create a unique group field in Qualifier table

    Hi,
    I am trying to use a qualified table in Product maintable like "Site items".
    However I would like to have two non-qual field in that like 'Plant' and 'item#' which should be an unique combination.
    I have tried to create a table(X) with the above two fields with display and another table (Y)that uses the table X for lookup (site-item) so as to make it dispaly and unique both. However when i am using this Y table as a lookup for the qualified table(site items) , not able to load data.
    Error message:
    "Import failed. Unable to find source column index for 'Site Item ID' field"
    Another issue also not able to populate data for the qualified flds even if when able to load data without making a group unique field for this qualified table.
    In MDM 5.5 sp4. Thanks in advance for any tips.
    -reo

    Hi Beena,
                    In the above post of mine I suggested you to use STRING data type.
    As you are telling that when creating TABLE MAINTANENCE GENERATOR you are
    getting an error saying that " Datatype STRING is not supported ". I tried this, what you said is right.
                      After your reply I did research on this and I also met my heads,
    The conclusion is <b>IT IS NOT POSSIBLE TO GENERATE TABLE MAINTANENCE</b> for the table which is using STRING type. At last I can give you one suggestion, i.e., In the short text of that field write STANDARD TEXT name.So that whenever you want, go to this standard text, but the problem is you have to maintain it manually.
    <b>Reward all helpful answers.</b>
    Regards,
    V.Raghavender.

Maybe you are looking for

  • How do I start NetBoot in Lion Server?

    I have the NetBoot service checked in server admin under 'services,' but it still has a grey circle next to it under the 'overview' tab (as well as DHCP and DNS).  Furthermore, it doesn't appear under the "services" list in the server application (wh

  • Bravia TV

    when using skype on my sony bravia smart tv, skype cuts out after about 1.5 mins with the message "signal has been lost"  What can I do?

  • I want to replace my itouch 4? How much does Apple charge? $99 or $199?

    I want to replace my itouch 4? How much does Apple charge? $99 or $199?

  • Aligning text in JTextArea

    Hi, Does anyone know how to set the point at which text in displayed in a JTextArea using the setText() method. I am trying to align text in the centre of a JTextArea. Is there a way one can find the pixel at the centre of the textarea and then someh

  • Zen Nano Plus transfer prob

    Am having trouble transferring .wma files to my Zen Nano Plus even though it has 590MB free. When I try to transfer anything using Creative Source I keep getting a "transfer error" message. Have tried reorganising files into folders to cut down on me