Creating a roll up in the heirarchy

Hi all,
I wanted to know if there is any way to create a roll up of employee until manager. Can anyone please let me know which feature of endeca might help me achieving this?
following is the scenario.
If manager 123 and 124 report to manager 12 who reports to manager 1,
- 1
-- 12
--- 123
--- 124
-- 13
Then the employees mapped to 124 would implicitly be mapped to 12 and 1, allowing refinements and rollups down the management tree to always return all employees in that management chain.
Appreciate your help.
Thanks,
Swathi

This might work if you load this the dimension as a managed attribute. Check documentation at http://docs.oracle.com/cd/E35976_01/integrator.240/eid_integrator_users/toc.htm#Loading%20managed%20attribute%20values%20%28MVals%29.
- Srikanth

Similar Messages

  • I created an iMovie using pictures from my camera roll, I exported the movie to the camera roll and then deleted all of the pictures. Now I can't get the movie to play. Did deleting the pictures cause my IMovie to disappear? How can I get my movie back?

    I created an iMovie using pictures from my camera roll, I exported the movie to the camera roll and then deleted all of the pictures. Now I can't get the movie to play. Did deleting the pictures cause my IMovie to disappear? How can I get my movie back?

    Download and open this program, lets you look around your I phone as if it was a disc drive, might find em in the iphones drive.
    http://www.macroplant.com/iexplorer/

  • How do you create a rolling title that ends on a still image of the title?

    How do you create a rolling title that ends on a still image of the title?

    Here's the help page that describes using the tab stops:
    http://help.adobe.com/en_US/PremierePro/4.0/WS35CA53B6-EAFF-499a-A600-DCD85686354Da.html
    Let me know if that's clear as mud and I'll try to shed more light on the subject.
    One thing that isn't specified/clarified/whatever (and was the biggest stumbling block for me when I first tried this in PPro 1.5) is that the ruler for the tab stops is zeroed at the edge of the text box, and tab stops ONLY work in text boxes (or "text area," however you please). At any rate, you have to position that ruler so that the zero point is at the left edge of your text box, and then the rest of the instructions in the help doc will make sense.
    Also, it's useful to show the tab markers while you work. Just go "Title > View > Tab Markers" and you're good.
    Hope this helps!
    As a side, I have found that this one feature is really the best and most useful part of the PPro titler (and also, just about the only function in the titler that WON'T cause your system to crash on a regular basis).

  • Project professional 2010: Physical % Complete field does not roll-up to the summary tasks

    Hi,
    I have a project plan which I need to set the physical % complete fields of it in order to use it for earned value over time report. I have assigned costed resources to come of the tasks, set all project task's earned value method to physical % complete,
    and finally set a baseline. However, the physical % complete still does not get calculated for the summary tasks! It is always zero! 
    I have created another project with only 3 tasks and 3 resources, did the same as above, and was able to get calculated values for the physical % complete.
    I followed the same procedure in both projects. In one I was able to get the physical % complete value of the summary tasks while it was always zero in the other! What may be the problem? 
    Regards,
    George 

    Hi Julie,
    This is what I am seeing as necessary to make Physical % complete roll up to the summary level task.
    BEFORE tasks are entered, set the "Default Task Earned Value method" to Physical % complete. File > Options, Advanced.  This will set both the summary and detail tasks to that method.
    Add tasks
    Add resources with costs.
    Assign resources to tasks.
    Baseline the file
    Take a look at the Tracking table and enter progress in the Physical % complete field for subtasks. The value should roll up.
    Sadly I don't know of anyway to force the change after the tasks have been added.  You can certainly add the Earned Value Method field to a task view to confirm all is set - but I have never been able to switch mid-flight and get it to work correctly.
    I did, however, just try an experiment.  I created a file that did not work correctly - Physical % complete was not rolling up.  I inserted it into a blank project that had the option set correctly without linking.  After a bit of tweaking
    (outdenting all tasks to be able to delete the "extra summary task", saving a baseline), it now appears to be working correctly.
    I hope this helps.

  • How to create a generalized version of the detailed polygons?

    How to create a generalized version of the detailed polygons?
    I have a table of detailed polygons (100+ vertices) and I want to get generalized version of these polygons.
    For example, assume I have a polygon with 100 vertices. Distance between vertex n and n+1 is 1.0.
    I want to get geometry (generalized polygon, line or point) where distance between vertex n and n+1 is 10.0 or more (I want vertices to be considered as one vertex if distance between them is less then 10.0).
    Is it possible to create generalized version of polygons on the fly?
    Any help is appreciated.
    Thanks.

    Scenario A:
    If all of your polygons have no interaction among them (No polygon shares any boundary with any other ones).
    In this case you can use the sdo_util.simplify in 10g to reduce the vertices in your polygons which returns new polygon geometries on the fly.
    If you found that simplify is not doing exactly what you want, you can always roll out your own implementation using PL/SQL or the new SDOAPI JGeoemtry class in Java. Both will give you complete access to the coordinate arrays in a polygon and update them back to the database after you have simplified them in your code.
    Scenario B:
    If your polygons share boundaries, then the above methods will not work since the simplification process may not preserve the topology among your polygons. What you can do then is to use the Java topo package to create a new topology by adding all of your polygons to to an empty topology (which you first create in the database and then load into memory using oracle.spatial.topo.TopoMap). Once you have a topology built in the memory, you can use methods such as oracle.spatial.topo.TopoMap.changeEdgeCoords() to simplify the edges of your polygons. You can then recreate the simplified polygons from the topology. This is just a rough guide; for more details you need to check out the java doc for the various packages mentioned above which are shipped with 10g spatial.

  • Can I create a dashboard layout on the fly?

    Hi all, I am trying to create a dashboard layout "on-the-fly"
    (dynamically).
    for example: I can create the following layout using MXML
    very easily:
    [CODE]
    <mx:VBox width="100%" height="100%"
    horizontalAlign="center">
    <mx:Canvas id="dashboardCanvas" width="90%"
    height="90%">
    <mx:HBox width="100%" height="100%">
    <mx:Panel title="panel 1" width="50%" height="100%">
    <mx:VBox width="100%" height="100%"
    borderStyle="solid">
    <myDashboarComp borderStyle="solid" />
    <myDashboarComp borderStyle="solid" />
    <myDashboarComp borderStyle="solid" />
    </mx:VBox>
    </mx:Panel>
    <mx:Panel title="panel 2" width="50%" height="100%">
    <mx:HBox width="100%" height="100%">
    <myDashboarComp borderStyle="solid" />
    <myDashboarComp borderStyle="solid" />
    <myDashboarComp borderStyle="solid" />
    </mx:HBox>
    </mx:Panel>
    </mx:HBox>
    </mx:Canvas>
    </mx:VBox>
    [/CODE]
    You can see that I want to build my dashboard up using
    HBox's, VBox's, Panels and the individual custom components
    (myDashboarComp) - keepinng the layout and structure quite simple.
    The above MXML creates a simple Dashboard consisting of the
    canvas (where it all starts - it constructed from -
    "dashboardCanvas"). the canvas has 2 panels within a HBox (so are
    side by side) called "panel 1" and "panel 2". panel 1 contains a
    VBox containing 3 components (displayed vertically) and panel 2
    contains a HBox containing 3 components (displayed horizontally) -
    so very simple.
    However - I want to control this layout externally e.g.
    passing an object or array (some sort of descriptor) to describe
    the layout to my app.
    I then want to loop through this descriptor item and build my
    dashboard using ActionScript rather than MXML to more control and
    flexibility.
    this is the object I have created and have been experimenting
    with in ActionScript:
    [CODE]
    [Bindable]
    public var descriptorObj:Object =
    {item:"dashboard", children: [
    {item:"vbox", id:"vbox1", percentWidth:100,
    percentHeight:100, children:[
    {item:"panel", id:"panel1", percentWidth:50,
    percentHeight:100, children:[
    {item:"vbox", children: [
    {item:"myDashboarComp"},
    {item:"myDashboarComp"},
    {item:"myDashboarComp"}
    {item:"panel", id:"panel2", percentWidth:50,
    percentHeight:100, children:[
    {item:"hbox", children: [
    {item:"myDashboarComp"},
    {item:"myDashboarComp"},
    {item:"myDashboarComp"}
    [/CODE]
    This is as far as I got as I kept hitting hurdles from here.
    Basically - all I want to do is somehow read / loop through
    this object and build my dashboard.
    First of all I was unsure of the best way to loop through the
    object - as I have to do it in order to get the correct layout...
    i.e. the first 3 "myDashboarComp's" are added to the >
    VBox that is added to > "panel1" that is added to the > HBox
    that is added to the > Canvas.
    This is where I ran into my second problem. I managd to loop
    through and read the elements checking there "item" in the object
    and adding them accordingly.... I could loop though and add each
    item to the canvas ok, e.g:
    [CODE]
    private function initApp():void
    for(var i:int=0; i<descriptorObj.children.length; i++)
    var itemType:String = descriptorObj.children
    .item.toString();
    var percentWidth = descriptorObj.children.percentWidth;
    var percentHeight = descriptorObj.children
    .percentHeight;
    addContainer(itemType, percentWidth, percentHeight);
    private function addContainer(conType:String, pWidth:int,
    pHeight:int):void
    if(conType == "panel")
    addPanel(pWidth, pHeight);
    else if(conType == "vbox")
    addVBox(pWidth, pHeight);
    private var newPanel:Panel;
    private function addPanel(pWidth:int, ptHeight:int):void
    newPanel = new Panel();
    newPanel.percentWidth = percentWidth;
    newPanel.percentHeight = percentHeight;
    newPanel.title = "test panel";
    dashboardCanvas.addChild(newPanel);
    [/CODE]
    in the above actionScript the canvas "dashboardCanvas" is
    already set up in the MXML (but is the only MXML container added as
    the rest should be built using the create object "descriptorObj" in
    AS).
    This is my next problem - when I have added a container,
    e.g. a panel the next items e.g. my "myDashboarComp's" should then
    be added to the previously added panel and not to the canvas
    anymore - I need some way of telling the app to add children to the
    last added container and not to the canvas (and each container can
    change type from a panel to VBox to HBox etc....)
    I hope what I am trying to say makes sense, and any help on
    this one would be greatly appreciated.
    I just need pointing in the right direction and some ideas on
    how to continue would be good - and if my thinking / method / ideas
    are actually possible.
    Kind Regards,
    Jon.

    There are several ways to do this. The third chapter in the
    cookbook is a good place to start.
    All things in ActionScript are based on objects. Constructing
    them with the data needed for the ui information you will need and
    then binding that data to your dashboard objects is basically what
    you are going to be doing.
    For me it makes the most sence to have an idea of what
    different types of objects you will be creating and create some
    extended components for those objects. Then when you recieve your
    data, binary or xml, you can digest the configuration settings from
    the layout and populate the constructor for each of your
    components.
    It sounds like you need to organize your layout structure in
    a heirarchy and from that you can walk each branch and create each
    set of things as you parse your data.
    Without a bit more information as to what you are
    specifically doing that is about as far as I can go minus adding in
    some code along some line that I think might work.
    Hope that helps some.
    -D

  • Create Film Roll - greyed out

    I wish to create some Film Rolls, to better organize my photos....
    As the title indicates the option under File 'Create Film Roll' is greyed out.
    As extra info:
    I have checked that all ticks are set under Library, no entry in the search box bottom right, and no filter bottom left.
    I have recently imported the files, when I first swapped from WindowsXP, and they weren't put into film rolls which I would like to do now!

    orchis
    Welcome to the Apple Discussions.
    To create a film roll you must be in the Full library
    and
    Have at least one pic selected.
    Every pic in your Library is in a Roll, they have to be. Rolls in the iPhoto Window (View -> Film Rolls) correspond exactly with the Roll Folders in the Originals Folder in the iPhoto Library Folder.
    Regards
    TD

  • Group and drill down and roll up by the most recent SCD2 type member in reporting period in SSAS

    Hello,
    I am new to SSAS and cube world so my problem might not be big of a challenge for you but it is for me.
    Here is my challenge :
    My simplified datamart relation star schema model looks like this (2 dimensions and one fact):
    DATE dimension - Date_Id, Date, Fiscal_Year, Fiscal_Quearter, Fiscal_Month, Calendar_Month, etc
     CLIENT dimension – Cient_SK, Client_Id, and two  SCD2 type fields : Status,and Class and, of course, Start_Date, End_Date to keep track of SCD2 along with a Current_Flag . I can have several records for the same Client_Id
    over a given reporting  period.
    FACT – Date_ID, Client_SK, Client_Id
    Fact table is daily snapshot that loads one record per client only if a client was active on that day.
    Requirement: 
    Count number of currently active clients group by  “Status” or “Class” with option to roll-up to the total count of clients
    Count total number of clients who were active in the specific reporting period (period can be fiscal year or fiscal quarter or a month) grouped by the most recent “Label” or most recent “Status” or most recent “Class” in that reporting period.
    I created a cube and created a measure “Distinct_Count” that does just that - distinct count on Client_Id. It works just fine for current date as well as for any given reporting period and I have nice rolling-up/down thru Fiscal_Year-Fiscal_Quarter- Month.
    But I am having problem grouping by any of 3 attributes with SCD2 type in CLIENT dimension. I do not know how to get the latest active value (member) in the reporting period
    Here is my CLIENT dimension:
    Client_SK
    Client_Id
    Status
    Class
    Start_Date
    End_Date
    Current_Flag
    14
    78
    fair
    B
    03/01/2008
    27/09/2012
    0
    73
    78
    very good
    C
    28/09/2012
    15/08/2013
    0
    89
    78
    Bad
    B
    16/08/2013
    24/09/2013
    0
    95
    78
    Good
    B
    25/09/2013
    03/10/2013
    0
    97
    78
    Good
    A
    04/10/2013
    01/12/2013
    0
    102
    78
    Average
    A
    02/12/2013
    31/12/2099
    1
    For example:
    If selected reporting period is  Fiscal_Quarter is Q2 that covers period Aug-Sep-Oct (Client_SK: 89, 95, 97) and if my client was active in that period, when I group active client’s count by “Status”
     attribute I need to count this client in the group “Good” since that was the most recent value for this client in this period (Q2) for this attribute (Status).
    I do not know if this is important but just in case: user interface  could be Excel application or any MDX enabled Microsoft or third party visualisation tool.
    Thanks in advance

    Hello Bob,
    Thank you for your question. I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Regards,
    Elvis Long
    TechNet Community Support

  • Can we create a XDP file on the fly

    Hi All,
    I am new to Live Cycle.
    I want to know if we can create an XDP file on the fly and immediately using this XDP file can form server create a PDF?
    Need this info urgently..
    Thanks in advance.
    Regards
    Vinay

    There are several ways to do this. The third chapter in the
    cookbook is a good place to start.
    All things in ActionScript are based on objects. Constructing
    them with the data needed for the ui information you will need and
    then binding that data to your dashboard objects is basically what
    you are going to be doing.
    For me it makes the most sence to have an idea of what
    different types of objects you will be creating and create some
    extended components for those objects. Then when you recieve your
    data, binary or xml, you can digest the configuration settings from
    the layout and populate the constructor for each of your
    components.
    It sounds like you need to organize your layout structure in
    a heirarchy and from that you can walk each branch and create each
    set of things as you parse your data.
    Without a bit more information as to what you are
    specifically doing that is about as far as I can go minus adding in
    some code along some line that I think might work.
    Hope that helps some.
    -D

  • Display popup window on roll over on the cell in ADG

    Hi All,
    I want to create a application where a popup window will be opened when user mouse roll over on a cell and closed when roll out from the cell. actually i want to use a popup window same as toolTip feature of ADG. I have implement it by many ways:
    1. by combination mouse move, ITEM_ROLL_OVER, ITEM_ROLL_OUT of ADG.
    2. By Rool over and roll out of custom item renderer But each time i am facing a run time error while rolling mouse in cell. error is in updateLastActiveForm() of systemManager class. 
    Get the project file from here http://old.nabble.com/file/p29836926/popupinColumn.zip
     Error:
    Error
            at mx.managers::SystemManager/updateLastActiveForm()[C:\autobuild\3.2.0\frameworks\projects\ framework\src\mx\managers\SystemManager.as:5087]
            at mx.managers::SystemManager/activateForm()[C:\autobuild\3.2.0\frameworks\projects\framewor k\src\mx\managers\SystemManager.as:2352]
            at mx.managers::SystemManager/activate()[C:\autobuild\3.2.0\frameworks\projects\framework\sr c\mx\managers\SystemManager.as:2307]
            at mx.managers::FocusManager/creationCompleteHandler()[C:\autobuild\3.2.0\frameworks\project s\framework\src\mx\managers\FocusManager.as:1592]
            at flash.events::EventDispatcher/dispatchEventFunction()
            at flash.events::EventDispatcher/dispatchEvent()
            at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\core\UIComponent.as:9298]
            at mx.core::UIComponent/set initialized()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as :1169]
            at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\managers\LayoutManager.as:718]
            at Function/http://adobe.com/AS3/2006/builtin::apply()
            at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\core\UIComponent.as:8628]
            at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8568] Please let me know if any one have a solution. Thanks
    Sachin dev tripathi(DevSachin)

    1. adding a RawText item to your page.
    2. binding a attribute of VO to the RawText. (ex: VO Name:TempVO; Attribute name:Script)
    3. writing coding in your processFormRequest
    am.invoke("showMessage");
    4. writing a method in your AM
    public void showMessage()
    Row row = getTempVO().first();
    row.setAttribute("Script", "<script>alert('test');</script>");
    }

  • Roll Name in the Source Window

    Is there a way to automatically show all of my roll names in the source window? I would like to be able to just click on a roll name in the source window and be able to see those particular photos in the main iPhoto window.

    Welcome to the Apple Discussions.
    No, Rolls don't get listed in the Source Pane.
    However, there is a way to view just the roll you want. Choose Library from the Source Pane and View > Film Rolls. (The entire library must be selected, with no filter in operation. Be sure all Year Smart Albums are selected - look below Library in the Source Pane. Click the little triangle to reveal or hide them.) Each roll has a disclosure triangle next to its title. Click it to open or close the roll. Option-click one triangle to open or close all rolls in your library. With all rolls closed, it is easy to scroll through the roll list, open one roll, and see just the photos in that roll.
    To make it easier, I title all of my film rolls. Click the little i in the lower left corner to open the Info Pane. When you select a roll's header in the main window you can edit its title, roll date, and comments by typing directly in the Info Pane. Comments are especially handy; they display only when the roll is closed. I use comments to list the contents of a roll, so that I know which roll to open when I want to find a particular photo.
    If you still want your rolls in the Source Pane, you can drag the roll's header there and an Album will be created with the same name and photos. To create Albums that automatically update when you change the photos in the rolls, you would have to create a Smart Album for each roll with the category "Roll contains (type the roll name)". That seems too cumbersome, in my opinion.
    Regards.

  • HT203128 iTunes 12.1.050 - Rollback: Updated from 12.01, now I cant't change track numbers and add additional data fields. How can I roll back to the previous version? @Apple, I want a $100 gift card for the inconvenience.

    iTunes 12.1.050 - Rollback: Updated from 12.01, now I cant't change track numbers and add additional data fields. How can I roll back to the previous version? @Apple, I want a $100 gift card for the inconvenience.
    - it's all said in the title. I can't understand why the developers turn things bad ... risking loosing Apples valuable customers.
    More examples needed? (check out the communities and the reviews)
    - OSX: Maverick to Yosemite = not recommended (check it out > http://roaringapps.com/apps)
    - iPad: older versions as iPad2 should not upgrade to iOS7/8 (it's not supporting its hardware accordingly, it's designed for the latest hardware)
    - iTunes (it's possible to rollback to 10.7 - 11.4, but you need to breech OSX system security framework)
    - Pages (was a real alternative for many of us, each update reduced features and created incompatibility to older work files)
    The list could easily extend to ...

    You can offer Apple feedback here: http://www.apple.com/feedback/
    as for "
      "@Apple, I want a $100 gift card for the inconvenience"
    dream on.

  • Problems creating notation from scratch using the edit function of GarageBa

    I am using garage band to write music. I open
    a blank loop with a grand piano system instrument and
    begin editing. I encounter the following problems:
    1. The software does not allow me to enter any note
    below middle c on additional or ledger lines that
    should be available below the stave of the treble
    clef.
    1.1 Connected to this issue is that it is very
    difficult to write music that contains subtleties.
    This directly affects the way the music sounds. The
    program substitutes accidentals in the stave
    conditioned by the key signature. For example writing
    Chopin in GarageBand as opposed to the written sheet
    music is the difference between buying a designer
    dress in a Bond Street Boutique and buying a cheap
    copy in Primark. "Brins Bungalo" Tutorial claims
    that
    Garageband "is an application suitable for both the
    dabbler and the conservatorially trained."
    2. When there are many notes to be entered in a bar
    garageBand is not flexible to accomodate the notes
    required, Notes are clustered in a bunch makiing it
    difficult to read what has been written (preventing the composer checking that it has been written correctly).
    3. When there are many notes to be written in a bar
    e.g. more than, say four notes, (lots of quavers or semi quavers) the
    program does some strange things which I am unable to
    control:
    a) groups unrelated larger notes with the smaller
    notes and will not allow them to be separated;
    b) changes the value of notes already entered;
    c) sometimes splits the note being entered into two
    smaller notes joined by a tie;
    d) accidentals appear on notes entered or notes
    already entered without my instruction;
    e) it changes note values, filling up the bar, to the
    value of the time key before I have a chance to finish
    entering the remaining notes that I want to place in
    the bar;
    4. How is one able to enter "dynamics" (symbol marks
    of expression). I know it is possible because many of
    the preloaded loops have these expressions evident
    within them. I have tried consulting GarageBand Help but this has proved impossible to fathom.
    Can anyone help?
    iMac   Mac OS X (10.4.8)  

    You have my sympathy as I also wanted to enter notes on a stave but GB is simply not designed to do it.
    You can do an amazing amount with GB but complex scoring is not really possible. You can't print a score btw.
    In answer to some of your questions,
    Expression cannot be added using the scoring facility. You need to go back to the piano roll view and use the expression/modulation/pitchbend/footswitch parameters.
    I think you're possibly doing something wrong as I've just done a little test and I've entered a C0 without a problem.
    I've also not had problems moving notes about and getting the right length or having GB fill notes to the end of the bar.
    This is how I do it.
    Create a software track.
    Double click on the track to get the track editor.
    Press record and use the the keyboard on the piano roll to enter a note. You've now created a recording region. You can't enter notes outside a recording region so you might need to drag it out to the required size.
    Swap to note entry. That gives you the double stave. Drag the grey bar that separates the arranger area from the track editor upwards. This gives you more space on the stave.
    Command click anywhere on the stave and a note will appear. Just move that note to wherever you want it and click to set it in place. You can always move it again by left clicking on the note and dragging it.
    Accidentals will depend on the key you've set for the song and what notes you're entering. In D for instance you won't get an accidental for F sharp but you will get one for A flat.
    Let us know how you get on.
    If this still doesn't give you what you need then I suggest a dedicated notation package. Create a midi file from the package and import into GB for final tweaking.
    Cheers
    Dick

  • Dragging folder of photos does not create new roll

    The help system says if I drag an entire folder into the photo viewing area, iPhoto 4 creates a new roll. But when I try it, it just sorts them all into by date year folders -- often incorrectly.
    Can someone tell me what I'm doing wrong?
    Thanks.

    Thanks for the tip on viewing rolls, but with the dates not sorting properly, it's really kind of messing me up.
    Each separate import creates a new film roll. If you select multiple folders and drag into iPhoto, you will get a roll for each folder. If those folders contain subfolders, they may confuse iPhoto. It's best to do this with folders that do not have subfolders.
    Also, what I really need is to drop a whole folder in and have that be accepted as a roll by itself, i.e., no further date sorting.
    That IS what happens. You can check this for yourself. Immediately after importing a folder, select the "Last Roll" smart album. (If your version has this, it is near the top of the Source Pane just below Library.) Be sure that you have Film Rolls selected for your View, and you'll see the roll and its title. The title should be the same as the name of the folder you imported. Select the roll (click it's title header) and look at the date of the Film Roll. Note that there are 3 dates there: "date" just below title, and "from" and "to" dates below "time." The from and to should give the date of the earliest and latest photo in that roll. To edit those dates, you must select each of those photos and edit the photo date.
    What you should check is that first "date". It is the date which represents the entire Film Roll. You can edit it there in the Info Pane. That date is independent of the photo dates. It can be handy to change it, because Film Rolls will display in your library in chronological order based on this date. It can also be confusing if this date is wrong, because a roll you expect to find at the top or bottom of your list may be filed somewhere else. Correct the roll date, and you correct that problem. As I said before, this date could be causing your photos to be filed into the wrong Year Smart Albums, even if the dates on the individual photos are correct.
    Regards.

  • LUMIERE created XML files to 'facilitate the migration of project in FCP.'

    I recently purchased Lumiere so that I could work with material shot on the JVC GY-HD100U camera in FCP. I understand that FCP is due to for an update soon, but alas, I'm unable to wait. That being said, I have followed the various steps to create mov files from the compressed MP2 files generated through Lumiere. The supposed last step before beginning the edit in FCP is to decide whether or not to 'create FCP XML' or not.
    1. What purpose does using XML files instead of the .mov files serve in FCP? It is an option in the import files drop down... What gives? For that matter why and what are xml files function here? Pretty Green, I know
    2. Can I edit using the custom 24p Apple Intermediate Codec I was told to create usinf the mov files instead, and then online, or convert the timeline to full resolution just the same using the mov files?
    3. If I am getting an error message when trying to import the XML files and am therefore unablr to do so... any ideas why? I had one file with 'acceptable errors'. The log read that there was a path problem with the audio files, which I was unable to fix. The other files would not import at all. Why?
    4. What is the best way/codec for editing HDV - outputing te best image resolution without a Xserve raid or the like...
    I know this probably reads like questions for a Lumiere forum, but I have tried and received no answers... Any insights appreciated, as my deadline is fast approaching.
    -Thanks
    Tom.

    Maybe this will help from the Lumiere HD forum on their site (http://www.lumierehd.com/forums/showthread.php?t=576) :
    720p EDITORIAL WORKFLOW USING JVC-GYHD100 AND FCP5.0
    By Jon Farhat
    CAPTURING AND EDITING
    JVC GY-HD100 720p > LUMIERE HD > FINAL CUT PRO 5.0
    Workflow Steps:
    1. Launch Lumiere HD and begin with the CAPTURE/PRINT tab.
    2. Enter your Logging information into the fields labeled REEL, DESC., SCENE and SHOT. The program with create a name for you based on this information and place it in the NAME field.
    3. You can also check AUTOINCREMENT. Doing this will create a Name based on the Scene Name and will add a Shot number starting with 1. Each time you capture a new take, the shot number will increase as well as appear as an extension to the file name as indicated in the Name field.
    4. Click on the DESTINATION button to choose a folder for your raw Transport streams. The files placed in this folder will have the naming convention, DESCSCENE1.m2t. Note that these files have the Audio and Video multiplexed together.
    5. Use the toggle controls to line find your desired take and back up a while to add a little pre-roll. (Note: LHD does not do Batch Capturing so you have to click the CAPTURE and STOP CAPTURE button for each take.
    6. Once you have captured all your takes and placed them in your working folder, click on the PROGRAM STREAM tab.
    7. Click on the DESTINATION button in the PROGRAM STREAM VIDEO area. When the navigation window opens, click on NEW FOLDER and create a folder called “Video”. Select OK to choose your new folder.
    8. Click on the DESTINATION button in the PROGRAM STREAM AUDIO area. When the navigation window opens, click on NEW FOLDER and create a folder called “Audio”. Select OK to choose your new folder.
    9. Now click on the SELECT M2T FILE(S). IMPORTANT NOTE: If you have used the Autoincrement function, or have sequentially numbered files, no not select the folder housing your m2t’s but rather drag select across all your takes, starting from the lowest number to the highest. Then click OK.
    10. Now you are read to split the raw m2t transport streams into a separate AIFF audio file, which will be placed in the Audio directory you created and and M2V video file which will be placed in the Video Directory. It is important that the audio files and video files are in these separate directories.
    11. Choose the PRESETS pull-down menu In the REALTIME TIMELINE CODEC window. Select OTHER.
    12. In the COMPRESSION TYPE Pulldown menu, select APPLE INTERMEDIATE CODEC.
    13. Select the FRAMES PER SECOND pull-down menu and select 23.98.
    14. Select the OTHER button in the COMPRESSOR > PRESET.
    15. In the SIZE section, choose the SOURCE button. Note that you can also create a smaller dimension such as 720 x 406 (16:9 aspect ratio) since this is only used as a proxy in FCP to edit with. But if you have the memory and speed, working in the full 1280 x 720 is preferable. These files will not be rendered into your final master. After you edit with this proxy codec, you will use Media Manager to build a new timeline from the full size raw capture images. It is on this new full-size timeline that you will color correct your movie as well. (Discussed later in this document)
    16. In the FINAL CUT AUTOMATION section, check the CREATE FCP XML box, and UN-CHECK the ANAMORPHIC box.
    17. Click on the AUDIO FILES? Button and either double-click on the AUDIO directory you created which houses your AIFF’s and then click OPEN or simply select the directory once and then click OPEN.
    18. Now click on the SOURCE button in the SOURCE/DESTINATION section. Open the Video folder which houses your de-multiplexed m2v video files.
    19. Click on the DESTINATION button in the SOURCE/DESTINATION section and select NEW FOLDER and call this “project name”_REALTIMES. This is where your .mov files which are compressed with the AIC (Apple Intermediate Codec) will be placed.
    20. You are now ready to hit the GO button. So, what are you waiting for, hit the GO button now!
    21. When the Quicktime settings dialog opens, confirm your SETTINGS, FILTER and SIZE settings under the VIDEO sections. IMPORTANT NOTE: Make sure to select the SOUND > SETTINGS button and change the SAMPLE RATE to 48kHz, 16 bit, Stereo.
    22. After Lumiere HD creates your file(s), another window will open asking you to input your XML FILE NAME. Do this then click OK.
    23. When you view your “REALTIMES” directory, you will notice that you now have matching files to your demultiplexed Video files. For instance, if your file was named, DESCSCENE1.m2t then then Realtime file you use for editing will be named DESCSCENE1.mov. The XML file will also appear in this destination directory.
    24. Open Final Cut Pro. Let’s start by creating a new EASY SETUP preset. (You will only have to do this one time since no Easy Setup setup exists for AIC 24p in FCP. From then on, you will start FCP and simply go to Easy Setup and select this Project Preset before you import your XML skipping to item 29 below) Select AUDIO VIDEO SETTINGS. Under the SEQUENCE PRESETS tab, select APPLE INTERMEDIATE CODEC 720p30 from the scrolling menu. Note that we are going to create a preset for 23.98 from this one by changing the frame rate. All other settings are the same as the 720p30 preset.
    25. Select the DUPLICATE button. In the SEQUENCE PRESET EDITOR change the NAME to “Apple Intermediate Codec 720p24” Go ahead and also change 30 to 24 in the DESCRIPTION text box.
    26. Confirm the following settings in the GENERAL tab.
    a. FRAME SIZE: 1280 X 720
    b. ASPECT RATIO: HDTV 720p (16:9)
    c. Make sure the ANAMORPHIC (16:9) box is UNCHECKED.
    d. PIXEL ASPECT RATIO: Square
    e. FIELD DOMINANCE: None
    f. EDITING TIMEBASE: 23.98
    g. TIMECODE RATE: Same as Editing Timebase
    h. QUICKTIME VIDEO SETTINGS: Apple Intermediate Codec.
    i. QUALITY: Desired setting based on your system capacity.
    j. AUDIO SETTINGS: 48kHz, 16-bit and a Default Config:
    27. Click OK, then select this new Preset once you return to the AUDIO/VIDEO SETTINGS dialog and then click CREATE EASY SETUP.
    28. When the EASY SETUP dialog opens up create type in the NAME field, “HDV-Apple Intermediate Codec 720p24” Enter a description and then click the CREATE button. Save in the CUSTOM SETTINGS pull-down menu.
    29. Let’s start by closing all open Projects and stay in FCP. It’s always good to have a separate 720p project for all your JVC HD-100 sequences. Select EASY SETUP and select your new “HDV-Apple Intermediate Codec 720p24” Of course you will still be in the basic program now with no Projects or Sequences, but your system is now configured to import the XML and the sequence presets will match perfectly. (Keep in mind we did all this to circumvent a bug in FCP5.0)
    30. Now go to FILE > IMPORT > XML and select the XML file you created in Lumiere HD. Select CHOOSE. When the IMPORT XML window opens, select the CREATE NEW PROJECT in the DESTINATION pull down menu. Make sure your DEFAULT is APPLE INTERMEDIATE CODEC 720p24. Make sure all buttons are checked, including OVERRIDE WITH SETTINGS FROM XML. You should be able to simply check this override box when importing into any open FCP session and create a new project with the XML settings once the bug is fixed in FCP.
    31. This will create a new project named after your XML, and a directory of all your real-time clips called “project name”_REALTIMES.
    32. You will also notice that the clip names do not end with .mov but rather end with .m2v. These names actually access the AIC compressed .mov files as this naming convention in the browser is simply a means to locate the uncompressed transport streams later with Media Manager once you have finished editing.
    33. Now you can start editing. When you drag a clip to the Timeline, the corresponding AIFF audio file will also travel with it and be locked to the Video. However, until Timecode sync is offered in LHD, you may need to re-sync via the Clapper slate as mentioned above. However, unless you are using very long takes, the sync is within fractions of a frame and isn’t perceptible.
    34. Edit away but avoid doing things like color correction or final rendering of effects until you are done with the need to work in real-time.
    35. Once you are finished editing, move to the next section.
    GOING ONLINE
    FINAL CUT PRO 5.0 > LUMIERE HD > JVC GY-HD100 720p
    CONNECTING ORIGINAL MEDIA: ONLINE OPTION #1
    1. Select sequence in your browser.
    2. Choose FILE > MEDIA MANAGER.
    3. Media Manager Settings:
    a. Media: CREATE OFFLINE
    b. Set Sequence to CUSTOM
    c. 1280 X 720
    d. Pixel Aspect Ratio: SQUARE
    e. Anamorphic Box: UNCHECKED
    f. Editing Timebase: 23.98
    g. Timecode rate: SAME
    h. Compressor: NONE or HDV720p30
    i. Audio: 48kHz, 16 bit, stereo default
    j. Project name: ONLINE 720p24
    k. Go to ONLINE 720p24 tab in the browser. Double click on the sequence. (Note: the is currently an issue in LHD’s XML function in that it will not transfer the REEL NAME to the clip. You will have to select all your clips to add the reel name, otherwise the the clips will not be made “Offline”. You can always right-click on the clip an select the MAKE OFFLINE function. )
    l. Save project name: ONLINE 720p24
    m. Go to ONLINE 720p24 tab in the browser and double-click on the sequence. (clips should be offline if the reel name is added in the brower.)
    n. Select all the clips in the browser in the ONLINE 720p24 sequence and choose RECONNECT MEDIA.
    o. Point to the original digital negative clips that you demuxed in LHD. (ignore mismatch warning and all your clips should reconnect.
    IMPORTANT NOTE: The above routine for going online worked will with FCP4 but now there exists a BUG in FCP5 in the Media Manager function.
    BUG REPORT: When doing an offline and choosing "based on clip names" (which are NAME.MOV), Media manage will add .MOV to the source name resulting in NAME.MOV.MOV.
    This is happening in FCP5. It never happened in FCP4. We've used this freature extensively before for online/offline editing workflow. The advantage of using clip name vs. file name in the browser is that you can edit a proxy and always keep track of its online version by naming the clip the same name as the online version. Now that it ads .MOV to the name, it's unusable - or you have to reconnect by hand rather than using hte "connect the clips based on relative paths" option.
    CONNECTING ORIGINAL MEDIA: ONLINE OPTION #2
    STICKING WITH APPLE INTERMEDIAT CODEC.
    For now, it is possible to stick with the Apple Intermediate codec when going online and back through LHD to the JVC HD-100. If so, choose NONE compression when exporting a Quicktime from FCP for use in LHD. However, the best case will be to use the above option #1 when Apple gets around to fixing their bug with Media Manager.
    Otherwise, you will have to reconnect all your clips to the original m2v’s manually to avoid the codec altogether.
    About the Apple Intermediate Codec
    The Apple Intermediate Codec is a high-quality video codec that Apple developed for use as an alternative to native MPEG-2 HDV editing in an HDV workflow. Instead of editing the MPEG-2 HDV data directly, you can capture video from the tape source and then transcode it with the Apple Intermediate Codec to optimize the video data for playback performance and quality.
    Working with the Apple Intermediate Codec is less processor-intensive than working with native HDV. Unlike MPEG-2 HDV, the Apple Intermediate Codec does not use temporal compression, so every frame can be decoded and displayed immediately without first decoding other frames. The drawback of this codec is that it requires three to four times as much bandwidth and hard drive storage space as MPEG-2 HDV.
    Data rates for the Apple Intermediate Codec are variable; the data rates and storage needed may vary slightly, depending on the complexity of your footage. Images with a lot of detail have a higher data rate, while images with less detail have a lower data rate.
    Format and Data rate
    MPEG-2 HDV 720p30……….2.5 MB/sec. (equivalent to 9 GB/hr.)
    MPEG-2 HDV 1080i60/50……….3.3 MB/sec. (equivalent to 12 GB/hr.)
    Apple Intermediate Codec HDV 720p30………. approximately 7 MB/sec. (equivalent to approximately 25 GB/hr.)
    Apple Intermediate Codec HDV 1080i50………. approximately 12 MB/sec. (equivalent to approximately 42 GB/hr.)
    Apple Intermediate Codec HDV 1080i60………. approximately 14 MB/sec. (equivalent to approximately 49 GB/hr.)
    Frame Aspect and Dimensions
    MPEG-2 HDV and Apple Intermediate Codec feature a 16:9 widescreen aspect ratio for all resolutions.
    The 1080i format features 1080 lines (1440 pixels per line), interlaced, using non-square pixels to display a screen ratio of 16:9 (equivalent to 1920 x 1080). The 720p format features 720 lines (equivalent to 1280 x 720) with a progressive scan.
    Color Recording Method
    Both MPEG-2 HDV and Apple Intermediate Codec HDV record a 4:2:0 component (Y´CBCR) digital video signal. Each sample (pixel) has a resolution of 8 bits.
    Note: This article was based on information from the HD and Broadcast Formats document (in Final Cut Pro 5, choose HD and Broadcast Formats from the Help menu).
    EXPORTING QUICKTIME TO LUMIERE HD > JVC GY-HD100
    1. Use the following settings when feeding a Quicktime file back to Lumiere HD if you plan on generating a 720p24 transport stream to the JVC GY-HD100 or BR-HD50.
    2. Quicktime settings:
    a. Resolution: 1280x720
    b. Frame Rate: 23.976 (23.98)
    c. Progressive
    d. Audio on whole track.
    e. Audio Settings: 48kHz, 16bit, stereo
    f. Square Pixel.
    3. Open LHD and select the TRANSPORT STREAM tab.
    4. Select JVC 720p/24 (GY-HD100, BR-HD50) in the pulldown menu.
    5. Select the HDMASTER tab and then choose your .MOV file.
    6. Select the DESTINATION BUTTON under the TRANSPORT STREAM section.
    7. Now return to the CAPTURE/PRINT tab in LHD and select the print to tape button. Choose your new edited TS (transport stream) file and Click OPEN and it will print to tape automatically.
    Special Thanks to the following for their input to this document:
    Frederic Haubrich
    Neil Boone
    Apple Docs: Article number 301599
    Jerry

Maybe you are looking for