Converting .rdf to .rex in oracle reports10g

Hi,
How to convert .rdf to .rex and vice versa in oracle reports 10g. I didn't see any option in reports 10g that we have in oracle reports6i.
please help me out.
Thanks,
Ramana.

Hi,
you may use the executable rwconverter.exe/rwconverter.sh. The tool converts into all supported formats. It is availabe in batch mode as well as with a user interface.
On MS Windows you can access it either from within Builder (Menue:Tools - Converter) or from START - ...- <Oracle Developer Suite_home> - Reports Developer -Oracle Application Server Reports Services
Ciao
Mark

Similar Messages

  • Convert rdf to rex in batch

    Hello
    I have to convert many reports to .rex format for analysing.
    My Problem is (as described as solution in file format problem that a batch with the line
    FOR %%F in (*.rdf) DO rwcon60 userid=xy/yx@zz STYPE=RDFFILE BATCH=YES DTYPE=REXFILE SOURCE=%%F
    does not work. I think its because %%F has the filename including '.rdf', while rwconf60 expects the name without extension.
    Does anybony know a solution?
    Yours
    Marcus

    rwcon60 can take the source in filename.rdf format.
    I tried this out and it works.
    for %%F in (*.rdf) do rwcon60 source=%%F stype=rdffile dtype=rexfile batch=yes userid=scott/tiger@nt805
    You have to keep all the .rdf reports that you want to convert, in the same directory where you run your batch file.
    Also note that, rwcon60 itself can take a list of files as source at a time.
    For example,
    rwcon60 source=(rep1.rdf,rep2.rdf,rep3.rdf) userid=scott/tiger@nt805 stype=rdffile dtype=rexfile batch=yes
    Regards,
    Siva B

  • Converting .rdf data model to xml output thru conc program

    Dear Members :
    I am trying to convert .rdf data model(Reports 10g) into XML tag, by creating Concurrent Program Report Definition, setting output type as XML.But when running the CP, getting following error:
    XML Parsing Error: XML declaration not well-formed
    Location: http://oel4.localdomain:8000/OA_CGI/FNDWRR.exe?temp_id=2393533895
    Line Number 1, Column 31:<?xml version="1.0" encoding="&Encoding"?>
    All I want is save output in Oracle Apps (11i) as .XML to be used later for XML publisher, in MS Word. The above procedure should have worked fine, as seen, in other posts.
    Any clue, please ?
    Thanks in advance.
    Atanu
    =================================================
    It's solved by changing xml prolog value to <?xml version="1.0"?>. This is closed issue - thanks.
    Edited by: user11184124 on Sep 19, 2010 11:29 AM

    OK, figured it out... when you double click on the field to add the ../, you actually need to click on Add Help Text and add the ../ here

  • Reports 6i conversion from rdf to rex

    Hi All,
    I am using Reports 6i. I wanted to convert my reports from rdf to rex so that I can open the rex file in a notepad and change some bolierplates. I was suprised to see that there were no boilerplates in the rex file.
    Am I missing something in my conversion.
    If it doesn't have boilerplates in the rex file, when I convert back from rex to rdf how does it put back the boilerplates (Labels) in the rdf file.
    Any help is appreciated.
    Thanks!

    Hi All,
    I am using Reports 6i. I wanted to convert my reports from rdf to rex so that I can open the rex file in a notepad and change some bolierplates. I was suprised to see that there were no boilerplates in the rex file.
    Am I missing something in my conversion.
    If it doesn't have boilerplates in the rex file, when I convert back from rex to rdf how does it put back the boilerplates (Labels) in the rdf file.
    Any help is appreciated.
    Thanks!

  • Explicit cast needed to convert java.* to to oracle.*

    Hello,
    I am trying to compile and run the following JSP but keep getting the "Incompatible type for = Explicit cast needed ..." error. The JSP and oracle procedure code are as follows:
    <%@ page language="java" import="java.sql.*" %>
    <%@ page import="oracle.jdbc.driver.*" %>
    <HTML>
    <HEAD>
    <TITLE>
    SimpleQuery JSP
    </TITLE>
    </HEAD>
    <BODY BGCOLOR=EOFFFO>
    <TABLE BORDER=1 BGCOLOR="C0C0C0">
    <TH BGCOLOR="white"> <I>Node ID</I> </TH>
    <%
         Connection con = null;
    OracleCallableStatement cstmt= null;
         ResultSet rs = null;
    try {
              String SYSTEM_DB_DRIVER =
    "oracle.jdbc.driver.OracleDriver";
    String SYSTEM_DB_URL =
    "jdbc:oracle:thin:@myserver.com:1521:";
    String SYSTEM_DB_FILE = "CONN_STRING";
    String SYSTEM_DB_USER = "UNAME";
    String SYSTEM_DB_PASSWORD = "PASSWD";
              Class.forName(SYSTEM_DB_DRIVER);
    con = DriverManager.getConnection(SYSTEM_DB_URL +
    SYSTEM_DB_FILE, SYSTEM_DB_USER, SYSTEM_DB_PASSWORD);
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              cstmt.registerOutParameter(1, OracleTypes.CURSOR);
    <<I think I have to pass the p_product_id_in here but not sure how>>
              cstmt.execute();
              rs = ((OracleCallableStatement)cstmt).getCursor(1);
              while(rs.next())
              {%>
         <TR>
         <TD ALIGN=CENTER> <%= rs.getString(1) %> </TD>
         <TD ALIGN=CENTER> <%= rs.getInt(2) %> </TD>
    </TR>
              <%}
                   rs.close();
    cstmt.close();
    con.close();
    catch(Exception e)
    %>
    </TABLE>
    </BODY>
    </HTML>
    The Oracle PL/SQL package.procedure it is calling is:
         PROCEDURE open_rules_dtl (
              prc_rules_dtl_out          OUT     rc_fetch_rule_dtl,
              p_product_id_in          IN          NUMBER )
         IS
              vrc_rules_dtl               rc_fetch_rule_dtl;
         BEGIN
              OPEN vrc_rules_dtl FOR
                   SELECT
                        r.rule_id,
                        r.rule_name,
                        r.rule_objective,
                        r.rule_description,
                        r.clearance_requirement,
                        r.rule_type
                   FROM
                        eaicl_rule r
                   WHERE
                        r.is_old = 'N' AND
                        r.product_id = CHR( p_product_id_in )
                   ORDER BY
                        r.rule_name
              prc_rules_dtl_out := vrc_rules_dtl;
    END open_rules_dtl;
    I keep getting the following error on the webserver:
    [05/Dec/2001:16:56:02] info ( 632): JSP: JSP1x compiler threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSPC:\iPlanet\Server4\https-wacc\config\..\ClassCache\_jsps\_ss_test5_jsp.java:84: Incompatible type for =. Explicit cast needed to convert java.sql.CallableStatement to oracle.jdbc.driver.OracleCallableStatement.
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              ^
    I'm not sure how to fix it. I also need to pass the p_product_id parameter to the procedure.
    Hope someone can point me in the right direction. Thanks.

    Here's how you do an explicit cast:cstmt = (OracleCallableStatement)con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");

  • I want to convert number to hours in oracle 10 like this.

    Dear All
    Some can help me
    I want to convert below MS-SQL query in oracle 10g. please help me.
    for eg:
    Select numasdate,
    Cast(numasdate / 60 as Varchar) + ' hours ' +
    Cast(numasdate % 60 as Varchar) + ' minutes'
    as [TotalHoursAndMinutes]
    From
    #SampleTable
    Output:
    9436 157 hours 16 minutes
    537 8 hours 57 minutes
    9323 155 hours 23 minutes
    12525 208 hours 45 minutes
    Edited by: Parwez on Jan 1, 2013 5:33 AM

    I want to convert number to hours in oracle 10g like this.
    537 8 hours 57 minutes
    9436 157 hours 16 minutes
    12525 208 hours 45 minutesTry this...
    Ranit>> with xx as(
      2      SELECT 537 num from dual UNION ALL
      3       SELECT 9436 num from dual UNION ALL
      4       SELECT 12525 num from dual
      5  )
      6  select
      7       num,
      8       FLOOR(num/60)||' hrs' as "hrs",
      9       MOD(num,60)||' minutes' as "minutes",
    10       FLOOR(num/60)||' hrs  '||MOD(num,60)||' minutes' as "Hours.Mins"
    11  from xx;
           NUM hrs                                          minutes                                          Hours.Mins                                                                                                        
           537 8 hrs                                        57 minutes                                       8 hrs  57 minutes                                                                                                 
          9436 157 hrs                                      16 minutes                                       157 hrs  16 minutes                                                                                               
         12525 208 hrs                                      45 minutes                                       208 hrs  45 minutes                                                                                                Edited by: ranit B on Jan 1, 2013 6:51 PM
    --- Hey John... I just did it and saw your hint now !!!

  • How to convert varchar to BLOB in oracle 10g?

    Hi all,
    I have 2 columns A and B which are of varchar2(2000) dataype.
    I would like to concatinate these 2 columns and convert them into BLOB in oracle 10g.
    Any help is appreciated.
    Regards,
    Ravi

    don't use BLOB to store large text, use CLOB instead
    anyway:
    SQL> create table test
      2  (txt varchar2(10)
      3  ,other varchar2(10)
      4  );
    Table created.
    SQL>
    SQL> insert into test values ('some text', 'other text');
    1 row created.
    SQL>
    SQL> create table test2
      2  (col blob)
      3  /
    Table created.
    SQL>
    SQL> insert into test2
      2  select utl_raw.cast_to_raw (txt||other)
      3    from test
      4  /
    1 row created.
    SQL> select *
      2    from test2
      3  /
    SP2-0678: Column or attribute type can not be displayed by SQL*Plus
    SQL>
    SQL> select utl_raw.cast_to_varchar2(col)
      2    from test2
      3  /
    UTL_RAW.CAST_TO_VARCHAR2(COL)
    some textother text
    SQL>
    SQL> drop table test
      2  /
    Table dropped.
    SQL> drop table test2
      2  /
    Table dropped.

  • How to convert HTTP to HTTPS in Oracle Application Server 10g(10.1.3)

    Can you please suggest notes to convert HTTP to HTTPS in Oracle Application Server 10g(10.1.3) as we need this to integrate the custom apps with EBS(12.1.3)?
    Appreciate your quick response,
    RM

    For Oracle EBS R12, the docs provided above should be helpful. If you want to configure the application server with SSL (assuming you have 10gAS installed), please refer to Oracle AS10g documentation -- Secure Sockets Layer (SSL)
    Oracle Application Server 10g Release 3 Documentation
    http://www.oracle.com/technetwork/middleware/ias/documentation/index.html
    Secure Sockets Layer (SSL)
    http://download.oracle.com/docs/cd/B25221_04/core.1013/b25209/part4.htm#BEHBDFGD
    Thanks,
    Hussein

  • To Convert Data From Access To Oracle

    Hi Allz,
    Is there any tool to convert mdb (microsoft data base) data to oracle 9i , because in oracle 8 there is Microsft Access Tool for Oracle, through that tool we can covert mdb data to oracle.How can we convert the same data in oracle 9i.
    Thanks

    You could use Oracles Migration Workbench
    http://www.oracle.com/technology/tech/migration/index.html

  • How can i convert data from DBF to oracle database 10g?

    Sir,
    How can i convert data from DBF to oracle database 10g?

    I assume you at least know how to dump the contents of foxpro dbf file into CSV format.
    Regarding SQL*Loader, hope this demo makes it a bit clear to you...
    http://www.princeton.edu/~storacle/sqlloader_demo.shtml
    I agree that it is an old web page (references Oracle 8.0.5) but basics remain the same.
    If it is still unclear to you after referring above link, then get an Oracle consultant.

  • Converting DB2 stored procedure to Oracle?

    I need a little help with a problem I ran across this week. I have an existing DB2 Stored procedure that calls a COBOL program. (See the procedure below). Now, I need to convert this DB2 to an Oracle Stored Procedure. I need the procedure to call the same COBOL program that this DB2 procedure does. Is it possible in Oracle? Do I need to write a Java wrapper class instead? Please help!!
    CREATE PROCEDURE CO_CASEINFORMATION (
    IN PARM1 CHAR(006) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM2 CHAR(018) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM3 CHAR(004) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM4 CHAR(008) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM5 CHAR(026) FOR SBCS DATA CCSID EBCDIC
    LANGUAGE COBOL
    EXTERNAL NAME COSP183
    COLLID CACSDEV9
    PARAMETER STYLE GENERAL
    NOT DETERMINISTIC
    MODIFIES SQL DATA
    WLM ENVIRONMENT CACSDEV9
    STAY RESIDENT YES
    RESULT SETS 01
    ;

    Although I've never done that with COBOL, the documentation says it is possible to call an external COBOL procedure from within Oracle, without a Java wrapper class.
    The way to do it is to rebuild your COBOL program with the Pro*COBOL pre-compiler.
    Read the Pro*COBOL Programmer's Guide for more details.

  • Converting .RDF file to .XLS file

    Hi Experts
    Can anybody tell me How to convert .RDF file into excel sheet.Plz Reply me
    Thanx
    Sunit

    Hello,
    First of all generate delimited text file after running report using Generate to File option from file menu.
    then,try to open that generated text file in Excel,Excel will display Text import wizard,follow steps and you will get data in Excel.
    Cheers !
    null

  • Decimal of SQL Server getting converted to Whole number in ORACLE

    Hi All,
    I am using ORACLESQL Developer tool to migrate database from SQL Server to ORACLE. The decimal datatype in Sql Server is not getting converted to its equivalent in ORACLE. Do anyone face the same problem? Its getting converted to WHOLE number.
    Also I am able to import data only from Excel sheet. Is therre any other option to import data using this tool?
    Also is the tool the best to use for migration? Please give me your suggestions pls since I am facing this conversion problem after import lakhs of data.
    I am using version 1.1.3
    Thanks in Advance,
    Srinivasan.T

    I have upgraded to the version mentioned by you. Even now it is not getting upgraded. I am exporting data using Excel sheet only. Is it possible for you to explain how to migrate data thru SQL * PLUS?
    Thanks,
    Srinivasan.T

  • Converting between tables in an Oracle Lite Database

    We have a standalone application that uses Oracle Lite. A requirement we have from a new customer is to use their Oracle Lite database structure or to come up with a mechanism that sends the data between the 2 different structures.
    Both the structures reside in the same database.
    Initial thoughts were to write triggers on both structures that convert the data or to use XML / XSL and treat them as seperate apps.
    However, I'm wondering if there is a different way. Do Oracle provide any tools that can help with mapping between 2 different structures that hold the same domain data?
    Anyone got any better ideas?
    Cheers, Matt

    We have a standalone application that uses Oracle Lite. A requirement we have from a new customer is to use their Oracle Lite database structure or to come up with a mechanism that sends the data between the 2 different structures.
    Both the structures reside in the same database.
    Initial thoughts were to write triggers on both structures that convert the data or to use XML / XSL and treat them as seperate apps.
    However, I'm wondering if there is a different way. Do Oracle provide any tools that can help with mapping between 2 different structures that hold the same domain data?
    Anyone got any better ideas?
    Cheers, Matt

  • Convert CLOB to VARCHAR2 in Oracle 8i

    Hello all,
    I would like to convert a CLOB column from a table to a VARCHAR2.
    How can I do this?
    I would like that this works in Oracle 8i, 9i and 10g.
    Thank you very much.

    Hello APC,
    I found the problem.
    I have Oracle Reports 6i + patch 17.
    The problem was that I couldn't select a CLOB column and store his value in a CLOB variable.
    I needed to do the conversion DBMS_LOB.SUBSTR in the select statement and store his value in a VARCHAR2 variable.
    Thank you

Maybe you are looking for

  • Month View - always show next week, even if in next month

    Is there a way to always show the next week in Month view? i.e. I'd always like to see Next week, even if it's in the next month. e.g. June ends Saturday 30th, but I cannot see Next Week unless I skip to next month.

  • Issue with XML in BLOB

    Hi, As part of my project I am using BLOB to store some XML we receive in files. We normally use NCLOB, but we might need to store binary files as well so we are using BLOB now. What have noticed is that if a put an XML in the BLOB, then when I retri

  • Write to BMP or JPG file

    Can anyone tell me if there is a VI available that will write a graph display to a BMP if JPG file. This is to save having to [print screen] and edit the picture all the time. Yours sincerely, Chris McCrory Project Engineer __________________________

  • Java with xml

    Hi all, I am very new for java programming. I want to know how we retrieve data from xml file with the help of java programm. plz provide an example with code. Thanks

  • Motion 4 importing problems

    Whenever I import video/pictures into motion, all I see is the black background and the handles to transform the object (picture or video) and on video, I can play the audio, but the video doesn't show. Any ideas why?