EPMCOPYRANGE displays formulas outside the report on expanding

Hi Experts,
I am facing issue with EPMCOPYRANGE function as follows:
I have an EPMCOPYRANGE function with certain formulas and save comment in Column M, N, O
When i execute the report this function works fine (Example: it expands for 100 rows with correct calculations)
When i refresh it again for a lesser data (Example: with data upto 50 rows) the rest of the 50 cells still contains the formula from previous EPM COPYRANGE and i get error as #REF
Same is the case when i run the report for a period with no data, i can still see the formulas in the cells in column M, N, O
is there any settings to be maintained for EPMCOPYRANGE function which i am missing?
Regards,
Shweta Salpe

Hi Vadim,
Here, when i select period 1 and refresh the report the report has 400 rows populated. With Variance ($) and Variance (%) as caluclated members through EPMCOPYRANGE function.
When i refresh the report for period 2 the report has rows till 327 and the rest of the rows 328 to 400 still contains the formula for variance but since there are no refrence values it shows as #REF.
When i refresh the report again for period 3 it will have 450 rows and when i go back to period 2 now, the rows 327 to 450 will contain unwanted formula in the variance column.
Thanks,
Shweta Salpe

Similar Messages

  • How can I get the date and time and display it on the report main page?

    Gurus,
    How can I get the date and time and display it on the report main page?
    Thanks!

    Hello,
    You can create a Formula Colum returning a date :
    function CF_1Formula return Date is
    begin
    RETURN(SYSDATE);
    end;
    Put a Field in the Layout having this formula column as source .
    Regards

  • The number of display columns in the report reached the limit. Help!!!

    Hello Everyone,
    This might be dumb question. But why do get this error with a IR report? and what is the solution for this. Please help me with this.
    Error
    The number of display columns in the report reached the limit. Please click Select Columns under Actions menu to minimize the report display column list.
    Oh.. And also i have a blob column.. if the format is not given, then the table is fine.. but happen to get this error only when the blob download format is given.
    Thanks and regards
    John
    Edited by: JB on Mar 30, 2012 11:08 AM

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • The number of display columns in the report reached the limit" Interactive Report

    I get the error message of "The number of display columns in the report reached the limit" when trying to display less than 100 (100 is limit) columns when an aggregate has been created.   This does not happen when an aggregate has not been added to the IR report.  It seems to happen because I have a control break on as well.  When I turn off the control break it works but is not the result that we want.  Interesting enough, if I filter the results down to 500 rows it works just fine.  Does oracle treat aggregates as columns!?  This is a really odd issue that I really need to clear up.
    Oracle 11g
    apex 4.1.0.33
    Thanks in advance,
    Shawn.

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • Change/View formula in the report ?

    Hi SDNer's,
    Is it possible for the user to view the formula used for a calculation in the report ?
    Any close workarounds? What if the user wants even to change the formula from the report ?
    Please share your thoughts.....any inputs wud really help !!
    Envi - Netweaver 7.0, BEx.

    Hi Werner,
    I have seen that feature and that wouldn't really help us. I was looking for a way out for the user to change the formula in the query ( w/o going to query though ), like change A0.68 to A0.75  from report itself.
    Thankyou though !!

  • Dynamically fetch data from database and display it in the report

    Hi,
    We have a requirement in developing a report which needs us to dynamically fetch data from the database and display it in the report.
    We have a column called WORKER in the report.
    For each worker there is a measure(PSA) associated with it.
    In the report we have to display both the WORKER and the PSA column.
    What we want is, when we display the list of the workers, the corresponding workerid_id of the worker will be passed and the value of his PSA will be fetched from the database and displayed in the report.
    Or anything similar to this.
    We also have drill applied on this WORKER column. So after any drill up or drill down also the value for PSA should change.
    Is there any way of doing this?
    Please help if possible.
    Thanks,

    hi,
    data : count type i value 0.
    data : Begin of itab occurs 0 ,
    plan_version like hrhap-plan_version,
    APPRAISAL_ID like hrhap-APPRAISAL_ID,
    AP_START_DATE like hrhap-AP_START_DATE,
    AP_END_DATE like hrhap-AP_END_DATE,
    AP_STATUS like hrhap-AP_STATUS,
    AP_STATUS_SUB like hrhap-AP_STATUS_SUB,
    OBJ_DATE_SET like hrhap-OBJ_DATE_SET,
    REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,
    AP_DATE_SET like hrhap-AP_DATE_SET,
    AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,
    AP_DATE_LATEST like hrhap-AP_DATE_LATEST,
    CHANGE_DATE like hrhap-CHANGE_DATE,
    CHANGE_TIME like hrhap-CHANGE_TIME,
    CHANGE_USER like hrhap-CHANGE_USER,
    end of itab.
    <b>select * from hrhap into corresponding fields of table itab.</b>
    loop at itab.
    write :/ itab-plan_version under 'plan_version',
    itab-appraisal_id under 'Appraisal Id',
    itab-AP_START_DATE under 'Start Date',
    itab-AP_END_DATE under 'End date',
    itab-AP_STATUS under 'Status',
    itab-AP_STATUS_SUB under 'Substatus',
    itab-OBJ_DATE_SET under 'Objective setting date',
    itab-REVIEW_DATE_SET under 'Review date set',
    itab-AP_DATE_SET under 'appraisal date',
    itab-AP_DATE_EARLIEST under 'Earliest appraisal date',
    itab-AP_DATE_LATEST under 'Latest Appraisal date',
    itab-CHANGE_DATE under 'Change Date',
    itab-CHANGE_TIME under 'change time',
    itab-CHANGE_user under 'change user'.
    count = count + 1.
    endloop.
    write : 'No of records' ,count.
    rgds
    anver
    if hlped mark points.

  • To display icons in the report

    Hi All,
    I am Building a report transport request tracking.....in my master data....i have an infoobject :'import status of a request'....in which symbols are stored like truck symbol,arrow symbol,red error symbol,green symbol(means successfull) etc...and their corresponding texts.....but when i am seeing the output of the report text is coming and when i am changing it to key...instead of displaying the symbol something else is coming....for ex ---green symbol - @5b@ red error symbol-@5c@  etc.....then i found out that in SAP these symbols are stored internally in this way only.....so i guess when SAP is trying to send the data to excel...it not able to interpret what sap system interprets internally .....
    is there any way i can display those symbols in my report ?
    Regards,
    Deadlocks

    I raised a post about replacing text and/or keys with an image file about a year ago. As far as I know there is no way to get BEx to do this for a dynamic list (i.e. where the data in the rows / columns is not always on the same row / column).
    Try the following:
    Replacing text descriptions with an image file
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0a89464-f697-2910-2ba6-9877e3088954
    /people/dinesh.mukundu/blog/2007/05/23/bi-70-bex-macros-for-formatted-reports-at-sap-teched-2007-las-vegas
    Good luck and, if you are successful, I would be very keen to see how.

  • Garbage displayed while running the report in browser using report server

    We are facing problem in displaying the Arabic text from the Report Server.
    We have Digital Server running Tru64 4.0f unix. We have two similiar servers, both are
    clustered. We have Report Server(6i) running in one machine and the Database(8.1.7) running
    in the other.
    When we tried the reports having only English text it is working fine. We need Arabic text
    also in the report. The Arabic text are coming as ?????? . We tried setting the NLS_LANG
    environment to AMERICAN_AMERICA.AR8MSWIN1256 and changed the Tk2Motif.rgb to take this
    character set. Then we get the error REP 1352 - The font is not supported by the NLS_LANG.
    Then we tried the various NLS_LANG environment AMERICAN_AMERICA.AR8ISO8859P6, ARABIC_SAUDI
    ARABIA.AR8MSWIN1256 and ARABIC_SAUDI ARABIA.AR8ISO8859P6, in all the cases the report is
    just hanging. If We unset the NLS_LANG and the Tk2Motif.rgb the english part of the reports
    are coming alright, still the arabic is coming ??????.
    null

    hello,
    where does it display the ???????s. it seems that the client, you are using to display the output does not have the right font-sets installed.
    regards,
    the oracle reports team

  • Place Holder values are not displaying when calling the report

    Hi,
    I have a Place holder column in my report and i am assigning the values in a formula column. When i run the report from report builder place holder column is showing the value. But when i deploy the same in application server and i try to invoke from a form it is not the value of that place holder column. Why is this happening? Please, help me in resolving the same.
    Thanks & Rgds,
    M T

    Yes Gayatri. You are right. When i run the report from report builder it is working perfectly. The same report i deployed in application server and invoking from a form report is not showing the values for place holder columns.
    Why is this happening?
    How to resolve it?

  • Currency display issue in the report

    Hello Experts,
    I am facing an issue with the currency type CLP(Chilian Peso).
    It  is noted that  the CLP currency doesn't use decimals.
    In BW reports the values in Local Currency are not OK.
    For example , the right value is 150.755 CLP in R3 side But in the BW report the value is 15.075.500, 00 CLP which is misleading.
    Could any one help me how to solve this issue.
    In TCURX the following settings are maintained
    currency type    decimal
    CLP                       0
    Regards

    Hi Nivas,
    I think following things are happening.
    u2022     Updating The Amount Value into BW data target.
    When we load the data into BW having amount field in it ,it checks for the TCURX table for the currency entry.
    If the currency entry is present in TCURX table it divides the amount by 10**(2-CURRDEC entry in TCURX table)).
    u2022     Displaying the amount into BEx reports.
    The exactly converse happens while displaying such values in the report output,The amount values will be multiplied by 10**(2-(CURRDEC entry in TCURX table)) while diplaying the report output.
    Please check below thread,
    Here is the link for your reference:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/600aa67b-c348-2b10-f690-aaa81d12ec6a
    Regards,
    Deepak Chavan.
    Edited by: Deepak Chavan on Aug 22, 2008 4:30 AM

  • The page cannot be displayed while running the report with web link

    Hello,
    I tried to run the report using a web link similar:
    http://hostname/reports/rwservlet?report=WRFTCKL.rdf&userid=use/pass@datbase&desformat=pdf&destype=CACHE&paramform=yes
    I am able to see the parameter form, but after I entered some parameter and submit, I got an error as:
    The page cannot be displayed.
    But if I run it with the paramform=no and attached the parameter/value pair at the end of the link, the report will show on the web.
    Anyone knows what is wrong?
    Thanks.

    try this sample report from
    http://www.alexyscorp.com/products.htm
    (Download the Forms Reports Integration based on run_report_object (FMB,RDF) )

  • Add columns in DataGridView And display it in the report Viewer at RunTime

    Hello Everyone , this is my first participation here, I am civil Engineer and I have a Question 
    I created dataGridViewer connected to a database , when I change the records and reopen the application the changed are saved However , I let the user to add/delete columns during the runtime (by using sql command) ,even though those columns are saved and
    appear at datagridviewer 
    The reported Viewer (which i designed using wizard) is not showing these columns
    what should i do , I have been trying to solve this for a week ! could it be a year ? !  
    I am using c# visual studio 2012 

    Hi Azzam,
    According to your description, you want to display changed columns in ReportViewer control. Right?
    In Reporting Services, when we retrieve the data, the query or stored procedure will only execute one time. So during runtime, the data in a report will not change. So we can't display the changed columns in report during runtime. However, we can set the
    Auto-refresh properties for report so that the report can refresh every X seconds. This is the most effective workaround. Please refer to links below:
    SSRS report auto refresh
    Automatically refreshing your SQL Reporting Services reports with the AutoRefresh element
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Display parameters in the report....

    Hi friends,
    I have one requirement to show up the parameters the user has selected in the 'report customization form' in the report .Any thoughts pl help..I know it is possible in dynamic pages but i never tried in the report ...pl help
    Vishnu singireddy

    You can try something in the additional PL/SQL section..
    If you are running it as portlet:
    htp.prn( <portal_schema>.wwv_name_value.get_string( l_arg_names,
    l_arg_values,p_reference_path|| '.<parameter_name>');
    If you are running in Normal Full Page Mode
    htp.prn( <portal_schema>.wwv_name_value.get_string( l_arg_names,
    l_arg_values,'<parameter_name>');
    e.g.
    htp.prn(portal30.wwv_name_value.get_string( l_arg_names,
    l_arg_values,p_reference_path|| '.department');
    Thanx,
    Chetan.

  • Displaying % symbol in the report

    Hi Experts,
    Can anyone tell me how do I prefix % in my report.
    I have a column which does a calculation
    Total Completed Call/ Total calls created *100.
    The value i get is in number, which i want to display along with percentage %.
    Please help.
    Thanks

    Hi AHMED,
    at query designer, you can achive this by creating new formula or Calculated Key figure.
    at columns, rifght click on structure -> New formula -> edit mode and
    double click on KF (Total Completed Call), Under Operations  then expand percantage fucntions select Percentage Share  %A then double click on KF (Total calls created)
    formula looks Like this 'Total Completed Call ' %A 'Total calls created '
    Best Regards.

  • Display issue in the report.

    Hi all,
             I have 4 fields in my report which are compunded by Plant, in my query I'm alread filtering on this plant, but still the coumpounded field is showing up in those fields in the results section. Your input will be greatly appreciated.
    Advance thanks.

    Hi Heera,
        I dont think you can hide plant if it is compounded with a characteristic during reporting.  Compounding itself is one way of identifying the uniqueness of the characteristic during reporting.  To maintain the uniqueness of the record the characteristic with compounded value is displayed.  Hope this helps you.
    Thanks
    Kishore

Maybe you are looking for

  • Battery symbol with red line thru it

    how do you fix the blackberry with a battery symbol with a red line thru it?

  • Why isn't my site working on mobile?

    My site -- blueivorycreative.com -- was uploaded to an FTP host and has been working perfectly both in my computer web browser and on my phone.  However, we are now unable to pull up the site on any mobile phone.  I contacted my hosting service and t

  • Safari 6 won't load youtube

    All the software are up to date I have tried reset safari, open in 32 bit mode, but nothing works. It's not the video won't load, but the site. Nothing happens after I press enter. I have tried other browsers, and youtube works just fine. Any idea ho

  • Doubt in String class

    What is the exact difference between String s=new String("xxxxxxx"); String s="xxxxxxx"; ? Please let me know rgds Mohan S

  • HT5503 changing operating systems on my 3g

    How do I change my os on a 3g?