Migrating to Oracle Reports 6i from Oracle Report 9i

Hi all,
We re-compiled original Forms & Reports 6i source code with Oracle 9i Forms & Reports.
Forms are working really nice with almost no change at all with Oracle 9ias Forms services and Oracle 8i as db. The Oracle 9ias server is W2k. Will be upgrading to oracle 9i db in a short time.
The only change we applied to forms source code was the function to call reports. We are using WEB.SHOW_DOCUMENT() instead of RUN_PRODUCT.
i.e. the URl is formed in all reports as
http://ip_address:port/reports/rwservlet?DESTYPE=cache&DESFORMAT=PDF&userid=user/passwd@dbname&report=f:\web\formas\ametas\REP_DET_METAS_DPTO.REP&estrategia_par='08'&centro_par=249&depto_par=27100&anio_par=2003&TRIMESTRE_PAR=1
At the beginning we used directly the 6i reports but they were running inconsistently, after several calls to reports they got stock and we did need to reboot report services.
Then as a suggestion we re-build only two reports in reports 9i for testing. But same result when running in combination with 6i reports. Combination means, sometimes called 6i reports someothers reports in 9i.
The reports run fine several times but inconsistently. What I mean is that they can be running normaly many times and suddenly the reports server sends this message
REP-50002:Server is shutting down
DBA reported this issue to our local support but they said configuration is ok.
In other tests and only running 9i reports it seems not getting stock never, at least we run two 9i reports more than 40 times. So the problem seems to be when we run 9i reports in combination with 6i reports. We are planning to migrate all our reports but this mean to rebuild all reports again.
Is someone facing this kind of problem?
Or is this the only solution? Losting men/machine hours rebuilding the reports.
Any suggestion for my DBA to check in configuration?

Sorry for the confusion the subject for this issue should be
Migrating to Oracle Reports 9i from Oracle Reports 6i

Similar Messages

  • Problem calling XML Report Publisher from Oracle Reports

    Hi,
    I'm facing a problem in calling XML Report Publisher from Oracle Reports.
    Basically, I'm trying to customise Dunning Letter program. The program which is submitted calls another program. I have customised the second program and added a call to a stored procedure which in turn calls XML Report Publisher.I have created a template and attached it to the second program as well.
    The procedure code is as follows.
    v_request_id := FND_REQUEST.SUBMIT_REQUEST(application => 'AR'
    ,program => 'ARDLP_NON_SRS'
    ,description => 'Dunning Letter Print from Dunning Letter Generate'
    ,sub_request => FALSE
    l_status := fnd_concurrent.WAIT_FOR_REQUEST
    ( REQUEST_ID => v_request_id,
    INTERVAL => 15,
    MAX_WAIT => 180,
    PHASE => l_phase,
    STATUS => l_status_code,
    DEV_PHASE => l_dev_phase,
    DEV_STATUS => l_dev_status,
    MESSAGE => l_message );
    v_xml_req_id := FND_REQUEST.submit_request(application => 'XDO',
    program => 'XDOREPPB',
              argument1 => v_request_id,
    argument2 => 'FLS DE AR Dunning Letter Print - German',
    argument3 => 603, -- changed 665 -- was 551,
    argument4     => NULL,
    argument5 => 'N',
    argument6     => 'RTF',
              argument7     => 'PDF');
    Now, there are two problems I'm facing...
    1. when the second program('Dunning Letter Print from Dunning Letter Generate') gets called it executes this procedure ... logically the 'Dunning Letter Print from Dunning Letter Generate' should get called twice ... second time from the procedure. Its getting called multiple times .. as many as 15 - 20 times.
    2. The Xml Report Publisher program ultimately gets called but its erroring out with the following error:
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    I have checked from database that the XDO_LOBS/ XDO_TEMPLATES_B table has corresponding registration data.
    I don't know what's creating the problem.
    If anyone has customised the Dunning Letter program before or having any idea about this problem, please help me out ..
    Thanks

    satrajit,
    Now I am getting the same error you got, Can you please tell me the solution you found?.
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.LOB_TYPE = :1 AND L.APPLICATION_SHORT_NAME= :2 AND L.LOB_CODE = :3 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :4 AND L.TERRITORY = :5 ) OR (L.LANGUAGE = :6 AND L.TERRITORY = :7) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:309)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:187)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:776)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:1269)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:807)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)

  • Running forms 6i and reports 6i from oracle portal

    hi all,
    is it possible to run the forms and the reports developed in
    forms 6i and reports 6i from oracle portal
    or
    is it possible to export forms 6i and reports 6i into oracle
    portal
    prabhakaran

    Dear Friend,
    It is possible to deploy 6i forms & reports by Apache Web
    Listener. You will have to edit the httpd.conf configuration
    file and add your virtual path as Alias. The Virtual Paths are
    /dev60html/
    /dev60cgi/
    /jinitiator/
    /dev60temp/
    Reply me if youre are successful.
    Thanx.

  • 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

  • How to Call Crystal Reports XI  from  Oracle Forms 6i

    hi can any one ,Please provide me the steps to call Crystal Reports XI from Oracle Forms 6i
    very urgent please
    if any Doument,attachment please send to [email protected]
    Thanks in advance
    Regards
    S.Thirumalai selvan

    Hi All,
    Can anyone send me the steps to call Crystal Reports XI from Oracle Forms 6i (client/server)?
    Thanks in advance, Lidija
    My email is: [email protected]

  • Upgrading the report version from Crystal Reports 10 to Crystal Reports 11 without REDESIGN

    Post Author: Chakradhar
    CA Forum: Upgrade to XI 3.0
    HI All, Please provide a solution for this.. Is there any way to upgrade the version of a report without redesigning the report? If we upgrade the report without redesign, dont we lose the special features of the new version? Actually i want to the change the report version from Crystal Reports 10 to Crystal Reports 11. Thanks..

    Post Author: rodneyaz
    CA Forum: .NET
    I'm having the same issue.  Worked fine for me in XI, but stopped working when I upgraded XI to XI R2.
    Please post a follow-up if you get this resolved!  Thanks!
    RodneyAZ

  • Oracle upgrade exam from oracle 9i to oracle 11g

    Hi,
    I want to give oracle upgrade exam from oracle 9i to oracle 11g release2.
    But i do not have material for preparation of this exam. Oracle Database 11g: New Features for 9i OCPs", also known as 1z0-055 exam.
    Please any one give me PPT or PDF or link from where i can get it? . which can help me to read for exam.
    Thanks in advance.
    Edited by: user647572 on Dec 26, 2011 5:10 AM

    user647572 wrote:
    Hi,
    I want to give oracle upgrade exam from oracle 9i to oracle 11g release2.
    But i do not have material for preparation of this exam. Oracle Database 11g: New Features for 9i OCPs", also known as 1z0-055 exam.
    Please any one give me PPT or PDF or link from where i can get it? . which can help me to read for exam.
    Thanks in advance.
    Edited by: user647572 on Dec 26, 2011 5:10 AMI dispair when an Oracle Certified Professional says he does not have 'preapartion material' and asks for a PDF link.
    .... The most likely response is from someone training to sell unauthorised learning materials.
    ..... The OCP should understand the exams topics and online manuals for 11g should be sufficient. Oracle Press Books and Sybex Books for 11g DBA OCP should also cover number of the required topics if that helps. Not to mention Oracle University Training.
    ...... But an OCP asking for a 'PDF' or 'PPT' for the 1z0-055 exam ??????? .... what form of content are you thinking?

  • Migrating NULL values in tables from oracle to MS SQL

    Hi,
    I am migrating Oracle 11g database to MS SQL server 2014 using SSMA.
    Currently, when I migrate data, all (null) values in oracle tables are migrated as NULL to SQL.
    However, I want to migrate null values in oracle tables to blank space in SQL.
    Is it possible?
    Is there any setting in SSMA which supports this?
    Thanks.

    Hi ManiC24m,
    In SSMA, there is no setting we can modify to migrate null values in Oracle tables to blank space in SQL  Server. As Prashanth’s post, after the migration, you can replace the null values with blank space via the following Transact-SQL statements in
    SQL Server.
    USE <DatabaseName>
    Go
    UPDATE <TableName> SET <ColumnName>=''
    WHERE <ColumnName> IS NULL
    Thanks,
    Lydia Zhang

  • How do we migrate Hyperion HFM/FDM database from Oracle to MS SQL?

    So I have this issue at hand and have ideas that I need to run by people with some expertise. I need to change the databases from Oracle to SQL in a completely new Hyperion installation. I am keeping the version 11.1.2.3 as is. No upgrades.
    So I am thinking, Install EPM from scratch into new environment.
    Then for HFM just use application copy utility.
    For FDM, copy the application file structure and then use SSMA tool to convert the database from Oracle to SQL then configure FDM to new database.
    I need to know if there is a better method than these.
    Thank you in advance.
    Gideon Seroney
    [email protected]

    HDM - Copy App Utility, DRM - Use the upgrade wizard should work across same version, FDM is more tricky is the no way you can access the original Oracle db from 11.1.2.3, if so then export everything from workbench.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Migrate P6 Pro Rel7 DB from Oracle 10g Express to SQL server 2008

    Please advise the steps needed to migrate my P6 Professional Rel7 (laptop) Oracle 10g Express to P6 Enterprise Rel7 (server) migrating over to SQL server 2008.
    I don't want to lose any of my activity codes during the migration.
    Thanks in advance for any comments or guidance.
    CH

    You can use migrate.bat (Media folder/database/installation). Enter the details of the source (oracle db) to destiny (SQL) . The app will migrate everything, the projects, activities, uds, users, filters, layouts, etc.. .
    Regards,
    Pablo

  • Oracle DB Link from Oracle to SQL Server

    Dear buddies,
    I am trying to create a dblink from Oracle to SQL Server.
    This is my tnsnames.ora
    sq =
    (DESCRIPTION=
       (ADDRESS=(PROTOCOL=tcp)(HOST=LOCALHOST)(PORT=1521)
       (CONNECT_DATA=(SID=sq))
       (HS=OK)
    )This is my listener
    SID_LIST_LISTENER =
      (SID_LIST =
          (SID_DESC =
          (SID_NAME = sq)
          (ORACLE_HOME = D:\oracle\product\10.2.0\db_2)
          (PROGRAM = hsodbc)
    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
      )initsq.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = sq
    HS_FDS_TRACE_LEVEL  = OFF
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>I have created my System DSN for sq with the appropriate values which works fine when I tested the connection.
    These 2 databases are in different servers.
    This is how I created the db link in Oracle
    create public database link sq
    CONNECT TO XXX IDENTIFIED BY "XXX"
    using 'sq'
    select "Column1"
    from "Table1"@'sq';The error I receive is: ORA-01729: database link name expected
    When I try to recreate the database link it tells me that: ORA-02011: duplicate database link name
    I hope someone could guide me.
    Thanks.

    C:\Documents and Settings\Administrator>tnsping sq
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.4.0 - Production on 16-AUG-2011 14:48:40
    Copyright (c) 1997,  2007, Oracle.  All rights reserved.
    Used parameter files:
    D:\oracle\product\10.2.0\db_2\network\admin\sqlnet.ora
    TNS-03505: Failed to resolve name
    C:\Documents and Settings\Administrator>

  • Deploying to Oracle Services Registry from Oracle Workshop (10.3.1)

    Hi folks,
    In our project, we are using Oracle Services Bus (version 10.3.1) and we want to interact with an UDDI registry (Oracle Service Registry). We used the following process :
    1/ Creation of a UDDI file correctly configure in our OSB project from Oracle Workshop. The validation test works like a charm
    2/ Importing a Service from UDDI in Oracle Workshop correctly works too.
    The problem : We cannot find a way to export our services (Proxy services) from Oracle Workshop into the UDDI. Is it possible ? What do we do wrong and how can we do that ?
    Thanks in advance for your answer,
    Cheers

    This is a blocker issue for us. Any hints ? At least, we need to know if it's possible to do so and if somebody faces the same issue.
    Thanks,
    Cheers,

  • Access non-Oracle data base from Oracle Data base?

    Hi,
    I have a system using Oracle data base but i have to query some data in
    Access data base called TA_2008.mdb for specific table called FPTrans
    My oracle database SID=Ahmed10g my schema is attend/attend.
    I have tried to use the Heterogenous Services Generic Connectivity Agents .
    I think i have to build the ODBC driver for Access database not for oracle and specify the Access DB name
    But i built the driver for oracle.
    Please clear the steps for me and correct me if i am wrong .......................
    1. Create ODBC driver [microsoft ODBC for Oracle] as File Data Source Name =attendoraclefds
    user : attend
    password : attend
    Server :ahmed10g
    2. create intilization Parameter file in the path D:\oracle10gDB\product\10.2.0\db_1\hs\admin
    called : initATTENDORACLEFDS.ora
    CONTAINS PARAMETERS:
    HS_FDS_CONNECT_INFO=FILEDSN=attendoraclefds
    HS_FDS_TRACE_LEVEL=ON
    3. Edit TNSname.ora file :
    attendoraclefds =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = awahaishi_lptp.sepocye.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = attendoraclefds)
    (HS = OK)
    4. Edit Listener.ora file :
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (PROGRAM = extproc)
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle10gDB\product\10.2.0\db_1)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = attendoraclefds)
    (ORACLE_HOME = D:\oracle10gDB\product\10.2.0\db_1)
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = awahaishi_lptp.sepocye.com)(PORT = 1521))
    5. Restart the listener
    6. create the data base link:
    CREATE DATABASE LINK accessDB
    CONNECT TO attend IDENTIFIED BY attend
    USING 'attendoraclefds';
    select * from EMP_JOBS@accessDB;
    Error occures say :
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    ORA-28541: Error in HS init file on line 9.
    ORA-02063: preceding 2 lines from AAL
    Edited by: StillYoung on Mar 18, 2009 1:10 AM

    Please see if the following link is helpful:
    a question about transparent gateway,sb help me plz!!

  • Download latest Oracle SOA suite from Oracle site

    Hi All,
    I am trying to download the latest Oracle SOA suite version from Oracle downloads section.
    I am unable to download that due to the very low download speed in the internet connection. Can I order for a CD-ROM of this SOA-Suite from Oracle? Some one please help me on this.
    Thanks,
    Shiv..

    Also refer -
    http://www.oracle.com/products/buy/index.html
    Regards,
    Anuj

  • Dashboard for InfoView. Remove "Main Report" Tab from Crystal Report

    When defining a Dashboard for InfoView I would like to be able to display a chart contained in a report without it being in any container. I can remove everything except the Tab Control showing "Main Report". If this cannot be removed then I would like to change "Main Report" to the title of my chart.
    Any suggestions would be appreciated.

    When adding a report onto a Dashboard, there should be the option to display it in Full mode, Compact mode, or Report Part mode.
    Try right-clicking on the Report Part in your report and and see if it gives you the option to select just the chart. I know this option is available in Web Intelligence, but am not certain is Crystal Reports offer the same functionality.
    If you've already selected the Report Part and just have formatting issues, then it should be done on the Crystal Report itself. Make sure that only the chart is included in the part, like Jacquez says.

Maybe you are looking for

  • How to configure printing with apex 3.1.2

    I am trying to use Apache FOP with Apex 3.1.2 and I am unable to find the place to configure Apex. The document I am using is located at [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html] and the imp

  • Word Document size is increased after migration?

    Hello We migrated from Sp2003 to Sp2010 and noticed that all item documents in each document library, file size is increased. I compared the couple of documents, everything is same. Is it by default depending on framework or what is logic behind this

  • How to rip VCD to itunes????

    Sorry i'm dumb in Apple, i have just try ripping a CD to itunes which was successful but the problem is i can't rip a VCD to itunes, is there any way to do it, thanks very much. ibook G4 12 1.33ghz   Mac OS X (10.4.2)  

  • Subcontracting Check Box in Maintenance Order

    Hello Help me to know if we are able to create the PR via control keys PM02 & PM03 then what the use or funcationality of subcontracting check box in maintenance order. Regards Kapil

  • Remote Desktop Connection 8.1.4 - RemoteApp not working

    Hi, I recently setup RemoteApp on our Terminal Server (2008 R2).  - For rolling out IE and a terminal application to our sales team. Initial setup worked fine, then all of a sudden it stopped working (after about an hour).  This was originally using