Cross Tab Queries

Hello All,
Can you please explain the Crosstab Queries and its role. Can you please help me to find some scripts/ stuff about cronetab queries.

Hi...
Take a look at:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3723109377222
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:44837685547135
Hope they'd help you....
Sim

Similar Messages

  • Cross tab data is getting multiplied if i use multiple queris in asingle report

    HI,
      i am using multiple queris for displaying data and graphs(charts).
      my requirement is to display 2 charts and data in crosstab in a single report.
      all the three thing (2charts and crosstab) will use diffrent values.
    I am writing 3 sql queries for getting appropriate values for charts and crosstab.
      Now the problem, both charts and crosstab are taking the values of all 3 queris
    i.e if i added crosstab  first to the report values are coming correctly. After  that if i add graph cross tab values are getting changed and graph values are not getting properly.
    if i add graph first then its coming correctly.
    if i tried to add all 3 components then values are going cores...... ?

    When you say you are writing 3 sql queries what do you mean? Are you creating 3 SQL command objects in the database expert? If so this is your problem, Crystal will pull a cartesian product through (this is every possible combinatin of rows from the 3 queries).
    If your 2 graphs and 1 crosstab are based on different datasets the way to approach this is to create each on a seperate report, then create a new blank report and add each of your 3 reports as subreports in the report footer.
    Hope this helps,
    Toby

  • Cross-tab style queries...

    As you may have guessed, I'm new to the Oracle flavour of SQL.
    I'm trying to create a cross-tab query, do any of you guys know a good way of doing this?
    Thanks very much.

    You can do like this. Its an ex. you can extend as you need
    SELECT job,
    sum(decode(deptno,10,sal)) DEPT10,
    sum(decode(deptno,20,sal)) DEPT20,
    sum(decode(deptno,30,sal)) DEPT30,
    sum(decode(deptno,40,sal)) DEPT40
    FROM scott.emp
    GROUP BY job
    Hari

  • Hierarchy problems in cross tab

    Hello,
    we are using DS 1.3 and I have a query which want to use with several views.
    I configured the initial view like the screen shot shows. The problem is, if I assign this data source to a cross tab, no data is available for this component. But the initial view shows some data. Is there something else I have to consider?
    This behavior only appears if I use queries with hierarchies.
    Thanks
    Robert

    Hello Robert - please see SAP Note http://service.sap.com/sap/support/notes/2001504 to see if it may apply; SP1 is planned in a few weeks

  • # Multivalue error in cross tab

    Hi All,
    I am using BO-launch pad 4.1,sp2 Data is from Bex-query using CMC.
    Table: Cross tab
    1)Dimenssion obj: CO-object
    2)Attributs: Co-obj-wbs elemt,costcentr,order
    3)Measure:Budjet aproval overall, Budjet for annul,Actual cost, Actual quantity,planned cost, planned quantity
    when drag i dimension co-obj,attributes and all measures it showing values but when i drag attributes and measures (No need to drag dimension) it is showing in crosstab
    # Multivalues error in all measure fields.
    Can you plz give me suggestions on this.
    Thanks
    Ganesh

    Hello,
    Please check if you have used exception aggregation on measures in the BEx queries. These aggregation might be using some dimensions as reference characteristics. And if that dimensions are not included, you might get these multivalue error.
    Good Day !!

  • Removing spaces in cross tab

    Hello...
                  I created one cross tab with 10 rows and 2 columns.(In Crosstab Expert) Based on grouping  i got 5 set of cross tab reports,Each cross tab contains 4 records .But in between these crosstabs blank spaces are there ,How can i avoid such blank spaces...
                                            Expecting Answers.....Thanks...

    Hello  Jebin
    I recommend to post this query to the [Crystal Reports Design|SAP Crystal Reports; forum.
    This forum is dedicated to topics related to the creation and design of Crystal Report documents. This includes topics such as database connectivity, parameters and parameter prompting, report formulas, record selection formulas, charting, sorting, grouping, totaling, printing, and exporting but also installation and registering.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports Design queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Cross tab using sql

    Hi,
    I am using oracle 11g version.
    I have a reporting requirement where in I have to produce a cross tab as explained below. Please help me in writing an SQL query to achieve this. Many thanks.
    Sample data:
    Customer             product type
    AAA                           DVD
    AAA                           Tape
    BBB                           Tape
    CCC                                 DVD
    CCC                           Bluray
    DDD                           DVD
    DDD                           Tape
    DDD                           Bluray
    Logic
         AAA                                              BBB                         CCC                         DDD          
         DVD     Tape     Bluray                    DVD     Tape     Bluray               DVD     Tape     Bluray               DVD     Tape     Bluray
    DVD          1                    DVD                         DVD               1          DVD          1     
    Tape     1                         Tape          1               Tape                         Tape     1          1
    Bluray                              Bluray                         Bluray     1                    Bluray          1                                                                                                    Final Output
    No. of customers who purchased the products across all product types
         DVD     Tape     Bluray               
    DVD          2     1               
    Tape     2     1     1               
    Bluray     1     1                    
    Scripts:
    create table cust_product(customer varchar2(5), product_type varchar2(10));
    insert into cust_product values('AAA','DVD');
    insert into cust_product values('AAA','Tape');
    insert into cust_product values('BBB','Tape');
    insert into cust_product values('CCC','DVD');
    insert into cust_product values('CCC','Bluray');
    insert into cust_product values('DDD','DVD');
    insert into cust_product values('DDD','Tape');
    insert into cust_product values('DDD','Bluray');

    Hi,
    858747 wrote:
    ... Sample data:
    Customer             product type
    AAA                           DVD
    AAA                           Tape
    BBB                           Tape
    CCC                                 DVD
    CCC                           Bluray
    DDD                           DVD
    DDD                           Tape
    DDD                           Bluray...
    Final Output
    No. of customers who purchased the products across all product types
    `     DVD     Tape     Bluray               
    DVD          2     1               
    Tape     2     1     1               
    Bluray     1     1                    
    Sorry, I don't follow the logic. Try explaining in words, with specific examples.
    Didn't 2 distinct customers, 'CCC' and 'DDD', buy both 'DVD' and 'Bluray'? Why aren't the results
    `     DVD     Tape     Bluray               
    DVD          2     2
    Tape     2     1     1               
    Bluray     2     1                    with 2's in the corners?
    Assuming that was just mistake, you can do something like this:
    WITH     got_pairs     AS
         SELECT       a.product_type               AS product_a
         ,       NVL (b.product_type, a.product_type)     AS product_b
         FROM            cust_product     a
         LEFT OUTER JOIN     cust_product     b  ON  a.customer     = b.customer
                                AND     a.product_type != b.product_type
    SELECT       *
    FROM       got_pairs
    PIVOT       (     COUNT (*)
           FOR     product_b
           IN     ( 'DVD'
              , 'Tape'
              , 'Blueray'
    ORDER BY  CASE  product_a
              WHEN  'DVD'     THEN  1
              WHEN  'Tape'     THEN  2
              WHEN  'Bluray'     THEN  3
           END
    ;This assumes that the combination (customer, product_type) is unique, as it is in your sample data., and that the only product_types are the 3 in your sample data.
    if those assumptions are not true, then post some revised sample data and results, that show what you want in those cases.
    Sorry, I don't have an Oracle 11 database right now to test this.
    I can (and did) test the outer join, that combines a product_type with itself only if it can't be combined with anything else.
    Using a pre-Oracle 11 pivot technique, the following works:
    WITH     got_pairs     AS
         SELECT       a.product_type               AS product_a
         ,       NVL (b.product_type, a.product_type)     AS product_b
         FROM            cust_product     a
         LEFT OUTER JOIN     cust_product     b  ON  a.customer     = b.customer
                                AND     a.product_type != b.product_type
    SELECT       product_a     AS product_type
    ,       COUNT (CASE WHEN product_b = 'DVD'    THEN 1 END)     AS dvd
    ,       COUNT (CASE WHEN product_b = 'Tape'   THEN 1 END)     AS dvd
    ,       COUNT (CASE WHEN product_b = 'Bluray' THEN 1 END)     AS dvd
    FROM       got_pairs
    GROUP BY  product_a
    ORDER BY  CASE  product_a
              WHEN  'DVD'     THEN  1
              WHEN  'Tape'     THEN  2
              WHEN  'Bluray'     THEN  3
           END
    ;Notice that the sub-query got_pairs is the same in both queries.
    Thanks for posting the CREATE TABLE and INSERT statements; that's very helpful!
    Edited by: Frank Kulash on May 29, 2011 4:05 PM
    Added Oracle 9 query.

  • Display two different column types in cross tab

    I am using Cross Tab template in crystal XI and I have to show two different column types one is of type int and other is of type string. Below is the format of the report
                                  AmountGiven             Amount Spent            Attended
    Mike                       5000                              3000                         Yes
    Steve                     200                                 200                           No
    Is there a way I can do this showing "yes" or "no" in the third column???
    Thanks...

    Hi
    If you are trying to show "yes" or "no" for a column value in a cross tab, then yes we can try using a formula for it.
    I would suggest you 2 ways that you can try at your end:
    1.
    a) Create a formula in the cross tab expert and write your condition.
    for eg: if Sum({Orders.Order amount}) > 5000 then "yes" else "no"
    b) Then select that formula in the summarized fields in cross tab expert and change the summary to MODE.
    c) You can see the "yes" and "no" Within the same box.
    2.
    a) Add a field to the colums in the cross tab expert.
    b) A column gets inserted in the cross tab.
    c) Right click the field and select format field.
    d) Go to Common tab and write a formula for the display string.
    e) Write the condition in that formula.
    f) You can see a new column with the expected values.
    Hope this helps you..
    Please revert incase of any queries.
    Regards
    Pradeep Hulke

  • Cross Tab report in details section

    Hi All
    I am new to Crystal Reports and have a few queries related to a cross tab report. I am trying to design a report as follows
    Rows: Cost elements
    Columns: 12 months,YTD and Total Year for Actuals & then 12 months,YTD and Total Year for Budgets
    Gruop By: Cost Centre
    For Example;
                                                           Actual                                            Budgets     
                                   Apr  May  June  July.....YTD  FY2010   Apr  May  June  July.....YTD  FY2010
    Manpower Cost
    Rent
    Total Cost
    1.  Since I need the above table for every individual cost centre, is it possible to group by Cost centre and then build a cross tab report in the details section?
    2. If not, is there any other way by which I can create the above table without using cross tab?
    3. For the YTD values, should it be calculated in the BW query (I am using BW queries as the datasource) or in Crystal Reports? and how?
    Thank you very much. I would appreciate your early response.
    Payal

    Hi
    Thanks for your inputs. Currently I have designed my report in the same way (group by cost centre & cross tab in group header section). However, I am still looking for a way to calculate YTD & Quarter values in Crystal using a formula. I am debating whether it should be calculated in BW or in Crystal.
    Thanks
    Payal

  • Top N sorting in a Cross Tab object

    I am looking for information on how to sort a cross tab object using a Top N filter.

    Hi Lee,
    In the cross tab report, just insert a chart, with in the data tab when you insert the data base available values then you can observe on change of record values and summary field values.
    In the record sort values we can give the sorting with the order level or Top N level.
    Let me know if you have any queries.
    Thanks,
    Naveen.

  • Re: Sum for two cross tabs

    Hi Gurus,
    I created two cross tab reports from two queries query 1 and query 2 .
    query 1 is division wise turnover and query 2 is plant wise. I used both cross tabs in single tab only. The requirement is i need to merge, so i removed the header for second cross tab. then the report will look like below
    >>>>>>(Months)>>>JAN-11>>>FEB-11>>>MAR-11>>>APR-11>>>MAY-11>>>......DEC-11
    Div/pla
    DIVISION1>>>>>>>1000>>>>>200>>>>>100>>>>>>500>>>>>>300>>>>>>.......700
    DIVISION>>>>>>>>2000>>>>>400>>>>>900>>>>>>500>>>>>>600>>>>>>.......300
    PLANT1>>>>>>>>>6000>>>>>340>>>>>140>>>>>>570>>>>>>380>>>>>>.......720
    PLANT2>>>>>>>>>4000>>>>>370>>>>>640>>>>>>870>>>>>>980>>>>>>.......820
    But i have a requiremnet to show the  sum of division and plant together which is as shown below
    >>>>>>(Months)>>>JAN-11>>>FEB-11>>>MAR-11>>>APR-11>>>MAY-11>>>......DEC-11
    Div/pla
    DIVISION1>>>>>>>1000>>>>>200>>>>>100>>>>>>500>>>>>>300>>>>>>.......700
    DIVISION>>>>>>>>2000>>>>>400>>>>>900>>>>>>500>>>>>>600>>>>>>.......300
    PLANT1>>>>>>>>>6000>>>>>340>>>>>140>>>>>>570>>>>>>380>>>>>>.......720
    PLANT2>>>>>>>>>4000>>>>>370>>>>>640>>>>>>870>>>>>>980>>>>>>.......820
    >>>>>>>>SUM>>>13000 >>>>>1310>>>>1780>>>2440>>>>>>2260>>>>>.....2540
    Since it's two cross tabs i couldn't able to get the sum.
    Guide me how can i achieve this in BOXI 3.1
    Thanks & Regards,
    Ranganath

    Hi thanks for your reply ,
    I already tried the way sum(CROSS TAB 1 )+SUM(CT 2) but the problem is its taking the whole sum(cross tab1 )
    for ex:
    DIVISION1>>>>>>>1000>>>>>200>>>>>100>>>>>>500>>>>>>300>>>>>>.......700
    DIVISION>>>>>>>>2000>>>>>400>>>>>900>>>>>>500>>>>>>600>>>>>>.......300
    sum----
    3000>>>>>600>>>>>1000>>>>1000>>>>>>900>>>>>>>>>1000
    PLANT1>>>>>>>>>6000>>>>>340>>>>>140>>>>>>570>>>>>>380>>>>>>.......720
    PLANT2>>>>>>>>>4000>>>>>370>>>>>640>>>>>>870>>>>>>980>>>>>>.......820
    >>>>>>>>SUM>>>17500 >>>>>8210>>>>8280>>>8940>>>>>>8860>>>>>.....9040
    here for division whole sum is 7500
    so for jan.2011 plants sum is 6000(Plant 1)4000(Plant 2)7500(all months of division) instead of 3000(division 1+divison 2) on jan 2011.
    thats is the problem i'm facing.
    Hope you understand my problem explanation  here.
    Regards,
    Ranganath

  • CY and LY in one cross tab

    Hi ,
    In one of the reports I need to show both current year revenue and last year revenue month wise in one cross tab.
    For this two dataproviders are built. one for current year revenue and other for last year revenue .
    Can any one help me how to display both the revenue in the same cross tab with current year month values in the horizantal header.
    Please find the cross tab structure to be in the report.
         Jan `11     Feb `11     Mar `11     Apr `11
    Current Year     $100      $200      $300      $400
    Last Year     $75      $56      $23      $89
    Data from Current Year Query     
    Month     Revenue
    Jan `10     $75
    Feb `10     $56
    Mar `10     $23
    Apr `10     $89
    Data from Last Year Query
    Month     Revenue
    Jan `11     $100
    Feb `11     $200
    Mar `11     $300
    Apr `11     $400

    Elio Javier Guzman Hernandez wrote:
    Hello Lavanya611:
    >
    > Are you using 1 or 2 queries to build the report???
    >
    > If you are using 1 single query  you should build this structure (using a Cross Tab template) to see your report as you need:
    >
    >
    >
    >                         |   =nameof( [month])  |
    > ____________________________________
    >   =nameof( [year] )     |      [Revenue]             |
    >
    >
    >
    > You should have something like this:
    >
    >
    >          |  Jan   |   Feb  |  Mar   | Apr  |
    > ________________________________
    >   2010    |  $75   | $56    | $23   |  89    |
    >   2011    | $100  | $ 200 | $300 | $400 |
    >
    >
    > If you are using 2 queries first you should merge dimensions year and month and discard Revenue from the second query and build the same structure that i just tell you.
    >
    > I hope I have understood your problem.
    >
    > Regards
    >
    > Edited by: Elio Javier Guzman Hernandez on Nov 10, 2011 4:52 PM
    Hi Elio Javier Guzman,
    We have using multiple quries.
    As we publish the Month and the Year on the header (Jan 2011).
    When the merger is happened with 2 quries it is combining them with months from CY and months from PY.
    As a result  when we are merging the 2 quries, we are getting 24 months rather than having 12 month from current Year.
         Jan-11     Feb-11     Mar-11     Apr-11     May-11     Jan-10     Feb-10     Mar-10     Apr-10     May-10
    CY     10     20     10     20     10                         
    PY                              10     20     10     20     10
    The exprected result is to be as below
         Jan-11     Feb-11     Mar-11     Apr-11     May-11
    CY     10     20     10     20     10
    PY     20     20     10     20     10
    Thanks,
    Zahur

  • Suppressing levels in cross tab.

    Hello All,
    I have a project requirenment for one of the client and currently using CR 2008 for creating dynamic reports based on a finance database for profitabilty Analysis. I have been using lot of Web-Elements functionality in my crystal application and its going good to an extent, the only issue i have been experiencing is the dynamic change of the cross tab data based on prompts.
    Its a 4 level application where in users are prompted to select a specific level outta the 4 levels, they can select either few or all. Now, the issue is, in my cross tab i have mentioned all the 4 levels in my row field and the data is displayed according to the users selection through prompts, it works fine. But however if user does not select level 3 or 4 or any one of them then the specific cross tab row is displayed empty. I have tried selecting the option suppress empty rows under customize tab but that doesnt seem to work.
    I want only those levels to be displayed which are selected by users and suppress the rest, the empty rows in cross tab looks kinda odd to see. I am unable to figure out the formula string for the same.
    Any help will be appreciated. Thank you

    Hi
    Cross tab is nothing but a tabular representation of data.
    It displays zero values only when there is no data for the combination of corresponding row and column.
    We can not suppress this however we can display some string like "No data for this" or something else as per requirement.
    For this, do the below:
    - Right click on the summary value field on the cross tab -> Format Field.
    - Under Common Tab, click on X-2 for Display string. This would open the formula editor.
    - Put the below formula there:
    if IsNull(summary database field) then "No data for here"
         else "" & currentfieldvalue;
    You can change the display string as per requirement.
    Hope this helps!!
    Regards
    Sourashree

  • "Can Grow" property on Cross-Tab object can not be unlock

    I am using Crystal Reports XI.  My report uses a Cross-Tab object via SQL server.  I am having problem making my data column (Field Row) to increase dynamically in height when my data size increases.  Since the "Can Grow" property in the Format Editor is locked, it would not let me set the "Can Grow" to true to enable this function.  How do I unlock the "Can Grow" function so I can set it to true?

    The only other option I can think of would be to build a virtual cross tab, but in many cases, especially when the number of 'column' values is dynamic, this is not possible.

  • 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.

Maybe you are looking for

  • Issue Finished Goods

    Hi All, For few finished goods we have not entered stock in our opening balance since we didnt ahev any stock for them. now the customer has returned some FG item which we have taken as sales return item. while trying to issue these items in the Bill

  • Missing iPad Wireless icon

    Why does my iPad's cellular LTE icon display when I'm on a wireless network, that connection confirmed by a checkmark next to my network list in Settings?

  • If after clearing history, I am still getting filled in suggestions in Firefox 3.6 user names using Mac OS 10.6, how can I eliminate the suggestions for users and searches?

    I made an error when I was filling in a user name. Firefox is continuing to offer this as a suggestion in a drop down menu after using Clear Recent History. I used Clear Recent History, tried restarting Firefox after clearing history, and reinstalled

  • Os 10.8.5 shutdown

    I have a iMac that is running 10.8.5 mountain lion it will occasionally shuts down unexpectedly. Need to unplug wait and the plug back in. Was told by a Genius Bar tech the problem may be with Mountain Lion. To me this seems like a hardware problem n

  • MySAP ERP

    Hi friends, I would like know the details about the mySAP ERP systems and the contents of the same.