Report Structure based CKF percentage total colume Error

Dear Guru's
In Report Created structure in Rows structure created formulas for sub total, CKF using in colume for finding percentage on sale,
where formula used in structure, percentage also adding instead of average. Applied exception aggregation for plant but no result
Example scenario : Zone1 created with selection of plant, division and region.same as a UCWL and internal total Zone1+UCWL used formula
percentage CKF working as addition. Red colour highlighted are wrong totals
Month
Target
Prorata
Target
Actuals
Today
Actual
Todate
%Age
Achiev
Target
PPC % age
PPC %Age
Actual
Rajasthan Zone1
45,000
36,000
1,276
27,473
76
67
54
UCWL
25,000
20,000
952
18,183
91
100
76
ZONE1+UCWL Total
70,000
56,000
2,228
45,656
167
167
129
Rajasthan Zone 2
60,000
48,000
1,722
34,746
72
65
10
Rajasthan Total
1,30,000
1,04,000
3,950
80,403
240
232
140
Gujarat-Sirohi
1,12,000
89,600
2,555
85,877
96
42
Gujarat-Kalol
60,000
48,000
1,644
34,945
73
75
30
Gujarat- P Pur
8,000
6,400
247
6,035
94
100
Gujarat Total
1,80,000
1,44,000
4,447
1,26,857
263
217
30
Treat this most urgent, report is pending due to percentage total.
Regards
ramesh

I applied this:
If([Process Category] InList("Process01") And IsNull([Date]);[Percentage];Max(Date)))
[Percentage] = (Count([Date])/Count([Operation]))*100.
but, this is not becoming true - even when Operation has one Date
Showing result as:
List#,Process01,Process02
100, 11/12/2010, 11/15/2010
But result should be
100,50%,11/15/2010
Can anyone help me achieve the right result!
Thanks in advance.

Similar Messages

  • BI Reporting Authorization  Based on Characteristic Value  Level Error

    Dear ALL,
    i had create one authorization on sap bi and given to one user on plant level , it will work on fine RSRT,
    But when i am used it on webi report through this user then i am getting below error
    Database Error : Error in MDDataSetBW.GetCellData. You do not have Sufficient Authorization (IES 10901).
    But in repor if other than user is login and report will work fine.
    If in this report i removed key figure and only show plant then it will work with authorization.
    Please help me out from here....
    Thank You,
    Haresh

    Hi,
    "If in this report i removed key figure and only show plant then it will work with authorization."
    even afterremoving keyfigures you should  not get the records, if it is the issue with Authorization object that you have created. Check for some other authorization issues also.
    I dont know SU53 marks Authorization error, if you run from WEBI, but try that also once.
    Hope you have seen this thread,
    https://scn.sap.com/thread/1136359
    so, there is no single reason for this error
    try posting this thread in BOBJ Integration kit forum also, there some experts can help you quickly
    -Sriram
    Message was edited by: Sriramvijay R

  • BW:Inventory stock Report issue based on Vendor and PO number

    Dear Guru's.
    Requirement is to report different inventory  stock's (Total Stock, blocked stock, stock in transit..etc) based on plant, material, storage location, vendor and purchase order in BW.
    For Example:
    Plant
    material
    Stock in Transit
    Total Stock
    1000
    50000001
    0,00
    100kg
    1000
    50000002
    500kg
    600kg
    If we drag the Vendor or Purchase Order Number into the report, Data gets Splitted into +ve (Inflow) and -Ve(Outflow) values.
    For Example:
    Plant
    material
    Vendor
    Purchase Order
    Stock in Transit
    Total Stock
    1000
    50000001
    54545
    567896
    +300 kg
    +400kg
    1000
    50000001
    -300kg
    -300kg
    1000
    50000002
    54549
    567899
    +900kg
    +800kg
    1000
    50000002
    -400kg
    -200kg
    I Think this is because no vendor assigned to outflow data. this is my guess i don't have much knowledge on MM. i have tried to restrict the keyfig's with stock category, but for most of the vendors or PO 's its unassigned.
    But we need the data in single as follows. can any one suggest me any steps to achieve this in BI or BO.
    Plant
    material
    Vendor
    Purchase Order
    Stock in Transit
    Total Stock
    1000
    50000001
    54545
    567896
    0,00
    100 kg
    1000
    50000002
    54549
    567899
    500 kg
    600kg
    Thanks in Advance,
    Dev

    Hi Sheshu and hi Srinu
    Already tried constant selection but it did not helped, the same keyfigure value is displayed in all the rows.
    that means the total stock value is repeated for all the vendors for a particular material.
    For example:
    Plant
    material
    Vendor
    Purchase Order
    Stock in Transit
    Total Stock
    1000
    50000001
    54545
    567896
    0,00 kg
    +400kg
    1000
    50000001
    54546
    567898
    0,00 kg
    400kg
    1000
    50000001
    0,00 kg
    400kg
    1000
    50000002
    54549
    567899
    +900kg
    +800kg
    1000
    50000002
    + 900 kg
    + 800 kg
    Regarding the BO settings, i need to try it.
    Any more suggestions will be much more helpful.
    Thanks and Regards, Sri

  • Modify percentage total in Blocklist ALV

    Hi Experts,
    I want to modify the percentage total in the grand totals line.
    for eg: 
    A        B       C
    5        10      50 %
    3         5       40%
    Total
    8        15      90%
    Instead I want it to display   : C  = ( (15 - 8) / 15 ) * 100  =  46%    .
    The below code is working fine in case of ALV grid.
    But how can I achieve the same in ALV BLOCKLIST .  Please help.
    FORM top_of_page .
    *get global reference.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
        E_GRID                           = lo_grid.
      ET_FIELDCAT_LVC                  =
    *get the subtotal
    call method lo_grid->get_subtotals
          importing
          ep_collect00 = it_00.
    change the data
      ASSIGN it_00->* TO <ft_tab>.
      LOOP AT <ft_tab> ASSIGNING <fs_tab>.
        ASSIGN COMPONENT 'VAR_PCT' OF STRUCTURE <fs_tab> TO <ff_field>.
        ASSIGN COMPONENT 'TOT_PLAN' OF STRUCTURE <fs_tab> to <fs_value1>.
        ASSIGN COMPONENT 'TOT_ACTUAL' OF STRUCTURE <fs_tab> to <fs_value2>.
        IF NOT <fs_value2> IS INITIAL.
        <ff_field> = ( ( <fs_value2> - <fs_value1> ) / <fs_value2> ) * 100.
        ENDIF.
      ENDLOOP.
    **Refresh the table display
    CALL METHOD lo_grid->refresh_table_display
    EXPORTING
          i_soft_refresh = 'X'.
    ENDFORM.
    Thanks,
    Kiran

    Hi Experts,
    I want to modify the percentage total in the grand totals line.
    for eg: 
    A        B       C
    5        10      50 %
    3         5       40%
    Total
    8        15      90%
    Instead I want it to display   : C  = ( (15 - 8) / 15 ) * 100  =  46%    .
    The below code is working fine in case of ALV grid.
    But how can I achieve the same in ALV BLOCKLIST .  Please help.
    FORM top_of_page .
    *get global reference.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
        E_GRID                           = lo_grid.
      ET_FIELDCAT_LVC                  =
    *get the subtotal
    call method lo_grid->get_subtotals
          importing
          ep_collect00 = it_00.
    change the data
      ASSIGN it_00->* TO <ft_tab>.
      LOOP AT <ft_tab> ASSIGNING <fs_tab>.
        ASSIGN COMPONENT 'VAR_PCT' OF STRUCTURE <fs_tab> TO <ff_field>.
        ASSIGN COMPONENT 'TOT_PLAN' OF STRUCTURE <fs_tab> to <fs_value1>.
        ASSIGN COMPONENT 'TOT_ACTUAL' OF STRUCTURE <fs_tab> to <fs_value2>.
        IF NOT <fs_value2> IS INITIAL.
        <ff_field> = ( ( <fs_value2> - <fs_value1> ) / <fs_value2> ) * 100.
        ENDIF.
      ENDLOOP.
    **Refresh the table display
    CALL METHOD lo_grid->refresh_table_display
    EXPORTING
          i_soft_refresh = 'X'.
    ENDFORM.
    Thanks,
    Kiran

  • Suppress Target structure based on condition

    Hi
    How to suppress target structure based on condition
    Example:
    Source is like:
    <Details>
    <Name>abdc</Name>
    <ID>234</ID>
    <Address>US</Address>
    </Details>
    I have two target structures
    1:
    <Details>
    <Name>abdc</Name>
    <ID>234</ID>
    <Address>US</Address>
    </Details>
    2:
    <Error>
        <ErrorID>
    </Error>
    if Any of the source filed is null then i dont want to map it to source structure. instead I want to assign an error id to ErrrorID node of the target.
    example
    abc,123,US
    abc
    in above case second record has two null values
    so my target structure should be
    <Details>
    <Name>abc</Name>
    <ID>123</ID>
    <Address>US</Address>
    </Details>
    <Error>
        <ErrorID>2nd record has erro</ErrorID>
    </Error>
    How to acheive this..
    Please help us
    Regards
    Sowmya

    hi ,
    plz try the following mapping
    Name-->exist-->if than else-> tuue----->Name
                                                        false---(constant)--
    error
    ID-->exist-->if than else-> tuue----->ID
                                                     false---(constant)--
    error
    adress-->exist-->if than else-> tuue----->address
                                                          false---(constant)--
    error
    regards,
    navneet

  • Evaluation Path for Position to Position Reporting Structure

    Hello Everyone,
    We currently have a position to position reporting structure in place.  WIth this being said, not every supervisor in our organization is the chief of a team.  I am trying to create an evaluation path that will look at a position, then go up to get the positions report to position (but not go up any further), then go down to get the positions that report to the supervisor.  This will allow us to start with a position, then return all the positions that the report to position has.  In essence this will allow us to start with a position and get the team (though we don't have an org unit for the team).  I am trying to do this for the Team Calendar in ESS. 
    Below is what I have.  The problem is with the depth, if I enter a 2, then it is not getting the lateral positions, but if I enter a 3, then it goes up to another level and gets an additional supervisor (which I do not want).
    S     A     002     Reports (line) to     2     S
    S     B     002     Is line supervisor of     1     S
    S     A     008     Holder     3     P
    Has anyone developed and Evaluation Path that does this (gets a positions team without having an org unit) and can offer assistance?
    Best Regards,
    Scott

    My first suggestion was either use Bottoms-up approach or top-down dont use both..like either use either of below
    S A 002 Reports (line) or
    S B 002 Is line supervisor
    but figured u will still have depth issues..so therefore
    you cld experiment like below..i understood your requirement, and i am suggesting this totally off-hand thats on top of my head..as i said experiement doing this way..
    say you have four levels  why dont you use different evalutaion path to link them between each level..
    say 1st to 2nd (reports to A002)
          2nd to 3rd (subordinate to A005)
          3rd to 4th/4th to 3rd (Is line supervisor B 002 )etc
    this way you will not have the depth issue as each one is diffeent Ev path..
    ...oops i can see people laughing at this solution..but well..i tried!

  • Reporting structure of Company

    Hi Experts,
    Our company is jointly based on 2 companies,My team (i.e. 5 subordinates belongs to company 1 and the Boss (ultimate authority belongs to company 2).
    In my company the criterea for creating Reporting Structure is such that 5 people(subordinates) report to Boss of my Dept.
    His employee code is not created in SAP whereas Empcodes of 5 subordinates is created in SAP.
    Can we create a work around for thid ?
    how to create such reporting structure od such Organization in SAP ?
    good responses shall be rewarded.
    thanks

    Hi Goodafternoon !!
    Create a new Department as Management Dept and create a dummy position of all the dept head with 0% where you can view all Management team reporting to one CEO .
    Note once you create new position two position will be seen in your org structure with same employee name but one dept will be with 0% and other dept will be with 100% active.
    This is as per my idea so experts excuse if am wrong.
    Thanks

  • OrgChart 3.0 - Reporting Structure - Portrait View is not showing portrait

    Hi,
    I have enabled the Reporting Structure in the OrgChart.
    Everything works, but the portrait is not showing in the OrgChart when I have selected Portrait view for the position.
    Portrait is showing on the Details Panel of the Position.
    Portrait is also showing in the Organization Chart (not in Reporting Structure).
    This error shows in Reporting Structure:
    16 Feb 2011 15:40:59 ERROR com.nakisa.Logger - Hrwpc_Rfc_Ep_Read_Photo_Uri.runEmployeeReadPhotoURI() : Cannot identify key field or value. Whereclause :: (Object_ID='80000001')
    16 Feb 2011 15:40:59 WARN com.nakisa.Logger - Detail - CurrentPositionPortrait : FetchData : Could not fetch data for details.
    16 Feb 2011 15:40:59 WARN com.nakisa.Logger - Details - ManagerPhoto : Render : Failed because no data is available.
    If the position has no PERNR, the log looks like this:
    16 Feb 2011 16:14:35 ERROR com.nakisa.Logger - Hrwpc_Rfc_Ep_Read_Photo_Uri.runEmployeeReadPhotoURI() : Cannot identify key field or value. Whereclause :: ( (Pernr is null) or (Pernr='') )
    I am guessing could it be the keyword in the WHERE clause that caused the FM in ECC couldn't be called properly.
    Anyone else has this problem?

    Hi Jack,
    This function is actually called by the class BAPI_Employee_GetDetails, which is a Nakisa class and not in SAP. Therefore I would raise an OSS note. There are a number of fixes to the SMP build that you have that will be in a build provided by Nakisa.
    Best regards,
    Luke

  • Subscriptions not completing. Processing: 0 process of 2 total; 0 errors

    We have subscriptions that have run for many months, all of a sudden radomly, some of the subscriptions say 'Processign: 0 processed of 2 total; 0 errors.  When looking at the ExecutionLog3, it shows that the reports are in Render as the ActionItem
    and the status is 'RsAccessDenied'.  Now this doesn't make sense since other subscriptions are using the shared datasource and they are running just fine.   If anyone has any suggestions as to why this is happening or what we can do to stop
    it from happening that would be appreciated.  We have found that deleting and re-creating the subscription then works.   Remember this is random with the subscriptions, so it is hard to narrow down why it's happening.

    Hi Renee_C,
    When a scheduled operation is defined, the report server creates a corresponding job in SQL Server Agent and runs the job on the date and time specified in the schedule.
    According to the status "0 processed of 2 total; 0 errors", the problem can be caused by the event processing threads are all tied and not processing the events as fast as they arrive, so you will miss some of them.
    Please check to see if you can find record in these two tables: ReportServer.dbo.Notifications; ReportServer.dbo.Event.
    Please check information one by one to find the root cause:
    Check two tables below in the reportServer DB: ReportServer.dbo.Notifications; ReportServer.dbo.Event.
    If these table have information, take reference as below:
    This main issue is the event processing threads are all tied and not processing the events as fast as they arrive. If you have a lot of subscriptions, if several instances of the event were running at the same time occupying all of the threads or when a lot
    of subscriptions are set to fire at the same time, and they may take a long time to complete, so the subscription processing cannot keep up and falls behind. In this case, you may encouraged to run them at different times if possible.
    You can check the detailed error log (default location: %programfiles%\Microsoft SQL Server\<SQL Server Instance>\Reporting Services\LogFiles),
    Please check the log and if you find more details error message, please provide us to move more quickly toward a solution.
    Below blogs are for your reference about Troubleshooting Subscriptions:
    http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
    http://blogs.msdn.com/b/deanka/archive/2010/02/16/troubleshooting-subscriptions-part-ii-using-the-report-services-trace-log-file.aspx
    Similar Thread which have resolved for your reference:
    Data-driven Subscription doesnt send out an email but job history shows its successfull
    If you still have any question, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Percentage Totals

    Hi,
    I have two reports in answers using the same data source. One of the reports is a summary at the parent level and the oher report is a detailed report at the lowest level. The percentage totals are different for both reports, e.g.
    (Summary/Parent Level)
    MARKET - 3.77%
    (Detailed/Lowest Level)
    MARKET - 3.35%
    Is this a bug, I am using OBIEE 10.1.3.4.1.
    Thanks

    Hi
    I have checked the underlying data on both reports and the values are the same. The problem appears with the grand total % on both reports, the rolled up summary report grand total is different to the detailed grand total.
    Detailed - 3.35%
    Summary - 3.77%
    Can anyone help?
    Thanks

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Produce report NOT based on a single sql statement

    I want to produce a tabular report based on a series of sql statments. Specifically, a report of managers that wil include counts of employees that are in other tables using differing criterias.
    Name Count Count
    using using
    criteria 1 criteria 2
    Manager1 35 242
    I would expect to write an anonymous pl/sql block with a driving cursor determining the managers to report on. Within that cursor, I would execute a number of other queries to derive the count for each of the two columns.
    I have tried creating a report region based on a sql statement, but that requires a single sql statement. I also tried creating a report region based on plsql, but it required an into statement of defined items. This option looks like it can provide multiple rows, but since it selected 'INTO' named fields, it only creates a report with the last row of data.
    I must be missing something. Any suggestions are greatly appreciated!!!

    If you want a wizard to create the form and report for you then yes you need to have a table. One thing that you can do is define a view that contains the data you need and define an Instead Of trigger on that view so the automatic fetch and dml will work but you can have the data stored into the different objects. basically the view and the trigger work as a router/dispatcher for the data.
    *edit*
    I should also add that you can write a pl/sql package which does the fetch and the dml operations with the form items as input. This is the solution I would typically use for any form that was not a simple CRUD form for a table. One thing to note is for the fetch I prefer to use out parameters for the form items so it requires the developer to map the item to the param in the app so it will show up when you are searching through the app. I highly discourage hiding item references inside of packaged code.
    Good Luck!
    Tyson
    Message was edited by: TysonJouglet

  • Hide grand total field on ALV report, But keep the sub total fields

    Dear Experts,
    1) How to hide grand total field on ALV report, But keep the sub total fields.
    2) How to populate rate per ton & calculate total price according to the qty in delivering document.

    Dear Experts,
    1) How to hide grand total field on ALV report, But keep the sub total fields.
    2) How to populate rate per ton & calculate total price according to the qty in delivering document.

  • Lync monitoring Details reports are not getting opened, Getting SQL error like "Cannot impersonate user for data source 'CDRDB"

    Hi,
         Two month before, We have deployed Lync 13 set up with lync monitoring and archiving service enabled. After configuring we have the Lync monitoring and archiving services are working fine... few weeks back I have changed the Admin Password
    of the Lync Setup. After that Lync Monitoring and Archiving services are not working.
    when I try open Lync monitoring service from web UI, 
    http://localhost/ReportServer_LyncMonitoring/
    Web UI is opening but Reports home page is not Accessible , Getting error Like
    "An error has occurred during report processing. (rsProcessingAborted)
    Cannot impersonate user for data source 'CDRDB'. (rsErrorImpersonatingUser)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    The user name or password is incorrect"
    Please help me to trouble shoot this problem.
    Thanks,
    Rajarajan.D

    Hi Rajarajan.D
    You probably need to update the password against the CDRDB datasource in SSRS Report manager, take a look at this article: http://lyncme.co.uk/microsoft-lync-server-2013/cannot-impersonate-user-for-data-source-cdrdb-rserrorimpersonatinguser-error/
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)
    This forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Sql to tell report names based on view/table name

    Hello, we recently upgraded to release 12 and planning to implement sub ledger accounting and we are in the process of identifying our customizations written on top of distribution tables so that we can tweak them to go after SLA tables. Majority of our custom objects are discoverer reports. And most of these discoverer reports are based on custom folders which are based on custom views. By running a sql we were able to identify the names of all of our custom views which go after the distribution tables. Now we want to identify which of our discoverer reports are based on these views via custom folders of our custom business areas. Our custom folders might have been named exactly same as custom view or they may have different name and the folder may actually have a sql in which they are referring these custom views.
    Would it be possible for someone to provide a sql select statement which takes database table / view name and returns the name of discoverer workbooks referring this table/view? Thanks in advance for help.
    Regards,
    Anjan Avula.

    Nancy I claimed that problem is because of developing reports in plus based on some hits I found on internet. http://www.orafaq.com/forum/t/66265/0/
    And hits I found in metalink.
    Bug # 6665629
    However according to engineer with Oracle support it is a bug. The problem with updating that table is more related to workbooks that were created in older versions or upgraded to 10.1.2.2 but have not been opened and resaved. Bug 4901641 is present in 10.1.2.2 admin and it can result in Discoverer Admin not updating the EUL5_ELEM_XREFS. Admin version 10.1.2.3 is expected to resolve this with an easy workaround is to export the older workbooks and re-import them into your eul. The import process will update the EUL5_ELEM_XREFS table and will save customer from saving and opening every workbook.
    So, may be you have 10.1.2.3 in your environment and never experienced this issue or may be your reports were never upgraded from previous versions to 10.1.2.2. In our environment we have upgraded our reports to this version from previous versions and may be what oracle engineer told is true. I need to work with our admin to get this looked at and get it fixed.

Maybe you are looking for

  • External hard drive won't install, Please Help

    I just purchased this same external hard drive, 3/7/2011.  I hooked everything up via my USB, put in the installation CD, got the Drive Set-up window, clicked on Backup Software and got a message "C:\DOCUMEN~1\Owner\LOCALS~1\Temp\pft48F~tmp\" and "Ac

  • Help! Using "Create" action in insert jsp page vs in submission page.

    This is regarding creating a new record using data TAGS: I'm in a dilemma as to whether I should use the data source tag <jbo:Row id="myrow" datasource="iss_vo1" action="Create"> in my first jsp page ( which accepts input from a user) or in the 2nd j

  • How to create a Button Map easly?

    I am trying to make a clickable map where you can click on small areas and be linked to another page.... I can of course break the map to 100 pieces and make 100 buttons and put them together... But this is so time consuming and I am sure there is a

  • Cfchart upper control limit

    I have a chart I'd like to add a static horizontal line to. This  is an example of the chart with a red line I added manually in Photoshop.  It's the red line I want to show on the real chart. Is  this possible? Thanks

  • JSE8 not recognising url's

    Please forgive my ignorance, I'm a noo-bee. I'm using Sun Java Studio Enterprise 8 using JDK 1.5 and TomCat 5.5.7. I'm writting an web application and I'm having problems having the servlet or jsp's recognise a url, be it a gif or another jsp (as in