Empty rows, Columns  in EPM reports

Thru the EPM new report creation ICON,  I am selecting rows and columns to create new report.
I am selecting nearly 20 accounts in account selection most of them are parent account.
However while displaying the report inbetween some of the accounts I need to leave empty rows and put some summation totals.
Is it possible to leave many blank lines in between some of the accounts? How to do it?
Similarly in the column I have selected time dimension and inbetween some months I need to put some local member formula.
Does the EPM report works like that? Or do I have to go for EPMretrievedata based  reports.
Appreciate inputs.

Please, search forum about static reports, I have explained this approach number of times.
Example:
Static report in BPC NW 10
Replacing dim values with derived values
Vadim

Similar Messages

  • Update empty row / column values

    here is the sample data
    Col_1 -- col_2-----col_3-------col_4------col_5------col_6
    9--------111---------45-----------21
    7--------877
    2--------456
    8--------765
    I am trying to update the col_3,col_4,col_5,col_6 like
    Col_1 -- col_2-----col_3-------col_4------col_5------col_6
    9--------111---------45-----------21--------4654------6534
    7--------877---------67-----------42
    2--------456---------845----------4563
    8--------765
    How to insert/update the col_3,Col_4,Col_5,col_6 by adding values in sequence, I want insert the values in 2nd row then 3rd row etc.
    how to select next empty row of the particular column without including the other column values in where condition.
    Using ROWNUM or ROWID it's possible selecting the next row of the particular column ?
    Thanks in advance.

    following query i use for something:
    with
    week1 as (select decap as decap_w1,desrvid as desrvid_w1 from drdiskspace where deweek = to_char(sysdate,'WW')-1),
    week2 as (select decap as decap_w2,desrvid as desrvid_w2 from drdiskspace where deweek = to_char(sysdate,'WW')-2),
    week3 as (select decap as decap_w3,desrvid as desrvid_w3 from drdiskspace where deweek = to_char(sysdate,'WW')-3),
    week4 as (select decap as decap_w4,desrvid as desrvid_w4 from drdiskspace where deweek = to_char(sysdate,'WW')-4),
    week5 as (select decap as decap_w5,desrvid as desrvid_w5 from drdiskspace where deweek = to_char(sysdate,'WW')-5),
    week6 as (select decap as decap_w6,desrvid as desrvid_w6 from drdiskspace where deweek = to_char(sysdate,'WW')-6),
    week7 as (select decap as decap_w7,desrvid as desrvid_w7 from drdiskspace where deweek = to_char(sysdate,'WW')-7),
    week8 as (select decap as decap_w8,desrvid as desrvid_w8 from drdiskspace where deweek = to_char(sysdate,'WW')-8),
    week9 as (select decap as decap_w9,desrvid as desrvid_w9 from drdiskspace where deweek = to_char(sysdate,'WW')-9),
    week10 as (select decap as decap_w10,desrvid as desrvid_w10 from drdiskspace where deweek = to_char(sysdate,'WW')-10)
    select desrvnaam || ' ' || desrvschijf, decap, decap_w1, decap_w2, decap_w3, decap_w4, decap_w5, decap_w6, decap_w7, decap_w8, decap_w9, decap_w10
    from drdiskspace, drserver, week1, week2, week3, week4, week5, week6, week7, week8, week9, week10
    where drdiskspace.deweek = to_char(sysdate,'WW')
    and drdiskspace.desrvid=drserver.desrvid
    and drdiskspace.desrvid=desrvid_w1
    and drdiskspace.desrvid=desrvid_w2
    and drdiskspace.desrvid=desrvid_w3
    and drdiskspace.desrvid=desrvid_w4
    and drdiskspace.desrvid=desrvid_w5
    and drdiskspace.desrvid=desrvid_w6
    and drdiskspace.desrvid=desrvid_w7
    and drdiskspace.desrvid=desrvid_w8
    and drdiskspace.desrvid=desrvid_w9
    and drdiskspace.desrvid=desrvid_w10
    and drdiskspace.desrvid=:P200_ZOEK;
    greatz,
    Jan Louis

  • Display null rows / columns in matrix report

    Hi,
    Is it possible to display any character ('0' for example) in a matrix report where the entire row or column show no value at all ?
    My matrix shows Row1 and Row2 with values but no Row3 at all like this:
    Column1 Column2 Column3
    Row1 value1 value2 value3
    Row2 value4 value5 value6
    But I would like it to show my rows 3 with '0's :
    Column1 Column2 Column3
    Row1 value1 value2 value3
    Row2 value4 value5 value6
    Row3 0 0 0
    Thank you,
    Denise

    Make your query return 0 with nvl(column, 0) and an outer join, plus some stuff to avoid a double outer join.
    E.g. a sales per product per city:
          City1   City2  City3
    Prod1   10     100    12
    Prod2   25     110   200
    Prod3    0       0     0Could be made like this:
    create table city (c_city  varchar2(10));
    create table prod (p_prod   varchar2(10));
    create table prod_sales (ps_city varchar2(10)
    , ps_prod varchar2(10)
    , ps_sales number);
    <.....insert some values, except voor Prod3 .....>
    SQL> select p_prod, c_city, nvl(ps_sales,0)
      2  from (select c_city, p_prod from city, prod)
      3  ,    prod_sales
      4  where ps_city(+) = c_city
      5  and   ps_prod(+) = p_prod
      6  order by 1,2 ;
    P_PROD     C_CITY     NVL(PS_SALES,0)
    Prod1      City1                   10
    Prod1      City2                  100
    Prod1      City3                   12
    Prod2      City1                   25
    Prod2      City2                  110
    Prod2      City3                  200
    Prod3      City1                    0
    Prod3      City2                    0
    Prod3      City3                    0

  • Zero suppression is set active for rows & columns - but find empty rows

    hi,
    In the query properties i set zero suppression active for all rows and columns, but in the workbook, when i execute the report i still find empty rows. i refreshed the query from the workbook, and have done everything, but still i find empty rows.
    Can anyone help me in this regard?
    thanks,
    rani

    Hi,
    you found empty rows in WorkBook, what about the Query Output ?
    please check the below: 
    Re: Suppressing result rows when KF values are zero?
    Hope this helps you
    Regards
    ReddY A

  • Issue with row/column text lengths in report painter

    Hi Gurus,
    I have created a report painter report with formatting of the row/column length text as medium, but for one FS item/GL Account the report when executed still picks up only the short text length. I am not sure how this can be resolved.
    Any ideas is appreciated.
    Regards
    Satish

    Applied OSS Note 360096 and it worked. Thanks for all your help.

  • Limitation of row and column in FR report

    Hi all,
    i want to know what is the maximum number of row and column that we can display in FR report.
    and is there any possibility to increase the number of row and column in FR reports,if yes then how?
    Thanks in advance.

    Hi Andy,
    I think your asking if this or something similar could be used to go to another page rather than as a popup? The answer is yes. since you have already done the decode in your query, you can just go to the Report Attributes tab (I'm using version 2.2.1.00.04) and click the edit button for the column. Then, you can simply go to the
    HTML Expression [Insert column value] text area and insert:
    <!--
    <b>#A#<b>
    This will give you everything that is in the column link section, but I find it easier to work with since it's all together (personal preference).
    I reread your post and realized that you wanted to pass the A as a value and not the summary value of the column. I simply removed the #'s. I think this should work. I also kept the summary value using the #A# as the link. I belive that you can copy and paste this into each column (replacing the A with the appropriate column header of course...).
    If I were doing this I might create a CASE statement in the query and evaluate for null before creating the link. Here is an example of using that approach:
    CASE WHEN "STATUS" = 'U' AND ("CREATEDBY"=:APP_USER OR :APP_USER='MY_USER')
    THEN ''
    || '<img src="#WORKSPACE_IMAGES#edit.gif" border="0" alt="Click here to Edit">'
    || ''
    ELSE ''
    END LINK,
    Neil

  • Freezing columns and rows in an Interactive Report

    version 3.2.1
    Hello,
    How can I freeze columns and/or rows in an Interactive Report so they don't scroll off the screen?
    Thanks,
    Joe

    In the header html, enter the following
    freeze(rownum=>1,degree=-100,scale=centigrade);

  • Require Maximum Rows & Columns to shown in report once generated....

    Hello,
    My client has a query that when a report is generated through Discoverer via the Oracle Self Service, it displays a limited set of rows and columns. The user has to click on the rows and column link (right above the displayed report) and then enter the values of how many rows or columns to exceed, to which then a whole report is refreshed displaying the desired data.
    The query my client has and wants to know is whether there is a possibility that the whole report, including maximum rows and columns, is displayed in one go, rather than clicking and setting up rows and column in every report again and again...??
    Thanks!

    Hi,
    I assume you talk about the discoverer viewer.
    In order to accomplish the user desire, the owner of the report should set once the columns and rows number to the max and save it like this.
    then every user will get the maximum number of rows (999) and columns.
    Tamir

  • Show row/column with empty dimension values.

    I have 2 columns where 1 column is dimension and 1 column is measure.  I need to hide the row when the dimension is empty.
    What I did is at the block I UN-TICK  "Show row/column with empty dimension values".  But it didnt works.
    Thanks.

    click on the block and add a filter with condition dimension isnotnull. this will eliminate the dimension rows with empty values.
    Thanks,
    karthik

  • [REPORT] : Help to arrange the row & column.

    Dearest my Collegues.
    I'm facing difficult in arranging of report.
    Straight to the point:
    I've data in 1 ODS like this.
    Key1     Key2      Flag    Supplier   
    K1           1            C        Nike
    K1           2            C        Reebok
    K1           3            C        Adidas
    K1           4            P        FILA
    K1           5            P        Othelo
    For key1, key2, flag, supplier are characteristic NOT KEY FIGURE.
    Can i make that report like this:
    <space><space>C<space>P
    Key1<space>Supplier<space>Supplier
    K1<space>Nike
    K1<space>Rebook          
    K1<space>Adidas
    K1<space><space>Fila
    K1<space><space>Othelo
    I need your guidance .. p/s ..
    I'm sorry if i use space with bracket 'coz i'm difficult to explain it; somehow this forum can't know my space (from keyboard).
    Hopefully, it still can help me to explain the problems well.
    Many Tks.
    Kind regards,
    Niel
    Message was edited by:
            Niel
    Message was edited by:
            Niel

    You have to use BEx Report Designer for this kind of formating intensive reports.
    What it allows you is to move the columns in the report around, re-arrange them left, right, top and down e.t.c.
    You can get more information in this section and consequent sub-sections
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/dd/cea14119eb9f09e10000000a155106/frameset.htm
    Regards
    Uday
    Assign points for helpful answers and get one point for urself.

  • EPM Report Query

    Hi Experts,
    I have a few queries on creating EPM report:
    1. Sometimes, when I create a report, the report did not start on the first line / row of the excel sheet even though my cursor is on the first cell (column A, row 1). The report will start at a few lines below and I can't remove the empty lines above. No page axis selection is selected. Why is it happening?
    2. The EPM context contains default selection. In my sheet options, I have selected "Remove Empty and Zeros Values". 
    When I put selections of the dimensions in the EPM pane, the report on what I have selected will be displayed. If my selections does not exist (empty values), I am expecting nothing will be displayed in my report. However, the default selections of EPM context is displayed. Some more, in the report, the line contains the EPM context data is being hide. I am expecting nothing as the default selections of EPM context does not exist too (empty values). It should not display as I have selected "Remove Empty and Zeros Values".
    Appreciate if anyone can provide some feedback.
    Thank you.
    Best regards,
    Ng

    1. No issues with first line (EPM SP17)
    2. Looks like it's by design - at least one column and one row of the report has to be present (even hidden).
    Vadim

  • How can I create an empty row on a #TempTable based on an input parameter

    So if my Line of Business is 'MC' or 'MG', I have to go over to Oracle and get its data accordingly. Then, when I create my final report result set, I think I'll want to UNION in that result set if my Parameter is 'MC' or 'MG'. I don't think I can UNION
    based on the value of the Parameter. So my thought process was to create an empty row on my #TempTable so when I UNION and my parameter is NOT 'MC' or 'MG' then it will have nothing to UNION in. My struggle is how do I create an empty row in my #TempTable
    if my parameter is NOT 'MC' or 'MG'
    If I am wwwaaayyy off here, please tell me so.
    This is my #TempTable Creation SQL...
    IF EXISTS
    (SELECT 1
    FROM [#TempTable_LineOfBusiness_Parameter]
    WHERE [#TempTable_LineOfBusiness_Parameter].[RESULT] IN ('MC','MG'))
    BEGIN
    SELECT *
    INTO [#TempTable_Market_Prominence_Member_Data]
    FROM OPENQUERY
    (RPDMHF,
    'SELECT HCFA_NAME_ORG.NAME_ID,
    HCFA_NAME_ORG.MEMBER_ID,
    HCFA_NAME_ORG.HIC_NUMBER,
    MEMBER.NAME_FIRST,
    MEMBER.NAME_LAST,
    HCFA_DATE.START_DATE,
    HCFA_DATE.END_DATE,
    HCFA_NAME_ORG.COUNTY_CODE,
    HCFA_NAME_ORG.PART_A_PAYMENT,
    HCFA_NAME_ORG.PART_B_PAYMENT,
    HCFA_NAME_ORG.STATUS,
    HCFA_NAME_ORG.ORG_ID,
    HCFA_NAME_ORG.PLAN,
    HCFA_NAME_ORG.ENROLL_DATE,
    HCFA_NAME_ORG.PBP_ID,
    HCFA_DATE.VALUE
    FROM SC_BASE.HCFA_DATE
    LEFT JOIN SC_BASE.HCFA_NAME_ORG
    ON HCFA_NAME_ORG.NAME_ID = HCFA_DATE.NAME_ID
    LEFT JOIN AMIOWN.MEMBER
    ON TRIM(MEMBER.MEMBER_NBR) = TRIM(HCFA_NAME_ORG.MEMBER_ID)
    WHERE HCFA_DATE.INDICATOR = ''plan''
    AND HCFA_DATE.START_DATE >= ''2015-01-01''
    END
    If I add an ELSE, it always comes back and tells me the #TempTable_Market_Prominence_Member_Data already exists. As if it's creating it regardless of the Top IF.
    Thanks for your review and am hopeful for a reply.

    Hi ITBobbyP,
    The error came back from your ELSE Statement most probably caused by the reason mentioned in Hoffmann's post.
    Regarding your requirement, I would suggest you CREATE the [#TempTable_Market_Prominence_Member_Data] explicitly.
    CREATE TABLE [#TempTable_Market_Prominence_Member_Data]
    NAME_ID INT,
    MEMBER_ID INT,
    HIC_NUMBER VARCHAR(99),
    NAME_FIRST VARCHAR(99),
    NAME_LAST VARCHAR(99),
    START_DATE DATE,
    END_DATE DATE,
    COUNTY_CODE VARCHAR(99),
    PART_A_PAYMENT MONEY,
    PART_B_PAYMENT MONEY,
    STATUS VARCHAR(99),
    ORG_ID INT,
    PALN VARCHAR(99),
    ENROLL_DATE VARCHAR(99),
    PBP_ID INT,
    VALUE INT
    IF EXISTS
    (SELECT 1
    FROM [#TempTable_LineOfBusiness_Parameter]
    WHERE [#TempTable_LineOfBusiness_Parameter].[RESULT] IN ('MC','MG'))
    BEGIN
    INSERT INTO [#TempTable_Market_Prominence_Member_Data]
    SELECT *
    FROM OPENQUERY
    (RPDMHF,
    'SELECT HCFA_NAME_ORG.NAME_ID,
    HCFA_NAME_ORG.MEMBER_ID,
    HCFA_NAME_ORG.HIC_NUMBER,
    MEMBER.NAME_FIRST,
    MEMBER.NAME_LAST,
    HCFA_DATE.START_DATE,
    HCFA_DATE.END_DATE,
    HCFA_NAME_ORG.COUNTY_CODE,
    HCFA_NAME_ORG.PART_A_PAYMENT,
    HCFA_NAME_ORG.PART_B_PAYMENT,
    HCFA_NAME_ORG.STATUS,
    HCFA_NAME_ORG.ORG_ID,
    HCFA_NAME_ORG.PLAN,
    HCFA_NAME_ORG.ENROLL_DATE,
    HCFA_NAME_ORG.PBP_ID,
    HCFA_DATE.VALUE
    FROM SC_BASE.HCFA_DATE
    LEFT JOIN SC_BASE.HCFA_NAME_ORG
    ON HCFA_NAME_ORG.NAME_ID = HCFA_DATE.NAME_ID
    LEFT JOIN AMIOWN.MEMBER
    ON TRIM(MEMBER.MEMBER_NBR) = TRIM(HCFA_NAME_ORG.MEMBER_ID)
    WHERE HCFA_DATE.INDICATOR = ''plan''
    AND HCFA_DATE.START_DATE >= ''2015-01-01''
    END
    Explicitly creating the temp table will offer below benefit in this case.
    The ELSE statement is no longer needed, if the no rows get inserted into that table, it has nothing to union an empty table.
    With the column datatype defined, you can avoid such conversion error
    SELECT NULL AS COL1,NULL AS COL2 INTO #T
    SELECT COL1,COL2 FROM #T
    UNION
    SELECT 1,'ABC'--Conversion failed when converting the varchar value 'ABC' to data type int.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Empty rows don't show

    Hello Experts!
    I have a crosstab, which contains Years on the left and some statstic values on the right for each Schools.  Since not all schools have data for each years.  My crosstab will skip some rows when no data have found for some years of the school.  But I want to show all rows even no data was found.
    Although I have checked all "YES" for "Show rows with empty measure....", "Show empty columns", "Show rows with empty dimension values", "Show empty columns", "Show rows with empty dimension values" and "Show when empty" in Edit Format - Display properties.
    The empty rows just won't show up.  Did I miss something?  Please help all experts.
    Thanks.

    Hi Jonathn,
    Have a look on the SAP note 1295827 - When unticked, the 'Show when empty' property for a table in a WebIntelligence report does not work as expected if the table contains null values.
    Symptom
    'Show when empty' property for a table does not work as expected in WebIntelligence report when it is unticked.
    If table contains null values, this does not work.
    Need to hide the table but it is always displayed.
    Reproducing the Issue
    Open Club.mdb & remove 'French Riviera' from Resort table. 
    Login to Infoview & create a new WebIntelligence report using Island Resorts.unv selecting Country and Resort objects. Insert condition on Country=France. Run query.
    Remove <Country> column from the table.
    Select the table and go to Properties.
    The option 'Show when empty' is ticked by default. Untick this -> The table is still displayed.
    WebIntelligence XI Release 2
    WebIntelligence XI 3.0 & 3.1
    Cause
    If this is unticked & the table contains null values, the table is still displayed. This is normal behaviour - this feature does not work with null values in a table.
    Resolution
    The 'Show when empty' functionality, when unticked, only hides the table when it is entirely empty, i.e. when no rows have been returned in the query. It is then only visible in 'Structure' mode.
    For hiding a row which is empty, untick the option/s 'Show rows with empty measures/dimensions'. But the entire row must be empty before it will be hidden by this feature.
    Make use of this for good report design if there are many tables/blocks within the report. If the tables are empty, it's best if they are hidden from view.
    I hope this will help.
    Regards,
    Hitesh

  • SSRS display empty rows

    Hi,
    We have a simple report like the following left side, because we use group by in query, now the empty rows will not show in report.
    Is there any way we can show all empty items from column B as the snapshot right side? Thank you.
    select columnA, columnB, sum(total1) as Total
    from mytable
    group by columnA, columnB

    That's not so much an SSRS issue as it is a SQL issue. It can be tough getting SSRS to display data that doesn't exist.
    You may be able to get it to work using a Matrix but my personal preference is to handle it in the SQL code itself. Something like the following should work for you...
    CREATE TABLE #temp (
    ColA CHAR(2),
    ColB CHAR(2),
    Amt INT
    INSERT #temp (ColA,ColB,Amt) VALUES
    ('A1','B1',10),
    ('A1','B1',10),
    ('A1','B2',25),
    ('A1','B2',5),
    ('A1','B3',10),
    ('A2','B1',20)
    -- SELECT * FROM #temp
    SELECT
    t0.ColA,
    t0.ColB,
    SUM(COALESCE(t.Amt, 0)) AS Total
    FROM
    #temp t
    FULL JOIN (
    SELECT
    t1.ColA,
    t2.ColB
    FROM (
    SELECT DISTINCT t1.ColA
    FROM #temp t1
    ) t1
    CROSS JOIN (
    SELECT DISTINCT t2.ColB
    FROM #temp t2
    ) t2
    ) t0
    ON t.ColA = t0.ColA
    AND t.ColB = t0.ColB
    GROUP BY
    t0.ColA,
    t0.ColB
    ORDER BY
    t0.ColA,
    t0.ColB
    Jason Long

  • Suppressing empty rows

    Hi everyone!!
    In my Excel Report I have 6 columns. Some of the rows are empty but in these empty rows one column "Goods Recepient" is represented by a #. I would like to supress the entire row. How could I do that? I need to submit this report urgently, so hope to get an immediate reply.
    Thanks.

    Select a key figure and create a condtion where Key Figure not equal to 0  so that query will retrieve the data which is having key figure value not equal to 0.
    Regs
    Gopi
    Assign points if it helps ...
    Message was edited by: Gopi

Maybe you are looking for

  • HT203905 When family organizer updates payment credit card, members of family still only see old card on file. Payment declines with no other options!

    When I wish to update an app or purchase an app on my iPhone, i get the message that Verification is required. next I am presented with entering the 4 digit security code for a credit card whose complete number is greyed out except last four digits.

  • IMac G5 (iSight) First Impressions

    Well, I got my iMac G5 (iSight) from Apple yesterday. It really looks unbelievable. I'm surprised at how they can get all that power into such an elegant look and design. Ok, here is what I think so far. When I got it out of the box, hooked it up in

  • Log miner doesn't show all transactions on a table

    I'm playing a little with log miner on oracle 11gR2 on a 32bit CentOS Linux install, but it looks like it's not showing me all DML on my test table. Am I doing something wrong? Hi, there's my test case: - Session #1, create table and insert first row

  • Can't Click Flash Display Settings on Mac

    Hello All, I need to Disable Hardware Acceleration in the Display Settings Dialog.  I right click, choose settings, but I cannot click anything.  Any Ideas? I have checked out the the thread on "Unable to click in flash player settings box" but nothi

  • Zigbee Wireless Boards - Do they work?

    Hey Archies, I have a question about Arch Linux and it's compatibility with Zigbee Wireless. I currently am dual booting windows because of the drivers for Zigbee which I need to develop for school. http://www.ti.com/tool/z-stack Is the Components. M