Unsupported date arithmetic exception.

hi there,
I am trying to open a workbook from the database and i am getting the exception as
"Some of your workbooks may be deleted by an administrator"..
Is there any mechanism to retrieve the failed/corrupted workbooks from the database..
Please help me..
Its very very urgent..
Thanks
Divya.

Divya.
I'm starting to get a bit confused here. In another thread you mentioned that you were getting an error condition for an arithmetic operation.
Now you're saying that it might be 'deleted by an administrator'?
- Is this the same workbook?
- 2 differernt errors or the same?
- Deleted by an administrator - that's a new one for me - tell him/her not to delete the darn thing then!
- As I mentioned in the other thread, although maybe someone else knows, I know of no mechanism to retrieve a failed / corrupted workbook and can only suggest what I said in the other thread - try and fudge what you need in the EUL at the folder / item level, just to get the workbook to open, so you can fix it there.

Similar Messages

  • Unsupported data conversion

    I just upgrade my jdbc driver to "BEA's MS SQL Server Driver(Type 4)" in WLS 8.1. I got the following errors when executing rs.getTimestamp(1) with a NULL value fetched. Any idea?????
    java.sql.SQLException: [BEA][SQLServer JDBC Driver]Unsupported data conversion.
    at weblogic.jdbc.base.BaseExceptions.createException(Unknown Source)
    at weblogic.jdbc.base.BaseExceptions.getException(Unknown Source)
    at weblogic.jdbc.base.BaseData.unsupportedConversion(Unknown Source)
    at weblogic.jdbc.base.BaseData.getTimestamp(Unknown Source)
    at weblogic.jdbc.base.BaseResultSet.getTimestamp(Unknown Source)
    at weblogic.jdbc.base.BaseResultSet.getTimestamp(Unknown Source)
    at weblogic.jdbc.wrapper.ResultSet_weblogic_jdbc_base_BaseResultSet.getT
    imestamp(Unknown Source)

    Steven Yip wrote:
    I tried to run the application under WLS8.1sp4 and shown that its version
    is 3.40.19 (012727.007216.008716); however, the problem persists.Hi Steven. I think something else must be wrong. I can't duplicate it.
    Here's a small program. Change it to your user, password, dbms etc,
    and see if you can alter it to get it to show the problem.
    What is your table definition?
    thanks,
    Joe
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import java.sql.*;
    import weblogic.common.*;
    public class ddora
    public static void main(String argv[])
    throws Exception
    Connection c = null;
    try
    java.util.Properties props = new java.util.Properties();
    props.put("user", "scott");
    props.put("password", "tiger");
    props.put("SID", "JOE");
    Driver d = (Driver)Class.forName("weblogic.jdbc.oracle.OracleDriver").newInstance();
    c = d.connect("jdbc:bea:oracle://JOE:1521", props);
    System.out.println("Driver version is " + c.getMetaData().getDriverVersion());
    Statement s = c.createStatement();
    try{s.executeUpdate("drop table joe");} catch (Exception ignore){}
    s.executeUpdate("create table joe "
    + " ( DATEOBJ DATE NULL)"
    s.executeUpdate("insert into joe values(NULL)");
    ResultSet rs = s.executeQuery("SELECT * FROM JOE");
    rs.next();
    rs.getTimestamp(1);
    catch (Exception e)
    { e.printStackTrace(); }
    finally
    { try {c.close();}catch (Exception e){} }

  • How to fetch NO DATA FOUND exception in Ref Cursor.

    In my procedure ref cursor is out parameter with returns dataset. in my proceudre
    its like...
    OPEN pPymtCur FOR
    select.....
    when I call this procedure from report to get dataset it causes NO DATA FOUND exception.
    How to fetch this exception in my oracle procedure so I can get some other data.
    Any Idea to do this?
    Edited by: Meghna on 17-Jun-2009 22:28

    Mass25 wrote:
    Correct me if I am wrong.
    So if I do something as follows in my stored proc, I do not have to check for NO_DATA_FOUND?
    OPEN my_CuRSR FOR
          SELECT DISTINCT blah blah blahmy_cursr is what I am returning as OUT param in my SP.Correct. At the point you open the cursor, oracle has not attempted any 'fetch' against the data so it won't know if there is any data or no data. that only occurs when a fetch is attempted.
    Take a read of this:
    [PL/SQL 101 : Understanding Ref Cursors|http://forums.oracle.com/forums/thread.jspa?threadID=886365&tstart=0]

  • IR report - No Data Found exception

    Hi,
    I have created one IR report in apex. I need to get the no data found exception on this report i.e. if user enters some search keywords and he is getting no data in that case want to store the searched keywords in the database for future reference that there is no data for such search criteria.
    Could anyone help me to catch the no data found exception and executing a pl-sql process for fetching the search criteria ?
    Thanks in advance!

    I have created an IR report based on collections. But still I am not able to understand where I can write a code for EXCEPTION NO_DATA_FOUND. The pl-sql code used to create a collection which we write in before header process and the actuall IR report which is build using SQL query on collection so where can I put the exception code?
    What I want is to catch no data found exception when user types something in IR report search bar and gets nothing as a search result. Can you please help me on this?
    Thanks,
    Punam

  • No Data Found Exception in bulk updates

    I am trying to catch no data found exception in bulk updates when it does not find a record to update in the forall loop.
    OPEN casualty;
    LOOP
    FETCH casulaty
    BULK COLLECT INTO v_cas,v_adj,v_nbr
    LIMIT 10000;
    FORALL i IN 1..v_cas.count
    UPDATE tpl_casualty
         set casualty_amt = (select amt from tpl_adjustment where cas_adj = v_adj(i))
         where cas_nbr = v_nbr(i);
    EXCEPTION WHEN NO_DATA_FOUND THEN dbms_output.put_line('exception')
    I get this error at the line where i have exception:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    begin case declare end exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe
    Can someone pls direct me on how to get around this?
    If I do not handle this exception, the script fails when it attempts to update a record that does not exist and the error says : no data found exception.
    Thanks for your help.
    Edited by: user8848256 on Nov 13, 2009 6:15 PM

    No Data Found isn't an exception raised when an UPDATE cannot find any records to process.
    SQL%ROWCOUNT can be used to determine the number of rows affected by an update statement, but if 0 rows are updated then no exception will be raised (it's just not how things work).
    If you post your actual CURSOR (casualty) declaration, it's quite possible we can help you create a single SQL statement to meet your requirement (a single SQL will be faster than your current implementation).
    Have you looked in to using the MERGE command?

  • No Data Found: Exception in SQL inside PL/SQL block

    Hi Friends
    I am trying to execute an SQL SELECT stmt inside a PL/SQL block. But when i execute the procedure, it gives me No Data Found Exception.
    I know it is because no row is fetched in the query, but the condition of the SELECT query i have specified is being satisfied, i have checked it by running it on the SQL prompt.
    But somehow, it is not running from inside the PL/SQL procedure.Can anybody help me out on this as to why is this happening?? I am giving my code for reference and have Highlighted the Query inside it:
    CREATE OR REPLACE procedure insert_sfdc_account
    as
    --DECLARE
    CURSOR C1 IS
    SELECT customer_code, name1, name2, name3, name4, phone_number, fax, web_address, industry_sector, customer_profile, customer_type,
    address, city, postal_code, country_key, zzcust_type, vat_code
    FROM load_cust_general
    WHERE account_group = 'ZSIT';
    v_cust_cur c1%ROWTYPE;
    -- type sales_tab is table of load_cust_sales_area%rowtype;
    v_sales_area load_cust_sales_area%ROWTYPE;
    -- v_sales_area sales_tab;
         v_salesorg varchar2(10);
         v_sales_district varchar2(10);
         v_salesoff varchar2(10);
         v_custgrp varchar2(10);
         v_salesgrp varchar2(10);
    v_type varchar2(20);
    v_nature varchar2(10);
    v_partner_code varchar2(10);
    v_parent_cust varchar2(20);
    v_credit_blk varchar2(20);
    BEGIN
    open c1;
    loop
    fetch c1 into v_cust_cur;
    exit when c1%NOTFOUND;
    for i in (SELECT customer_code, salesorg from load_cust_partner
    where customer_code = v_cust_cur.customer_code ) LOOP
    dbms_output.put_line(v_cust_cur.customer_code );
                        SELECT partner_code into v_partner_code from load_cust_partner
    where customer_code = i.customer_code and salesorg = i.salesorg and partner_function = 'Z1';
    dbms_output.put_line(v_partner_code||i.customer_code);
    SELECT salesorg, sales_district, salesoff, salesgrp, custgrp INTO v_salesorg, v_sales_district, v_salesoff, v_salesgrp, v_custgrp FROM load_cust_sales_area
              WHERE customer_code = i.customer_code and salesorg = i.salesorg;
                   dbms_output.put_line(v_salesorg||i.salesorg);
                        SELECT parent_customer INTO v_parent_cust from load_cust_hierarchy
    WHERE customer_code = i.customer_code and salesorg = i.salesorg and hierarchy_type = 'G'; dbms_output.put_line(v_parent_cust);
                        SELECT credit_block INTO v_credit_blk from load_cust_company_cod
              WHERE customer_code = i.customer_code;
    dbms_output.put_line(v_credit_blk);
    for j in (SELECT account_group, customer_type from load_cust_general
    where customer_code IN (select customer_code from load_cust_partner
                                  where partner_code = i.customer_code and salesorg = i.salesorg and partner_function = 'ZS'))
                                                      LOOP
    -- exit when j%NOTFOUND;
         dbms_output.put_line(j.account_group);
    if (j.account_group = 'ZDIS') THEN
    v_type := 'DISAC';
              v_nature := '06';
         --     EXIT ;
    else
    v_type := 'SPACC';
    v_nature := '01';
    END IF;
    dbms_output.put_line(v_type||' '||v_nature);
    END LOOP;
    INSERT INTO sfdc_account
              (SAP_ACCOUNT_ID__C, NAME, TYPE, RECORDTYPEID, PARENTID, PHONE, FAX, WEBSITE, OWNERID, MARKETING_DOMAIN__C,
    INDUSTRIAL_SECTOR__C, ABC_CLASSIFICATION__C, NAME_1__C, NAME_2__C, NAME_3__C, NAME_4__C, PAYMENT_STATUS__C,
    CUSTOMER_GROUP__C, ADDRESS_STREET__C, CITY__C, POSTAL_CODE__C, COUNTRY__C, SALES_OFFICE__C, SALESORG__C,
    SALESDISTRICT__C, SALESGROUP__C, NATURE__C, VATCODE__C)
    VALUES((i.customer_code||i.salesorg), (v_cust_cur.Name1||' '||v_cust_cur.name2), ' ', v_type, v_parent_cust,
    v_cust_cur.phone_number, v_cust_cur.fax, v_cust_cur.web_address, v_partner_code, SUBSTR(v_cust_cur.industry_sector,1,2),
    v_cust_cur.industry_sector, v_cust_cur.customer_profile, v_cust_cur.name1, v_cust_cur.name2, v_cust_cur.name3,
    v_cust_cur.name4, v_credit_blk, v_custgrp, v_cust_cur.address, v_cust_cur.city, v_cust_cur.postal_code,
    v_cust_cur.country_key, v_salesoff, v_salesorg, v_sales_district,
    v_salesgrp, v_nature, v_cust_cur.vat_code);
    end loop;
    end loop;
    CLOSE c1;
    -- Delete data from Load Table
    -- EXECUTE IMMEDIATE 'TRUNCATE TABLE load_cust_general';
    /* truncate table load_cust_partner;
    truncate table load_cust_hierarhy;
    truncate table load_cust_sales_area;
    truncate table load_cust_company_cod;
    commit;
    exception
    when others then
    raise_application_error( -20001, substr( sqlerrm, 1, 150 ) );
    END;
    Kindly Help.....
    Thanks and Regards

    Create the procedure again and execute it in SQL*Plus environment and paste the output:
    CREATE OR REPLACE procedure insert_sfdc_account
    as
    --DECLARE
    CURSOR C1 IS
    SELECT customer_code, name1, name2, name3, name4, phone_number, fax, web_address, industry_sector, customer_profile, customer_type,
    address, city, postal_code, country_key, zzcust_type, vat_code
    FROM load_cust_general
    WHERE account_group = 'ZSIT';
    v_cust_cur c1%ROWTYPE;
    -- type sales_tab is table of load_cust_sales_area%rowtype;
    v_sales_area load_cust_sales_area%ROWTYPE;
    -- v_sales_area sales_tab;
    v_salesorg varchar2(10);
    v_sales_district varchar2(10);
    v_salesoff varchar2(10);
    v_custgrp varchar2(10);
    v_salesgrp varchar2(10);
    v_type varchar2(20);
    v_nature varchar2(10);
    v_partner_code varchar2(10);
    v_parent_cust varchar2(20);
    v_credit_blk varchar2(20);
    BEGIN
    open c1;
    loop
    fetch c1 into v_cust_cur;
    exit when c1%NOTFOUND;
    for i in (SELECT customer_code, salesorg from load_cust_partner
    where customer_code = v_cust_cur.customer_code ) LOOP
    SELECT partner_code into v_partner_code from load_cust_partner
    where customer_code = i.customer_code and salesorg = i.salesorg and partner_function = 'Z1';
    SELECT salesorg, sales_district, salesoff, salesgrp, custgrp INTO v_salesorg, v_sales_district, v_salesoff, v_salesgrp, v_custgrp FROM load_cust_sales_area
    WHERE customer_code = i.customer_code and salesorg = i.salesorg;
    dbms_output.put_line('Customer_Code : '|| i.customer_code);
    dbms_output.put_line('SalesOrg : '|| i.salesorg);
    SELECT parent_customer INTO v_parent_cust from load_cust_hierarchy
    WHERE customer_code = i.customer_code and salesorg = i.salesorg and hierarchy_type = 'G';
    dbms_output.put_line('Successfully Executed SQL st. Error is somewhere else');
    SELECT credit_block INTO v_credit_blk from load_cust_company_cod
    WHERE customer_code = i.customer_code;
    for j in (SELECT account_group, customer_type from load_cust_general
    where customer_code IN (select customer_code from load_cust_partner
    where partner_code = i.customer_code and salesorg = i.salesorg and partner_function = 'ZS'))
    LOOP
    -- exit when j%NOTFOUND;
    if (j.account_group = 'ZDIS') THEN
    v_type := 'DISAC';
    v_nature := '06';
    -- EXIT ;
    else
    v_type := 'SPACC';
    v_nature := '01';
    END IF;
    END LOOP;
    INSERT INTO sfdc_account
    (SAP_ACCOUNT_ID__C, NAME, TYPE, RECORDTYPEID, PARENTID, PHONE, FAX, WEBSITE, OWNERID, MARKETING_DOMAIN__C,
    INDUSTRIAL_SECTOR__C, ABC_CLASSIFICATION__C, NAME_1__C, NAME_2__C, NAME_3__C, NAME_4__C, PAYMENT_STATUS__C,
    CUSTOMER_GROUP__C, ADDRESS_STREET__C, CITY__C, POSTAL_CODE__C, COUNTRY__C, SALES_OFFICE__C, SALESORG__C,
    SALESDISTRICT__C, SALESGROUP__C, NATURE__C, VATCODE__C)
    VALUES((i.customer_code||i.salesorg), (v_cust_cur.Name1||' '||v_cust_cur.name2), ' ', v_type, v_parent_cust,
    v_cust_cur.phone_number, v_cust_cur.fax, v_cust_cur.web_address, v_partner_code, SUBSTR(v_cust_cur.industry_sector,1,2),
    v_cust_cur.industry_sector, v_cust_cur.customer_profile, v_cust_cur.name1, v_cust_cur.name2, v_cust_cur.name3,
    v_cust_cur.name4, v_credit_blk, v_custgrp, v_cust_cur.address, v_cust_cur.city, v_cust_cur.postal_code,
    v_cust_cur.country_key, v_salesoff, v_salesorg, v_sales_district,
    v_salesgrp, v_nature, v_cust_cur.vat_code);
    end loop;
    end loop;
    CLOSE c1;
    -- Delete data from Load Table
    -- EXECUTE IMMEDIATE 'TRUNCATE TABLE load_cust_general';
    /* truncate table load_cust_partner;
    truncate table load_cust_hierarhy;
    truncate table load_cust_sales_area;
    truncate table load_cust_company_cod;
    commit;
    exception
    when others then
    raise_application_error( -20001, substr( sqlerrm, 1, 150 ) );
    END;
    SQL> set serveroutput on
    SQL> exec insert_sfdc_account;

  • 'unsupported data type' in interactive report

    Hi,
    I try to download a file from a link of an itneractive report.
    In the "report attributes" section of the interactive column, I have defined in the link section of a column the 'Target' as 'URL', and the URL as this :
    DOWNLOAD:CONVENTIONS:#FILE_BLOB#:#ID#::#MIME_TYPE#:#FICHIERS#:#LAST_UPDATE#::attachment:ConvWhen I run the interactive report, the link show this :
    download:CONVENTIONS:[unsupported data type]:188:::C22.pdf:::attachment:Conv
    The table "CONVENTIONS" is defined like this :
    "ID" NUMBER NOT NULL ENABLE,
    "FICHIERS" VARCHAR2(2048 BYTE),
    "FILE_BLOB" BLOB,
    "LAST_UPDATE" DATE,
    "MIME_TYPE" VARCHAR2(255 BYTE)
    Where is my error ?
    Thank for your kind help !
    Christian

    Hi Christina,
    sorry the wizard you have to use is the "Form > Form on Table with Report", because the normal create interactive report wizard allows to enter a query.
    After you are done with the wizard, have a look at the generated SQL statement (it has to use the dbms_lob.getlength) and the value in "Number / Date Format" for that column.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • Spatial data in Eclipse Galileo - Unsupported data type

    Hi
    I am using Eclipse 3.5 Galileo. I have data stored in Oracle 10.2 tables containing columns of type SDO_GEOMETRY. When i try to open the tables (in Eclipse Data Debug perspective) i get an error unsupported data type. Obviously this is caused by the SDO_GEOMETRY.
    Can anyone tell me the plugin that i need for reading and tabular display of the tables containing columns of spatial type ?
    Regards,
    Govindarajan
    GIS Consultant

    Hi, thank you for replay.
    I have a Google Map tile layer. I'm building an HTML document that contains it. I want to represent geometries on. Geometries has been built taking coordinates from Google Map. I implemented this function to show the coordinates of the Google tile layer, where the mouse is:
    +...+
    mapview.addMapTileLayer(GoogleMapTileLayer);
    +...+
    mapview.attachEventListener(MVEvent.MOUSE_MOVE, mouseMove);
    +...+
    function mouseMove()
    +{+
    var mouseLoc = mapview.getMouseLocation();
    var locStr = mouseLoc.getPointX() ', ' + mouseLoc.getPointY() ;+
    +     document.getElementById("mouseMove").innerHTML= locStr;+
    +}+
    But coordinates I'm seeing with this function are not the same displayed by Google Map and I need it. And I think it's a problem of SRID because it is projected in EPSG:3857 ¿no?. But I want to project the Google Map tile layer in EPSG:4326, that is, the same Google Map SRID.
    It is an Oracle Maps application with a MVGoogleTileLayer and the data to be displayed are in some ThemeBasedFOI.

  • Unsupported data type

    hello
    I have column in table type BLOB. I am using that column to store video. inserting video in column was succesfull but when I looked in the table in column type BLOB was this "unsupported data type" .
    anybody know what's the problem?

    this looks like it is a db-question . Please copy it to the rdbms-forum
    General Database Discussions

  • How to limit ALL data transmission except for WhatsApp in Z10?

    Hello, My prepaid carrier allows me to use WhatsApp with no data limits, so I want to use data packs for WhatsApp and WhatsApp ONLY, is there a way to block ALL data transmission except for that used by Whats App?
    To clarify more: my carrier debits my balance if I use voice OR data, it is not a matter of buying data packs, or limiting them, the actual limit is my balance.
    The reason I am asking this is because my balance reduces little by little EVEN if I am not using WhatsApp (turned off or better said terminated from the apps manager), it is like some other applications (or even the OS) are checkin for updates or sending/receiving data in the background.
    Thanks for any help you can provide me with.

    batibreaker wrote:
    Thank you for your advise,
    I have done all you mentioned, but there is something missing in the options I am presented with: After checking App Manager, Device Monitor, I can't find Mobile Data Usage, I only have Battery, CPU, Memory and Storage.
    'Data Usage' is available with latest OS update.
    You can limit data for email accounts - Edit account - Roaming data control, Mobile data control and wifi data control - limits can be set from 5k up or to 'headers only'.
    As long as you aren't syncing files, I wouldn't worry about other settings, apps will only use data when opened.

  • MDM Meta Data Provider Exception

    Hi,
    I am getting this exception while making the Metadata Provider
    Stack Trace of Exception
    oracle.express.olapi.data.full.ExpressDataProvider@71b246
    29-Apr-2003 10:19 FATAL - Olap helper class : MDM Meta Data Provider Exception
    com.sun.corba.ee.internal.corba.AnyImpl@3744bc
         at oracle.express.idl.util.OlapiExceptionHelper.SQL2Java(OlapiExceptionHelper.java:15)
         at oracle.express.idl.ExpressConnectionModule.ServerInterfaceStub.getVersionInfo(ServerInterfaceStub.java:137)
         at oracle.express.olapi.data.full.ExpressDataProvider._checkVersion(ExpressDataProvider.java:263)
         at oracle.express.olapi.data.full.ExpressDataProvider.connect(ExpressDataProvider.java:194)
         at oracle.express.olapi.data.full.ExpressDataProvider.initialize(ExpressDataProvider.java:179)
         at com.pg.emfg.eops.helperclasses.Olap.startUp(D:/Source Code/src/com/pg/emfg/eops/helperclasses/Olap.java:83)
    .pg.emfg.eops.component.dynamicviewreport.eventaction.DynamicViewReportEventAction.perform
    Code Segment Used
    // Makes the connection
    objConnection = (oracle.jdbc.OracleConnection) DBManager.getOlapConnection();
    objTranProvider = new ExpressTransactionProvider();
    objDataProvider = new ExpressDataProvider(objConnection, objTranProvider); // Create the ExpressData Provider
    objDataProvider.initialize();
    mdp = (MdmMetadataProvider) objDataProvider.getDefaultMetadataProvider();
    This exception occurs randomly most of the times the code works fine, but then sometimes it throws this.
    I am unable to determine the root cause of the exception.
    Please help me with the actual cause for this exception and the likely solution.
    Thanks

    Anthony
    This problem is coming on HP and windows both
    with the 9.2.0.2 olap api jar files.
    I had raised a tar regarding this and was told to post the problem on OTN on this thread.
    Current status still using ORACLE connection pooling.
    Got exceptions with OCI Connection Pool
    Olap API excepiotn are encountered during Cursor,(Cursor Manager) Creation.
    There are three different exception encountered.
    1>>
    oracle.express.ExpressServerExceptionError class: OLAPI
    Server error descriptions:
    DPR: Unable to execute the query, Generic at
    TxsOqCursorManager::fetchInitialBlocks
    OES: ORA-040, Generic at TxsRdbSelectStatement:execute()
    at
    oracle.express.olapi.data.full.FullCursorBlockFetcher.fetchAnyCursorBlock(FullCu
    rsorBlockFetcher.java:111)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.prepareForOpenCurso
    r(ExpressSpecifiedCursorManager.java:350)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.createCursor(Expres
    sSpecifiedCursorManager.java:191)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.createCursor(Expres
    sSpecifiedCursorManager.java:150)
    at com.pg.emfg.eops.helperclasses.Olap.obtainCursor(D:/Source
    2>>
    oracle.express.idl.util.OlapiException
    at
    oracle.express.idl.ExpressOlapiDataCursorModule.CursorManagerInterfaceStub.fetch
    InitialBlocks(CursorManagerInterfaceStub.java:204)
    at
    oracle.express.olapi.data.full.FullCursorBlockFetcher.fetchAnyCursorBlock(FullCu
    rsorBlockFetcher.java:102)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.prepareForOpenCurso
    r(ExpressSpecifiedCursorManager.java:350)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.createCursor(Expres
    sSpecifiedCursorManager.java:191)
    at
    oracle.express.olapi.data.full.ExpressSpecifiedCursorManager.createCursor(Expres
    sSpecifiedCursorManager.java:150)
    at com.pg.emfg.eops.helperclasses.Olap.obtainCursor(Olap.java:1171)
    3>>
    oracle.express.idl.util.OlapiException
    at
    oracle.express.idl.ExpressOlapiDataSourceModule.DefinitionManagerInterfaceStub.c
    reateCursorManager(DefinitionManagerInterfaceStub.java:103)
    at
    oracle.express.olapi.data.full.DefinitionManager.createCursorManager(DefinitionM
    anager.java:339)
    at
    oracle.express.olapi.data.full.ExpressDataProvider.createCursorManager(ExpressDa
    taProvider.java:426)
    at
    oracle.olapi.data.source.DataProvider.createCursorManager(DataProvider.java:151)
    at com.pg.emfg.eops.helperclasses.Olap.obtainCursor(Olap.java:1220)
    After these exceptions that user session can no longer use the application, thesame exception will prop up for all cursors creation attempts.
    Also sometimes the only way to make the application work is to restart the
    Application Server (JRUN).
    The compound Cursor is then traversed to obtain the data fetch shown in the
    report.
    Now the user can select say 10 measures, Based on that 10 cursorManagers and
    subesequent cursors are created.
    Also this was one request, the user can make subsequent requests, during which
    new cursors will be made.
    No where in the Code am I actually closing cursorManager or the cursor
    Could you provide a specific root cause, which i can target.

  • Significance of Rescheduling Date and Exception group

    Hi Guys:
    could you somebody explain the significance of reschedule date and exception group in MD04 Transaction?.
    thanks
    sweth

    Hi,
    Rescheduling dates are not stored, they are calculated dynamically every time you execute or refresh MD04.
    Rescheduling date is based on the Stocks Requirement date.  It does not take into account the parameters in Procurement and Scheduling in the Material Master. In the net requirements calculation, the system checks whether warehouse stock or firmed receipts are available to cover requirements. If a material shortage exists, the system usually creates a new procurement proposal.
    Most catchable runtime errors are assigned to exception groups. For this go through the link. Thanking you.
    http://www.sapnet.ru/abap_docu/ABENSYSEXC-ERRKL.htm

  • No data found exception: no data found:  [1299] error in Procedure

    Hi all,
    I am getting "no data found exception: no data found:  [1299] " in SAP HANA procedure, even if data for the corresponding plant and material is present in the respective tables.
    Can any-one suggest why I am getting this and what would be the resolution of the same.
    Regards
    dhinesh.

    Hi Dhinesh,
    Ok. It seems you have some condition in your SQL and it gets fail. It is best practice to capture SQL exception in all your store procedure to avoid such errors .
    Either you can capture the exception and write in a table if your procedure runs in background or simply throw the SQL exception message from dummy table.
    Check exceptional handling in SAP Documentation
    Thanks
    Siva

  • No Data Found Exception

    I'm getting No Data found exception while selecting a query.
    I'm trying to insert into a table by selecting records from a table.
    I'm doing this inside a loop. So I need to continue with insertion even though i get this error( NO DATA FOUND). How can this be done?
    Any help?
    Eg.
    FOR id IN (select Emp_ID from Table A)
    Begin
    LOOP
    BEGIN
    Select COL_B INTO Var_X from Table B where COL_C = id.EMPID;
    EXCEPTION
    NO DATA FOUND ---- I need to go for insertion even though i get this error
    END
    ---- Insertion Goes here to TABLE_C
    ----- Inserting VAR_X into the TABLE_C along with other Columns
    END LOOP
    END
    Thanks
    Harshini

    What you have should work. Are you saying thet the exception handler doesn't catch the exception? If that is the case then it must be another exception. You could change the exceptiuon handler to be a when others (which will catch everything) or you could just decalre a cursor which you open, fetch from, and then close. If no data is found you won't get an exception, but your variables won't be null unless you reset them every time you go round the loop.
    Obviously the no data found exception is actually no_data_found (i.e. with underscores) but your code wouldn't compile if you missed out the underscores so you must have that right.

  • Unsupported major minor exception 49.0

    Hi everybody,
    I'm now doing one project using J2EE technology. I'm making use of the SOFIA framework along with the JVM as j2sdk1.4.02.
    I'm using eclipse 3.2 as IDE.
    After setting all the specified environment variables, i tried to start the tomcat(1.4.02) server from eclipse. There i got one exception. It's named as, Unsupported major minor exception.
    Many a times i tried, to check whether it's my fault in setting the variables or not. But still i'm getting only the above result.
    Could you please suggest any solution for this problem.
    Thanks in advance

    try to do this under eclipse:
    1 - Check whether your eclipse uses the rignt JVM for your project :
    Project > Properties > Java Compiler (sould be 1.4)
    2 - Project > Clean > select your project > OK
    hth

Maybe you are looking for

  • How to delete duplicate pictures in iPhoto

    I have many duplicate pictures in iPhoto. Is there an easy way to identify and delete duplicates?

  • # Need help setting up DW CS3 local, dev and prod sites

    Hi all, I'm currently building a site in DW CS3 and wanted to structure things so I could develop, test, then publish in a more structured manner. What I'd like to have is the follow setup (sorry for the botched diagram): Computer 1 Computer 2 (local

  • Transaction OBA5, adding userid to t100c FICO job or BASIS job?

    I have a request like, The following person should get only a warning and not an error message when changing the functional area for a cost center (KS02) in SAP system .  Please add the userid  to the table t100c ( transaction OBA5) . WHo should be d

  • No sound - no beats audio. dv7 notebook Windows 7 64 bit.

    No sound - no beats audio. dv7 notebook PC-SER #2CE2012FSD, IDT High DEF Audio CODEC, Windows 7 64 bit, Product # A6X08UA#ABA. Need ASAP for school.Please help.

  • Responsiveness of forms - custom css

    Hi I notice the forms widths  are set to pixel based, which causes problems when embedding forms in responsive designs.  when a site is viewed on a smaller device the form breaks over the container that holds it. making the whole form very messy. The