Reports upgradation from 6i to 10g

Hi!
We are upgrading all our reports and forms from 6i to 10g.
I am facing the following problem.
In our 6i report, we were scheduling a report from the report server (frequency every hour).
Here the output pdf file we are storing in a folder on the server.
We are assigning the full pathname and file name to the Desname in the After Parameter form Report trigger.
Desname := directory path||filename.pdf
This command works in 6i. The output pdf file is generated in the respective folder. But however this command is not working in the 10g server.
If we dont assign the path and file name to the Desname parameter then the o/p file is generated. It is going to the default location.
Can anybody help me in solving this problem? Is there any other method to achieve the same result?

Is there anybody who can help me on this? I need help urgently in this matter.

Similar Messages

  • Report upgraded from 6i to 10g not displaying data.

    Hi,
    I upgraded one report from 6i to 10g,
    When I'm running the report for the same set of data.
    After changing the layout for few fields in the subframe.
    first time it has shown the data in the report output but now same report with same data is not displying the output.
    I'm sure this is due to some layout problem.(may be due to upgradation from 6i to 10g)
    Please guide me to resolve this problem.

    Hello,
    How do you execute your Reports ?
    Do you execute it from the Builder ?
    If you execute it from the Builder, do you use Run Web Layout or Run Paper Layout ?
    (If you have upgraded a Reports From 6i, there is no web layout , so you have to use the Run paper Layout
    The web layout is something new that appeared in Reports 9.0.2)
    Regard

  • Reports Migration from 6i to 10g

    In my Project we are having many reports .and we are trying to Migrate those from 6i to 10g can anyone tell me what are the suggestions i can make during this process .. i am the only person who is going to involve in complete migration solely. Any Ideas and suggestions welcome ..

    Hello,
    Oracle Reports: Migration from 6i to 10g
    http://www.oracle.com/technology/products/reports/migration/index.html
    FAQ Migration
    http://www.oracle.com/technology/products/reports/htdocs/faq/faq_migration.htm
    Regards

  • Steps to upgrade from 9i to 10g

    How to upgrade from 9i to 10g?
    i dont have any idea

    Choose an Upgrade Method
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96530/migprep.htm#1006935
    10g Upgrade Companion: Doc ID: Note:466181.1
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:3420297705404971166::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,466181.1,1,1,1,helvetica
    Adith

  • Steps to upgrade from 8i  to 10g

    i look for some documents about this topic 'steps to upgrade from 8i to 10g' but i couldn't find in the site...
    would you mind tell me where can i find a complete document , or if you can tell me in details please.
    thanks alot in advance

    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10763/toc.htm
    Nicolas.

  • Issue in oracle upgrade from 9i to 10g.

    Hi,
    I have an MS access application running on oracle database.Recently database is upgraded from 9i to 10g.
    After upgrade application is facing the conversion problem.it is throwing an error on varchar and time stamp field showing invalid timestamp message.NLS setting of both the version is same.Please suggest.

    Thank you,
    Here are the answers of your queries.
    Yes,This is affecting only MS access application because no other application is accessing this database.
    No,No other component of the application is changed or upgraded it is only database which is upgraded.
    The error is ORA-06502:PL/SQL:numeric or value error:Character to number conversion error.(In the application the value of this field is defind as Double and in database table it is VarChar and the system was working fine untill database upgrade after upgrade it is giving above error.)
    For another field it is giving the error "No valid timestamp" although the same was working fine before upgrade.
    No I have not traced the actual sessions but from the backup of 9i I have checked NLS setting and compared it with 10g and found that both are the same.
    Hope I have not confused you.

  • Sorting issue after upgrade from 9i to 10g

    Dear all,
    It is found that the sorting behavior is different after upgrade from 9i to 10g.
    In 9i, even if the SQL statement does not specify the ORDER BY clause, the sorting order is consistent for a particular SQL statement and most likely the sequence follows the searched key fields' order.
    After upgrade to 10g, the query output could vary as long as the SQL statement does not specify the ORDER BY clause.
    Is it due to the Reverse Docid Sorting issue? How can I troubleshoot this issue?
    Thanks for your help,
    M.T.

    903714 wrote:
    Dear all,
    It is found that the sorting behavior is different after upgrade from 9i to 10g.
    In 9i, even if the SQL statement does not specify the ORDER BY clause, the sorting order is consistent for a particular SQL statement and most likely the sequence follows the searched key fields' order.
    After upgrade to 10g, the query output could vary as long as the SQL statement does not specify the ORDER BY clause.
    Is it due to the Reverse Docid Sorting issue? How can I troubleshoot this issue?
    Thanks for your help,
    M.T. This is expected behavior in 10g. Oracle will not order the dataset for you unless and until you explicitly specify it.
    So without using order by clause in 10g, oracle doesn't guarantee that rows will be ordered.
    To go back to old behavior like 9i, you can set a workaround by
    alter session set "_newsort_enabled"=false;
    Also see MOS - Order Of Data Retrieval Differs after upgrading 9i To 10g [ID 456707.1]

  • Tag not being created after upgrade from 9i to 10g

    We're upgrading from 9i to 10g - about time - and we've hit some "unexpected behaviour".
    If I run
        SELECT  xmlelement("TestMsg",
                        XMLFOREST(m.tx_id   "MsgNum",
                                  m.tx_type "MsgTyp"
                                  ) MESSAGE -- this is the alias for the XMLFOREST item
                        ) ut_xml
        FROM (select 1 tx_id, 'test' tx_type from dual) mon my 9.2.0.4 database I get
    <TestMsg>
      <MESSAGE>
        <MsgNum>1</MsgNum>
        <MsgTyp>test</MsgTyp>
      </MESSAGE>
    </TestMsg>- an extra tag is created based on the alias of the XMLFOREST item.
    on my 10.2.0.4 database I get
    <TestMsg>
      <MsgNum>1</MsgNum>
      <MsgTyp>test</MsgTyp>
    </TestMsg>no MESSAGE tag.
    Some of the XML parsing we have is taking account of this MESSAGE tag and hence is now breaking.
    I guess my question is whether we've messed up the install of XMLDB or whether the 9i behaviour was incorrect and we should amend the parsing to the 10g behaviour.

    Behavior change...?
    SELECT  xmlelement("TestMsg",
                        xmlelement("MESSAGE",
                        XMLFOREST(m.tx_id   "MsgNum",
                                  m.tx_type "MsgTyp"
                        )) ut_xml
    FROM (select 1 tx_id, 'test' tx_type from dual) m
    will give output in 10.2.0.4.0 EE
    UT_XML
    <TestMsg>
       <MESSAGE>
          <MsgNum>1</MsgNum>
          <MsgTyp>test</MsgTyp>
       </MESSAGE>
    </TestMsg>Edited by: Marco Gralike on Mar 29, 2011 1:07 PM

  • Database upgrade from 8i to 10g using exp/imp

    Dear Friends,
    Please provide the steps to upgrade from 8i to 10g using exp/imp.
    Thanks,
    Rathinavel

    Hi;
    Please also see cold backup option
    How to migrate from 8i to 10g to new server using cold backup [ID 742108.1]
    Also see:
    Upgrading from 8i to 10g with import utility
    http://searchoracle.techtarget.com/answer/Upgrading-from-8i-to-10g-with-import-utility
    Regard
    Helios

  • Upgrade from 8i to 10g

    Can a direct upgrade from 8i to 10g is possible?
    OR
    Do we need to upgraded from 8i to 9i , before we upgrade to 10g?
    If we can migrate from 8i to 10g , directly please suggest me the metalink note number.
    Thanks
    Naveen

    Dear Naveenanand,
    I Agree with Jaffy!,
    You can direct upgrade only if the current version is 8.1.7 or up. If this is not your case, you will need Upgrade to an intermediate Oracle Database release before you can upgrade to the new Oracle Database 10g release.
    Here is a example:
    8.0.n -> 8.1.7.4 -> 10.2
    8.1.n -> 8.1.7.4 -> 10.2
    All information you will need, you can found in this link:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/preup.htm#i1007718
    Best Regards,
    Francisco Munoz Alvarez
    www.oraclenz.com

  • Does anyone upgrade from 9iAS to 10g?

    Dear all,
    Does anyone upgrade from 9iAS to 10g only? The EBS version (11.5.8) and the oracle database version (9.2.0.4) are still same.
    Best Regards,
    Amy

    You can upgrade 9i database to 10g in Ebusiness suite using metalink note
    Note:362203.1 Oracle E-Business Suite Release 11i with Oracle Database 10g Release 2 (10.2.0)
    Note:369693.1 Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2
    But for the application server components you can follow
    Note:125767.1 Upgrading Developer 6i with Oracle Applications 11i
    But Application server itself should be upgraded from 9iAS to 10gAS if you are planning to move your oracle applications Ebusiness suite to release 12.
    Check the following metalink note
    Note:403339.1 Upgrade R11i to R12
    Sami Malik

  • Calling crystal reports 11 from oracle forms 10g

    Could you provide me step by step a solution on how I can call crystal reports 11 from oracle forms 10g application.

    Hi,
    Use web.show_document for calling the reports. Check out forms online help for syntax and example of web.show_document.
    -Arun

  • Upgrading from 9i to 10g on OS X?

    Has anybody successfully upgraded from 9i to 10g on OS X?
    I am stuck with Mac OS X 10.2.6 Jaguar for the next several weeks until I can upgrade to 10.3.4 Panther. According to the Oracle 10g on OS/X Oracle Installation Errata Information and Tools ( see http://www.crispdata.com/oracle_osx/ ), 10.3.4 is required for 10g installation.
    In the meantime, I would prefer to experiment with 9i to learn more about Oracle database technology, and then upgrade to 10g after upgrading the OS to 10.3.4.
    Has anybody already done this? Is this feasible?
    -- Benjamin L. Russell
    [email protected] (previously OTN Member, Since: Jul, 2000--just created new OTN account because of change in e-mail address)

    Would it be sufficient to just set the passwords to expired? In this case generated the needed statements on your source DB and apply them on your destination DB, i.e.
    select 'alter user ' || username || ' password expire;' from dba_users where account_status like 'EXPIRED%';
    You might also consider other status values. Possible values are
    OPEN
    EXPIRED
    EXPIRED(GRACE)
    LOCKED(TIMED)
    LOCKED
    EXPIRED & LOCKED(TIMED)
    EXPIRED(GRACE) & LOCKED(TIMED)
    EXPIRED & LOCKED
    EXPIRED(GRACE) & LOCKED
    e.g.
    select 'alter user ' || username || ' account lock;' from dba_users where account_status like '%LOCK%';

  • The optimizer changed after upgrade from 8i to 10g

    I have upgraded my Oracle database from 8i (8.1.7.3) to 10g (10.2.0.3). After upgraded, there's some SQLs are with performance issue that the response time is very slow. The SQL can run very fast (around 1 seconde) in the pre-upgrade environment. Also, after generating the execution plan, there's different from the original enivronment (8i) which the query using some full table scan instead of index scan originally used in 8i.
    The optimizer_mode of 8i is RULE and it's CHOOSE when upgraded.
    My questions are:
    1. Do I have any init.ora parameters setting in 10g environment which differ from 8i?
    2. What method of analyzing tables is appropriate to use in 10g? Will this affect the performance like my case?
    Thanks,
    Wai

    Please have a look to following threads:
    Re: Optimizer Statistics collection after upgrade from 8i to 10R2
    Re: DB upgrade from oracle 8.1.7 to oracle 10.2.0.2

  • SQLException:Connection timed out- after upgrading from oracle9i to 10g

    Hi,
    Recently we upgraded from oracle 9i to 10g.
    We are using Oracle JDBC Driver version - 10.1.0.5.0 .
    In the application, when RMI server starts, the connectionpool (developed using stack) will be filled with 10 instances of fresh connections.
    After keeping the RMI server idle for some time ( >24 hours ) , the first transaction sent to the Database (using the connection instance popped out from stack(connectionpool) ) terminates with following exception and from the second transaction onwards everything works normally.
    Exception------
    java.sql.SQLException: Io exception: Connection timed out
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:443)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:942)
    at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1183)
    at util.DatabaseManager.fetchData(DatabaseManager.java:255)
    at util.TextRequestImpl.presentText(TextRequestImpl.java:105)
    at util.TextRequestServer.presentText(TextRequestServer.java:146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.sql.SQLException: Io exception: Connection timed out
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:443)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:942)
    at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1183)
    at util.DatabaseManager.fetchData(DatabaseManager.java:255)
    ... 13 more
    If am connecting to oracle9i(with Oracle JDBC Driver version - 9.0.2.0.0) ,everything works fine.
    Can anyone help me out to solve this issue?

    I attempted several upgrades and we decided it was better to implement the content under 10g fresh rather than attempt an upgrade.
    After 3-5 attempts through patching non of them provided us with re-produceable steps and we had different errors each time - mind you this was a few months back after initial release of upgrade patches.

Maybe you are looking for

  • Installed 10.7.3 software update, HP printers do not work anymore

    I installed the latest software update. None of my HP printers work anymore. I have an HP Deskjet 2330, and an HP C5580 All In One. I tried resetting and then I added the printers again. It did not work. I have a 13 inch Mac Book Pro that was made in

  • How can I view and convert .264 files from my security cameras for use on my Mac and the web?

    My security cams record in a .264 file format HD.  I want to view, edit, etc on my Mac, what software will do that and are there any easy tips to do this?  I'm new to Mac's so I'm not sure what is the best format to convert to?  mp4?  Suggestions? Th

  • Failed to load extension com.NAI.SysCallExt

    In system preferences, I made 'cd' my startup disk. Now, when I try to override and startup from hard disk, computer screen ends up with a black box in middle of screen. command-v yields text that includes this statement several times in yellow: "Fai

  • Build distribution error - WINNT.H

    When I go to build a distribution for my project I get an error for WINNT.H. It says:     cviincludes.h - 20 errors                   "WINNT.H"[523,10) syntax error; found 'indentifier' expecting ','. In the WINNT.h it highlights a line    __inline U

  • Agent 12c raises "Incident (non-critical) error / XML-20221"

    Hi , our agents (12c) are raising once in a while the following error: 2012-08-14 20:14:18,910 [36:pool-1-thread-1] ERROR - Incident (non-critical) error: oracle.sysman.gcagent.upload.UploadStoreForward$dequeuer$ResponseXMLException: <Line 1, Column