#Error when missing values

I know I have seen this before but cant remember the fix. We have columns A and B, then a variance column. Users dont want to suppress so sometimes there is #missing in both columns so the variance column is returning a #Error. I can change the suppression to make it - or 0 but then my totals are showing a #Error also. Isnt there a formula for this? Thanks!

Oracle support had the solution
After the formula put in .ifnn(0)
For example
Variance([A],.ifnn(0))

Similar Messages

  • Getting mandatory attribute validation error when the value is defaulted through customization

    Hi
    I am getting Mandatory attribute validation error when we default the value through customization.
    In the UI we have attribute called Last Name which is mandatory at EO level. Customer wanted to default Last name to some value, through page composer it is defaulted to some text and saved.
    When ever we open the page the the same value is defaulted as Last Name and appearing in the UI. But when we submit the page, EO level validation is failing. hence we are getting last name is missing.
    When i debug the code last name attribute value for EO is blank.
    In the UI the attribute last name is associated with bindings  --> #{bindings.lastname.inputvalue}
    The validation is failing if we remove the default binding associated with inputtext box.
    Can some body help what can be reason and is there any solution?
    Thanks,
    Praveen

    version 12.1.2
    I am struggling with same situation, I can't set the default value at business component because, the default value comes from a REST service at run time. In page A,  I have a field F1 that contains value from REST service. Page B has a database bound field F2, whose default value should come from F1 in Page A when a user navigates from Page A to Page B. If I set the value of F2 to be the value of F1, then it displays the value in the UI, but nothing gets submitted to EO and fails at commit.
    To make things difficult, here is my situation: Page A lives in bounded taskflow TF1, and Page B lives in bounded taskflow TF2. So I have created an input parameter P1 in TF 2, which carries over the value of F1 in Page A to Page B. When I am in Page B, I can successfully see the value of the taskflow input parameter P1. So, how do I  programmatically set the value of field F2 with the value of input parameter P1?
    I tried setting the F2.inputValue  in a method call M1 in  taskflow TF2 prior to Page B, but I get null pointer exception as it can't see field F2 yet.
    It seems like a simple thing to do, but I have spent a lot of time trying to make it work without any success.
    I would greatly appreciate any guidance.

  • Error when selecting values in column prompt

    Hi,
    I have one report in OBIEE with large filter on it, it was giving error initially, but i modified filter, i'm getting results in results tab now, but when i'm selecting values in coloumn prompt, i'm getting error.
    Error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14023] None of the fact sources for Business Unit.BU Business Unit Code are compatible with the detail filter.
    Query is going through three dimension tables and one fact table. But in BMM layer, each dimension table is joined to 4 fact tables.
    I'm not able to resolve this error.
    Please give me any suggestions to solve this error.
    Thanks in advance.

    Hi All,
    FYI...
    This is a bug in the application.
    SR Update: There is a known issue of ODBC throwing the 26002 error when any SQL with a length of greater than 64KB characters is encountered. This has been filed as BUG 8251994.

  • How to catch BCD_OVERFLOW error when passing value to formal parameter?

    Hi,
    catching runtime error BCD_OVERFLOW exception is simple. However, it's not possible to catch this error directly, if it results from assigning too big value to the formal parameter.
    Let's assume simple code with local class lcl_calculator implementing functional method add with two input parameters i_op1 and i_op2 both of type i and result value r_result of type i as well.
    The following code dumps, without the exception being caught:
    DATA:
       lo_calculator TYPE REF TO lcl_calculator,
       l_result TYPE i.
    START-OF-SELECTION.
       TRY.
           CREATE OBJECT lo_calculator.
           l_result = lo_calculator->add(
             i_op1 = 10000000000
             i_op2 = 1 ).
           WRITE:/ l_result.
         CATCH cx_sy_conversion_overflow.
           WRITE:/ 'Error'.
       ENDTRY.
    To solve this, the workaround has to be implemented with checking the values being passed to the method before the actual call is made:
    DATA:
       lo_calculator TYPE REF TO lcl_calculator,
       l_result TYPE i,
       l_op1 TYPE i,
       l_op2 TYPE i.
    START-OF-SELECTION.
       TRY.
           l_op1 = 10000000000.
           l_op2 = 1.      
           CREATE OBJECT lo_calculator.
           l_result = lo_calculator->add(
             i_op1 = l_op1
             i_op2 = l_op2 ).
           WRITE:/ l_result.
         CATCH cx_sy_conversion_overflow.
           WRITE:/ 'Error'.
       ENDTRY.
    It's the same with the function module call, so it's general unit interface issue. Also, using the exception handling related to the CALL METHOD command does not help here as it's not wrong parameter TYPING which causes the error. It's the VALUE of correctly typed parameter that causes the error.
    The CATCH apparently reacts different ways when the assignment is made to the variable and to the formal parameter of the unit. Any idea how to solve the above without using that workaround?
    Thank you
    Michal

    What about using numeric?
    CLASS lcl_calculator DEFINITION.
       PUBLIC SECTION.
         METHODS add IMPORTING i_op1 TYPE numeric i_op2 TYPE numeric RETURNING value(r_sum) TYPE i
                      RAISING cx_sy_conversion_overflow.
    ENDCLASS.                    "lcl_calculator DEFINITION
    CLASS lcl_calculator IMPLEMENTATION.
       METHOD add.
         TRY.
             r_sum = i_op1 + i_op2.
           CATCH cx_sy_arithmetic_overflow.
             RAISE EXCEPTION TYPE cx_sy_conversion_overflow.
         ENDTRY.
       ENDMETHOD.                    "add
    ENDCLASS.                    "lcl_calculator IMPLEMENTATION
    DATA:
        lo_calculator TYPE REF TO lcl_calculator,
        l_result TYPE i.
    START-OF-SELECTION.
       TRY.
           CREATE OBJECT lo_calculator.
           l_result = lo_calculator->add(
             i_op1 = 10000000000
             i_op2 = 1 ).
           WRITE:/ l_result.
         CATCH cx_sy_conversion_overflow.
           WRITE:/ 'Error'.
       ENDTRY.

  • Oracle / JDBC Error when Returning values from an Insert

    I have a (oracle) table with a auto-incrementing id. From time to time I want to insert rows to this table, but want to be able to know what the pk of the newly inserted row is. One way I could do this is:
    SQL> variable var1 number;
    SQL> insert into test (name) values ('test value') returning id into :var1;
    1 row created.
    SQL> print var1;
    13
    As best as I can write it, that in java should be:
    String query = "insert into test (name) values ('test') returning id into :var1";
    OracleCallableStatement cs = (OracleCallableStatement) conn.prepareCall(query);
    cs.registerOutParameter(1, OracleTypes.NUMBER );
    cs.execute();
    System.out.println(cs.getInt(1));
    The problem is that when I run it, I get an error:
    java.sql.SQLException: Protocol violation
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:764)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:215)
         at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:954)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1168)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3285)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3390)
         at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4223)
         at restitution.shared.Sandbox2.run(Sandbox2.java:25)
         at restitution.shared.Sandbox2.main(Sandbox2.java:11)
    According to their website, this is (yet another) bug:
    What does "Protocol Violation" mean?
    The Thin driver throws this exception when it reads something from the RDBMS that it did not expect. This means that the protocol engine in the Thin driver and the protocol engine in the RDBMS are out of synch. There is no way to recover from this error. The connection is dead. You should try to close it, but that will probably fail too.
    If you get a reproducible test case that generates this error, please file a TAR with Oracle Global Support. Be sure to specify the exact version numbers of the JDBC driver and the RDBMS, including any patches.
    Can someone tell me what I'm doing wrong? Is there any other ways to do a insert / get key in one sql query ?

    I tried your solution, but it didn't work. I get an error (incorrect column number):
    Caused by: java.sql.SQLException: Niepoprawny indeks kolumny
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameterInternal(OracleCallableStatement.java:121)
    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java:283)
    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java:363)
    at (...).Row$1.createCallableStatement(Row.java:82)
    at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:836)
    ... 69 more
    The code is following:
                        String query = "BEGIN insert into movement (doc_number) values ('abc') returning id into :?; END;";
                        OracleCallableStatement cs = (OracleCallableStatement) c.prepareCall(query);
                        cs.registerOutParameter(1, OracleTypes.NUMBER);
                        cs.execute();
                        LOG.debug("result:"+ cs.getInt(1));
    I used Oracle database 10.2.0.1 with jdbc thin driver ojdbc14.jar. Could you point out your configuration?
    Regards,
    Rafal Rusin
    www.mimuw.edu.pl/~rrusin

  • ORA-06550 Error when Assinging values in APEX

    Hi I am running this query it runs fine in SQL developer but when I put this in a string in APEX return me error where the case staement returning values, Could you please help me in this regard
    declare
    l_query varchar2(4000) := '' ;
    begin
    l_query := 'select
    a.TIMESHEET_ID, b.LAST_NAME || '', '' || b.FIRST_NAME NAME,
    to_char(a.DAY_START,'dd/mm/yyyy hh24:mi') DAY_START,
    to_char(a.DAY_END,'dd/mm/yyyy hh24:mi') DAY_END,
    a.BREAK_IN_HOURS, round(a.TOTAL_WORK_HOURS,2) TOTAL_WORK_HOURS,
    c.DESCRIPTION Timesheet_Status,
    nvl((select sum(x.duration_hours) from eba_timesheet_detail x where a.timesheet_id = x.timesheet_id) ,0) detail_hours,
    case when round(a.TOTAL_WORK_HOURS,2) != (nvl((select sum(x.duration_hours) from eba_timesheet_detail x where a.timesheet_id = x.timesheet_id) ,0))
    then 'YES' else 'NO'
    end as inconsistent
    from EBA_TIMESHEET_HDR a, EBA_TIMESHEET_USERS b, EBA_TIMESHEET_STATUS c
    where a.USER_ID = b.ID and a.TIMESHEET_STATUS_ID = c.ID ';

    Hi,
    The ORA-06550 is error points to the location in the PL/SQL where the syntax error
    occurred and it is followed by a more descriptive message of the compile-time error:So can you give us the entire error description...?
    Or try below given script
    DECLARE
       l_query   VARCHAR2 (4000) := '';
    BEGIN
       l_query :=
          'SELECT a.timesheet_id, b.last_name || '', '' || b.first_name NAME,
           TO_CHAR (a.day_start, ''dd/mm/yyyy hh24:mi'') day_start,
           TO_CHAR (a.day_end, ''dd/mm/yyyy hh24:mi'') day_end, a.break_in_hours,
           ROUND (a.total_work_hours, 2) total_work_hours,
           c.description timesheet_status,
           NVL ((SELECT SUM (x.duration_hours)
                   FROM eba_timesheet_detail x
                  WHERE a.timesheet_id = x.timesheet_id), 0) detail_hours,
           CASE
              WHEN ROUND (a.total_work_hours, 2) !=
                     (NVL ((SELECT SUM (x.duration_hours)
                              FROM eba_timesheet_detail x
                             WHERE a.timesheet_id = x.timesheet_id), 0)
                 THEN ''YES''
              ELSE ''NO''
           END AS inconsistent
      FROM eba_timesheet_hdr a, eba_timesheet_users b, eba_timesheet_status c
    WHERE a.user_id = b.ID AND a.timesheet_status_id = c.ID';
    END;*009*
    Edited by: 009 on Apr 8, 2010 9:28 PM

  • Error when Setting value to Bind variable in View Link used in HGrid

    Hi
    I have requirement to pass profile id as bind variable, I have created a VO based on below Query.
    select 'N' Is_Selected, 'N' Is_Already_Selected, 'N' Is_Selected_Copy, a.*
    from XXPA_STATE_CONST_DTLS_V a, xxpa_state_const_dtls b
    where a.child_id = b.child_id(+)
    and b.profile_id(+) = :1
    View Link Query that is being generated is
    SELECT * FROM (select 'N' Is_Selected, 'N' Is_Already_Selected, 'N' Is_Selected_Copy, a.*
    from XXPA_STATE_CONST_DTLS_V a, xxpa_state_const_dtls b
    where a.child_id = b.child_id(+)
    and b.profile_id(+) = :1) QRSLT WHERE PARENT_ID = :Bind_ChildId
    it Shows Errors as
    ## Detail 0 ##
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
    could anyone tell what could be the wrong. Do we need to set bind variable in view link Explicitly? or any other alternative.
    Its very Urgent.
    Regards
    Vimal

    Hi,
    I have faced similar problem some time ago. I could not find any solution except removing bind parameters in where clause. I tried to change binding style but it also didn't work. I think the problem is caused by view link's where clause.

  • ORA-01555 error when assigning values based on geometry

    Hello,
    I have a table with 220,000+ records with street information, and I am trying to assign a municipal area (stored in another table) based on the geometry of the road line and the geometry of the municipal boundary.
    CREATE TABLE TEMP AS SELECT A.ID, B.AREA FROM ROADS A, PLACES B WHERE B.TYPE IN (33,35,36,37) AND mdsys.sdo_relate (a.geometry,b.geometry,'
    mask=inside querytype = window')='TRUE';
    This took a long time to run and it came back with a series of errors, one of which was ORA--01555 'snapshot too old'. I was running other queries on the table (in a separate SQL window) because I'm under a deadline, so i figured that doing multiple things at one time while the spatial query was running was causing the problem. I didn't have time to run it again (it was the end of the day when the error came up, conveniently) so I am trying to work out a solution to this issue.
    Would it be better if I: a) ran the statement again on the whole dataset and did nothing else while it is running, even though it will still take a while, or
    b) broke it up into groups of 50,000 records and run the statement on one group at a time and hope for the best.
    Thanks in advance!

    Assuming you have less municipal areas than roads, the query should perform better by specifying the join order:
    CREATE TABLE TEMP AS (
         SELECT /*+ ORDERED */ A.ID, B.AREA
         FROM PLACES B, ROADS A
         WHERE B.TYPE IN (33,35,36,37)
         AND mdsys.sdo_relate (a.geometry, b.geometry,'mask=inside querytype = window') = 'TRUE');Also, are you sure 'inside' is the right mask to use here? What if a road intersects the edge of the municipality? In that case it wouldn't be returned by this query.

  • Multivalue error when using the previous() function

    I am getting a multivalue error when using the previous() function on a dimension object in the report.  I thought that the previous function was supposed to look at the current report and then look at the previous record's contents.  How could this possibly give me a multivalue error when the value is clearly output in the previous row?  Anyone have any ideas?
    By the way, this is a valuable function for the types of reports that I design.  The next() function would be even more valuable.
    Thanks for your help.

    Hi Michael,
    Could you please test the following solutions it might help you to resolve the issue.
    Solution1:
    Use slice and dice to reset all the tables that have #multivalue in it. The only problem with this workaround is they have to do the formatting manually.
    Solution2:
    Also, test the issue by changing the object to dimension if it is a measure or to measure if it is a dimension.
    Regards,
    Sarbhjeet Kaur

  • Error when retrieving oracle clobs

    Here's the sql statement that we are running:
    SELECT dbms_lob.substr(sql_statement,dbms_lob.getlength(sql_statement),1) sql_statement FROM query
    WHERE query_tk = [Param.1]
    If the sql_statement is > 4000 chars, we are getting this error:
    Fatal Error
    A SQL Error has occurred on query, ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at line 1 .

    We are seeing this outside of xmii as well. 
    Here's the background.  We originally tried to do a normal insert to the clob (thru xmii) but we got errors when inserting values of more than 4000 chars.  So, we inserted the clob differently (code used below).  That's when we started getting this new error.  Is there another way to insert/retrieve clobs?
       --INSERT "base" row if it does not already exist.
       BEGIN
         SELECT  query_tk
           INTO  v_dummy
           FROM  query
           WHERE query_tk = p_query_tk;
         EXCEPTION
           WHEN NO_DATA_FOUND THEN
             INSERT INTO query
               (query_tk
               ,last_updated_timestamp
               ,sql_statement
             VALUES
               (p_query_tk
               ,SYSDATE
               ,'DUMMY');
       END;
       --Initialize buffer with data to be inserted
       v_copy_length := LENGTH(p_sql_statement);
       -- get LOB handle
       SELECT  sql_statement
         INTO  v_lobloc
         FROM  query
         WHERE query_tk = p_query_tk
         FOR UPDATE;
       dbms_lob.write(v_lobloc,v_copy_length,1,p_sql_statement);

  • Error: OQ78YWIW when repeating values in a pivot

    All,
    I'm receiving the following error on a pivot table:
    Assertion failure: rTotalPosition.tCellInfo.iLayerCell != rTotalPosition.tCellInfo.iEndLayerCell at line 310 of e:\views_e\nightly\sun\10134\windows\vobs\080726.1900\analytics_web\main\project\webpivotview\edgeiteratordef.h
    Error Details
    Error Codes: OQ78YWIW
    I get this when I set the column's value suppression to 'Repeat' - customer's request. I don't have this problem when the value suppresion is set to 'Suppress' (the 'Default').
    The pivot has 4 columns in the rows, 3 of which have subtotals.
    Any suggestion?
    Thanks in advance!

    Thanks for the reply, KK.
    I might have missed the point on something reading the link article, but, the article is suggesting how to select multiple columns in the column selector view. I'm just getting the error with a simple pivot with subtotals that have repeating values set for some of the four columns in the 'row' portion of the pivot.

  • FR Formula Yields #ERROR when adding #MISSING & #MISSING

    I have reports recently migrated from FR 11.1.1.3 to 11.1.2.2, and the reports are showing the #ERROR message in report formula that showed #MISSING in version 11.1.1.3.
    The FR Formula is adding 2 rows with #MISSING & #MISSING in all the columns.
    It appears the FR version 11.1.2.2 resolves #MISSING plus #MISSING as #ERROR when version 11.1.1.3 yields #MISSING.
    The workaround is to substitute a character for #ERROR, but it could be a huge job updating many reports.
    Is this a known bug? Is there a global fix? Any ideas?
    Edited by: user13388407 on Feb 21, 2013 2:51 PM

    --This is a known bug and we got a response from Oracle on it today.
    "The behavior was indeed changed because the previous results in 11.1.1.3 version were incorrect.
    There has been a bug raised for this issue and development team confirmed it. The bug details - Bug 12956217: FORMULA CELLS RETURNING #ERROR RATHER THAN #MISSING.
    And the development has also added new server-side property named MissingValuesAreZeroInFormulas in the 11.1.2.x versions, It determines how to treat #Missing values during the evaluation of grid formulas and calculations. This property is similar to the existing MissingValuesAreZeroInFormulasInHFM property except that it applies to all datasources (not just HFM-based grids).
    The new MissingValuesAreZeroInFormulas can have the following values:
    * A value of false (or 0) means that #Missing values are not the same as zero.
    * A value of true (or 1) means that #Missing values are treated as zero.
    The default value is false (i.e. #missing values are not treated as zero).
    Kindly try to use the new server-side property if it suits your FR reports. And it is available in the FRconfig.cmd (.sh)."

  • How to solve  when we get error sid missing?

    how to solve  when we get error sid missing?

    Hi,
      If you get  SID error means, There is no reference for the particular data in the Master data of that characteristic.
        so, Load that value in the Master data of the characteristic you wont get that sid error.
    Ex: When loading data to ods if it is giving sid for country withvalue ('india'), so india is not there in the master data of the characteristic Country. You need to enter the value India in mster data table of the characteristic.
    Otherwise you can choose option ' Update without master data' or something similar to that in infpackage or dtp.
    rgrds,
    v.sen.

  • ORA-00926: missing VALUES keyword | when importing data

    Hello,
    I get the missing VALUES keyword error when importing data from an Excel spreadsheet. Until yesterday everything worked fine. Today I'm having this problem because OSD does not build the DML correctly. See:
    insert into WFT_GROEPEN (CODE,OMSCHRIJVING,NIVEAU,INDIC_LAAGSTE_NIVEAU) VALUES('1.1.1.1','- Value of business acquired',4,'N');
    Working with OSD 1.2.1 on Windows XP.
    Anyone got a clue?
    Kind regards,
    Dennis

    Hi,
    Thanks for your reply. I found the problem myself. I got 2 columns in the Excel sheet with the same name. Then OSD creates an insert statement like following which gives the 'missing VALUES keyword' error.
    insert into WFT_GROEPEN (CODE,OMSCHRIJVING,NIVEAU,INDIC_LAAGSTE_NIVEAU)NIVEAU) VALUES('3','Toelichting balans beleggingen',NULL,'N',NULL);
    Regards,
    Dennis

  • Crystal Report: ERROR - Some parameters are missing values

              mine report it possesses a single parameter ....
              this is the example of like tries of to change the value set up in the report...
              ERROR: Some parameters are missing values
              thanks help...
              EXAMPLE:
              <%@ page import="com.crystaldecisions.report.web.viewer.*"%>
              <%@ page import="com.crystaldecisions.report.htmlrender.*"%>
              <%@ page import="com.crystaldecisions.reports.reportengineinterface.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
              <%@ page import="com.crystaldecisions.common.keycode.*"%>
              <%@ page import="java.util.*"%>
              <%
              try {
              IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();
              String report = "report/ReportParametro1.rpt";
              IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report,
              request.getLocale());
              Fields fields = new Fields();
              ParameterField pfield1 = new ParameterField();
              Values vals1 = new Values();
              ParameterFieldDiscreteValue pfieldDV1 = new ParameterFieldDiscreteValue();
              pfield1.setName("CICCIA");
              pfieldDV1.setValue("SELECT descrizione, validoDa, validoA FROM tariffari");
              pfieldDV1.setDescription("Query Dinamica....");
              vals1.add(pfieldDV1);
              pfield1.setCurrentValues(vals1);
              fields.add(pfield1);
              CrystalReportViewer viewer = new CrystalReportViewer();
              viewer.setReportSource(reportSource);
              // layout
              viewer.setOwnPage(true);
              viewer.setBestFitPage(true);
              viewer.setHasLogo(false);
              viewer.setHasRefreshButton(true);
              // group navigation
              viewer.setHasToggleGroupTreeButton(false);
              viewer.setDisplayGroupTree(false);
              // page navigation:
              viewer.setHasGotoPageButton(false);
              // print/export
              viewer.setHasExportButton(true);
              //viewer.setPrintMode(CrPrintMode.PDF);
              viewer.setPrintMode(CrPrintMode.ACTIVEX);
              viewer.setIgnoreViewStateOnLoad(true);
              viewer.setParameterFields(fields);
              viewer.setEnableParameterPrompt(false);
              viewer.refresh();
              viewer.processHttpRequest(request, response, getServletConfig().getServletContext(),
              out);
              viewer.dispose();
              }catch(Exception e){
              out.println("Errore " + e.getMessage());
              %>
              

    I am facing the same problem. After selecting an export option (PDF/RTF), the same error message is coming up.
              Also, what needs to be done for displaying export option of EXCEL?
              Thanks,
              Farzal

Maybe you are looking for

  • How to change object background color on  java run time

    Hi, I create object loading program. my problem is run time i change object background color using color picker. i select any one color of color picker than submit. The selecting color not assign object background. pls help me? How to run time change

  • Is there a way to extract the transitions from the trailers in iMovie '11 to use in my own movie?

    I want to create an iMovie, and I'd like to use bits and pieces from the different movie trailers templates. Is there a way for me to extract just the transitions from these trailers. I don't want to use the trailers themselves as they are now becaus

  • Attachments in APEX

    Hi all, I would like to know please if there is a possibility to store a files in APEX as Attachments. In my application the customer should have an option to add a file from the local hard disc when filling up a form. The file should be stored and c

  • Zoom H4n Stereo Audio Plays Only Left Speaker - How to Double It?

    Hello Everyone, I've been working on a few projects and noticed that the audio captured by the Zoom H4n will preview in both speakers (and before I drag it to the timeline I can right click -> Modify ->Audio Channels and get all the options there as

  • Why does my iPod app keep starting over from the beginning??

    I have noticed lately that my iPod app seems to start over and play ALL songs on my phone from the beginning nearly every time I plug my phone into my car stereo. I plug my phone into my car stereo and listen every day on my work commute. As such, it