Pivot Table page-item like a multi select

Is this possible? When placign an article on the set of 'page' of the pivot table, the default is to allow a selection unique value, but we can allow multiple selection.

For example, if I place the region in the Page element box, can I allow the user to select 'West' and 'Is' as opposed to only 1 distinct value?

Why not just use a prompt with a multiple selection box then?

It looks the same for the end user, that now he takes when he chooses another combo... instead he had to not wait in the beginning of something more long

Tags: Business Intelligence

Similar Questions

  • Page Item: loading vs via select

    Well, this the object header's rather enigmatic...

    I know how to make a link from a value on page 5 and item area of HTML to a page 6 LMD.

    I know how to do page 6 a parameterized report so that I can have an element that is a Select list, and reports in other regions will be updated accordingly.

    Is it possible, and how would I go to:
    If we move the Page 5 to 6 on the Page, the item in the selection box will be the value of binding
    If we go from a menu directly on page 6, the selection box will show no waiting for a selection

    Thank you!
    Marion

    Marion:

    There are different ways to navigate from one page to another. The most common methods use a branch or a re-direct to a list item. Each of these methods provides a way to define the elements of the page with specific values.

    CITY

  • Table multi-selection disabled the check boxes in ADF 10 g

    I think I met an obstacle when you work with a multi-selection table in 10 ADF.

    The selection itself works very well. However, my problem is to try to disable some of these boxes several selections. These boxes are disabled using the expression language. Once disabled, I can always choose these rows in the table using the button 'Select all' created by multiple selection facet. On the page sent, the disabled lines are not recognized as being selected, which is good. However, they always seem to be selected on the front-end server, which would be confusing for users.

    <af:table emptyText="No roles were found"
              binding="#{backing_userRoles.tableRoles}"
              id="tableRoles"
              value="#{backing_userRoles.userRoleList}"
              var="userRole">
                            <f:facet name="actions">
                              <af:commandButton text="Copy Roles"
                                                binding="#{backing_userRoles.cmdCopy}"
                                                id="cmdCopy"
                                                action="#{backing_userRoles.cmdCopy_action}"/>
                            </f:facet>
                            <f:facet name="selection">
                              <af:tableSelectMany text="Select items and ..."
                                                  binding="#{backing_userRoles.tableSelectMany1}"
                                                  id="tableSelectMany1"
                                                  rendered="#{backing_userRoles.managerFlag}"
                                                  disabled="#{userRole.role.autoGrantedFlag eq 'Y'}"/>
                            </f:facet>
    

    multiselecttable.PNG

    So as you can see, the disabled check box has been selected even when disabled. Any ideas on how to change this behavior? Or maybe just get rid of the default generated 'select all ' | 'Select none' orders?

    Thank you

    Cody

    Or, remove selection facet and make sure you have a selection logic - that is to say, some transient Boolean attribute of VO enabled/disabled state, and you have Select All/Select none

  • Filtering table using Multi Select choice

    Hello gurus,

    I want to filter a table column that is inspired by LOV using list Multi choice to select the filter option.

    Can I filter the table by using the only choice by following below tutorial in the ADF Code corner:

    016 how to customize the filter ADF Faces Table

    Someone can provide any link or guide to implement Multi Select choice filtering list in the tables.


    Thank you
    Buxant

    Hello

    will tomorrow publish sample 98 ADF Code corner: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples

    Frank

  • Checkbox multi-selection as point cascade

    Hello

    I have a box where if I select more than one check box, based on this multiple selection of values, I tried the following item values is displayed.

    I have set up an example to http://apex.oracle.com/pls/apex/f?p=71510:14 (test/apex14gm)

    On this page, if I select more than one "place" check box I wanted to 'departments' to are displayed according to the multiple selection above.

    If I do a single select statement box, I get the corresponding departments, but I don't get while I select several checkboxes.

    How can I achieve this?

    Pls help me...

    Thanks in advance

    Hi Kanishkaa,

    OK, I guess that your department table is looking like this:

    id_city

    Department

    If your request is

    SELECT...

    OF departments

    WHERE id_city =: PX_MY_CHECKBOX

    The values of your check box, when you select several look like this in a session of the APEX:

    1:5:6

    Then of course, your query will fail.

    First of all, there is a way in oracle, you can treat a list separated by commas as a table. We convert your string to that.

    Add a variable:

    v_MyVals: = REPLACE (: PX_MY_CHECKBOX,': ',',');

    This way, you get a list separated by commas.

    Then you have to rewrite your original query where to

    IF v_MyVals IS NOT NULL THEN

    ...

    SELECT...
    Of...

    WHERE id_city IN (SELECT TO_NUMBER (xt.column_value)

    The XT XMLTABLE (v_MyVals));

    END IF;

    Kind regards

    Joni

  • The analysis through the Multi selection of values in a PL/SQL procedure

    Greetings,

    This should be an easy one for either of you, experts of PL/SQL. I'm not, so I'm not sure how to code this upward.

    I have a Multi selection page element and am passing the value of it to a routine of PL/SQL as a parameter. I am able to use the value if I spend only a value of my procedure, so I work. But not with multiple values, I need the code in the procedure to loop through the values. How do I code that a period? The procedure is relatively short and is included below. p_cell is multivalued parameter.

    Oh Yes... Probably, you need to know this. The values are coming like this - 1-3:2-3:3 - 3:5:6

    In addition, values are the coordinates XY of a grid I have a picture on the page. The routine removes certain cells (1-3, etc.) of the grid. The grid is created using HTML, so I have to remove lines of HTML to remove a cell in the grid. Just in case this is useful.

    THX, Tony

    = = = = = = =

    create or replace
    procedure qcis_remove_grid_cell (p_id in NUMBERS, p_cell IN VARCHAR2) as
    number of V_POSITION;
    number of v_position_from_end;
    number of v_line_start;
    number of v_line_end;
    number of V_LENGTH;
    CLOB v_html;

    BEGIN

    BEGIN
    Select imagemap_html in the v_html of qcis_im_template_draft
    where header_id = p_id;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    v_html: = NULL;
    END;

    V_LENGTH: = length (v_html);
    V_POSITION: = INSTR (v_html, "alt =" "|") p_cell |' « ') ;
    v_position_from_end: = (v_length - v_position) *-1;
    v_line_start: = INSTR (v_html,' < area shape ', v_position_from_end)-1;
    v_line_end: = INSTR (v_html,'/ > ', v_position) + 2;
    v_html: = substr(v_html,1,v_line_start) | substr (v_html, v_line_end);

    UPDATE qcis_im_template_draft SET imagemap_html is WHERE header_id p_id = v_html;.

    END qcis_remove_grid_cell;

    Published by: hidden November 1, 2011 08:01

    Not sure, I understand your need, but it sounded like you must decrypt a string in a set of rows. If so, I will give you 2 ideas:
    1 function STRING_TO_TABLE: http://www.sloug.org/i/doc/api073.htm
    2. other resources (regular expression or XML): http://apex-at-work.blogspot.com/2011/05/two-ways-using-string-to-table-in-apex.html

  • Region of report filters by using Multi Select lists

    Could someone please advise me accordingly.

    I want to use several multi selection lists to allow a user filter data in a report. I have a button for the user to send the page and apply their selected criteria. In my application I have want to reference the items select direct multi.

    for example

    Select studentid, studentname
    of student_table
    where of course in(:p1_course)
    and the Department (: p1_dept)
    and in the year (: p1_year)
    and... etc etc.

    My attempts to do so to this day, have been in pallets. I was hoping that one of you experts may be able to advise how to do this step by step.

    Thank you

    Steve C

    Hi Steve,.

    The results of the selections multiple lists would be in the format has: b: c (that is to say, the values separated by semicolons), so your WHERE clause must use something like:

    OÙ ' :' || : P1_COURSE | ':' AS ' %:' | COURSE | ':%'

    or

    WHERE INSTR (': ' |: P1_COURSE |) ':', ':' || COURSE | ':') > 0

    Andy

  • APEX 5.0 Page Item Value based on the event tab

    HI -.

    I had created classic report and having several Page elements such as
    P5_ITEM_NUMBER and P5_ITEM_DESC ((DISPLAY ONLY) etc.) For the P5_ITEM_NUMBER
    type of text field with AutoComplete with LOV query like Select item_code data.item;

    When I select the number of the item then it will automatically the value in the item Desc field and others etc. Here's my query sql to P5_ITEM_DESC.

    I tried to use dynamic Action, but it did not work. Can you please indicate

    SELECT ms.message, i.item_code

    Data.item i, data .message_string ms

    WHERE i.item_code =: P5_ITEM_NUMBER

    AND ms.message_id = to_char (i.description_id)

    AND ms.language_id =

    ((SELECT us.setting_value NVL

    OF data.user_info IU, data.user_setting us, data.setting s

    WHERE us.user_id = ui.user_id

    AND s.setting_id = us.setting_id

    AND s.setting_type LIKE '% LANG '.

    (Ui.username = 'ADMIN') AND 'US')

    Hey 2942415,

    Take a look here.

    I did only an example to you because of your request was wrong, but you can see how it works.

  • Pivot table column alignment

    Hi all

    I use the Oracle 11 g database to develop my application.

    I've created a generic column report.

    For this I used the concept of PIVOT table.

    My example query is

    with pivot_data like)

    SELECT DEPTNO, JOB, SAL, BISHOP

    WCP

    )

    SELECT *.

    OF pivot_data

    PIVOT)

    SUM (SAL)

    FOR DEPTNO

    IN (& P90009000_LIST.)

    )

    This output is

    WORK BISHOP 10 20 30

    --------- ---------- ---------- ---------- ----------

    PRESIDENT 5000

    7902 800 CLERK

    7698 950 CLERK

    7788 1100 CLERK

    7782 1300 CLERK

    7698 5600 SELLER

    MANAGER 7839 2450 2975 2850

    7566 6000 ANALYST

    8 selected lines.

    but I need the output as below

    BISHOP OF WORK 10 20 30

    --------- ---------- ---------- ---------- ----------

    PRESIDENT 5000

    THE 800 7902 CLERK

    THE 950 7698 CLERK

    1100 7788 CLERK

    1300 7782 CLERK

    5600 7698 SELLER

    MANAGER OF 2450 2975 2850 7839

    6000 7566 ANALYST

    8 selected lines.

    Come 10,20,30 pivot columns

    How to do this in my application?

    Thank you

    Su.GI

    Thanks Solomon.

    I used the code below.

    His job very well.

    with pivot_data like)

    SELECT DEPTNO, JOB, SAL, & P90009000_LIST., BISHOP

    WCP

    )

    SELECT *.

    OF pivot_data

    PIVOT)

    SUM (SAL)

    FOR DEPTNO

    IN (& P90009000_LIST.)

    )

    Thank you

    Su.GI

  • How to get the QDR of ADF Pivot table datacell

    JDeveloper 11.1.1.5 version
    Java 1.6
    The ADF faces

    I want to click commandlink in a data cell that sends the value of the header cells to a bean of support. I think that we must get the QDR of a clicked data cell, but how?

    I created the PivotTable: column headers consist of a variable number of dates; row headers consist of the names of the units. The data that cross are a percentage of variance using energy over time. (There is no calculation in the PivotTable, just displaying data from the view).

    ........ 11 Jan 12 13 Jan Jan jan 14. .etc
    Module-1 2.00 5, 25 - 9.30-11.15
    Unit-2 - 554.22 497.00 7.70 2.00
    Unit-3 10.00 - 5, 00 5.00 1.00

    To the cell above it with 497.00 value, the user must click this value (commandlink) and the bean 1) calculate the values of the unit and the date to use as parameter values for ExecuteWithParams under another iterator and 2) navigate to another page using this another iterator.

    It seems that the QDR (reference data) is involved, but can't find enough information about how to implement the same.

    Here are the PivotTable on the jspx:

    < dvt:pivotTable id = "pivotTable1".
    Summary = "reading analytical pivot table.
    value = "#{bindings." CdsaReadingsItfVwView1.pivotTableModel}.
    var = 'cellData.
    varStatus = "cellStatus" >
    < dvt:dataCell >
    < af:commandLink id = "cl".
    Text = "#{cellData.DataValue} '"
    action = "#{pivot_bean.commandlink_action}" / >
    < / dvt:dataCell >
    < / dvt:pivotTable >



    In the bean, we try to getPivotTable(), but it is always null.

    Any direction is welcome.

    David K

    Check how the PivotTable selection demo was created:
    http://jdevadf.Oracle.com/ADF-richclient-demo/faces/feature/PivotTable/pivotTableSelection.JSPX
    Code for this demo here:
    http://www.Oracle.com/technetwork/developer-tools/ADF/documentation/ADF-faces-RC-demo-083799.html

  • Multi selection

    Hello
    Earlier I used item type selection with select unique values, list according to my condition in where clause that I wrote the condition like that
    NVL (publish_id,: P91_PUBLISH_ID) = NVL(:P91_PUBLISH_ID,publish_id) but my requirement is multi selection. How could I write same condition for multi selection.

    Please guide me to write the same condtion for multi selection.



    Concerning
    Veronica B

    Hello

    Try

    AND (instr(':' || NVL(:P1_DEPTNO, e.deptno) || ':', ':' || e.deptno || ':') > 0 OR e.deptno IS NULL)
    

    Kind regards
    Jari

    -----
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • How can I customize the font size for Pivot Table Section 11 g?

    Hi all

    I'm new to CSS customization, and I followed the suggestions to use tools like Firebug to look at the CSS styles applied to a particular item.

    11 g, I have a report that uses rotating sections of the table to display the numbers associated with the Department in each Department and the sections. Using Firebug, I see that the titles of the Department are on police-size: 9px; by default. The HTML is:

    < class = "PTSC OOLT" td style = "" are-size: 9px; ">"

    I would like to change the font size default to the values of the Section of the Pivot Table so that it displays 11px-size of font instead of 9px for all reports.

    Digging around, I don't see a way to do unless I have use custom styles custom.css and reference in each of my pivot views. Does anyone else have a suggestion how how I can change the default font size without having to create a custom.css entry? We have many existing reports that have been migrated over 10 g that I prefer not to go back and must add a reference to each view simple pivot.

    Thank you.

    Hello

    Please see:
    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/FMW/bi/bi1113/customizing_obiee11g/customizing_obiee11g.htm
    and search for "Deployment of a Style Custom"

    Concerning
    Young

  • Problem with pivot table

    Hello.

    I have a pivot table, and it should update that I change the value of selectOneChoice. I can only view some data in a PivotTable when I choose a value for the first time in selectOneChoice. If I select another value in the SelectOneChoice the PivotTable that is not updated.

    Here is my PivotTable:
     
     <dvt:pivotTable id="pivotTable1"
                                value="#{bindings.TValoresMatrizEnViewUp1.pivotTableModel}"
                                binding="#{backingBeanScope.backing_valoresMatriz.pivotTable1}"
                                contentDelivery="immediate" var="matrix"
                                visible="false" partialTriggers="::socCodigo"
                                rendered="true" 
                               >
                  <dvt:dataCell>
                    <af:inputText value="#{matrix.dataValue}"
                                valueChangeListener="#{backingBeanScope.backing_valoresMatriz.alteraPivot}"
                                autoSubmit="true"
                                partialTriggers="it5"
                                id="it5"/>
                                
                  </dvt:dataCell>
                </dvt:pivotTable>
    Can someone help me?

    My JDeveloper is 11.1.1.4.0

    Thank you

    Hi Marcos,

    Open your page definition and together in the iterator tag refresh properties = 'always' and cacheResults = "false"...

    That that it will solve your problem.

    Kind regards

    Renan

  • 11 total Pivot Table prompt g

    I created a PivotTable in which I have two columns listed in the Pivot Table guest area (formerly area pages in 10 g).

    When you change the PivotTable, the layout section shows a warning next to the Pivot Table guest words icon. I clicked this icon and selected before.

    The drop-down list of the column (far left) ranked first in the Pivot Table of guests watch now an entry of all values higher than retail values, as it should.

    However, the drop-down list for the other column doesn't have an entry of all values .

    In addition, by selecting the entry of all the values for the first column is completely HIDES the drop-down list for column 2 and the PivotTable displays a grand total of all the values for the second column.

    It makes no sense at all. I want to see all values for my first column and be able to continue to select individual values for my second column, or maybe a all the values for the second column.

    It there is no documentation on this feature, because the OBIEE 11 g user's Guide does not contain the string Pivot Table invites.

    This signals that a bug?

    I have not yet explored 11g.
    But in 10g so the columns in the page area are displayed as guests. The messages appear to be cascaded, so only the first column in the page area contains "All Pages" option.
    Try if you can modify the XML to produce the desired effect.

    So I think this isn't a bug with 11g, rather inherited 10 g.

    -bifacts
    http://www.obinotes.com

  • Pivot Table sort using month row

    I have the XML depending on whether I'm trying to get the following results

    2006 2007 2008 2009 2010
    800 845 869 900 56 adoptions
    January 97 96 92 2 2
    February 81 90 78 99 0
    March 105 77 87 125 0
    .....
    759 748 872 919 58 redemptions
    January 79 82 78 81 58
    February 76 66 58 94 0
    March 67 102 75 77 0
    ....
    My dataset XML looks like this:
    My dataset xml is:
    <? XML version = "1.0" encoding = "UTF-8"? >
    -< ROWSET >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 97 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 81 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 105 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 83 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 75 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 67 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < 65 > anicnt < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 84 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 62 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 69 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 81 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 95 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 96 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 90 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 77 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 69 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 80 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 72 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 90 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 80 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 62 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 63 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 76 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 74 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 92 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 78 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 87 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 91 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 77 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 83 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 108 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 98 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 72 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 103 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 94 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 97 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 99 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 2 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 99 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 125 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 120 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 133 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 128 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 2 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 108 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 144 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 104 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 116 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 108 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 220 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 2 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 149 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 1 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2020 < / iyear >
    < cue > Adoptions < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    < exp / >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 79 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 76 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 67 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 35 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 81 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 45 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 52 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 70 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 62 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 71 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 56 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > redemptions < / cue >
    < 65 > anicnt < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 82 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 66 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 102 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 62 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 55 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 64 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 48 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 44 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 48 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 68 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 71 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 38 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 78 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 58 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 75 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 74 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 59 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 57 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 48 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 66 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 88 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 92 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 86 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 91 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 80 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 94 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 77 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 69 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 88 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 87 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 69 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 79 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 59 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 78 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 57 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 80 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 58 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > redemptions < / cue >
    < anicnt > 0 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 2 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 9 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 4 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 6 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 5 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2006 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 4 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    4th year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 10 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 4 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 3 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 1 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 2 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 6 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 8 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2007 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 4 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    3rd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2008 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    2nd year < exp > < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2009 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    Year < exp > 1 < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 52 < / anicnt >
    < imonth > 1 < / imonth >
    January < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 2 < / imonth >
    February < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 3 < / imonth >
    March < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 4 < / imonth >
    April < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 5 < / imonth >
    May < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 6 < / imonth >
    June < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 7 < / imonth >
    July < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 8 imonth < / imonth >
    August < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 9 < / imonth >
    September < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < imonth > 10 < / imonth >
    October < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 11 imonth < / imonth >
    November < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    -< ROW >
    < iyear > 2010 < / iyear >
    < cue > rescue < / cue >
    < anicnt > 0 < / anicnt >
    < > 12 imonth < / imonth >
    December < MNTH > < / MNTH >
    < exp > 0 year < / exp >
    < / ROW >
    < / LINES >


    my number of months is the imonth field in the dataset.
    my bi datamodel Editor is:
    Select posall.iyear as iyear,
    posall. CUE as a benchmark,
    posall.anicnt as anicnt,
    posall.iMonth as imonth,
    posall. MONTH to MONTH,
    posall.exp as exp
    of AnimalControl.Tracking.posall posall
    order of cue, iyear, imonth


    The closest I could get to this result is the following

    I created my pivot table with the columns of iyear
    I have a defined lines as a guide, imonth and mnth showing the anicnt.


    2006 2007 2008 2009 2010
    964 929 1080 1510 150 adoptions
    1 97 96 92 101 149
    January 97 96 92 101 149
    2 81 90 78 99 0
    February 81 90 78 99 0
    3 105 77 87 125 0
    March 105 77 87 125 0
    4 83 69 91 120 0
    April 83 69 91 120 0
    5 75 80 77 133 0
    Peut 75 80 77 133 0
    6 67 72 83 130 0
    June 67 72 83 130 0
    7 65 90 108 108 0
    July 65 90 108 108 0
    8 84 80 98 144 0
    August 84 80 98 144 0
    9 62 62 72 104 0
    September 62 62 72 104 0
    10 69 63 103 116 0
    October 69 63 103 116 0
    11 81 76 94 108 0
    November 81 76 94 108 0
    12 95 74 97 222 1
    December 95 74 97 222 1
    759 748 872 919 58 redemptions
    1 79 82 78 81 58
    January 79 82 78 81 58
    2 76 66 58 94 0
    February 76 66 58 94 0
    3 67 102 75 77 0
    March 67 102 75 77 0
    4 35 62 74 69 0
    April 35 62 74 69 0
    5 81 55 59 88 0
    May 81 55 59 88 0
    6 45 64 57 87 0
    June 45 64 57 87 0
    7 52 48 48 69 0
    July 52 48 48 69 0
    8 70 44 66 79 0
    August 70 44 66 79 0
    9 62 48 88 60 0
    September 62 48 88 60 0
    10 71 68 92 78 0
    October 71 68 92 78 0
    11 56 71 86 57 0
    November 56 71 86 57 0
    12 65 38 91 80 0
    December 65 38 91 80 0
    Rescue 31 39 0 0 52
    1 0 0 0 0 52
    January 0 0 0 0 52
    2 0 10 0 0 0
    February 10 0 0 0 0
    3     2     4     0     0     0
    March 2 4 0 0 0
    4     9     1     0     0     0
    April 9 1 0 0 0
    5     0     3     0     0     0
    May 3 0 0 0 0
    6     4     1     0     0     0
    June 4 1 0 0 0
    7     1     2     0     0     0
    July 1 2 0 0 0
    8     0     6     0     0     0
    August 0 6 0 0 0
    9     0     8     0     0     0
    September 8 0 0 0 0
    10 6 0 0 0 0
    October 6 0 0 0 0
    11 5 0 0 0 0
    November 5 0 0 0 0
    12 4 4 0 0 0
    December 4 4 0 0 0



    After trying many different things, it is overall results closest to you, I can get to what I need. If someone could help me please get the line that starts with a certain number of months, I would have the perfect result set. I'm new to BI Publisher and am stuck here. Thanks for your time.

    Published by: ethel on April 5, 2010 08:35

    Published by: ethel on April 5, 2010 08:38

    Hello

    Create a copy of the PivotTable (or a copy of the RTF) you currently have and delete the imonth the pivot column. Then in the new PivotTable for the 'C' field, change the code as follows:

    It sorts and then by column imonth but doesnot include the line with the number of the month and related data. If you want, I can send you the model. Provide your e-mail ID.

    I used Tim's blog as reference; http://blogs.Oracle.com/XmlPublisher/2010/03/new_skool_crosstabbing.html

    Award points if helpful/correct.

    Thank you!

Maybe you are looking for

  • «Open is not running right click»

    Three days ago, when I want to open more than 1 fileswith 'open' in a right click, nothing will happen, but if I press on entertouch all of the selected files are open! I tried with pdf, Word & excel files, and the result wassimilar. It must be said

  • Outlook Express has 550 permanent failure on message delivery

    E-mail address is removed from the privacy *-"smtp.abgindia.com": 550 permanent failure: failed delivery of the Message. If you think this message is an error, please see the Service user agreement and contact Support.

  • Copy and paste in Windows Explorer on Windows 7

    I can't copy and paste files and windows Explorer stops after all attempts. I replaced with a new version of Internet Explorer 11 The same symptoms occur when it is in safe mode. Is it possible to download a new version of the file Explorer?

  • Display and sum numbers

    Hi, I am a new developer and try to learn the native sdk. I tried several times, but don't know how I can add 2 numbers and display, don't have an option convert or number type just the text. I want to receive 2 issues (in diferent textfield) and dis

  • Need help to uninstall the game Deadspace

    Original title: uninstall Deadspace need help to uninstall the game Deadspace