Group and Sum in Webi

Hi,
I have three objects Business Unit, Department and Revenue
I would like to group by Business Unit and Departement; sum of Revenue.
How to do this in report level?
Please let me know?
Thanks and Regards,
Manjunath N Jogin

Hi Pumpactionshotgun ,
I did same thing in webi but revenue field is diplaying all records.
It is not aggreagting (sum) based on Business Unit and Departement.
How to  do 'aggregation seting for Revenue in the universe'
I am waiting your replay.
Thanks and Regards,
Manjunath N Jogin

Similar Messages

  • Sql grouping and summing impossible?

    I want to create an sql query to sum up some data but i'm starting to think it is impossible with sql alone. The data i have are of the following form :
    TRAN_DT     TRAN_RS     DEBT     CRED
    10-Jan     701     100     0
    20-Jan     701     150     0
    21-Jan     701     250     0
    22-Jan     705     0     500
    23-Jan     571     100     0
    24-Jan     571     50     0
    25-Jan     701     50     0
    26-Jan     701     20     0
    27-Jan     705     0     300The data are ordered by TRAN_DT and then by TRAN_RS. Tha grouping and summing of data based on tran_rs but only when it changes. So in the table above i do not want to see all 3 first recods but only one with value DEBT the sum of those 3 i.e. 100+150+250=500. So the above table after grouping would be like the one below:
    TRAN_DT     TRAN_RS     DEBT     CRED
    21-Jan     701     500     0
    22-Jan     705     0     500
    24-Jan     571     150     0
    26-Jan     701     70     0
    27-Jan     705     0     300The TRAN_DT is the last value of the summed records. I undestand that the tran_dt may not be selectable. What i have tried so far is the following query:
    select tran_dt,
             tran_rs,
             sum(debt)over(partition by tran_rs order by tran_dt rows unbounded preceding),
             sum(cred)over(partition by tran_rs order by tran_dt rows unbounded preceding) from that_tableIs this even possible with sql alone, any thoughts?
    The report i am trying to create in BI Publisher.Maybe it is possible to group the data in the template and ask my question there?

    915218 wrote:
    Is this even possible with sql alone, any thoughts?It sure is...
    WITH that_table as (select to_date('10/01/2012', 'dd/mm/yyyy') tran_dt, 701 tran_rs, 100 debt, 0 cred from dual union all
                         select to_date('20/01/2012', 'dd/mm/yyyy') tran_dt, 701 tran_rs, 150 debt, 0 cred from dual union all
                         select to_date('21/01/2012', 'dd/mm/yyyy') tran_dt, 701 tran_rs, 250 debt, 0 cred from dual union all
                         select to_date('22/01/2012', 'dd/mm/yyyy') tran_dt, 705 tran_rs, 0 debt, 500 cred from dual union all
                         select to_date('23/01/2012', 'dd/mm/yyyy') tran_dt, 571 tran_rs, 100 debt, 0 cred from dual union all
                         select to_date('24/01/2012', 'dd/mm/yyyy') tran_dt, 571 tran_rs, 50 debt, 0 cred from dual union all
                         select to_date('25/01/2012', 'dd/mm/yyyy') tran_dt, 701 tran_rs, 50 debt, 0 cred from dual union all
                         select to_date('26/01/2012', 'dd/mm/yyyy') tran_dt, 701 tran_rs, 20 debt, 0 cred from dual union all
                         select to_date('27/01/2012', 'dd/mm/yyyy') tran_dt, 705 tran_rs, 0 debt, 300 cred from dual)
    , brk AS (
    SELECT     tran_dt,
            tran_rs,
         debt,
         cred,
            CASE WHEN Nvl (Lag (tran_rs) OVER (ORDER BY tran_dt, tran_rs), 0) != tran_rs THEN tran_rs || tran_dt END brk_tran_rs
      FROM that_table
    ), grp AS (
    SELECT     tran_dt,
            tran_rs,
             debt,
             cred,
            Last_Value (brk_tran_rs IGNORE NULLS) OVER  (ORDER BY tran_dt, tran_rs) grp_tran_rs
      FROM brk
    SELECT     Max (tran_dt),
            Max (tran_rs),
             Sum (debt),
             Sum (cred)
      FROM grp
    GROUP BY grp_tran_rs
    ORDER BY 1, 2
    Boneist
    MAX(TRAN_    TRAN_RS       DEBT       CRED
    21-JAN-12        701        500          0
    22-JAN-12        705          0        500
    24-JAN-12        571        150          0
    26-JAN-12        701         70          0
    27-JAN-12        705          0        300
    Me
    MAX(TRAN_ MAX(TRAN_RS)  SUM(DEBT)  SUM(CRED)
    21-JAN-12          701        500          0
    22-JAN-12          705          0        500
    24-JAN-12          571        150          0
    26-JAN-12          701         70          0
    27-JAN-12          705          0        300Edited by: BrendanP on 17-Feb-2012 04:05
    Test data courtesy of Boneist, and fixed bug.
    Edited by: BrendanP on 17-Feb-2012 04:29

  • LINQ Group and Sum table

    I can't figure how to group those records 
    EmpID
    ClientId
    HourIn
       HourOut
            Date
    TotalHours
    12345
    9999
    8:00 AM
    12:00 PM
    01/05/2015
    4
    12345
    9999
    1:00 PM
    3:00 PM
    01/05/2015
    2
    12345
    9999
    3:30 PM
    6:00 PM
    01/05/2015
    2.5
    12345
    9999
    8:00 AM
    5:00 PM
    01/06/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/07/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/08/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/09/2015
    9
    I want to group by date and sum total hours and hourin in the first and hour out is the last one. 
    FYI (date can be datetime) (eg i can make date to be (1/18/2014 12:00:00 AM)
    EmpID
    ClientId
    HourIn
    HourOut
    Date
    TotalHours
    12345
    9999
    8:00 AM
    6:00 PM
    01/05/2015
    8.5
    12345
    9999
    8:00 AM
    5:00 PM
    01/06/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/07/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/08/2015
    9
    12345
    9999
    8:00 AM
    5:00 PM
    01/09/2015
    9
    Thanks in advance

    Hope this helps..do a group by and then select ..change the below accordingly
    DataTable objtable = new DataTable();
    objtable.Columns.Add("EmpID", typeof(int)); objtable.Columns.Add("ClientId", typeof(int));
    objtable.Columns.Add("HourIn", typeof(DateTime)); objtable.Columns.Add("HourOut", typeof(DateTime));
    objtable.Columns.Add("Date", typeof(DateTime)); objtable.Columns.Add("TotalHours", typeof(double));
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/05/2015 8:00 AM"), Convert.ToDateTime("01/05/2015 12:00 PM"), Convert.ToDateTime("01/05/2015"), 4);
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/05/2015 1:00 PM"), Convert.ToDateTime("01/05/2015 3:00 PM"), Convert.ToDateTime("01/05/2015"), 2);
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/05/2015 3:30 PM"), Convert.ToDateTime("01/05/2015 6:00 PM"), Convert.ToDateTime("01/05/2015"), 2.5);
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/06/2015 8:00 AM"), Convert.ToDateTime("01/06/2015 5:00 PM"), Convert.ToDateTime("01/06/2015"), 9);
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/07/2015 8:00 AM"), Convert.ToDateTime("01/07/2015 5:00 PM"), Convert.ToDateTime("01/07/2015"), 9);
    objtable.Rows.Add(12345, 9999, Convert.ToDateTime("01/08/2015 8:00 AM"), Convert.ToDateTime("01/08/2015 5:00 PM"), Convert.ToDateTime("01/08/2015"), 9);
    objtable.AcceptChanges();
    var result = objtable.AsEnumerable().GroupBy(x => x.Field<DateTime>("Date")).Select(g => new
    empId = g.First().Field<int>("EmpID"),
    clientID = g.First().Field<int>("ClientId"),
    hoursIn = g.Min(e => e.Field<DateTime>("HourIn")),
    hourOut = g.Max(e => e.Field<DateTime>("HourOut")),
    totalhours = g.First().Field<double>("TotalHours")
    foreach (var row in result)
    Console.WriteLine("{0} {1} {2} {3} {4} ", row.empId,row.clientID, row.hoursIn.ToString("HH:mm tt"), row.hourOut.ToString("HH:mm tt"),row.totalhours);

  • Group and sort in webi report

    I have a requirement to group and sort in a report. Group should be based on id, sort based on time. Time sort should be the priority. Meaning, first criteria to sort is time, but if the id is repeated, time should be sorted for that id.
    e.g, If I have ids A,B,C and values are such that A - 9:15 AM, B - 9:00 AM, A - 10:00 AM, C - 9:30 AM.
    Requirement is as below
    B - 9:00 AM
    A - 9:15 AM
    A - 10:00 AM
    C - 9:30 AM
    If I apply sort on time without group on id, I am getting data in the below manner which is not correct.
    B - 9:00 AM
    A - 9:15 AM
    C - 9:30 AM
    A - 10:00 AM
    If I apply group first, I am not able to apply sort. Since the requirement is to show the least time first.
    Please advice.

    use the variable
    =Min([Time]) In ([ID])
    to sort. Then hide the column by reducing the width and making the font and background color as white.

  • Grouping and sum values in XI

    Hello,
    I 'm working with invoice and I have this source structure as XI input:
    Invoice
    -- |....
    -- |....
    -- |Item1
    |taxcode=01
    |Amount=12
    --|Item2
    |taxcode=08
    |Amount=10
    --|Item3
    |taxcode=01
    |Amount=24
    Now my scope is to map these fields to the IDOC segment E1EDP04 grouping by taxcode (MWSKZ taxcode)and putting the sum of the group amount (MWSBT amount).
    IDOC:
    --|...
    --|...
    --|E1EDP01
    |...
    |...
    |EIEDP04
    |MWSKZ=01
    |MWSBT=36
    |...
    --|E1EDP01
    |...
    |...
    |EIEDP04
    |MWSKZ=08
    |MWSBT=10
    |...
    How can I group by a field in XI?
    Thank you
    Corrado

    Hi Corrado,
    If You want to do it in graphical mapping then I will do it this way:
    1. sort by taxcode
    (taxcode) --> split by value (valuechanged) --> formatByExample (Amount, and splitted value) --> sum(amount) --> MWSBT
    I can send u a screenshot of something similar if u need.
    best regards
    Dawid

  • Select query with group and sum

    Friends I have a table which has a list of item that are sold in many provinces and their selling price.
    EMP_TABLE
    item_code
    item_desc
    item_province
    item_selling_price
    Now I want a query which a row containing
    distinct item code ,item desc,province ,sum of item_selling_price for Ontario,sum of item_selling_price for British Columbia,sum of item_selling_price for Quebec
    Can anyone please tell me how to do it.
    thx
    m

    Hello
    It's always usefull to provide some test data and create table scripts etc, but does this do what you're after?
    create table dt_test_t1
    (item_code                     varchar2(3),
    item_desc                    varchar2(10),
    item_province               varchar2(20),
    item_selling_price          number(3)
    ) tablespace av_datas;
    INSERT INTO dt_test_t1 VALUES('ABC','Item1','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item1','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item1','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item2','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item2','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item2','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item3','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item3','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item3','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item4','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item4','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item4','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item5','Province2',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item5','Province1',10);
    INSERT INTO dt_test_t1 VALUES('ABC','Item5','Province2',10);
    SQL> SELECT
      2     item_code,
      3     item_desc,
      4     SUM(DECODE(item_province,'Province1',item_selling_price,0)) province_1_total,
      5     SUM(DECODE(item_province,'Province2',item_selling_price,0)) province_2_total
      6  FROM
      7     dt_test_t1
      8  GROUP BY
      9     item_code,
    10     item_desc;
    ITE ITEM_DESC  PROVINCE_1_TOTAL PROVINCE_2_TOTAL
    ABC Item1                    10               20
    ABC Item2                    30                0
    ABC Item3                     0               30
    ABC Item4                    20               10
    ABC Item5                    10               20HTH
    David

  • Expression Grouping and Summing

    I am working on a report where I have an expression that gets the Max value of a field in the detail row of my report.  I have four levels of grouping that I then need this expression to sum.  The expression is: 
    =Max(IIF(LEFT(Fields!JobNum.Value,1)="S" AND Fields!Week1STol.Value<>0, CDBL(Fields!Week1STol.Value), 0))
    I am using Max, because I need a value from a result set that is one of the non-zero values from the result set.  They will all be the same, or 0, so if there is a different way to get the non-zero value without using an aggregate I can change my expression
    to do that, but I have not found a way to do that yet.  Now since I am grouping this, and as each group rolls up I need the sum of the max values in the subgroup.  When I get is the Max value of the new group.
    I have tried various ways to try and get this to sum.  I have tried creating total rows, added custom code to collect running totals, etc., I have also tried wrapping the whole thing in a SUM aggregate, and that will work in the detail, but will not
    roll up into the groupings.
    Any help as to how this can be done will be greatly appreciated.
    Thank you,
    Chad 

    Ok, after continuing to search the internet I finally found the extra piece that I was missing that gave me the results I needed. The new expression looks like this:
    =runningvalue(Sum(Max(IIF(LEFT(Fields!JobNum.Value,1)="S" AND Fields!Week1STol.Value<>0, CDBL(Fields!Week1STol.Value), 0),"JobItem"),"JobItem"),SUM, "JobItem")
    In this I wrapped the original expression of Max in both a Sum and a runningvalue both at the JobItem level to get this rollup value. Now when I open the grouping I get the correct running value at each level.
    What this really gives to me is a running total at each of four groupings, even with a "max" value at the detail level. This also allows me to total a max value inline on the report, without needing a hidden row, or report footer.
    Thank you to everyone who looked at this, I hope it helps someone else. If this answer is not clear enough, please don't hesitate to add to the comments and I will try to clarify.
    Thank you, Chad

  • How to Group and Sum rtf elements

    Dear Friends,
    I am having limited knowledge of XML so looking for your help
    I am trying to create external template for Bill Presentment Architecture which is in .rtf. Template is having 3 section Invoice header, Lines and Tax summary.
    Invoice Header and line section is ok, but facing some issues with Tax section.
    LINE SECTION
    LINE_ID     ITEM     RATE     QTY     BASE_AMT     TAX_RATE     TAX_AMT     TOTAL_AMT
    1     P0001     20     10     200     21%     42     242
    3     P0003     40     30     1200     21%     252     1452
    4     P0004     20     100     2000     10%     420     2200
    5     P0005     50     10     500     10%     105     550
    2     P0002     50     20     1000     6%     210     1060
    EXPECTED RESULT IN TAX SUMMARY SECTION WHICH I AM LOOKING FOR
    TAX RATE           BASE_AMT          TAX_AMT          TOTAL_AMT
    21%          1400          294          1694
    10%          2500          525          2750
    6%          1000          210          1060
    Looking for your help, much appriciated.
    Regards,
    Jay
    Edited by: 992820 on Mar 9, 2013 5:20 AM

    >
    Tax Code Taxable amount
    VAT 6% 1200
    VAT 6% 1400
    VAT 7% 1000
    VAT 7% 2000
    I used you code
    <?for-each-group:LINE;./tax_code?> G tag
    and getting following result
    VAT 6% 1200
    VAT 7% 1000
    >
    because you have loop by tax_code and no loop and no aggregation function (e.g. sum) for amount, so amount will be from first row
    try add sum function for amount
    also http://docs.oracle.com/cd/E18727_01/doc.121/e13532/T429876T431325.htm#I_bx2Dcontent
    Summary Lines: Check this box if you want to display summarized transaction lines. Grouped lines are presented in the Lines and Tax area of the primary bill page.so it's may be not template problem but some settings?

  • Group and Sum/Average

    Hello.
    I have an excel structure here, this data is extracted from our company's software. The record was recorded from Dec 5, 2013 to Dec 11, 2013 
    Job   Operator
    Added
    Job Opened
    Job Revenue Recognition Date
    Shipment ID
    Joebeth Cañete
    05-Dec-13
    19-Dec-13
    IMM
    S00038408
    Joebeth Cañete
    05-Dec-13
    19-Dec-13
    IMM
    S00038412
    Joebeth Cañete
    05-Dec-13
    19-Dec-13
    IMM
    S00038414
    Joebeth Cañete
    05-Dec-13
    10-Dec-13
    IMM
    S00038440
    Sharlah Faye Solomon
    09-Dec-13
    09-Dec-13
    IMM
    S00038501
    Rachel Rosales
    09-Dec-13
    09-Dec-13
    IMM
    S00038502
    Sharlah Faye Solomon
    09-Dec-13
    09-Dec-13
    IMM
    S00038503
    Sharlah Faye Solomon
    09-Dec-13
    09-Dec-13
    IMM
    S00038504
    Sharlah Faye Solomon
    09-Dec-13
    09-Dec-13
    IMM
    S00038506
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038508
    May Jane Herrera
    09-Dec-13
    09-Dec-13
    IMM
    S00038509
    Joebeth Cañete
    09-Dec-13
    17-Dec-13
    IMM
    S00038510
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038512
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038513
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038514
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038515
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038516
    Sheena Dagandan
    09-Dec-13
    09-Dec-13
    IMM
    S00038518
    Joebeth Cañete
    10-Dec-13
    10-Dec-13
    IMM
    S00038523
    Sharlah Faye Solomon
    10-Dec-13
    10-Dec-13
    IMM
    S00038524
    May Jane Herrera
    10-Dec-13
    10-Dec-13
    IMM
    S00038525
    May Jane Herrera
    10-Dec-13
    10-Dec-13
    IMM
    S00038526
    Rachel Rosales
    10-Dec-13
    10-Dec-13
    IMM
    S00038528
    May Jane Herrera
    10-Dec-13
    10-Dec-13
    IMM
    S00038530
    May Jane Herrera
    10-Dec-13
    10-Dec-13
    IMM
    S00038531
    May Jane Herrera
    10-Dec-13
    10-Dec-13
    IMM
    S00038532
    Joebeth Cañete
    10-Dec-13
    10-Dec-13
    IMM
    S00038533
    Rachel Rosales
    10-Dec-13
    10-Dec-13
    IMM
    S00038534
    Sharlah Faye Solomon
    11-Dec-13
    11-Dec-13
    IMM
    S00038541
    Sharlah Faye Solomon
    11-Dec-13
    11-Dec-13
    IMM
    S00038542
    Sharlah Faye Solomon
    11-Dec-13
    11-Dec-13
    IMM
    S00038543
    Sharlah Faye Solomon
    11-Dec-13
    11-Dec-13
    IMM
    S00038544
    May Jane Herrera
    11-Dec-13
    11-Dec-13
    IMM
    S00038548
    May Jane Herrera
    11-Dec-13
    11-Dec-13
    IMM
    S00038549
    Rachel Rosales
    11-Dec-13
    11-Dec-13
    IMM
    S00038554
    Rachel Rosales
    11-Dec-13
    11-Dec-13
    IMM
    S00038555
    Rachel Rosales
    11-Dec-13
    11-Dec-13
    IMM
    S00038557
    Rachel Rosales
    11-Dec-13
    11-Dec-13
    IMM
    S00038558
    Now, my boss wants to have a matrix like this.
    Job Operator      Added      Job Opened        Shipment ID
    Employee A
    Total for (n) weeks [of Employee A]
    Average Shipment Daily: 
    Average Shipment Weekly:
    Employee B
    Total for (n) weeks [of Employee B]
    Average Shipment Daily: 
    Average Shipment Weekly:
    Inshort, he wants to group the records by Job Operator and get the average number of shipments daily and weekly. Is it possible to do this job?

    What' the define of the 'Week' you mentioned?
    It would be benefit for us to find the solution if you can provide the output you want.
    E.g..
    Job     Operator
    Total   for (n) weeks 
    Average   Shipment Daily
    Average Shipment Weekly
    Joebeth Cañete
    2
    1
    3.5
    But in any case, you can try to create a pivot table to analyze the data. 

  • Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount 28

    Post Author: tadj188#
    CA Forum: Formula
    Needed: Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount > 28
    Background:
    1) Report SQL is created with unions to have detail lines continue on a page, until it reaches page footer or report footer, rather than using  subreports.    A subreport report is now essentially a group1a, group1b, etc. (containing column headers and other data within the the report    with their respective detail lines).  I had multiple subreports and each subreport became one union.
    Created and tested, already:
    1) I have calculated @TotalLineForEachOfTheSameGroup, now I need to sum of the individual same group totals to get the total line count on a page.
    Issue:
    1) I need this to create break on a certain line before, it dribbles in to a pre-printed area.
    Other Ideas Appreciated:
    1) Groups/detail lines break inconveniently(dribble) into the pre-printed area, looking for alternatives for above situation.
    Thank you.
    Tadj

    export all image of each page try like this
    var myDoc = app.activeDocument;
    var myFolder = myDoc.filePath;
    var myImage = myDoc.allGraphics;
    for (var i=0; myImage.length>i; i++){
        app.select(myImage[i]);
        var MyImageNmae  = myImage[i].itemLink.name;
        app.jpegExportPreferences.jpegQuality = JPEGOptionsQuality.high;
        app.jpegExportPreferences.exportResolution = 300;
           app.selection[0].exportFile(ExportFormat.JPG, File(myFolder+"/"+MyImageNmae+".JPEG"), false);
        alert(myImage[i].itemLink.name)

  • Catalogs, code groups and codes not available in service order in Web UI

    Hi,
    I have created and maintained a subject profile for the service orders that i am using for my business scenarios. The same is visible under the objects tab in transaction data of the service order business transaction in the SAP GUI.
    However the same are not visible anywhere in the Web UI (they are not available in the list of available fields as well in BSP_WD_CMPWB for BT116H_SRVO).
    Can some1 pls advice me with the steps so as to make the catalogs, code groups and codes in my service orders available in the Web UI screen as well.
    Will really appreciate if detailed steps are provided since I am new to Web UI technology.
    Warm regards,
    DP

    Deepak,
    I'm 99% sure (although dont quote me as I dont have a developer key so I cant finish my testing) that you're missing the context Nodes - so although you have the assignment block yuo have no link between the code set and the service order header.  You havent referenced them in your comments on this post in any case. 
    Try this:
    Go into BSP_WD_CMPWB
    In the Browser component Structure open folder Component > Views
    Double-click BT116H_SRVO/DetailsOV and in the structure expand to BT116H_SRVO/DetailsOV > BT116H_SRVO/DetailsOV > View Controller  > DetailsOV.do > Context
    Right-click on folder Context Node and click Create
    Follow through the wizard defining a Z context Node (e.g. ZBTSubject) and a Model Node of BOL Entity BTSubject
    Define any Dependencies etc you may wish to have and so on (most of the wizard is optional)
    Repeat the same for the BOL Entity BTSubjectSet
    Now go back in and see if your values are populating.  I'm not a developer (and never have been), so I cant guarantee this will work as I dont have a developer key to test this, but I am quite sure that this needs to be done for you to get your values populating.
    Good luck, Merry Christmas and a Happy New Year (& please award points if useful!)
    Andrew Griffin.

  • Difference between Admin Groups and Analytics Web Groups

    Hi All,
    Can anyone tell me what is the difference between the user Groups we can define in Siebel Analytic Administration Tools -RPD and Siebel Analytics Web Groups?
    Also what is the relationships between them? In my environment I'm getting sharp difference between these groups.
    Thanks for reading.
    Sudipta

    Hi Sudipta,
    Please find the below link,
    Security in OBIEE
    Thanks,
    Vino

  • Uninstall IE and set another web browser such as Chrome and FireFox as default using Group Policy

    Hi there,
    Please can anyone instruct me on how to uninstall IE and set another web browser such as Chrome and FireFox as default using Group Policy. Your help would be much appreciated.
    Kind regards,
    RocknRollTim
    P.S. I was redirected by a forum user off the Microsoft Community forum.

    IE can't be uninstalled.  It's part of the operating system and cannot be removed.  You can hide the icon but the engine is still on the machine and still must be updated.
    This is a topic best suited for a Group policy forum. 
    https://social.technet.microsoft.com/Forums/en
    US/home?forum=winserverGP
    Step one is to install the Chrome ADMX templates - see the link below for more detais:
    Configuring Google Chrome via Group Policy | Jack Stromberg:
    http://jackstromberg.com/2013/08/configuring-google-chrome-via-group-policy/
    Of the two browsers, my personal preference is Chrome over Firefox.  Firefox's add in model is too prone to developer insecurity.
    My blog
    Thanks Justin Gu for marking this as the proposed answer.
    Thank you,
    RocknRollTim

  • Web groups and corresponding users

    Hi All,
    just want to know if there is a way to get the list of webcat groups and corresponding users in a report/excel sheet?
    I know we can create reports using catalog manager but they don't have users/ groups fields in it..
    Let me know your thoughts!
    Regards,
    Venkata

    Hey Turribeach,
    I have been following your posts and I know that you don't like giving step by step instructions.
    Is there a similar kind of example in any of the blogs? I searched in google and came across venkat Krishna blog and one other blog.
    but it was not explained that well. I am a newbie to java and .net as well. So, i am having some trouble implementing this.
    Can you please guide me in a brief way? Thanks for your help.
    Regards,
    Venkata.

  • A better way to differentiate positive vs. negative numbers and sum them ?

    Hi, I wonder if there is a better or easier way to differentiate the positive numbers from negative ones and sum them respectively?
    I come up with below:
    create table t1 (num number, id varchar2(3));
    insert into t1 values  (-100, 1);
    insert into t1 values (50, 2);
    insert into t1 values  (-10, 3);
    insert into t1 values  (-20, 4);
    insert into t1 values  (50, 5);
    insert into t1 values  (60, 6);
    select sum(decode(sign(num), 1, num, 0)) plus, sum(decode (sign(num), -1, num, 0)) minu from t1;
    PLUS   MINU
    160     -130Any suggestion would be appreciated! Thanks

    if there is a better or easier way to differentiate the positive numbers from negative ones and sum them respectively?Maybe you want them in different rows than in different columns:
    SQL> select sign(num), sum(num) from t1 group by sign(num)
    SIGN(NUM)   SUM(NUM)
             1        160
            -1       -130
    2 rows selected.?

Maybe you are looking for

  • PSU faulty...???

    Ok, I finally have enough cash to purchase a PSU. But to make sure it's the PSU that is causing this problem I will ask. What happens is: that when I load up large files, pull up Paint Shop Pro, multiple web pages or other programs I notice my fans s

  • AC adapter has a slight split on new Toshiba unit

    Hi I just received my new Toshiba today. However I have just noticed that on the AC adapter (the end that connects to the laptop) has a slight split in it. This exposes the wires inside. What would the best thing to do at this stage? Thanks in advanc

  • Missing everything in the " Property " window

    So, ok I want to get my " Property" window with the RGB and everything else in order to be able to finish what I am doing, and so I want to turn that grey sand from the image in from to be alike the brown sand in the back, and I get the window just a

  • Can I get a Read Receipt with Mail, like in Outlook?

    Can I get a Read Receipt with Mail, like in Outlook? W.W.

  • How would you write a code to automate this??

    Hi team, Still trying to improve my coding.. So I have got all of these buttons... how would I go about coding so I dont have this function repeated 100 times?? Cheers, Sub e.g. GSmain.gsshape.gss1.gssr.gssr1.addEventListener(MouseEvent.CLICK, page2g