Date column error in BI Publisher (OBIEE 11.1.1.7.0)

Hi, everyone!
I'm creating a report in OBIEE 11.1.1.7 Publisher (Data source is a Subject area, not separate Data model). I have a simple column of a date type. When I add this column to my pivot table in an editing mode it works fine:
http://ic.pics.livejournal.com/rimskaya_m/12964636/180146/180146_original.png
But when I view the report (via interactive veiwer or any other format - doesn't matter) I got this:
http://ic.pics.livejournal.com/rimskaya_m/12964636/180473/180473_original.png
Just "Error occured" and nothing else. Could you please help me with this?
Edited by: marie-g on 17.05.2013 3:59

Hi!
I got the logs for this error:
...[2013-05-20T11:16:29.890+04:00] [bi_server1] [ERROR] [] [oracle.xdo] [tid: 23] [userId: <anonymous>] [ecid: 11d1def534ea1be0:-59aaf6b0:13eadecd73b:-8000-00000000000387e2,0] [APP: bipublisher#11.1.1] Invalid XSD string: 03/28/2013
[2013-05-20T11:16:29.892+04:00] [bi_server1] [ERROR] [] [oracle.xdo] [tid: 23] [userId: <anonymous>] [ecid: 11d1def534ea1be0:-59aaf6b0:13eadecd73b:-8000-00000000000387e2,0] [APP: bipublisher#11.1.1] Invalid XSD string: 04/04/2013
[2013-05-20T11:16:29.892+04:00] [bi_server1] [ERROR] [] [oracle.xdo.template.online.dms.service.render] [tid: 23] [userId: <anonymous>] [ecid: 11d1def534ea1be0:-59aaf6b0:13eadecd73b:-8000-00000000000387e2,0] [APP: bipublisher#11.1.1] Rendering failed for IR_CROSSTAB with null
[2013-05-20T11:16:29.893+04:00] [bi_server1] [ERROR] [] [oracle.xdo] [tid: 23] [userId: <anonymous>] [ecid: 11d1def534ea1be0:-59aaf6b0:13eadecd73b:-8000-00000000000387e2,0] [APP: bipublisher#11.1.1] Error in new interactive engine : Rendering failed for IR_CROSSTAB with null
...

Similar Messages

  • Not able to save date column with custom date format. in OBIEE 11g

    Hi,
    I have migrated one report from OBIEE 10g to 11g. There is a date column with customized date format(i.e. Default format is 'dd-MMM-yyyy' and I have used 'MMM-yyyy').
    But when I use this custom format and try to save the report in 11g its giving this below error.
    ''Catalog object privilege validation failed for user to path /shared/ALM BI/Finacial Results/History Income Statement Detail.
    You do not currently have sufficient privileges to save a report or dashboard page that contains HTML markup.
    This HTML might be present in column headings, table headings, text views, narrative views, the print header,
    or the print footer and must be removed before saving.''
    Please let me know what changes I need to do for this.
    Regards,
    Ambika Nanda.

    Hi ,
    privilage issues...check the security settings once..
    Thanks,
    Ananth

  • Error giving a default value to a date column in the attribute settings.

    When im giving a default value to a date column in the attribute settings i get this error when im running my jsp page (bc4j web application):
    Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Date with value: 31-dic-2099
    How can i fix that?
    Thank u

    The default date format for oracle.sql.DATE which oracle.jbo.domain.Date extends is "YYYY-MM-DD"

  • Error during registering Data Template in Oracle BI Publisher

    Hi,
    While creating report in BI Publisher. I am taking type as "Data Template".
    Below is the error:
    Failed to save data.
    Error occured when creating xml data.
    TypeError
    Object Required
    Thanks,
    Abdul.

    Hi ,
    what abt the other type is it working for you..
    after selecting the report r u not able to see the below format
    <dataTemplate>
    <dataQuery>
    </dataQuery>
    </dataTemplate>
    Thanks,
    Ananth

  • Error saving column settings with ORA-01403: no data found Error

    Hi
    I have a region with multi row report updatable.
    When I am trying to change the query I am getting below error.
    Anybody let me know what will be the problem.
    ORA-01403: no data found
    Error saving column settings
    Regards
    Kiran

    Hi
    I was using below query for this region.
    SELECT
    result.segment1 Item#,
              result.inventory_item_id,
              result.revision,
              result.lot_number,
              result.Lot_Onhand,
              result.Heat,
              result.Cert_Site_Number Cert_Site_Number_Display,
              result.status_code Status_Code_Display,
    result.Cert_ID Cert_ID_Display,
              result.Cert_Site_Number,
              result.status_code,
    result.Cert_ID,
              result.transaction_id,
    result.po_header_id,
    result.po_line_id,
    result.rcv_transaction_id,
    result.shipment_header_id,
    result.shipment_line_id
    FROM          
    SELECT      
    msi.segment1,
              mmt.inventory_item_id,
              mmt.revision,
              mtln.lot_number,
              xx_utility_pkg.get_available_qty(mmt.inventory_item_id,mmt.organization_id,mmt.subinventory_code,mtln.lot_number,'ONHAND') Lot_Onhand,
              mtln.attribute1 Heat,
              mtln.attribute2 Cert_Site_Number,
              mms.status_code,
                        (          SELECT     clx.cert_id
                        FROM     xxqc.cert_mst cm,
                                  xxqc.cert_lot_xref clx
                        WHERE      cm.cert_id = clx.cert_id
                        AND cm.cert_type='MILL'
                        AND     clx.lot_no = mtln.lot_number
              ) Cert_ID,
              mmt.transaction_id,
              rsl.po_header_id,
              rsl.po_line_id,
    mmt.rcv_transaction_id,
    rt.shipment_header_id,
    rsl.shipment_line_id
    FROM      mtl_material_transactions mmt,
              mtl_transaction_lot_numbers mtln,
              mtl_material_statuses_tl mms,
              rcv_transactions rt,
              rcv_shipment_headers rsh,
              rcv_shipment_lines rsl,
    mtl_system_items_b msi
    WHERE     mmt.transaction_id = mtln.transaction_id
    AND          mmt.organization_id = mtln.organization_id
    AND          mtln.status_id = mms.status_id
    AND          rt.transaction_id = mmt.rcv_transaction_id
    AND          rsh.shipment_header_id = rt.shipment_header_id
    AND          rsl.shipment_header_id = rsh.shipment_header_id
    AND          rsh.organization_id = mmt.organization_id
    AND          rsl.item_id = mmt.inventory_item_id
    AND msi.inventory_item_id=rsl.item_id
    AND msi.organization_id = mmt.organization_id
    AND          rsl.po_line_id = DECODE(:P5_PO_LINE_NUMBER, 0,rsl.po_line_id,:P5_PO_LINE_NUMBER)
    AND rsl.po_header_id IN (     SELECT     po_header_id
                        FROM      po_headers_all
                        WHERE      segment1 = :P5_PO_NUMBER
                        AND      org_id = :P5_ORG_ID)
    AND          mtln.status_id = 90 -- Which is 'T' Status means Temporary
    AND          mmt.transaction_action_id = 27
    AND          mmt.transaction_source_type_id = 1
    AND          mmt.transaction_type_id = 18
    ) result
    WHERE result.Lot_Onhand > 0
    when I use above query I am able to update the region perfectly.
    But when I comment last WHERE CONDITION I am getting above problem.
    What could be the possilbe reason for this?
    Regards
    Kiran Akkiraju

  • ViewObject (Date column) works fine in 9.0.3 but causes errors in 9.0.5

    Good Morning,
    I have generated entity/view objects, from the same table, for JDev9.0.3 and JDev9.0.5. The application runs fine under JDev9.0.3.
    When I drag/drop a view onto the design panel within 9.0.5 and run its associated dataAction two unexpected thing occur.
    1. The table displays 'no records found' in the browser. I am certain the table has thousand's of records.
    2. When I refresh the browser (hold the ctrl key and click MS Explorers refresh button) I receive the following error:
    oracle.jbo.domain.DataCreationException: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Date with value:oracle.sql.TIMESTAMP@2228
    I can reproduce this error on 'any' table which have date columns. Again, the same view displays fine under 9.0.3. Can this problem be reproduced on your end using 9.0.5? If so, there a work-around? If not, do you have any ideal on what would cause this? Is there a workaround or a patch?
    Thank you

    I am basically following the procedures described here:
    http://otn.oracle.com/products/jdev/collateral/tutorials/9050/adfuix_tut.html
    My Date column attributes are set as follows:
    Entity Attribute Tab;
    a. The name is DateCreated
    b. The type is Date
    c. Updateable is Always
    d. Persistend and Queriable is checked.
    Attribute Properties Tab:
    Default values
    Control Hints Tab:
    a. Display Hint: Display
    b. Format Type: Simple Date
    c. Format: yyyy-MM-dd
    d. Control Type: Default
    e. Form Type: Detail
    My business components were created from my
    'Business Components Diagram'. I created the diagram using dnd from a table located under the 'Connections --> Database' pane.
    I also have a StrutsPageFlow diagram. When I dnd a viewobject onto one of my "uix" pages, I do not see 'EL' binding syntax on any date columns. I can see this information within my other columns.
    I understand the Emp table has a HireDate column. Are you able to display the 'HireDate' column on a uix page? If you are and were using the same build of JDeveloper, then I need to figure out what Im doing wrong. My first guess is the way 9.0.2/9.0.3 handled dates and the way 9.0.5 is handling dates is different.
    Thanks

  • Report data binding error unknown column name

    Hi,
    I am having a problem with the new 7.02 update of Report
    Builder. The issue is it's not finding my SQL query.
    I have wrote my query initally in the advance mode, and it
    doesn't seem to reconize it. Is there an issue with this?
    I did manage to fix one of my reports by using the basic mode
    and selecting all my tables and seting my linkage and criteria.
    I have other computers that i have not updated to 7.02 and
    they do not have this issue. Below is the error:
    Error Occurred While Processing Request
    Report data binding error Unknown column name : work_phone.
    Please try the following:
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0;
    .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Remote Address 127.0.0.1
    Referrer
    Date/Time 13-Jul-06 02:33 PM
    Stack Trace (click to expand)
    coldfusion.runtime.report.Report$ReportDataBindingException:
    Report data binding error Unknown column name : work_phone.
    at
    coldfusion.runtime.report.Report.runReport(Report.java:420)
    at
    coldfusion.filter.ComponentFilter.invoke(ComponentFilter.java:96)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
    at
    coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.xml.rpc.CFCServlet.invoke(CFCServlet.java:106)
    at coldfusion.xml.rpc.CFCServlet.doGet(CFCServlet.java:157)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at
    org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    This report works in 7.01. So all query variables match with
    a variable in the SQL select statement.
    Anyone have any Ideas??
    Thanks,
    Daniel

    Thank you very much for help.
    The "Unknown column name " is a field still used in my
    report, so I can't remove it.
    After I clear the query in the report and reopen the report
    and apply the same query back to it, I get different error message:
    Element TASKNUM is undefined in QUERY.
    The error occurred in : line 1
    -1 : Unable to display error's location in a CFML template.
    I know for sure this "Element TASKNUM is undefined in QUERY."
    is defined in query. each time it complains something different. I
    get really confused.
    Thanks again.
    Yueming

  • Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).

    Hi,
    I have a file where fields are wrapped with ".
    =========== file sample
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    ==========
    I am having a .net method to remove the wrap characters and write out a file without wrap characters.
    ======================
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    ======================
    the .net code is here.
    ========================================
    public static string RemoveCharacter(string sFileName, char cRemoveChar)
                object objLock = new object();
                //VirtualStream objInputStream = null;
                //VirtualStream objOutStream = null;
                FileStream objInputFile = null, objOutFile = null;
                lock(objLock)
                    try
                        objInputFile = new FileStream(sFileName, FileMode.Open);
                        //objInputStream = new VirtualStream(objInputFile);
                        objOutFile = new FileStream(sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString(), FileMode.Create);
                        //objOutStream = new VirtualStream(objOutFile);
                        int nByteRead;
                        while ((nByteRead = objInputFile.ReadByte()) != -1)
                            if (nByteRead != (int)cRemoveChar)
                                objOutFile.WriteByte((byte)nByteRead);
                    finally
                        objInputFile.Close();
                        objOutFile.Close();
                    return sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString();
    ==================================
    however when I run the bulk load utility I get the error 
    =======================================
    Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).
    ==========================================
    the bulk insert statement is as follows
    =========================================
     BULK INSERT Temp  
     FROM '<file name>' WITH  
      FIELDTERMINATOR = ','  
      , KEEPNULLS  
    ==========================================
    Does anybody know what is happening and what needs to be done ?
    PLEASE HELP
    Thanks in advance 
    Vikram

    To load that file with BULK INSERT, use this format file:
    9.0
    4
    1 SQLCHAR 0 0 "\""      0 ""    ""
    2 SQLCHAR 0 0 "\",\""   1 col1  Latin1_General_CI_AS
    3 SQLCHAR 0 0 "\",\""   2 col2  Latin1_General_CI_AS
    4 SQLCHAR 0 0 "\"\r\n"  3 col3  Latin1_General_CI_AS
    Note that the format file defines four fields while the fileonly seems to have three. The format file defines an empty field before the first quote.
    Or, since you already have a .NET program, use a stored procedure with table-valued parameter instead. I have an example of how to do this here:
    http://www.sommarskog.se/arrays-in-sql-2008.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Not able to import date column as Date time(SQL server) in OBIEE

    Hi,
    We have created cube in sql server.
    We have two date column in cube i.e. created date(datetime) joining date(datetime)
    Once I import joining date (Data type: Datetime) and created date(Datetime) by default it import as varchar.
    problems:
    1. I need to calculate difference of two date at OBIEE level. But it is varchar and I am not able to calculate the difference of two dates i.e. created date-joining date.
    I tried evaluate function also but not able to do in OBIEE 10.1.3.4.
    Any help pls

    Hi,
    In your cube have you set the type to 'Date' for this attribute? If not, try it and let me know if this still imports as varchar.
    Hope this helps.
    Thank you,
    Dhar

  • Odbc Driver error when using specific date column

    I am receiving the this error:
    Odbc driver returned an error (SQLExecDirectW).
    Error DetailsError Codes: OPR4ONWY:U9IM8TAC:OI2DL65P State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46036] Internal Assertion: Condition len <= desc->objectLength_, file ..\Oci8\Src\SQXDGOci8.cpp, line 614. (HY000)
    It happens when I try to to set criteria on a specific date column or I do not set criteria at all. If I set date column 1 to greater than 4 or so months back the report returns, along with all the dates from date column 2. But if I then try to set date column 2 as the criteria, no matter if I just ask for data from a week until today, I receive this error. I tried changing the Server Stack size to 512, but that did not help. Anyone have an idea on this???

    You seem to be using an ODBC connection with an Oracle database, is that correct? If so you should install the Oracle client and use the OCI driver instead and it is much faster and stable than ODBC.

  • Error when using filter on date column in interactive report

    Hi,
    I'm getting the following error when using the filter on a date column. None of the criteria in the filter list work. All give me the same error but when I use the filter on a column feature (in the search bar) and use ">" and "<" those work.
    Can someone please help me????
    " Settledate is in the last 2 years
    ORA-30175: invalid type given for an argument ORA-02063: preceding line from MAINDATA "

    I have a similar problem . I have an interactive report based on resultset stored in a collection; since all the columns of a collection are of string datatype, I convert the columns to appropriate datatypes before its returned to the user; everything works as desired except when I try to filter on a data column , I get a ORA-01858: a non-numeric character was found where a numeric was expected .
    I turned on debug mode and am copying the output here , column c009 which is aliased to 'C' is the one that I am trying to apply the filter on
    select
    ROWID as apxws_row_pk,
    "C001",
    "C002",
    "C003",
    "C004",
    "C005",
    "C006",
    "C007",
    "C008",
    "CHECKOUTTIMESTAMP",
    "C010",
    "C011",
    "TO_NUMBER(C012)",
    "TO_NUMBER(C013)",
    "TO_NUMBER(C014)",
    "C015",
    "C016",
    "C017",
    "TO_NUMBER(C018)",
    "C",
    count(*) over () as apxws_row_cnt
    from (
    select * from (
    Select c001,c002,c003,c004,c005,c006,c007,c008,to_date(c009,'dd-MON-yy HH24.MI') checkouttimestamp,
    cast(to_date(c009,'dd-MON-yy HH24.MI') as timestamp) c,
    --TO_TIMESTAMP(c009,'dd-MON-yy HH24.MI') c1 ,
    trunc(to_date(c009,'dd-MON-yy HH24.MI')) checkoutdate,
    c010,c011,to_number(c012),to_number(c013), to_number(c014),c015,c016,c017,to_number(c018) from apex_collections where collection_name = 'IR_BOOKSALES'
    ) r
    where ("C" between systimestamp - ((1/24) :APXWS_EXPR_1) and systimestamp)*
    ) r where rownum <= to_number(:APXWS_MAX_ROW_CNT)
    order by ROWID
    0.04: IR binding: ":APXWS_EXPR_1"="APXWS_EXPR_1" value="1"
    0.04: IR binding: ":APXWS_MAX_ROW_CNT"="APXWS_MAX_ROW_CNT" value="2000"
    ORA-01858: a non-numeric character was found where a numeric was expected
    I have tried to convert c009 to date, timestamp and timestamp with time zone datatypes ; they all return the same error ,but all 3 datatypes work fine with systimestamp when I run them in sqlplus. Any help would be appreciated.

  • MAPPING DEBBUG ERROR: ORA-02291(data column format)

    I think the problem is the data format...
    in csv files I have dd/mm/yyyy, and i set the mask in the flat file import like this dd/mm/yyyy, but when I debbug I receeive constraint violation parent key not found, the sonstraint is ok, how I must set the data column? and how I must set it in excel.
    please someone help me, it's 5 days I have this problem and I can't make another think.
    Thanks

    Hi Marvin,
    Was this issue resolved? If so, how did you fix it? I am receiving the same error with the *MVAL function.
    Thanks,
    Hitesh

  • Publish Data vi error code -34117

    I upgraded a VI from Labview 7.1 to 8.6 which includes Publish Data VI on a new computer
    I run the VI, no errors, since I want to read this point from the host computer using data socket I went to MAX to add the data point that it is published, MAX does not find any data points
     So I tried to test the publish VI in a simple test VI which includes only the publish VI but I am getting error code  -34117.
    I am using fieldpoint CFP-2220 and Labview 8.6
    Any suggestions why the publish data vi is not working even though it is not returning any errors why I am getting error -34117?.
    is there any difference on how the publish data vi and data socket works in labview 8.6 vs. labview 7.1
    Thanks.
    Solved!
    Go to Solution.

    Hi j_sd,
    Are you following the instructions laid out in the Publish Data VI Help article?
    Publish Data Details
    You must run any VI that contains the Publish Data VI at least once before adding the data items from the VI to Measurement & Automation Explorer (MAX).
    To add a data item from the Publish Data VI to MAX, complete the following steps.
    Make sure LabVIEW Real-Time (RT) is targeted to a FieldPoint RT controller. Refer to the LabVIEW Real-Time User Manual for more information about targeting LabVIEW RT to a controller.
    Place a Publish Data VI on the block diagram.
    Right-click the Publish Data VI. Select Select Type and select the data type for the new item you want to create.
    Double-click the Publish Data VI.
    On the Publish Data VI front panel, enter values in the block name and item name fields.
    Select an action from the action menu.
    Run the Publish Data VI.
    In MAX, right-click the FieldPoint RT controller under My System»Data Neighborhood and select Create New Item from the shortcut menu.
    In the Create New dialog box, select LabVIEW Item. Click the Continue button
    Select the item from the Address of this item field.
    In the Create New LabVIEW Item dialog box enter a name for the LabVIEW item in the Name field. Click the OK button.
    Save the .iak configuration file.
    The data published by this VI can be read or written to over a network by subscribing to the block and item names, using the DataSocket Read or DataSocket Write VIs. The value of an item may also be read or changed on the local machine where it was created by using this VI and passing in the same block and item name.
    Aaron P
    National Instruments
    Applications Engineer
    http://www.ni.com/support

  • XML Publisher - Dynamic Data Columns Issue

    Hi,
    I am creating a amortization report where I need to show the amortization schedule for unearned revenue. Customers have signed different years of contract and I need to show the amount as per their remaining contract months. So if there are 2 month remaining in the contract then I should show the data for 2 months only and if there are 10 months then I should display 10 months. If we run the report for both customers then it should display two lines in report. For first customer the data should be only for 2 months and for second row(customer) there should be data for next 10 months. These months should be columns in the report(like excel columns, not rows). I need to display all months in columns instead of rows.
    I have acheived that using Dynamic Data Columns as mentioned in the user guide. Everything is working fine except following issues -
    1. How to create page level total?_
    I have created page total in my template using <?add-page-total:TOTUREV;'UREV'?> and displaying using <?show-page-total:TOTUREV?> but when I run the report in excel format these page total do not display. These columns are static columns not dynamic.
    If I run the report in pdf format then the static column total is displayed correctly.
    2. When I run the report in excel format then report run fine and it shows all the columns properly but if I run the report in pdf format then the dynamic column are not displayed in their own columns, all the columns are overwriting each other in a single columns itself, its not expanding.
    3. How do I get the total for the dynamic columns?_
    I need to display the page level total for the dynamic columns also, how do I do that?
    4. When I run the report in excel format the 2 decimal places of the numbers are gone(it works fine in pdf output), like 12.50 becomes 12.5 and 14.00 becomes 14. I need to maintain those 2 decimal places. I have tried using <fo:bidi-override direction="ltr" unicode-bidi="bidi-override"><?format-number:CVALUE;'999999D99'?></fo:bidi-override> but this does not solve my problem completely. It shows the values correctly in excel but then I am not able to do any calculation on those columns, looks like it converts them to text values.
    Any help is really appreicated. Please let me know if you need the xml template and data file.
    Regards
    Hitesh

    Hi Hitesh,
    Can you please upload your RTF and XML template file? I will try to spend sometime on this issue.
    Cheers
    Sachin

  • Addition of days to date column in OBIEE

    Hi Gurus,
    I have one date column, Alert date and based on this column I need to create another date column say, Due date.The formula will be like,
    Due date = Alert date + 30days. I found a function,TimeStampAdd while editing the column formula but not sure as how to use it. Pls help me to implement this.
    Thanks in advance.

    Timestampadd(sql_tsi_day,30,alertdate)
    TIMESTAMPADD(interval, intExpr, timestamp)
    e.g:timestampadd (SQL_TSI_DAY, 3, TIMESTAMP'2000-02-27 14:30:00')

Maybe you are looking for

  • Just ordered a new macbook pro

    I am excited about receiving my new Macbook Pro next week. I have never owned one but has been working with one at my church, which is the main reason why I got it. We are going to be running Final Cut Studio 2. One of my friends told me that I may n

  • How to shedule a report driven by a certain event

    We want to send a mail with order information if an order has reached a certain status. During the day the system should look out several times if an order has reached that particular status and as soon as that status has been reached, a report shoul

  • Can the Same Variable used in the copied Queries and can it be transported?

    Hi all, While Transporting a Query from Developement to Quality, there is some elements missing in the Z Query, example: "Error when activating element 4BFWXYMKOQF5BQ373003Z2YZV Element 4BKGUS2Z64GKGEF9QH60W4MUJ is missing in version M" 4BKGUS2Z64GKG

  • Recovered Photos File

    I actually have two issues which may or may not be related. When I start up my iphoto 6 I always get a message that I have 4895 photos that have not been imported, I always select do not import because I am not missing any photos. I had seen on the d

  • Mb51 ; time-outs, important cpu costs

    Hello, Every day, users running transaction MB51 on the production system (ecc6, Oracle 10.2.0.4) are facing time-out issues (1200 sec). I had a look at the execution plan, there are important CPU costs, since this a sap standard transaction, I wante