Conversion of .rdf canceled

Hi,
We are migrating reports from 10g(unix) to 11g(Linux).
I'm able to compile a report in 10g in report builder and Unix box using rwconverter.sh command and even I can compile the report in Report builder of 11g version.
But when I'm trying to compile in Linux environment using rwconverter.sh command, I'm getting messages as follows
Converting /u01/tools/middleware/11.1.2/reports/xyz/abc.rdf to /u01/tools/middleware/11.1.2/reports/xyz/abc.rep
Conversion of /u01/tools/middleware/11.1.2/reports/xyz/abc.rdf canceled
Please suggest me the solution.
Thanks,
Mukhtar

Hi, I am having the same issue. Did you solve the problem?
Thanks

Similar Messages

  • 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!

  • Conversion from RDF to XML Publisher

    Hai,
    This is my first posting. I am presently working on XML publisher.
    1) I need to convert reports from report builder 6 to XML publisher.
    I am using the following procedure.
    1. In the Define window change the output to XML.
    2. Run the report. Save the output as .XML file.
    3. Using the XML file generate the RTF file. Do necessary change.
    4. Register in the XML publisher administrator responsibility.
    Is this the correct process of converting the reports or is there any other method or tool that can be
    used?
    2)     Can you let me know the process of converting in BI publisher latest version also?
    Thanks in advance.

    Hi,
    It looks like you have got it pretty much spot on. There are a few things that you must ensure you have done correctly in the XMLP Admin responsibility for XMLP to pick up the templates when you run your concurrent program.
    1. Locate the required Concurrent Program definition and using the COPY button at the bottom left of the form copy the Concurrent Program and give it a new NAME and SHORT NAME. The main reason for doing this is that if Oracle releases a patch that updates the original Concurrent Program, it will not affect your new custom one. Make a note our you new Concurrent Program SHORT NAME as you will need this later.
    2. Change the output of your new Concurrent Program to XML and Save.
    3. Add your new Concurrent Program to the required Request Group so it can be seen by the responsibility you want to run it in.
    4. Run the report and save the XML Output to a location on your local machine.
    5. Using the MS Word Template Builder Plug in, load you XML Data and build your RTF template. Test this using the Preview functionality in the Template Builder plugin.
    6. Login to eBusiness Suite with the XML Publisher Administrator responsibility and go to Data Template.
    7. Create a new Data Definition. The Name and Description can be anything meaningful. HOWEVER the SHORT NAME must be exactly the same as the SHORT NAME of the new Concurrent Program you have created. If this is incorrect XMLP will not be able to pick up the Data Definition when the Concurrent Program is run!! Click Save/Apply and that is that step completed.
    8. Click the Template Manager tab at the top right of the page and create a new Template Definition. Here the Name and Short Name can be anything you like. Select the name of the Data Definition you have just created. The template type should be RTF for an RTF Word template. Click Save/Apply
    9. Now run your Concurrent Program and the XMLP should automatically pick up your template and output your XMLP Report.
    There are tools available that can convert an RDF Oracle Report, these are available in the latest version of the MS Word Template Builder Plugin. These will take an RDF file and create a DATA TEMPLATE (an XML version of the RDF query), and an RTF Template (a template version of the RDF Layout).
    These can then be uploaded into eBusiness Suite in much the same way as detail above. The difference is that you have to create a new Concurrent Program and instead of using an Oracle Reports Concurrent EXECUTABLE, you use an XMLP Concurrent EXECUTABLE. This is well documented in the XMLP User Guide under Data Templates.
    I hope this helps a little. Please let me know if you are still having issues running RDF reports with XMLP.
    Regards,
    Cj

  • RWCONVERTER giving cancelled message

    I am trying to create a new form which wil compile forms and reports in the mid tier and generate the fmx, plx and reps. I created a form with multiple record blocks and have the following code in WBP trigger.
    declare
    staging_folder_linux varchar2(1000) := '/oastest/staging/';
    v_filename varchar2(100);
    v_connect_String varchar2(100);
    v_module_type varchar2(10);
    v_script_to_execute varchar2(25);
    v_filename_no_ext varchar2(100);
    v_file_ext varchar2(50);
    begin
    V_Connect_String := Upper(Get_Application_Property(Username))||'/'||Upper(Get_Application_Property(Password))||'@'||Get_Application_Property(Connect_String);
    First_record;
    loop
    v_filename := substr(:file_path,instr(:file_path,'/',-1)+1);
    v_file_ext := substr(v_filename,instr(v_filename,'.',-1)+1);
    v_filename_no_ext := substr(v_filename,1,instr(v_filename,'.',-1)-1);
    if lower(v_file_ext) in('fmb','pll') Then
    v_script_to_execute := 'compile_one_fmb.sh';
    Elsif lower(v_file_ext) = 'rdf' Then
    v_script_to_execute := 'comp_one_rdf.sh';
    End if;
    if v_file_ext = 'fmb' then
    v_module_type := 'form';
    Elsif v_file_ext = 'pll' then
    v_module_type := 'library';
    End if;
    if v_script_to_execute = 'compile_one_fmb.sh' then
    host(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string||' '||v_module_type||' > '||staging_folder_linux||v_filename_no_ext||'.log');
    Elsif v_script_to_execute = 'comp_one_rdf.sh' then
    message(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string);pause;
    host(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string||' '||staging_folder_linux||v_filename_no_ext||' > '||staging_folder_linux||v_filename_no_ext||'.log');
    End if;
    exit when :system.last_record = 'TRUE';
    Next_record;
    End Loop;
    End;
    Form consists of three records
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /oastest/staging/abc1.fmb
    /oastest/staging/abc2.pll
    /oastest/staging/abc3.rdf
    Shell scripts
    ~~~~~~~~~
    compile_one_fmb.sh
    ~~~~~~~~~~~~~~~~~~
    export LD_LIBRARY_PATH=/u01/app/oracle/product/infra/FormsReports/lib:/u01/apps/lib_src:/u01/apps/lib:/u01/apps/fmx:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/server:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/native_threads:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386/client:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/../lib/i386:/usr/lib
    export FORMS_PATH=/u01/apps/lib:/u01/apps/fmx:/u01/apps/lib_src:/u01/apps/rdf:/u01/app/oracle/product/infra/FormsReports/forms
    frmcmp_batch userid=$2 module=$1 module_type=$3 compile_all=yes
    comp_one_rdf.sh
    ~~~~~~~~~~~~~~~
    export LD_LIBRARY_PATH=/u01/app/oracle/product/infra/FormsReports/lib:/u01/apps/lib_src:/u01/apps/lib:/u01/apps/fmx:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/server:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/native_threads:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386/client:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/../lib/i386:/usr/lib
    export FORMS_PATH=/u01/apps/lib:/u01/apps/fmx:/u01/apps/lib_src:/u01/apps/rdf:/u01/app/oracle/product/infra/FormsReports/forms
    rwconverter.sh userid=$2 source=$1 stype=rdffile dtype=repfile batch=yes overwrite=yes
    When I run the form i am able to generate fmx and plx. But on Rep i am getting this information on log file.
    abc3.log
    ~~~~~~~
    Report Builder: Release 10.1.2.0.2 - Production on Thu Nov 2 12:54:07 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Conversion of '/oastest/staging/adm_error_logs.rdf' cancelled.
    I am stuck here. any help appreciated.
    Thanks
    Muthu

    Hi Prathap,
    There is some problem in the definition of the Query.
    Please click on the check button before saving the query, it gives where the problem exists in it.
    Hope it helps.
    Veeerendra.

  • BAD UX, accepting and cancelled files in chat

    Am I the only one who has issues with the new files download in conversations?
    (accept, cancelled)
    It is so PC, you click on it, it doesnt reply ( take ages) and if you click again (because you think something went wrong) it gets cancelled.
    What smart ass puts the cancel button at the same place as the accept button, if he knows their system is so slow?
    What are your opinions? Have you experienced the same issue?

    Somebody in Adobe Corporate $$$ really needs to "experience" Adobe chat and online "support", or at least read a few of the transcripts. Those people are un*&^%$@ believeable.
    I just had to do a "clean" reinstall because I replaced a hard drive. I needed a simple "Challenge Code" to complete the install because I was installing an upgrade and I wasn't in the mood to install CS3 and CS4 only to have to unisntall them.
    Rahul said it was a "bad" number and that I should reboot, install again and come back and wait in line some moer (only 4 hours this time).
    I suggested that he check is own typing.
    Wonder of wonders, my code was suddenly "good" and I got the 6 digit code I needed.
    These foreign "support" people either do not read or do not understand the information that is provided to them, or they are not paying attention, or they jsut don't have enough grasp of the English language for the job they've been hired to do.
    It took all of 10 minutes to reinstall and update Edius 6.5. I took all the rest of the day to get through the Adobe reinstall.
    Sony and Grass Valley have US based support.
    Adobe Support will be the downfall of Adobe, and not competition or the economy.

  • The Adobe Reader conversion ability to Word (.docx files) will not work. How can I get my money back?

    I signed up and paid for the service that Adobe Reader advertizes that says it can convert PDF files to Word (.docx) files. I tried it immediately after purchasing it and it did not work. What it did was it converted it to a .docx file but the content was in the form of a picture and therefore uneditable. This does me no good. Basically, it took a screen shot of the PDF and then inserted it as a picture into a word file. I wouldn't call that conversion. I would like my money back. How can I get my money refunded to me?

    If the original PDF was an image, you need to perform OCR (text recognition) during the conversion.
    To cancel the subscription go to http://helpx.adobe.com/x-productkb/global/service-b.html
    [topic moved to ExportPDF forum]

  • Can't Open Excel File, please cancel my subscription

    I just signed up and made my first attempt to convert a file to Excel.  I was able to see the preview (pretty messy but probably fixable) but cannot get the downloaded file to open.  I keep receiving message: "There was a problem sending the command to the program."

    Hi,
    I received a message today saying my subscription has been cancelled.  I am
    not the party to this conversation who requested cancellation. That was
    "saidkans". After the "pending" period everything was working fine on my
    end.  Can you reinstate me?  I hesitate to start over with a new
    subscription for fear of causing even more confusion.
    Thanks,
    Mary Sabatini
    On Wed, Oct 15, 2014 at 12:09 PM, Adobe Forums <[email protected]>

  • Pdf conversion not working - please refund

    I have tried converting to .doc and .docx and can't populate either form after conversion.  Please cancel my subscription and refund to my card.

    Hi Graeme,
    I see you are all set.
    I apologize for the inconvenience.
    Sincerely, Stacy

  • C6-00 Cancel Sending A Text

    I just got a new C6 00 and I noticed there isn't an option to cancel sending a text if you click "Send" by accident. I've been trying to figure it out, but to no avail. Any suggestions?
    Solved!
    Go to Solution.

    Thanks for taking the time to answer guys! Angie, I hear what you're saying But I just feel that it would be a teeeenie bit inconvenient. Dump, I completely agree with you. I love my phone, but the simplest things like smileys, conversations and a cancel button really, really get to me. Anyway, thanks for trying to help guys. Guess I'm going to have to be more careful.

  • Report Compilation Error REP-1430 on Linux

    Good Day,
    I've been trying to compile a few reports on Linux Report Builder: Release 11.1.1.7.0
    All the other report can convert into .rep
    but there are 1 reports gives this error in the .tex file
    Conversion of CL3198.rdf canceled
    Inside the cmd it says
    REP-1430: A REP file for report CL3198.rdf cannot be created: compilation errors found.
    When i compile the report in the Report Builder 6i (ctrl + shift + K) it compiled successfully. I'm using the same schema in both Report Builder and cmd.
    How can i resolve this? Please help.
    Thanks in advance.
    Ikha.

    Similar issue here. It happens with just a few reports. I can compile them on reports builder, but not using rwconverter.sh I am using 11.1.2.
    Any clues so far?

  • Reports Compilation Errors: REP-25200 / REP-0004 / REP-1430

    Hello,
    When trying to compile 1 report on my Linux RHEL server, I get the following errors:
    [oracle@Linux2005 Source_9i]$ $ORACLE_HOME/bin/rwconverter.sh userid=system/manager1@oracleln batch=yes source=$ORACLE_HOME/forms90/Source_9i/BTSTMENT.rdf stype=rdffile overwrite=yes dtype=repfile
    Report Builder: Release 9.0.4.0.21 - Production on Sat Aug 6 14:19:14 2005
    (c) Copyright 2001 Oracle Corporation. All rights reserved.
    REP-25200: Converting '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf' to '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rep'...
    Conversion of '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf' cancelled.
    REP-0004: Warning: Unable to open user preference file.
    REP-1430: Cannot create REP File for report '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf'. Compilation errors found.
    [oracle@Linux2005 Source_9i]$ ls logo.gif
    logo.gif
    1) How can I resolve this issue ?
    Paolo

    No, not $ORACLE_HOME, but simply $HOME, the login home directory. I had that problem, and moving prefs.ora to $HOME solved it.
    About the other error, assuming that Windows and Linux machines connect to the same DB, and since you say that on Windows same programs compile and run properly, then one thing I can imagine is of upper/lower case names, that is on Linux something is not found, while on Windows it is, being Windows case insensitive. Just a thought....
    Could this be related to the environment variable set-up in my .bash_profile file ?I don't think so. If this was the case, then no programs should compile.
    Paul

  • Question of r25convm

    I make a report(using report 6.0) on Windows 2000.Then ftp to my unix host. then use 'r25convm' to compile it.
    command line like:r25convm overwrite=yes batch=yes dunit=character dtype=rexfile stype=rdffile source=CNCAPXMTDCR.rdf dest=CNCAPXMTDCR.rex
    but I recieve some error message:REP-25200:Conversing 'CNCAPXMTDCR.rdf' TO 'CNCAPXMTDCR.REX'...
    Conversion of 'CNCAPXMTDCR.rdf' cancelled.
    REP-0110:Unable to open file 'CNCAPXMTDCR.rdf'
    REP-1070:Object store failure occured.
    I don't know what's reason!

    Um- I might be missing something here, but I thought
    the point of Vector was that it's size can change
    dynamically, so you shouldn't need to set the limits?
    RichardSuppose your Vector is a Cache that is likely to contain, say, 3000-4000 Objects. Your Vector grows by doubling in size (default) and I think has a default size of 10 (I think). That means that you Vector will dynamically grow (an expensive operation) many (9) times. Also the final size of your Vector will be 5120 - an overcapacity (an hence memory waste) of 25%. If you had originally declared the Vector to be of size 3000 with a growth increment of 300 you will have more than halved the number of times the Vector has to grow plus you will have reduced wastage through overcapacity by a factor of 6.
    It is a shame that ArrayList does not provide this functionality. It grows by ~50% each time.

  • Error execute report in R12

    Hi all,
    I think I better change this question into a sharing because I'd solved my problem :p.
    Below is my first post in this thread before I found the solution :
    I hoped I put this in the right forum. Before I ask the question, here are my environment:
    Operating system : Oracle Enterprise Linux 4 update 6
    RDBMS : 10.2.0.3.0
    Oracle Applications : 12.0.4
    Report Builder : 10.1.2.0.2
    I created a report using Oracle Report Developer then I upload it to my Apps machine. After set all the executable and validation set I tested the report. At first the request completed with status Warning. Viewed the log I got warning like this :
    REP-0004: Warning: Unable to open user preference file
    After browse metalink and OTN (such as in Reports Compilation Errors: REP-25200 / REP-0004 / REP-1430 and in Re: REP-0004 Error... it seems that the problem was because prefs.ora was not present in $HOME so I copied the prefs.ora file from /apps/tech_st/10.1.2/tools/admin to $HOME then I requested the reports again. This time that error didn't show up and the request completed normal but there's no output at all. The same report did show output when tested in Oracle Report Developer.
    I opened the report file in Report Developer and tried to compile it (Tools > File Conversion) from rdf to rdf using different name then I copied the report and tested again. This time the request completed normal but still no output. When I viewed the log I got this error message:
    Oracle error -6502: ORA-06502: PL/SQL: numeric or value error: associative array shape is not consistent with session parameters has been detected in fnd_global.put(PERMISSION_CODE, FND_PERMIT_0000).
    APP-FND-01564: Oracle error 6502 in FDXNC
    Cause: FDXNC failed due to ORA-06502: PL/SQL: numeric or value error: associative array shape is not consistent with session parameters
    ORA-06512: at "APPS.FND_GLOBAL", line 1233
    ORA-06512: at "APPS.FND_GLOBAL", line 1432
    ORA-06512: at line 1.
    The SQL statement being executed at the time of the error was: begin fnd_global.set_nls_context( p_nls_numeric_characters => :nc ); end; and was executed from the file &ERRFILE.
    The routine FDPREP was unable to set the numeric character to .,.
    So I tried another way, I recreate the report but try to display only some fields. The fields must be put in a repeating frame because if I tried to put in a normal frame caused reports developer displayed error message that I put the field below it's frequency. After put some fields in the repeating frame I tested the report again in Oracle Apps. this time the result was Completed Normal but still no data (0 byte) though in Reports Developer it showed some data. After some test I got conclusion that the data can only be put in a repeating frame if all the data were put in the same level (e.g.: all the field put in the same repeating frame) and can't be break down where there exist repeating frame in a repeating frame (nested repeating frame) as if you want to create grouping while want I want is to create grouping. Using Reports Developer wizard to create the report gave me the same result, no data displayed.
    Now, anyone know how to solve that problem? thanks.
    and now for the solution :
    For REP-0004: Warning: Unable to open user preference file error message
    Just copy the prefs.ora file from /apps/tech_st/10.1.2/tools/admin to $HOME then the error message wouldn't show up anymore. Though based on my experience this error message can be omitted further analyze would be good to know if there's any impact to the system or performance or anything else.
    For no data displayed error
    Make sure the setup was right especially the token field as that was my problem. The token field was not the same as the bind variable in the report query, that's why the request completed normal and no data displayed :P it's very foolish of me to miss that simple thing.
    thank you all
    Message was edited by:
    UD

    mdtaylor wrote:
    Since you are on 10.2.0.3, you may want to also look at database patch 5890966 INTERMITTENT ORA-06502 DURING PEAK LOADING
    Associative Array Shape Is Not Consistent With Session Parameter at Peak Load     
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=467688.1
    Hi Michael,
    Yes, that patch is exactly I got from oracle support, however I'm having a problem to apply it :P
    Here are what I usually did to apply patch in E-Biz :
    1. Source the application environment using the environment file in APPL_TOP
    2. Enable maintenance mode using adadmin
    3. Apply patch using adpatch
    4. Disable maintenance mode using adadmin
    5. Start all the services
    How to apply patch just for database only? Reading the readme file it said that to apply patch was only using command :
    $ opatch apply
    However we need to ensure that the directory containing the opatch script appears in $PATH. I found that opatch.pl exist in $ORACLE_HOME/Opatch but I can't use opatch though I had sourcing application enviroment or database environment.
    I echoed $PATH and $ORACLE_HOME/Opatch (which either ../db/tech_st/10.2.0 for database or ../apps/tech_st/10.1.2/Opatch) and found was not in the $PATH.
    I assumed that I shouldn't change the application environment or database environment file recklessly so that $ORACLE_HOME/Opatch appears in $PATH.
    However if I tried to run opatch directly from it's folder then I got this following error :
    OPatch cannot find a valid oraInst.loc file to locate Central Inventory
    So my questions are :
    1. Do I need to source environment before running opatch? If yes, which one, application environment or database environment?
    2. How to set the Central Inventory location so that opatch recognized it? Is it by sourcing the environment in question 1?
    3. Which opatch must I run? The one in application tier or in database tier?
    4. How to run it? Type all the path directly (as /db/tech_st/10.2.0/OPatch/opatch)?
    Thx

  • How to print arabic text as water mark in XML Publisher

    Hi All,
    I am working with Arabic reports,which is conversion of RDF Reports to XML Publisher Reports.
    I Developed RTF template,here problem is how  can i use Arabic text as a water mark in template.
    Please provide me suggestions.
    Thanks in advance
    Regards
    Amar

    do you have arabic text in your report ? is it correct ?
    How To Setup XML Publisher To Show Arabic Characters (Doc ID 556995.1)
    so you can try
    ARABIC Font Shows As ?? Question Marks In Postscript Reports (Doc ID 981174.1)
    you can also post SR

  • RTFTemplateGenerator

    Hello All,
    When running the following command under $JAVA_TOP in process of conversion of RDF to BIP getting the following error, Please advice.
    java oracle.apps.xdo.rdfparser.RTFTemplateGenerator /tmp/bip/ZENINMHD.xml
    java.lang.NullPointerException
    at oracle.apps.xdo.flowgenerator.rtf.table.TableRender.printTableDef(TableRender.java:97)
    at oracle.apps.xdo.flowgenerator.rtf.table.RTFFRow.endRow(RTFFRow.java:147)
    at oracle.apps.xdo.flowgenerator.rtf.RTFGenerator.endRow(RTFGenerator.java:1422)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.endRow(RTFTemplateGenerator.java:1728)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1343)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1079)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processReportSubsection(RTFTemplateGenerator.java:968)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.createSection(RTFTemplateGenerator.java:944)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.createDocument(RTFTemplateGenerator.java:932)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.main(RTFTemplateGenerator.java:226)

    Got the same error myself, I don't know how to resolve it either. Happens with old or new bip classes.
    set CLASSPATH=ojdbc14.jar;orai18n.jar;ocrs12.jar;j6241631_xdo.jar;xdoparser.jar;xmlparserv2-904.jar;i18nAPI_v3.jar;collections.jar;aolj.jar;
    set JAVA_CLASS=oracle.apps.xdo.rdfparser.RTFTemplateGenerator
    set JAVA_BINARY=java
    set JAVA_OPTS=-Xmx256M
    set JAVA_CMD=%JAVA_BINARY% -cp %CLASSPATH% %JAVA_OPTS% %JAVA_CLASS% "C:\\R12\\lib\XXFI_RA_RAXINV.xml"
    echo %JAVA_CMD%
    %JAVA_CMD% c:\R12\lib>echo off
    java -cp ojdbc14.jar;orai18n.jar;ocrs12.jar;j6241631_xdo.jar;xdoparser.jar;xmlparserv2-904.jar;i18nAPI_v3.jar;collections.jar
    ;aolj.jar; -Xmx256M oracle.apps.xdo.rdfparser.RTFTemplateGenerator "C:\\R12\\lib\XXFI_RA_RAXINV.xml"
    [011112_072901413][][ERROR] Table structure is not correct. start/end cell does not match.
    [011112_072901419][][ERROR] Table structure is not correct. Cannot start a table in a row.
    [011112_072901419][][ERROR] Table structure is not correct. start/end row does not match.
    [011112_072901461][][ERROR] Table structure is not correct. startCell() called without startTable().
    [011112_072901461][][ERROR] Table structure is not correct. endRow() called without startTable().
    [011112_072901462][][ERROR] Table structure is not correct. startTable()/endTable() does not match.
    [011112_072902130][][ERROR] Table structure is not correct. start/end cell does not match.
    [011112_072902282][][ERROR] Table structure is not correct. Cannot start a table in a row.
    [011112_072902282][][ERROR] Table structure is not correct. start/end row does not match.
    [011112_072902295][][ERROR] Table structure is not correct. start/end cell does not match.
    [011112_072902307][][ERROR] Table structure is not correct. start/end row does not match.
    [011112_072902360][][ERROR] Table structure is not correct. start/end cell does not match.
    [011112_072902407][][ERROR] Table structure is not correct. Cannot add a paragraph to a row.
    [011112_072902408][][ERROR] Table structure is not correct. Cannot add a paragraph to a row.
    [011112_072902419][][ERROR] Table structure is not correct. Cannot add a paragraph to a row.
    [011112_072902420][][ERROR] Table structure is not correct. Cannot start a table in a row.
    [011112_072902420][][ERROR] Table structure is not correct. start/end row does not match.
    [011112_072902445][][ERROR] Table structure is not correct. startCell() called without startTable().
    [011112_072902451][][ERROR] Table structure is not correct. endRow() called without startTable().
    [011112_072902451][][ERROR] Table structure is not correct. startTable()/endTable() does not match.
    java.lang.StringIndexOutOfBoundsException: String index out of range: 133
    at java.lang.String.substring(String.java:1522)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.textFieldParagraph(RTFTemplateGenerator.java:1491)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1366)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1257)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1153)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1257)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1153)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1257)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processChildElements(RTFTemplateGenerator.java:1052)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.processReportSubsection(RTFTemplateGenerator.java:941)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.createSection(RTFTemplateGenerator.java:924)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.createDocument(RTFTemplateGenerator.java:905)
    at oracle.apps.xdo.rdfparser.RTFTemplateGenerator.main(RTFTemplateGenerator.java:199)
    Edited by: Ike Wiggins on Jan 11, 2012 11:27 AM

Maybe you are looking for

  • Domain name link up a mess

    I am OS 10.5.6 on a MacBook Pro and iWeb '08. I have 3 iWeb sites. One site, let's call it "A" is the one I want linked to my domain name, so I reconfigured my CNAME to point to my me.com account. However, I can get only C to show up on my domain nam

  • BAPI for Vendor Contact Person.

    Hi,    My requirement is to have a BAPI which will insert / update a Contacts Person address or other Details for Vendor(i.e XK02) and that to Contact Person.   Other ideas are also welcome. Can anyone suggest? Or Guru's, u want some more clarificati

  • Gmail Password Reset

    I'm hoping someone can help! Until today, I was receiving and sending emails on my BlackBerry just fine. This morning, I thought it was a good time to change my gmail password, and did so on my laptop. Then noticed I wasn't getting my emails and real

  • Gradient Tool No Worky

    When I create a gradient and fill with it, sometimes the gradient transform tool works perfectly. Other times, I click on the gradient fill with the gradient transform tool and the gradient is selected as if I clicked it with the "Selection Tool." I

  • SAP MII  certification

    Are there any certifications available for SAP MII or any plans for the same in the near future?