Aggregated groups on a timeline

Hi
I need to sub aggregate and group data in a time sequence.
Example data is like follows, but many more records, and with fractions of datevalues.
TSZ_ENTRY________STORAGEID______MTRLID____CAMPAIGNID____WEIGHT_CORR
23-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     61.2397
24-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     61.3617
25-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     61.4837
26-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     4     0     20     61.6058
27-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     61.7277
28-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     61.8497
29-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     4     20     49.8715
30-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     62.2156
31-MAY-11 12.00.00.000000000 AM EUROPE/BERLIN     2     0     20     62.3377
01-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     2     4     20     62.4596
02-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     2     4     20     62.5816
03-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     2     4     20     62.7036
04-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     3     4     20     62.8256
05-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     4     20     62.9475
06-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     63.0696
07-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     63.1915
08-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     20     63.3135
09-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     6     20     63.4356
10-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     6     20     63.5575
11-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     3     6     20     63.6795
12-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     6     21     63.8015
13-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     6     21     63.9235
14-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     6     21     64.0454
15-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     3     0     21     64.1676
16-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     0     21     64.2895
17-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     2     2     21     64.4116
18-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     2     21     64.5335
19-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     2     21     64.6555
20-JUN-11 12.00.00.000000000 AM EUROPE/BERLIN     1     2     21     64.7775
This data should be presented like:
STORAGEID     MTRLID     CAMPAIGNID     SUM(WEIGHT_CORR) COUNT(*)
1 0 20 184.0851 3
4     0     20     61.6058 1
1     0     20     123.5774 2
1     4     20     49.8715 1
1     0     20     62.2156 1
2     0     20     62.3377 1
2     4     20     187.7448 3
It is like doing a new sub aggregation for any change in the first 3 columns:
select storageid, materialid, campaignid, sum(weight_corr), count(*)
from table....
group by storageid, materialid, campaignid
but not aggregating the complete table in one piece.
.. and finally the overall row sequence order is by TSZ_ENTRY.
TSZ_ENTRY is of type TIMESTAMP WITH TIME ZONE. All other cols are integers. Database is 11.2
I have tried the OVER something, but my skills is not deep enough to do this correctly.
I'm sorry that all blanks in the example gets truncated.
Any suggestions?
BR
/Per

perforsgren wrote:
Do you believe that this is possible by using the same tabibitosan method?As I said earlier, yes, it's eminently possible, by the addition of the "partition by storageid" clause in the first row_number().
eg:
with sample_data as (select to_timestamp('23/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 61.2397 weight_corr from dual union all
                     select to_timestamp('24/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 61.3617 weight_corr from dual union all
                     select to_timestamp('25/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 61.4837 weight_corr from dual union all
                     select to_timestamp('26/05/2011', 'dd/mm/yyyy') tsz_entry, 4 storageid, 0 mtrlid, 20 campaignid, 61.6058 weight_corr from dual union all
                     select to_timestamp('27/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 61.7277 weight_corr from dual union all
                     select to_timestamp('28/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 61.8497 weight_corr from dual union all
                     select to_timestamp('29/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 4 mtrlid, 20 campaignid, 49.8715 weight_corr from dual union all
                     select to_timestamp('30/05/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 62.2156 weight_corr from dual union all
                     select to_timestamp('31/05/2011', 'dd/mm/yyyy') tsz_entry, 2 storageid, 0 mtrlid, 20 campaignid, 62.3377 weight_corr from dual union all
                     select to_timestamp('01/06/2011', 'dd/mm/yyyy') tsz_entry, 2 storageid, 4 mtrlid, 20 campaignid, 62.4596 weight_corr from dual union all
                     select to_timestamp('02/06/2011', 'dd/mm/yyyy') tsz_entry, 2 storageid, 4 mtrlid, 20 campaignid, 62.5816 weight_corr from dual union all
                     select to_timestamp('03/06/2011', 'dd/mm/yyyy') tsz_entry, 2 storageid, 4 mtrlid, 20 campaignid, 62.7036 weight_corr from dual union all
                     select to_timestamp('04/06/2011', 'dd/mm/yyyy') tsz_entry, 3 storageid, 4 mtrlid, 20 campaignid, 62.8256 weight_corr from dual union all
                     select to_timestamp('05/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 4 mtrlid, 20 campaignid, 62.9475 weight_corr from dual union all
                     select to_timestamp('06/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 63.0696 weight_corr from dual union all
                     select to_timestamp('07/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 63.1915 weight_corr from dual union all
                     select to_timestamp('08/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 20 campaignid, 63.3135 weight_corr from dual union all
                     select to_timestamp('09/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 6 mtrlid, 20 campaignid, 63.4356 weight_corr from dual union all
                     select to_timestamp('10/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 6 mtrlid, 20 campaignid, 63.5575 weight_corr from dual union all
                     select to_timestamp('11/06/2011', 'dd/mm/yyyy') tsz_entry, 3 storageid, 6 mtrlid, 20 campaignid, 63.6795 weight_corr from dual union all
                     select to_timestamp('12/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 6 mtrlid, 21 campaignid, 63.8015 weight_corr from dual union all
                     select to_timestamp('13/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 6 mtrlid, 21 campaignid, 63.9235 weight_corr from dual union all
                     select to_timestamp('14/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 6 mtrlid, 21 campaignid, 64.0454 weight_corr from dual union all
                     select to_timestamp('15/06/2011', 'dd/mm/yyyy') tsz_entry, 3 storageid, 0 mtrlid, 21 campaignid, 64.1676 weight_corr from dual union all
                     select to_timestamp('16/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 0 mtrlid, 21 campaignid, 64.2895 weight_corr from dual union all
                     select to_timestamp('17/06/2011', 'dd/mm/yyyy') tsz_entry, 2 storageid, 2 mtrlid, 21 campaignid, 64.4116 weight_corr from dual union all
                     select to_timestamp('18/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 2 mtrlid, 21 campaignid, 64.5335 weight_corr from dual union all
                     select to_timestamp('19/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 2 mtrlid, 21 campaignid, 64.6555 weight_corr from dual union all
                     select to_timestamp('20/06/2011', 'dd/mm/yyyy') tsz_entry, 1 storageid, 2 mtrlid, 21 campaignid, 64.7775 weight_corr from dual),
     tabibitosan as (select tsz_entry,
                            storageid,
                            mtrlid,
                            campaignid,
                            weight_corr,
                            row_number() over (partition by storageid order by tsz_entry) - row_number() over (partition by storageid, mtrlid, campaignid order by tsz_entry) grp
                     from   sample_data)
select storageid,
       mtrlid,
       campaignid,
       sum(weight_corr) sum_weight_corr,
       count(*) total
from   tabibitosan
group by storageid,
         mtrlid,
         campaignid,
         grp
order by storageid, min(tsz_entry);
STORAGEID     MTRLID CAMPAIGNID SUM_WEIGHT_CORR      TOTAL
         1          0         20        307.6625          5
         1          4         20         49.8715          1
         1          0         20         62.2156          1
         1          4         20         62.9475          1
         1          0         20        189.5746          3
         1          6         20        126.9931          2
         1          6         21        191.7704          3
         1          0         21         64.2895          1
         1          2         21        193.9665          3
         2          0         20         62.3377          1
         2          4         20        187.7448          3
         2          2         21         64.4116          1
         3          4         20         62.8256          1
         3          6         20         63.6795          1
         3          0         21         64.1676          1
         4          0         20         61.6058          1Ie. instead of comparing each storageid, mtrlid and campaignid against the whole ordered set of data, you're now comparing it against the ordered set per storageid.
2 views will give you what you want, if you're needing both types of results, but bear in mind with the storageid one, you may need to switch to an inline view in order for the predicate pushing to happen (ie. calculating the results for the specific storageid(s) passed in, rather than calculating the whole set and then filtering).

Similar Messages

  • Mac Pro - Link Aggregation Group

    Hi community, 
    does any now know in what mode the virtual interface feature LAG (Link Aggregation Group) on a MacPro operates?
    The LACP modes are: On / Active / Passive / Off 
    And what driver mode is used?
    The driver modes are: Round-robin / Active-backup / XOR (balance-xor) / Broadcast / Adaptive transmit load balancing (balance-tlb) / Adaptive load balancing (balance-alb)
    There is nothing to ajust.
    Kind regards,
    Nils

    Link Aggregation only works when the device at the other end of the Links understands the commands of Link Aggregation Protocol. These tend to be Industrial-Strength Switches and Routers, not the affordable ones most Homeowners buy.
    The constraints of the other device, listed in its manual, will determine the best choices.
    Mac OS X 10.6 Server Admin: Setting Up Link Aggregation in Mac OS X Server
    OS X Mountain Lion: Combine Ethernet ports

  • Aggregating Group Values Outside of group

    Hi, is this possible?
    Basically, I'm trying to show aggregates for a column, by group, on rows that are outside the scope of the group. I'm able to add the total for each group at the end of the group, but I want the totals for each groups at the end of the report instead.
    thanks!
    Leroy G. Brown

    Hi g2beastie,
    According to your description, the report is taking long time to render, right?
    In Reporting Services, the total time to generate a report include TimeDataRetreval, TimeProcessing and TimeRendering. To analyze which section take much time, we can check the table Executionlog3 in the ReportServer database. For more information, Please
    refer to this article:
    More tips to improve performance of SSRS reports.
    After check out which section costs most of time, then you can refer to this article to optimize your report:
    Troubleshooting Reports: Report Performance.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to aggregate groups on a timeline

    Hi
    I have a table with rowdata based on time.
    I want to COUNT(*) multiple occurrences, while the charge is the same.
    If tcharge is changed a new group count() is started.
    The groups must be in the same sequence as the loggdate.
    Example:
    select LOGGDATE_HEAD,CHARGE from PHF_VIEW order by LOGGDATE_HEAD;
    LOGGDATE_ CHARGE
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064708
    13-JAN-08 CN064708
    13-JAN-08 CN064708
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    13-JAN-08 CN064709
    13-JAN-08 CN064709
    13-JAN-08 CN064709
    13-JAN-08 CN064709
    13-JAN-08 CN064707
    13-JAN-08 CN064707
    The information should be presented like:
    CHARGE COUNT(*)
    CN064707 4
    CN064708 3
    CN064707 5
    CN064709 4
    CN064707 2
    Any suggestions?

    SQL> create table phf_view (loggdate_head,charge)
      2  as
      3  select to_date('13-01-2008 01:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
      4  select to_date('13-01-2008 02:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
      5  select to_date('13-01-2008 03:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
      6  select to_date('13-01-2008 04:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
      7  select to_date('13-01-2008 05:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064708' from dual union all
      8  select to_date('13-01-2008 06:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064708' from dual union all
      9  select to_date('13-01-2008 07:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064708' from dual union all
    10  select to_date('13-01-2008 08:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    11  select to_date('13-01-2008 09:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    12  select to_date('13-01-2008 10:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    13  select to_date('13-01-2008 11:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    14  select to_date('13-01-2008 12:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    15  select to_date('13-01-2008 13:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064709' from dual union all
    16  select to_date('13-01-2008 14:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064709' from dual union all
    17  select to_date('13-01-2008 15:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064709' from dual union all
    18  select to_date('13-01-2008 16:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064709' from dual union all
    19  select to_date('13-01-2008 17:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual union all
    20  select to_date('13-01-2008 18:00:00','dd-mm-yyyy hh24:mi:ss'), 'CN064707' from dual
    21  /
    Tabel is aangemaakt.
    SQL> select charge
      2       , count(*)
      3    from (  select charge
      4                 , sum(new_group_indicator) over (order by loggdate_head) grp
      5              from ( select loggdate_head
      6                          , charge
      7                          , case lag(charge) over (order by loggdate_head)
      8                            when charge then 0
      9                            else 1
    10                            end new_group_indicator
    11                       from phf_view p
    12                   )
    13         )
    14   group by grp
    15       , charge
    16   order by grp
    17  /
    CHARGE     COUNT(*)
    CN064707          4
    CN064708          3
    CN064707          5
    CN064709          4
    CN064707          2
    5 rijen zijn geselecteerd.Regards,
    Rob.

  • Animating position of layer group using timeline

    is it possible to change position of a layer group in new timeline? I only see opacity keyframes. Seems like I can convert to smart object to do it, but rather not do that.

    Do you want to move the grouped layers on the page, or their position in the layer stack? Can you also clarify "New timeline"?  It kind oof reads that you have the group in an exisiting timeline, and want to use them again in a 'new' timeline.

  • Aggregating on a collection object

    Hello!
    I have coherence caches with classes that have ArrayList properties. Are there better options for me to perform aggregations on coherence side on those Objects part of ArrayList<Object> rather then writing custom aggregator?
    ChainedExtractor and other custom extractors returning ArrayLists, Mvel.Fastlists, etc of those nested Objects don't get aggregated as individual Objects using built-in aggregators.

    AntonZ wrote:
    robvarga wrote:
    No, when I mean do the first level of aggregation, I mean that that custom valueextractor should aggregate the collection and return a simple value. Ok, but in example above returning simple value means that only custom aggregator will be able to handle to properly aggregate these flattened objects (objects from valuextractor now will have to be aggregated/grouped across various fields), which defeats the purpose.I don't really get the across various fields part... Initially you wanted to aggregate, e.g. sum all elements in all collections. That you can do by aggregating the aggregates of the collections (summing the sums).
    >
    robvarga wrote:
    Any aggregator having the associative property (sum, min, max, count, etc... unfortunately average is not associative) should work fine aggregating pre-aggregated results of the individual collections.I'm not sure I see how. Let's flatten the example object (for simplicity) to
    a1+a2+a3+b1+b2 = (a1+a2+a3)+(b1+b2)
    Entity {
    key k;
    String address;
    String zipcode;
    Double income;
    How can i retrieve a list of maximum building(address) incomes per each zipcode (there can be multiple people in each address, and multiple addresses in each zipcode)? That is not the same problem which you initially posted. What you describe here is a group by aggregation, whereas earlier you wanted just a flattening out of two levels. It still can be implemented, but then you would need to implement a two-level group aggregator. For this, you would want to write your own custom aggregator, as it would require more coding effort to implement it in a generalized manner, then it is worth...
    Again, this is just a thought of something that could have been useful.
    Thanks for looking into this.Best regards,
    Robert

  • How to hide one object within a group

    Is it possible to show/hide one object within group using the Timeline? I don't need to hide it in output, just need to show/hide it in the Timeline for convenience while working on a slide.

    It's funny that they will let you expand/collapse the group in the timeline window, but not edit visibility. At any rate, I suggest you enter a feature request and/or bug report here: http://www.adobe.com/go/wish
    The more people that bother them about it, the more likely they are to fix it.

  • Grouping the chart data on x-axis

    Hi,
    I am trying to plot some points on the Plot Chart. I want to
    show the Text as my x-axis, so I am using
    <mx:horizontalAxis>
    <mx:CategoryAxis
    id="a1"
    dataProvider="{expenses}"
    categoryField="Month"
    />
    </mx:horizontalAxis>
    in my code for x-axis. Now I want to plot all y-axis items
    under the same x-axis one if they are from the same 'Month' (used
    for horizontal axis). If I try to do this, I am getting more values
    on the x-axis that have same 'Month' name. Is there any way I can
    fix this problem?
    Any help would be of great help.
    I am also attaching the sample example.

    I am sorry but the whole thing makes no sense.
    What is the effect of x-axis category grouping?
    How can I aggregate info by date, i.e. in the same month or same year
    count should be added up?
    How can I show on the x-axis (time) the aggregate values?
    I just made a report with no x-axis categories, data grouped by year
    summing, and the graph that came out was with axis showing months but
    with only one bar value.
    Are there bugs in this or I just don't understand the concepts behind it?
    With time series data I would have thought the MOST OBVIOUS thing that
    people would want are:
    - aggregations over different time periods:
    - days
    - weeks
    - months
    - quarters (doesn't seem to be supported)
    - half-years (doesn't seem to be supported)
    - years
    - time axis should be linear in time - just because there are no
    values in March 2007 for example it should still have a bar which should
    show a 0 value and it should show up (currently at best it leaves a gap)
    - time axis should be relevant to the aggregation
    - grouped by years, axis should show 2005, 2006, 2007, ...
    - grouped by months, axis should show Jan 2005, Feb 2005, ....
    - currently it doesn't
    A lot of the time people just want to say give a bunch of sales info
    which is a date and a number (number of units sold on that date or
    whatever) and they want to be able to produce graphs of different
    granularity.
    Is this possible? I've been playing with this thing for weeks and can't
    get it to do this reliably.

  • Best way to add new objects to a Group?

    I have been trying to figure out how to keep things organized in the timeline. Which is very important when you get very complicated.  If I pick a group and then an obj and hit the group tool,  it makes a new group instead of just having it added to the original.  The only work around I have found is to ungroup the first group and then everything is nested in the new group.  That is a pain.......I would love to just select an object with my middle mouse, just drag it into a group in the timeline.  Or is there an easier way?
    Don

    I have been trying to figure out how to keep things organized in the timeline. Which is very important when you get very complicated.  If I pick a group and then an obj and hit the group tool,  it makes a new group instead of just having it added to the original.  The only work around I have found is to ungroup the first group and then everything is nested in the new group.  That is a pain.......I would love to just select an object with my middle mouse, just drag it into a group in the timeline.  Or is there an easier way?
    Don

  • Object grouping options other than slidelets?

    Hi all, new user here:
    I've been using Captivate 5 for a few months and am running into an issue.  I have had success using the rollover slidelets to group various items together and use the slidelet timeline to arrange them as needed: usually this consists of a flash animation demonstrating the actions, simplified text captions outlining each step, and detailed audio narration to elaborate on the actions.
    What I do not like here is that the user needs to keep hovering over the rollover box.  I dislike the "stick slidelet" fix because it stays there the entire time and it is possible to pause the flash video while the text captions and the audio continue on, fouling the whole thing up.
    My questions are these:
    - Is it possible to group or create a timeline for a specific group of objects outside of a rollover slidelet?
    - Is it possible to trigger a slidelet to become visible and play through a standard button click as opposed to a rollover slidelet?
    - Is it possible to time items as part of a conditional/dependent chain i.e. show the video, start the audio, display text caption #1, and then only show text caption #2 when the flash animation/audio reaches a certain point?  I know I can attach the narration directly to the flash animation but the user can still pause that while the text captions continue on.
    Thank you in advance!

    Hello and welcome to the forum,
    No Grouping for the moment in Captivate, but I wonder if you need grouping for what you are describing?
    Isn't it all about timing? And do you need to have everything on the same slide, you could also navigate to a slide with a button or an advanced action.
    Perhaps I'm misunderstanding your questions but your last item is clearly just about timing objects on the timeline, not? Why do you use rollover slidelets for that goal? You can give the objects that you want to group the same timeline, start at the same time and have the same duration. Why is that not an option?
    If you want some objects to appear on a button click, make them invisible in the properties panel and create a standard advanced action, to be attached to the button, that will show all the objects.
    I will be happy to help you, but then I have to know what exactly you want to achieve.
    Lilybiri

  • Controlling where to paste items on the timeline

    Hi Everyone,
    Let’s suppose you have a timeline twelve seconds wide with two objects.  Each object is three seconds in length.  The first object is on the bottom of the timeline at the beginning. The second object is on the top of the timeline at the end.  You now have a space of six seconds between the objects.  Now you want to drop a third object of three seconds in length beginning at the six-second point.  The new object needs to be above the bottom object but under the top object.  Now let’s say you have ninety seconds of timeline packed with thirty-seven objects and you want to paste a new object in a particular place, say twenty-five seconds in just above layer twelve.  How would you control exactly where the object is placed without having to drag it all over the place after pasting?
    Thanks,
    Robert

    Hello and welcome,
    I almost never use slides that are minutes long, why? And without any user control? Only reason to have a longer slide is when there is an audio clip, and you need to sync with audio. Spreading over multiple slides is much easier to handle and the user will not even see that there is a switch of slides.
    And 37 objects: please group them in logical groups, having 37 timelines is not really easy to manage, hope you are labeling each object? And when a group is collapsed everything becomes better structured. You can drag timelines easily to put them in place.  Stacking order is only important when those objects are in the same location at the same moment. Is that the case.
    Maybe I don't understand your question well, but it seems not to fit quite well with Captivate as I am using it. When debugging, optimizing files I see way too much objects mostly. Why have an image, a text and a click box when you can have the three of them in one shape button? You can show objects for more than one slide (timed for rest of project) if you need them on subsequent slides, which will free up a lot of real estate in the Timeline panel as well.
    Lilybiri

  • Insertion into Video1 Timeline breaks Effects in Video2

    I am just NOT having fun with PrE8.  I keep getting tripped up on the seemingly inconsistent use of the
    timeline metaphor and insertion point.  I have 100 clips nicely edited with some titles, some transitions and some effects (on Video2).
    I gang clipped the Video1 + Video2 and "grouped" them -- in fact, I "grouped" the entire timeline AFTER the place that I wanted to do an insertion.
    Alas, inserting anythign causes the Video2 track to go way out of sync.
    Is there some "trick" to extending an existing clip and then doing a "replace" -- things are getting too delicate in terms of hours-invested to try to "re-learn" another timeline metaphor.
    I will post a separate problem another time.
    Thanks.

    Sorry that I wasn't clear.
    The "out of sync" was that V1 clips had effects and picture-in-picture elements that were in V2.  Adding a clip earlier in the timeline caused the V1 clips to move out of sync with V2 even though they had keyframes originally together.  And, V1 and V2 clips were "grouped" -- first try they were grouped as just the pair of V1+V2, but (below) I tried to group the whole right side of the timeine.
    In the "gang" grouping clarification:  the clip "inserted upon" was NOT in a group, but all of the V1 and V2 clips (with their effects) were grouped as one big blob in hopes that the group would move to the right and make room for the insertion that was "prior" to the group.  I  do agree that a 'group' can't be separated, as that would defeat the concept of the group.
    In a previous post, I learned that a soundtrack, even if intended to be continuous and unedited can have 'gaps' introduced when V1 (in this case stills) were changed. But, I discovered, that taking any of the silent V1 stills, and individually making them longer (drag the out point to the right), moved the entire V1 track to the right without causing a 'cut' in the soundtrack. Once the V1 element was "longer" I seemed able to 'replace' the clip without cutting the soundtrack.
    That help?  Thanks.

  • Why does "hide" action set timeline to play?

    I created a group that by default is hidden, and is shown when a certain shape is clicked. On the main timeline i placed a hidden button to pause the slide at the end. Inside the group I placed a shape that acts as button, when the shape is clicked the "hide" action hides the group. The problem is that when the user clicks the shape to hide the group, the base timeline is somehow set to play again. How can this be avoided?

    Oops, will again have terminology problems (I'm not a native English speaker).
    Think you'll need to read this post: Why choose Standard over Simple action? - Captivate blog which has also a link to a YouTube video.
    When you trigger a 'simple' action with an interactive object, the playhead is released, which is what you have seen happening.
    Main timeline? Base timeline?  What do you mean by that? Tiny Timeline Tidbits - Captivate blog Don't be offended, but I'm a bit afraid that you are mixing up things. If you click the Hide button (eye) on the timeline for an object, it is not hidden on runtime, just hidden while editing. To hide an object you have to use its Properties panel, and 'how' depends on your version (which you didn't specify).
    Tip: click box is an interactive object that is by design invisible to the user and pauses the slide timeline at the end of its timeline. Better idea than your 'hidden button'...

  • Grouping Problems

    Hi All,
    I have two main problems with grouping objects in Animate Edge:
    1. opening and closing a group in the timeline:
    Generally the objects within a group are all visible in the timeline - so I can't close the group in the timeline, only in Elements. However, sometimes the group suddenly closes, but in a way, that I can not even open it to see and edit the objects in the timeline. It seems to be fully accidential, I can not tell why it opens and closes.
    Does anyone have an idea, how to control this "function"?
    2. grouping repositions objects straggly
    When I group some already animated objects, some of these objects will be repositioned. So the result is a mess on the stage, the objects seem to be repositioned accidentally.
    I understood that grouping objects without animation works good, they stay at their place. Hence I have figured out, that this repositioning is somehow influenced by animations, but I don't know how, and how I could avoid it.
    I would really appretiate any idea or guidance!

    Hi Joe,
    Thanks for the answer.
    I have no idea regarding opening and closing a group - I really tought, that it is a kind of function, that I don't understand yet. Can it be a bug?
    As for repositioning, I have made some tests, and something turned out: This is influenced by which corner I select as a basis point for the animation (under Properties in 'Position and Size'), and in cases when the object is resized during the animation.
    Top left corner is set as a basis in generall. But when I change it to bottom left corner, then this object changes its place once grouped with other objects. However, when I group the objects first, and change the basis corner only afterwards, everything works perfectly. I still don't understand this behaviour, but at least, I can avoid this repositioning issue now.

  • Importing items within a groups duration?

    I have several scenes, which I divided up into groups along my timeline. When I add new images/videos/whatever to my project, the duration is equal to the entire project, so I have to manually adjust it to fit within the duration of the group I want it in every time. This is seriously interupting my workflow, is there anyway I can change this?

    Do you have other layers in the group which have a longer duration? If you do then the group will continue to the end of the project duration. If you want all layers in the group to end at the same point then put the playhead there, select the group and hit o. All content will be cut to that point. Perhaps you have been selecting a layer and only trimming that layer and what you see is the group continuing on. What I described definitely works in trimming the layer and /or group. Hope you get it sorted.

Maybe you are looking for

  • Single Quote in Parameter values...!

    Hi there, I am using oracle oracle disco. 10g In my report there are 2 parameters. First being the customer name and another being the transaction reference. Transaction reference parameter is based on the customer name(s) selected. The customer data

  • Mountain Lion - cannot copy and paste in finder

    Hey,      I've only just noticed this today and I've done a search but can't find anything so far to help me. I upgraded from lion to mountain lion the day after it was released, not fresh install, upgrade. Basically... I cannot copy files using eith

  • How to verify OC4J uses Oracle Toplink 10.x and not Toplink Essentials

    Hi, We dont want to use the default JPA provider "Toplink *Essentials*" that comes with OC4J. Rather we want to use Oracle Toplink 10.x I downloaded [Oracle Toplink 10.x|http://www.oracle.com/technology/software/products/ias/htdocs/1013topsoft.html]

  • How to create a sequence DDL in a procedure

    Hello, i have a simple question but i dont find a solution here. How to create a sequence DDL in a procedure ? Thank 's

  • JPGs created in Photoshop/Mac appear distorted on PCs

    We use Creative Suite CS6 on Macs. Recently some (but not all) of our clients using PCs started reporting that JPGs we created for them appeared heavily artifacted, as saved at extremely low quality. (Screen grabs from their PCs confirm this.) When f