Cross tab output

Hi,
Can someone help please?
I'm needing to produce the following output:
USERNAME JUN JUL AUG
Fred 10 0 5
Barney 0 6 1
I'm using the following SQL to produce 1 months data but I'm needing to produce it for 3, can anyone help
SELECT
u.user_id,
count(*),
FROM
non_imsnet_connection u,
npanet_login_tmp t
WHERE
(u.user_id=t.securnet_id OR u.user_id=t.login_id)
(AND u.connection_start >= to_date('01-06-2005','DD-MM-YYYY')
AND u.connection_start < to_date('01-07-2005','DD-MM-YYYY')
GROUP BY u.user_id
TIA

How about this:
SELECT
   u.user_id,
   sum(decode(to_char(u.connection_start, 'MM'), '06', 1, 0)) count_jun,
   sum(decode(to_char(u.connection_start, 'MM'), '07', 1, 0)) count_jul,
   sum(decode(to_char(u.connection_start, 'MM'), '08', 1, 0)) count_aug
FROM
  non_imsnet_connection u,
  npanet_login_tmp t
WHERE
  (u.user_id=t.securnet_id OR u.user_id=t.login_id)
  AND u.connection_start >= to_date('01-06-2005','DD-MM-YYYY')
  AND u.connection_start <  to_date('01-09-2005','DD-MM-YYYY')
GROUP BY u.user_id

Similar Messages

  • Displaying other columns/tables apart from a cross tab

    Hi,
    I designed an RTF template. This contains 3 tables. First table contains the invoice information. 2nd table is the cross tab and 3rd table contains the aging details. My requirement is to print the other tables in all pages if the cross tab goes to multiple pages. Presently all the tables are displayed in the 1st page only. If the cross tab output goes to next page then the 1st and 2nd tables are not being displayed in other pages.
    Can anyone suggest me how to display the other columns/tables apart from cross tab columns if the cross tab output goes to multiple pages.

    Can u plz send me the sample xml and the template so tat i can help u frm my side...

  • Cross tab query dynamically.

    Hi,
    i want to do crosstab in my query. but the data was not static its dynamic.
    CREATE TABLE ABTEST
      SEC_ID      NUMBER,
      MONYEAR     VARCHAR2(10 BYTE),
      NUM         NUMBER
    SET DEFINE OFF;
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200802', 13);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200803', 25);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200804', 26);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200805', 13);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200806', 10);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200807', 11);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200808', 5);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200809', 14);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200810', 17);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200811', 12);
    Insert into ABTEST
    WHERE
       (SEC_ID, MONYEAR, NUM)
    Values
       (91, '200812', 12);
    COMMIT;
    Currently it looks like below.
    SEC_ID     MONYEAR     NUM
    91     200802     13
    91     200803     25
    91     200804     26
    91     200805     13
    91     200806     10
    91     200807     11
    91     200808     5
    91     200809     14
    91     200810     17
    91     200811     12
    91     200812     12
    I want to display the data like below.
    sec_id 200802 ........200812
    91      13                12is there any can we do that by sql query or procedure. The dates are not limited its dynamic.
    Please help meout.
    Thanks & Regards,
    Venkat.

    Hi,
    The number of columns has to be hard-coded.
    If you don't know the number of columns until run-time, then you have to use dynamic SQL where, at run-time, you figure out how many columns are needed and write that many columns.
    See the script below for one way of doing that in SQL*Plus.
    How to Pivot a Table with a Dynamic Number of Columns
    This works in any version of Oracle
    The "SELECT ... PIVOT" feature introduced in Oracle 11
    is much better for producing XML output.
    Say you want to make a cross-tab output of
    the scott.emp table.
    Each row will represent a department.
    There will be a separate column for each job.
    Each cell will contain the number of employees in
         a specific department having a specific job.
    The exact same solution must work with any number
    of departments and columns.
    (Within reason: there's no guarantee this will work if you
    want 2000 columns.)
    Case 0 "Basic Pivot" shows how you might hard-code three
    job types, which is exactly what you DON'T want to do.
    Case 1 "Dynamic Pivot" shows how get the right results
    dynamically, using SQL*Plus. 
    (This can be easily adapted to PL/SQL or other tools.)
    PROMPT     ==========  0. Basic Pivot  ==========
    SELECT     deptno
    ,     COUNT (CASE WHEN job = 'ANALYST' THEN 1 END)     AS analyst_cnt
    ,     COUNT (CASE WHEN job = 'CLERK'   THEN 1 END)     AS clerk_cnt
    ,     COUNT (CASE WHEN job = 'MANAGER' THEN 1 END)     AS manager_cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno
    ORDER BY     deptno
    PROMPT     ==========  1. Dynamic Pivot  ==========
    --     *****  Start of dynamic_pivot.sql  *****
    -- Suppress SQL*Plus features that interfere with raw output
    SET     FEEDBACK     OFF
    SET     PAGESIZE     0
    SPOOL     p:\sql\cookbook\dynamic_pivot_subscript.sql
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;
    SPOOL     OFF
    -- Restore SQL*Plus features suppressed earlier
    SET     FEEDBACK     ON
    SET     PAGESIZE     50
    SPOOL     p:\sql\cookbook\dynamic_pivot.lst
    SELECT     deptno
    @@dynamic_pivot_subscript
    FROM     scott.emp
    GROUP BY     deptno
    ORDER BY     deptno
    SPOOL     OFF
    --     *****  End of dynamic_pivot.sql  *****
    EXPLANATION:
    The basic pivot assumes you know the number of distinct jobs,
    and the name of each one.  If you do, then writing a pivot query
    is simply a matter of writing the correct number of ", COUNT ... AS ..."\
    lines, with the name entered in two places on each one.  That is easily
    done by a preliminary query, which uses SPOOL to write a sub-script
    (called dynamic_pivot_subscript.sql in this example).
    The main script invokes this sub-script at the proper point.
    In practice, .SQL scripts usually contain one or more complete
    statements, but there's nothing that says they have to.
    This one contains just a fragment from the middle of a SELECT statement.
    Before creating the sub-script, turn off SQL*Plus features that are
    designed to help humans read the output (such as headings and
    feedback messages like "7 rows selected.", since we do not want these
    to appear in the sub-script.
    Turn these features on again before running the main query.
    */

  • How to correct XML Output in Cross Tab Template for sum function?

    I have designed a Cross Tab Template to summarize R12 Account Analysis data by Period by Party_name. The template is doing what I want it to do with the exception of amount. I have a function in the sum(accounted_net) field and it will only display 0.00 even though I know there are actual amount. Can someone help in looking at my template to see what I have done wrong?
    Here is the sum funciton.
    <?if:count(current-group()[CCID_SOURCE=$ABC])?><?sum(current-group()[CCID_SOURCE=$ABC]/ACCOUNTED_NET)?> <?end if?>
    CCID_SOURCE is an element I created in XML to concatnate CCID and Party_name for grouping. $ABC is a variable that I defined for "CCID_SOURCE" to check if there is null value for a specific ccid_party. If it's null, it won't do the sum function, otherwise it will sum the accounted_net for the period_name, party_name.
    Thank you for your help.
    Stacey

    Figured this out on our own

  • BI Publisher Pivot Table or Cross Tab

    Hai All,
    I have a doubt in developing a Matrix report in XML. I have developed a matrix report in RDF and the output is coming fine in RDF. I have generated the XML file which looks like this. I need to develop the report which displays employee details followed by the allowance which are dynamic.
    - <XXHRPRF>
    - <LIST_G_SUMRESULT_VALUE>
    - <G_SUMRESULT_VALUE>
    - <LIST_G_EMPLOYEE_NUMBER>
    - <G_EMPLOYEE_NUMBER>
    <EMPLOYEE_NUMBER>100026</EMPLOYEE_NUMBER>
    <PERSON_ID>80</PERSON_ID>
    <NATIONALITY>USA</NATIONALITY>
    <NATIONAL_IDENTIFIER />
    <UNIFIED_ID />
    <FULL_NAME>Thomas H Mathew</FULL_NAME>
    <ORGANIZATION_NAME>Corporate Affairs</ORGANIZATION_NAME>
    <PENSION_FUND_ID />
    <CS_SNO>1</CS_SNO>
    <CF_PENSION_CONTRIBUTION>3637.5</CF_PENSION_CONTRIBUTION>
    <CP_PENSION_COMP_CONTR>10912.5</CP_PENSION_COMP_CONTR>
    <CP_TOTAL_SALARY>72750</CP_TOTAL_SALARY>
    <CF_TOTAL_CONTRIBUTION>14550</CF_TOTAL_CONTRIBUTION>
    - <LIST_G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>1</TAG>
    <ELEMENT_NAME>Basic Salary</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>39650</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>2</TAG>
    <ELEMENT_NAME>Housing Allowance</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>25000</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>3</TAG>
    <ELEMENT_NAME>Child allowance</ELEMENT_NAME>
    <LIST_G_PERSON_ID />
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>4</TAG>
    <ELEMENT_NAME>Social allowance</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>700</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>5</TAG>
    <ELEMENT_NAME>Excess Allowance</ELEMENT_NAME>
    <LIST_G_PERSON_ID />
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>6</TAG>
    <ELEMENT_NAME>Additional</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>7400</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    </LIST_G_ELEMENT_NAME>
    </G_EMPLOYEE_NUMBER>
    - <G_EMPLOYEE_NUMBER>
    <EMPLOYEE_NUMBER>100030</EMPLOYEE_NUMBER>
    <PERSON_ID>82</PERSON_ID>
    <NATIONALITY>Canada</NATIONALITY>
    <NATIONAL_IDENTIFIER />
    <UNIFIED_ID />
    <FULL_NAME>Sara Wilson</FULL_NAME>
    <ORGANIZATION_NAME>Human Resources</ORGANIZATION_NAME>
    <PENSION_FUND_ID />
    <CS_SNO>2</CS_SNO>
    <CF_PENSION_CONTRIBUTION>1203.75</CF_PENSION_CONTRIBUTION>
    <CP_PENSION_COMP_CONTR>3611.25</CP_PENSION_COMP_CONTR>
    <CP_TOTAL_SALARY>316575</CP_TOTAL_SALARY>
    <CF_TOTAL_CONTRIBUTION>4815</CF_TOTAL_CONTRIBUTION>
    - <LIST_G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>1</TAG>
    <ELEMENT_NAME>Basic Salary</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>19600</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>2</TAG>
    <ELEMENT_NAME>Housing Allowance</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>22500</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>3</TAG>
    <ELEMENT_NAME>Child allowance</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>600</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>4</TAG>
    <ELEMENT_NAME>Social allowance</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>800</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>5</TAG>
    <ELEMENT_NAME>Excess Allowance</ELEMENT_NAME>
    <LIST_G_PERSON_ID />
    </G_ELEMENT_NAME>
    - <G_ELEMENT_NAME>
    <TAG>6</TAG>
    <ELEMENT_NAME>Additional</ELEMENT_NAME>
    - <LIST_G_PERSON_ID>
    - <G_PERSON_ID>
    <RESULT_VALUE>3075</RESULT_VALUE>
    </G_PERSON_ID>
    </LIST_G_PERSON_ID>
    </G_ELEMENT_NAME>
    </LIST_G_ELEMENT_NAME>
    </LIST_G_EMPLOYEE_NUMBER>
    </G_SUMRESULT_VALUE>
    </LIST_G_SUMRESULT_VALUE>
    <CF_PERIOD>MAR-2009</CF_PERIOD>
    - <XXHRPRF>
    I need to develop a cross tab format in RTF using template builder. Can we get this in matrix report using the standard wizard given in template builder or else it should be done manual. If it can be done through wizard can u please explain the process.
    And one more think what is the latest version of template builder available. In few cases its given as pivot table and in few its given as cross tab. I confused by that.
    This seems to be basic doubt, but please guide me.
    Regards

    i,
    I am developing cross tab report with group in BI Publisher(i.e matrix with group above report in report builder).
    My req.is
    Country1
    region1 region2 region3 --- (level1 column)
    d1 d2 d3 d1 d2 d3 d1 d2 d3 --(level2 column)
    Row1 10 15 18 24 38 40 36 35 78 --data
    Row2 -- -- -- --- --- -- - -- -- --
    regions(level1 columns) and d1,d2,d3(level2 columns) are data depenent on XML data.
    d1,d2 d3 may change in number based on data.Also we have page break on country.
    We could able to achieve in report builder but in Bi Publisher we are unable to achieve the same.
    Wizard in BI Publisher gives only one level of measure(region) only.
    Currently we are using BI Publisher template builder version 10.1.3.2.1
    Need help in this regard ASAP.
    Thanks in advance.

  • Problem using a conditional suppress in a cross-tab ?

    is there a problem using a conditional suppress in a cross-tab on a row  or summarized field  in crystal XI?
    I am using the following conditional suppress on a summarized field and its rows
             If {@SortCode}=4 then true;
    Sortcode is a group sorting formula field
    the summarized field is a formula field as well.
    All of the summarized fields are suppressed although the cross- tab performs correctly on @Sortcode  and the summarized field when not using the condition        
    it seems to me to be a reporting flow issue although i've included "whileprintingrecords" and "evaluateafter" with no success.
    i have also moved the cross-tab from the report header to group header and applied a conditional suppress on the group header through section expert.
    this supresses the group i dont want but includes grand totals for each group and also varys the number of columns
    i can't filter on sortcode because one of the grand total calculations requires those records and a subreport or second cross-tab does not contain the same number of columns
    the cross-tab is necessary as a client may have columns spanning one to many pages
    thanks for your help

    Hi I have a similar problem,
    I have an clock in solution, where i have some dates with data such as, various entries for a date eg, 01/11/2010 1hr, 01/11/2010 3 hrs etc, 03/11/2010 2hrs , 05/11/2010 4.5hrs, 05/11/2010 4 hrs so i need total for each day and highlight only those days, where total is less than 4.5, including days which donu2019t have records eg 02/11/2010 & 04/11/2010, I summarise in totals using a cross tab, to get summarised output for each day as,
                Totals
    01/11/2010    4
    03/11/2010    2
    05/11/2010    8.5
    in order to get the dates which didnu2019t have records, i added a dataset from Excel spreadsheet where i just have a sequential dates for the year , and use record selection to select only those dates in range which i need to display, so the result i get
    01/11/2010    4
    02/11/2010    0
    03/11/2010    2
    04/11/2010    0
    05/11/2010    8.5
    so far so good, all using cross tab, now i want to suppress rows which have total > 4.5 so the result should be
    01/11/2010    4
    02/11/2010    0
    03/11/2010    2
    04/11/2010    0
    How can i do that?

  • Issue in developing cross tab report with wizard in 10.1.3.2.1

    Hi Gurus,
    We are trying to develope group above cross tab report with wizard in BI Publisher 10.1.3.2.1 .
    i am unable to achieve multiple level columns dynamically.Using cross tab wizard i can achieve single level measure column ,but not the second level column.
    Output should look like this:
    Country1
    Region1 Region2 Region3 --(level1 column)
    d1 d2 d3 d1 d2 d3 d1 d2 d3 -- (level2 column)
    Row1 10 20 30 70 80 90 40 70 90 --data
    Row2 21 24 54 65 23 64 64 76 87 --data
    Here Regions and d1 d2 d3 may vary based on xml data.Also we have page break on country.
    Haven't get any solution till now.
    Also unable to achieve under line and overline on data for total row.
    Need help urgently in this issue.
    Thanks,
    Mahesh
    Edited by: user13450806 on Jan 7, 2011 12:43 AM

    Hi Gurus,
    I am still waiting for some one to help me in this issue.
    It is very urgent for me to solve this. Did not get any help yet.
    --Mahesh                                                                                                                                                                                                                                                                                                       

  • Summation in Cross tab

    Dear All,
    We are using BO4.1 SP3 with Bex as data source.
    I am trying to do summation in cross tab footer which gives total across all the columns of cross tab.
    These sum is based on the dimension taken in the header of cross tab. So we are defining the condition in teh where condition.
    The definition for summation depends on dimension.
    We are using formula: Sum(Measure) Where (Dim = "ABC").
    This formula is working correct in case if both the columns have data. In case of one of the column value is Null, its giving result output as Null.
    If we are using IsNull then 0 then also it is giving result as Null. Can you please guide how to resolve this issue.
    Regards,
    Sonal

    Hi Sathish,
    Have verified above approach, but not working. Please let me know in case of any other logic.
    Regards,
    Sonal

  • Custom formula in cross-tab?

    I have a cross-tab like this
                      JAN    FEB    MAR ....... DEC (the 12 months as columns)
    year 2006
       item 01     150    205      300 .......    550
       item 02       80    190      284 ........   620
    year 2007
       item 01      458    235      224 .......... 781
       item 02      154    254      134..........  254  
    year 2008
       item 01       245    154      544           1243
       item 02       524    254      124 .........   924     
    I want to know if is possible to have a formula that take the value of each month and compare with the previous and make a calcule like this...
                      JAN    FEB    MAR ....... DEC (the 12 months as columns)
    year 2006
       item 01     150    205      300 .......    550
       item 02       80    190      284 ........   620
    year 2007
       item 01      458    235      224 .......... 781
                       (205)   (14)
       item 02      154    254      134..........  254  
    year 2008
       item 01       245    154      544           1243
       item 02       524    254      124 .........   924 
    where (205) and   (14) are calculate from:
    (205) = (150 - 458) * 100 / 150 I have to  make this operation for each month takin the values from item 01 from 2006 with the values from item 01 from 2007 and so on
    Edited by: j jara on Jul 22, 2008 2:01 AM

    Yes it is possible.
    It would be easier in CR2008  where you have the ability to add Calculated Members.
    In previous versions you would need to create a variable for each year and using the GridRowColumnValue function assign the current value to a variable. You would then need to add a second summary field as a "dummy" summary and in the Display string formula declare the variables and manipulate the values as you like and finally convert the output to string.

  • Calculated members in cross tab

    Hi all,
    I have a profit and losses in a cross tab created by a group and I need to add some rows to have the totals.
    For example
    Revenue 1
    Revenue 2
    Revenue 3
    Total Revenue
    Cost 1
    Cost 2
    Total Costs
    For total revenue I used a calculated members with that formula:
    GridValueAt(GetRowPathIndexOf("Revenue 1"), CurrentColumnIndex, CurrentSummaryIndex)
    + GridValueAt(GetRowPathIndexOf("Revenue 2"), CurrentColumnIndex, CurrentSummaryIndex)
    + GridValueAt(GetRowPathIndexOf("Revenue 3"), CurrentColumnIndex, CurrentSummaryIndex)
    but the problem is that if I haven't for example any data for revenue 2 an error occurs -->argument # 1of "gridvalueat" is out of range.
    It's possible to check if the argument exist??
    thanks

    hi alessandro,
    i just found your forum post in the unanswered list...hopefully you've already found the answer for this.
    GetRowPathIndexOf is looking for the text in a specific cell and not the actuall Row or Column Name.
    When it doesn't find it, its output is -1...so you can use that in your formula to ensure that it doesn't break.
    for example, if you have a cross-tab that looks like
    Canada        1006
    USA             5555
    Mexico         2331
    GetRowPathIndexOf("Mexico") = 2 (as the index starts at 0 for Canada)
    GetRowPathIndexOf("Brazil") = -1
    hope this helps,
    jamie

  • Calculations based on Summarized data in Cross Tab

    First off, I'm pretty experienced with Crystal.
    I've run accross something that seems like it should be realy easy to do, and the sort of thing you would expect to do  in a cross tab... so maybe I'm missing something totally obvious.
    I'm doing a year over year comparison of some financial data broken down by month and by quarter.
    So, my Rows are Quarter, and a field called 'YEARMONTH' (calculated field, YYYYMM, for ease of sorting)
    My column is Year, and for summarized fields, I have the data field I'm interested in which is a float. Let's call it 'Dollars' for sake of argument.
    What I want to do is create a summary field (next to the total field) called 'Difference' or 'Delta' that calculates for reach row the difference between my two years (2008, and 2009)
    The only solution I can come up with is to dummy in a record from the datasource with a year value of 'Difference' and some other dummy values so that it will show up as a column on the cross tab, and then somehow use the currentrowcolum function or some such creature to mask the output in the column. but now that I type it out here, I'm not sure it's going to work. I also don't think it's going to export the way I want it to either.
    I'd really prefer it to be in a cross tab, and not in some manually created cross-tab emulation using manual running totals, but I'll go there if I have to.
    Thanks a ton!

    This is what I did in my report to get the difference
    my crosstab looks like this
                        2004     2005    Total
    Total              T1         T2         T
    USA               A          B          C
    INDIA              X          Y          Z
    right click on T1 and go to format field and write the suppress condition like this
    numberVar d:=0;
    currencyVar array arr1;
    currencyVar array arr2;
    numberVar e;
    if GridRowColumnValue('year')=2004 then
    (e:=e+1;
    redim preserve arr1[e];
    arr1[e]:=CurrentFieldValue)
    else
    (e:=e+1;
    redim preserve arr2[e];
    arr2[e]:=CurrentFieldValue);
    false
    right click on T and go to format field and write the Display string condition like this
    currencyVar array arr1;
    currencyVar array arr2;
    totext(arr1[1]-arr2[1])
    right click on A and go to format field and write the suppress condition like this
    currencyVar array four;
    currencyVar array five;
    numberVar d;
    if GridRowColumnValue('year')=2004 then
    (d:=d+1;
    redim preserve four[d];
    four[d]:=CurrentFieldValue)
    else
    (d:=d+1;
    redim preserve five[d];
    five[d]:=CurrentFieldValue);
    false
    right click on C and go to format field and write the Display string condition like this
    currencyVar array four;
    currencyVar array five;
    numberVar g;
    g:=g+1;
    ToText(four[g]-five[g])
    Note: Please select the option "column totals on top" for crosstab in customize style
    Hope this helps!
    Raghavendra

  • Unable to bold a cell verticle line in Cross-tab Format Grid Lines

    Hi
    I am unable to bold a random Cell vertical line inside the cross-tab. My cross-tab is having access database which pulls every data correctly,
    To elaborate , here is the images to make it clear.
    First one is the current output of cross-tab & 2nd one is the desired output :
    To make it more clear ,
    I am giving the screenshot of Format grid lines option,  when I have selected Cell vertical lines , I can change Line options (Like style,width,color) from it. When I change it, it changes all three lines simultaneously. But, in that, I just want to bold only the last line of this grid.
    The screenshot as follows (To denote the lines, I have put numbering under the vertical lines, where I want to bold only the third one) :
    Please let me know, if  any solution to this. I m using CRVS_13.
    Thanks in Advance.

    Hi,
    try to do this way..
    Right click on crosstab - > crosstab expert -> customize style -> select your particular column then goto Format Grid Lines -> select your particular one based view -> ok..
    I hope this not yet possible because select 1 automatically 2,3 vertical lines are selected..
    See how it works......Please update ASAP
    tHANKS,
    dj

  • Oracle BI Publisher 10.1.3.3.2 - Grouping a cross tab in sections

    Hello Experts,
    I am trying to make a BI Publisher template containing a cross tab and the cross tab is repeated for sections.This is how the structure of tables are
    Costs Dim (Cost_id, Costs_Section , Costs_Type)
    Trans_Dim (Trans_id, Trans_Ref, Trans_Narr)
    Costs_Fact ( Cost_Id , Trans_id , Amount)
    The output needed is somewhat like this
    Costs_Section X
    Trans_Ref| Trans_Narr|| Cost Type A | Cost Type B
    Tref1 | Tnarr1 || Amt 1 | Amt 2 | Sum(Amt1, Amt2)
    Tref2 | Tnarr2 || Amt 3 | Amt 4 | Sum(Amt3, Amt4)
    Sum(A1, A3)| Sum(A2, A4)
    Costs_Section Y
    The creation of the table is okay and that is done via the Cross tab wizard , but when i add the costs section , the output is garbled.
    The dimensional columns disappears and the sum remains..
    Any leads , help would be greatly appreciated.
    Thanks and Regards,
    -PKB

    Check these, use that forum for specific to BIP
    Re: Run BI Publisher from the command line through a shell script
    Is there a UNIX command line to export/import XML Publisher templates?
    Ifhelps mark

  • Cross tab template for a matrix rdf report

    Hi
        I have a matrix report which displays in text except it continues to displays columns on a new header as the numberof columns are dynamic
    In the text report it displays lke this. Columns are the period. if its more than 5 columns it goes into the next header.
    The number of columns are dynamic.
    Current output
      Period                                May-08    June-08  July-08   Aug-08    Sep-08.
    company    Acct  Category      
    1201         23232  test1         10..0        20.02     3.033    45.999   46.777
                    23245  test2          10..0        20.02     3.033    45.999   46.777
    1202         223232  test13      120..0        20.02     3.033    45.999   46.77
                    23245  test23        110..0        20.02     3.033    45.999   46.777                        
      Period                                 Oct-08    Nov-08 
    company    Acct  Category      
    1201         23232  test1         10..0        20.02    
                    23245  test2          10..0        20.02    
    1202         223232  test13      120..0        20.02    
                    23245  test23        110..0        20.02    
    Desired output
                             Period          May-08    June-08  July-08   Aug-08    Sep-08... .... ...     oct-08 
    company    Acct  Category      
    1201         23232  test1         10..0        20.02     3.033    45.999   46.777                   20.02    
                    23245  test2          10..0        20.02     3.033    45.999   46.777                   20.02    
    1202         223232  test13      120..0        20.02     3.033    45.999   46.77                    20.02    
                    23245  test23        110..0        20.02     3.033    45.999   46.777                 20.02    
    How to display in this format continously in Cross tab Template.
    Could someone help

    Hi
    My xml dta file is not similar to yours though. I dont know why i am getting like this. The staring xml codes in bold are unsual
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <FASPRJ>
    <LIST_G_SUMDEPR1PERACCT>
    <G_SUMDEPR1PERACCT>
    <LIST_G_COMP_CODE>
    <G_COMP_CODE>
    <COMP_CODE>1201</COMP_CODE>
    <LIST_G_ACCT>
    <G_ACCT>
    <ACCT>791010</ACCT>
    <CATEGORY>BUILDING</CATEGORY>
    <LIST_G_PERIOD_NAME>
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *</LIST_G_PERIOD_NAME>*
    *</G_ACCT>*
    *<G_ACCT>*
    *<ACCT>791010</ACCT>*
    *<CATEGORY>EQUIPMENT</CATEGORY>*
    *<LIST_G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *</LIST_G_PERIOD_NAME>*
    *</G_ACCT>*
    *<G_ACCT>*
    *<ACCT>791010</ACCT>*
    *<CATEGORY>FURN&amp;FIXT</CATEGORY>*
    *<LIST_G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *</LIST_G_PERIOD_NAME>*
    *</G_ACCT>*
    *<G_ACCT>*
    *<ACCT>791010</ACCT>*
    *<CATEGORY>LEASEHOLDS</CATEGORY>*
    *<LIST_G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *</LIST_G_PERIOD_NAME>*
    *</G_ACCT>*
    *<G_ACCT>*
    *<ACCT>791012</ACCT>*
    *<CATEGORY>FURN&amp;FIXT</CATEGORY>*
    *<LIST_G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>APR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>AUG-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>DEC-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>FEB-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JAN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUL-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>JUN-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAR-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>MAY-10</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>NOV-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>OCT-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-08</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *<G_PERIOD_NAME>*
    *<PERIOD_NAME>SEP-09</PERIOD_NAME>*
    *<LIST_G_DEPR1>*
    *</LIST_G_DEPR1>*
    *</G_PERIOD_NAME>*
    *</LIST_G_PERIOD_NAME>*
    *</G_ACCT>* <G_ACCT>
    <ACCT>791012</ACCT>
    <CATEGORY>LEASEHOLDS</CATEGORY>
    <LIST_G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>APR-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>4</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>APR-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>4</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>AUG-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>8</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>AUG-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>8</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>DEC-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>12</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>DEC-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>12</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>FEB-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>2</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>FEB-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>2</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JAN-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>1</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JAN-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>1</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUL-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>7</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUL-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>7</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUN-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>6</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUN-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>6</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAR-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>3</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAR-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>3</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAY-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>5</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAY-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2010</FISCAL_YEAR>
    <PERIOD_INDEX>5</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>NOV-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>11</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>NOV-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>11</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>OCT-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>10</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>OCT-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3796.07</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>10</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>SEP-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.76</DEPR1>
    <FISCAL_YEAR>2008</FISCAL_YEAR>
    <PERIOD_INDEX>9</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>SEP-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    <G_DEPR1>
    <DEPR1>3798.78</DEPR1>
    <FISCAL_YEAR>2009</FISCAL_YEAR>
    <PERIOD_INDEX>9</PERIOD_INDEX>
    </G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    </LIST_G_PERIOD_NAME>
    </G_ACCT>
    <G_ACCT>
    <ACCT>792100</ACCT>
    <CATEGORY>EQUIPMENT</CATEGORY>
    <LIST_G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>APR-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>APR-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>AUG-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>AUG-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>DEC-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>DEC-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>FEB-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>FEB-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JAN-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JAN-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUL-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUL-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUN-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>JUN-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAR-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAR-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAY-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>MAY-10</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>NOV-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>NOV-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>OCT-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>OCT-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>SEP-08</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    <G_PERIOD_NAME>
    <PERIOD_NAME>SEP-09</PERIOD_NAME>
    <LIST_G_DEPR1>
    </LIST_G_DEPR1>
    </G_PERIOD_NAME>
    </LIST_G_PERIOD_NAME>
    </G_ACCT>

  • Filtering Key Figures/Columns in a Cross Tab Component

    Hello All,
    I am creating a P&L Statement for Better/Worse comparisions, and I have to show only three columns at a time based on User Drop Down Selections.
    Here is my Bex Query Out put looks like.  The Rows part is "Structure" and Columns are "Cell Restrictions".
    Now, the CrossTab component has to show only Two columns at a time, based on user selections. Here is my desired output. User will Select either ' Avg' Rate or 'End Rate'. Based on that selction, Actual's will show in the First Column and based on Selection from Second DROPDOWN for Budget/Forecast/PY, the Second Column has to be displayed.
    Is there any DropDown Component or CrossTab Component Options are there to Filter the Columns based on User Selections ?
    Appreciate your help. This is the Crucial Chart for the whole Dashboard.
    Thanks,
    Sonti.

    Hi Tammy,
    Thanks for your quick reply.
    Can it be done dynamically without the User touching it ? My Cross Tab has to show values based on the Selctions. But, I couldn't find the code to restrict Cross Tab data.
    I have to code for Dropdown box --> On Select, to check / Un check the KF's in the Filter Panel Component. And in Filter Panel Comoponent, --> On Select, DATASOURCE.setFilterExt("KF1", "KF2").
    And assign the data source to Cross Tab.
    Please correct me if I am wrong.
    Regards,
    Sonti.

Maybe you are looking for

  • How to unistall shapeshifter and application enhancer to get rid of bits of dock end

    hi i have an 12 inch powerbook g4 2005 and i did run it on tiger and made the dock 3D using shapeshifter and application enhancher and when i tried to eject them after i got os x 10.5.8 but it doesn't show up on search but when i go on system prefern

  • Taking OCA exam ... need help to find books for 1Z0-052 and 1Z0-051

    Hi All, Am new to oracle but intend to take up the oracle 11g OCA exam. Any recommanded URL from official oracle site to help me prepare the exam paper 1) Oracle-Oracle Database 11g: Administration I - 1Z0-052 2) Oracle Database 11g-SQL Fundamentals-

  • How to read music file size?

    I have the third generation iPad. I've sync'd (via iTunes of course) a CD album in Apple Lossless and another CD album in AIFF. Most other audio that have already been sync'd is in MP3 format. So how can I see the file size of each song in the iPad?

  • PS2013: convert Idea to Project

    Hi, does anybody have any clue about what permissions a user need in order to be able to convert an Idea in a Sharepoint List to a project in PS2013? It works with an Admin, but not with a user configured as a PM. Thanks, Fabrizio.

  • Black screen on MSI P43-C51, memory incompatible?

    Hi! I've recently bought a new computer. Everything seems to be in good order, except when I start it I get a black screen. Disks are spinning, I hear it boot up and everything, lights seems to be in the proper places, but the screen remains black. S