Dynamic FTP in Oracle Fusion

All:
How can I set FTP information (servername, username, password, directory and filename) dynamically to a FtpAdapter. Is this possible in Oracle Fusion. If so how.
Thanks
Praveen

There are various third party implementations of the FTP protocol based on UTL_TCP. If you do a Google search on UTL_FTP, you'll get a few dozen hits
http://sourceforge.net/projects/plsqlftp/
is one potential option.
Justin

Similar Messages

  • Oracle Fusion Middleware 11G  B2B Document Type not getting Identified

    Hello,
    I have installed Oracle Fusion Middleware 11g on my local machine and created a custom document type with proper .xsd definition and XPath Expression Identifier in Oracle B2B interface and configured its trading partners ( Host & Remote ) along with an agreement between the partners.
    I have also configured the host listening channel of Generic-File type which picks xml files from my c:\orclsrvs_in folder.
    My problem is that the moment I drop any sample file in the expected directory, it gets picked up from B2B , but there isn't any record of the same under Reports and Metrics links.
    The Business message, Application message and Conversation message tabs are also not showing any information about the record picked, but in wire message tab, the record is shown in PROCESSING state.
    I am not able to conclude whats wrong behind this.. where can i track the logs for the same ??
    kindly help to resolve this issue.
    Thanks & Regards
    Hiteshkumar Chaudhary

    Hi Hitesh,
    i came to know that B2B extracts the TP name from the filename itselfYes, in case of Generic File, Generic SFTP and Generic FTP, file name provides the necessary values to Oracle B2B to identify the Trading Partner. You can define your own file name format in the Delivery Channel under Transport Protocol Parameters in field "Filename format" (It's an optional field but it is always good to define your own format, otherwise B2B will take it's default format - TradingPartner_DocumentType_Revision_msgType_msgId_replytoMsgID_extension.xml ). Following Filename formats can be used -
    %FROM_PARTY%
    %TO_PARTY%
    %DOCTYPE_NAME%
    %DOCTYPE_REVISION%
    %MSG_ID%
    %TIMESTAMP%
    These file name formats can be used in any combination; for example,
    %TO_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat
    Note - Any file extension is allowed.
    what are the system parameters to be set in weblogic console and how?? This activity is part of the pre and post installation steps. If you have done those without getting any errors then nothing else is required.
    how shall I reinstall XEngine properly ??XEngine is part of B2B installation. If B2B gets installed without flashing any errors then we assume that other components of this part has installed properly.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, Infosys on Aug 28, 2009 5:51 PM

  • Oracle Fusion Middleware Real Operations

    Hi,
    I'm trying to find out more about Oracle Fusion Middleware Real Operations Insight and Oracle Fusion Middleware Real Operations Automation but there doesn't seem to be much info around. Is there any documentation available?
    Thanks

    Real Operations Insight
    For administrators, getting the information they need from running systems to ensure smooth
    operation can be a challenge. It can also be costly if the system or application performs poorly.
    Oracle WebLogic Suite 11g provides Real Operations Insight that includes powerful facilities to
    monitor and diagnose issues. For example, operations teams can take advantage of the Oracle
    Enterprise Manager Diagnostics Pack including Grid Control to manage many nodes of Oracle
    WebLogic Server from a single console: start and stop services, monitor and manage application
    across domains, view most accessed components, and more. Included is the Application
    Diagnostics For Java technology (AD4J) that allows for deep monitoring, management, and
    optimization of applications running on Java Virtual Machines.
    In addition, Oracle JRockit JVM customers can also leverage JRockit Mission Control to
    optimize applications using runtime analysis and memory leak detection tools. And finally, when
    leveraging the Coherence in-memory data grid, the Enterprise Management Pack for Oracle
    Coherence provides comprehensive tools for monitoring and reporting Coherence activity.
    Real Operations Automation
    Responding to business need is difficult for IT if operations are manual. Real Operations
    Automation affords a highly automated WebLogic Server environment. Configuring domains
    and clusters through automation and scripting ensures repetitive tasks are executed properly
    without human error. Dynamic resource management helps consolidate applications to fewer
    servers as needed while shutting-down inactive instances for cost and power savings. Real
    Operations Automation takes as input the unique metrics provided by Real Operations Insight to
    ensure timely, accurate, and fine-grained optimization.

  • Which middleware to use SAP Netweaver XI  or Oracle Fusion

    Hello All,
    I have to integrate several modules like CRM, Siebel, Telephony  Supply Change Management, etc.  --- ERP Integration
    Which is better middleware SAP XI or Oracle Fusion.
    Any suggestions,  links/pdfs
    Regards

    Hi Rick,
    starting with point no.2:
    When we are talking about XI and true EAI system the interfacing is done with the application instance and not with the Database instance....so...there is no importance for XI whether your application "seats" on Oracle,DB2,SQL or commodore-64 as long as the application has an API and protocol that XI can speak with,
    That is : SOAP over HTTP, File system over FS\FTP,RFC\IDocs for SAP based system and so on...
    To make it more clear for you - With SAP XI we <b><u>Don't</u></b> do database synchronization! we send Orders,Invoices, or any business document\information between two or more systems.
    XI job is to do 2 things:
    1.change between protocols of the two systems for example Mail to IDoc
    2.change between messages structures (same example) Mail invoice to inbound INVOICE IDoc to the R3 SAP system.
    I'm sure sieble has some APIs that can work with XI swiftly.
    If you want to synchronize master data between you systems ..this issue has to be addressed more carefully taking into account the size of the messages send,the occurrence and a few more issues.
    Regarding point No.1 well from my knowledge - the equivalent  to Oracel fusion is more the NetWaver 2004s then the mySAP ERP which will be more equivalent to Oracle application.
    <b><i>If this post was helpfull please reward</i></b>
    <i>If you need more information please contact me at:
    [email protected]</i>
    Nimrod Gisis

  • Can we use Dynamic SQL in Oracle Reports ?

    Hi ,
    Can we use Dynamic SQL in Oracle Reports ?
    If yes please give some examples .
    Thanx
    srini

    I believe the built-in package SRW.Do_Sql is what you are looking for
    Example from the document:
    /* Suppose you want to create a "table of contents" by getting the
    ** first character of a columns value, and page number on which its
    ** field fires to print. Assume that you want to put the "table of
    contents"
    ** into a table named SHIP. You could write the following construct:
    DECLARE
    PAGE_NO NUMBER;
    PAGE_FOR INDEX NUMBER;
    SORT_CHAR CHAR(1);
    CMD_LINE CHAR(200);
    BEGIN
    SORT_CHAR := :SORT_NAME ;
    IF :CALLED = Y THEN
         SRW.GET_PAGE_NUM(PAGE_FOR_INDEX);
         SRW.USER_EXIT(RWECOP PAGE_FOR_INDEX
         P_START_PAGENO);
         SRW.MESSAGE(2,TO_CHAR(:P_START_PAGENO));
    END IF;
    SRW.GET_PAGE_NUM(PAGE_NO);
    CMD_LINE := INSERT INTO SHIP VALUES
                          (||SORT_CHAR||,||TO_CHAR(PAGE_NO)||);
    SRW.MESSAGE(2,CMD_LINE);
    SRW.DO_SQL(CMD_LINE);
    COMMIT;
    EXCEPTION
      WHEN DUP_VAL_ON_INDEX THEN
            NULL;
      WHEN SRW.DO_SQL_FAILURE THEN
            SRW.MESSAGE(1,FAILED TO INSERT ROW INTO SHIP TABLE);
      WHEN OTHERS THEN
           COMMIT;
    END;

  • Oracle Fusion Order Demo Application

    Hi,
    I downloaded this DEMO :
    Oracle Fusion Order Demo Application
    http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html
    And when in step
    9.In the application navigator, under the Resources node, Right click build.xml and choose Run Ant Target > buildAll
    I receive this error :
    Buildfile: E:\Jdev_sources\Infrastructure\Ant\build.xml
    init:
        [mkdir] Created dir: E:\Jdev_sources\Infrastructure\Ant\classes
        [javac] Compiling 1 source file to E:\Jdev_sources\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    E:\Jdev_sources\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:28: E:\Jdev_sources\Infrastructure\Ant\wlserver_10.3\server\lib not found.
    Total time: 14 secondsEffectiveley E:\Jdev_sources\Infrastructure\Ant\wlserver_10.3\server\lib does not existe but it should be (seems to me) a part of whet was downloaded.
    Thank for help.

    Hi again, and thanks to all.
    I reinstalled all and Now I have the followings that seems to be a connectivity problem :
    First the parameteres in build.properties :
    jdeveloper.home=E:/Oracle/Middleware/jdeveloper
    src.home=..//..
    # JDBC info used to create Schema
    jdbc.driver=oracle.jdbc.OracleDriver
    jdbc.urlBase=jdbc:orcl:thin:@localhost
    jdbc.port=1521
    jdbc.sid=ORCL
    Buildfile: E:\Jdev_source\Infrastructure\Ant\build.xml
    init:
        [mkdir] Created dir: E:\Jdev_source\Infrastructure\Ant\classes
        [javac] Compiling 1 source file to E:\Jdev_source\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    E:\Jdev_source\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:28: java.sql.SQLException: No suitable Driver for jdbc:orcl:thin:@localhost:1521:ORCL
    Total time: 32 secondsOracle is installed on the same server and DB is on the same server.
    E:\Jdev_source>cd E:\oracle\product\10.2.0\db_1\jdbc\lib
    E:\oracle\product\10.2.0\db_1\jdbc\lib>dir
    Volume in drive E is Data
    Volume Serial Number is E856-5E27
    Directory of E:\oracle\product\10.2.0\db_1\jdbc\lib
    13/11/2009 14:21 <DIR> .
    13/11/2009 14:21 <DIR> ..
    02/02/2008 14:49 1 609 607 classes12.jar
    02/02/2008 14:49 1 622 075 classes12.zip
    02/02/2008 14:49 1 617 382 classes12dms.jar
    11/02/2008 19:52 1 646 217 nls_charset12.jar
    02/02/2008 14:49 1 555 682 ojdbc14.jar
    02/02/2008 14:49 1 563 375 ojdbc14dms.jar
    02/02/2008 14:49 1 958 237 ojdbc14dms_g.jar
    02/02/2008 14:49 1 950 033 ojdbc14_g.jar
    8 File(s) 13 522 608 bytes
    2 Dir(s) 7 992 795 136 bytes free
    Regards.
    Ok finaly it was this :
    jdbc.urlBase=jdbc:oracle:thin:@localhost
    If you look above , before, I had :
    jdbc.urlBase=jdbc:orcle:thin:@localhost
    :=(((
    Now :
    BUILD SUCCESSFUL
    Total time: 35 seconds
    Thanks again.

  • Oracle Fusion Order Demo Application For JDeveloper error

    HI,
    i try to run the (Oracle Fusion Order Demo Application For JDeveloper) Fusion Order Demo (FOD) is an end-to-end application sample :
    when i try to : Right click build.xml and choose Run Ant Target > buildAll . error coming
    Buildfile: C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Total time: 6 seconds
    how i can run the build.xml

    Hi,
    not quite sure the question is clear. The add cart command is a link defined in the JSPX file
    <af:commandLink partialSubmit="true"
    actionListener="#{shoppingCartBean.addItemToCart}"
    id="cl3">
    that points to
    public void addItemToCart(ActionEvent evt) {
    Map attributes = evt.getComponent().getAttributes();
    invokeUpdateOp(new Integer(attributes.get( PRODUCT_ID_COL )+ ""));
    in StoreFrontModule\StorefrontUI\src\oracle\fodemo\storefront\cart\view\managed\ShoppingCartBean.java . This is where you follow up then.
    +"how i can make Repetition for the items in home.jspx"+
    I can only assume you mean how to create the catalog items. Here I suggest you look at the demo source as this is what the demo is for. If you are new to ADF, I recommend that you first run a tutorial from here
    If you are on 11g R1: http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html
    If you are on 11g R2: http://docs.oracle.com/cd/E18941_01/tutorials/toc.htm
    No demo can replace proper learning, to be honest
    Frank

  • How to use oracle fusion middleware for integration project ?

    hi all,
    in my projects, customer (a bank) already has many applications (bankend & frontend) that are complicatedly connected. I intend to use oracle fusion middleware to integrate all applications and make adding new applications in the future easier. I have worked through documents in the oracle website but I still have no idea how to use oracle fusion middleware to address the requirement, besides oracle fusion middleware includes a bundle of applications I don't know which one I would need.
    could anyone give me some instructions ? appreciate your help.
    thank very much,

    Hi,
    For this short description of environment, could be ODI is a incredible tool to help you...
    Take a look into my blog that has a lot of concepts and "how to do" instructions.... http://odiexperts.com
    However to try help you, what are the used technologies?
    Where are you from?
    Cezar Santos
    http://odiexperts.com

  • How to copy file to another server from database using FTP in oracle

    How to copy file to another server from database using FTP in oracle.
    Please do the needfaul.

    Billy  Verreynne  wrote:
    BluShadow wrote:
    Not to mention that some FTP servers can return more than one return message per operation whereas others may return one message for the same operation.I had the problem using the LIST command to determine if a file exists on the server. Cannot be determined via the FTP server's return code. Which means parsing and checking the text response from the server to the command. And this vary from server to server.
    But the basics were quite easy to code. The entire package is 500 lines, includes comments and blank lines for formatting, and supports the basic FTP client command set. Not really a complex piece of software to write - but I found that many developers seem to think that writing network socket software is complex. Not really the case...Mine's a big larger, but incorporates functionality similar to what Chris provided in his, such as being able to use SQL to query a remote file using pipelined functions, or functionality to write the results of a query directly to a remove file.
    :)

  • Hide "ORACLE FUSION MIDDLEWARE"  message in the front-end

    Hi ,
    I want to hide the "ORACLE FUSION MIDDLEWARE" message in the front-end forms layout.
    Please let me know which file I need to make change in the back-end and do I need to do any-thing from oracle admin also (any deployment or any check).
    Thanks & Regards,
    Harish

    After making some changes in my HTML page the layout is coming properly

  • Install Oracle Fusion Middle Ware In Windows 7

    Hi,
    I am searching how i can download oracle fusion middleware (Forms&Reports) in Windows 7 But i am lost : and steps ?
    Regards,
    Oracle Fusion Middleware 11g Media Pack v37 for Microsoft Windows x64 (64-bit)
    Download      Oracle WebLogic Server 11gR1 (10.3.4) Generic and Coherence     V24338-01     1.1G
    Download      Oracle WebLogic Server 11gR1 (10.3.5) Generic and Coherence     V26046-01     1.1G
    Download      Oracle WebLogic Server 11gR1 (10.3.6) Generic and Coherence     V29856-01     1.0G
    Download      Oracle WebLogic Server Web Server Plugins 11gR1 (11.1.1.6.0)     V30113-01     280M
    Download      Oracle SOA Suite 11g Patch Set 4 (11.1.1.5.0) (Part 1 of 2)     V26005-01 Part 1 of 2     1.2G
    Download      Oracle SOA Suite 11g Patch Set 4 (11.1.1.5.0) (Part 2 of 2)     V26005-01 Part 2 of 2     1.3G
    Download      Oracle SOA Suite 11g Patch Set 5 (11.1.1.6.0) (Part 1 of 2)     V29672-01 Part 1 of 2     1.6G
    Download      Oracle SOA Suite 11g Patch Set 5 (11.1.1.6.0) (Part 2 of 2)     V29672-01 Part 2 of 2     1.2G
    Download      Oracle WebCenter Portal 11g Patch Set 5 (11.1.1.6.0)     V29752-01     1.9G
    Download      Oracle WebCenter Portal Companion (11.1.1.6.0)     V30065-01     36M
    Download      Oracle WebCenter Content 11g (11.1.1.6.0) (Part 1 of 2)     V29776-01 Part 1 of 2     1.9G
    Download      Oracle WebCenter Content 11g (11.1.1.6.0) (Part 2 of 2)     V29776-01 Part 2 of 2     323M
    Download      Oracle WebCenter Content: Rights 11g (11.1.1.6.0) for Microsoft Windows     V29758-01     648M
    Download      Oracle JDeveloper 11g and Oracle Application Development Framework 11g (11.1.1.6.0)     V29790-01     1.9G
    Download      Oracle JDeveloper 11g Extensions (11.1.1.6.0)     V29774-01     698M
    Download      Oracle Application Development Runtime 11g Patch Set 5 (11.1.1.6.0)     V29673-01     956M
    Download      Oracle Fusion Middleware Web Tier Utilities 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit)     V29778-01     1.5G
    Download      Oracle Fusion Middleware Companion 11g (11.1.1.3.0)     V20975-01     462M
    Download      Oracle Fusion Middleware Companion 11g (11.1.1.6.0)     V29680-01     616M
    Download      Oracle Complex Event Processing 11g (11.1.1.6.0) for Windows (64 Bit)     V29782-01     313M
    Download      Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 1 of 4)     V18785-01 Part 1 of 4     525M
    Download      Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 2 of 4)     V18785-01 Part 2 of 4     629M
    Download      Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 3 of 4)     V18785-01 Part 3 of 4     523M
    Download      Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 4 of 4)     V18785-01 Part 4 of 4     449M
    Download      Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit)     V29850-01     1.8G
    Download      Oracle Identity Management 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit)     V18771-01     1.4G
    Download      Oracle Identity Management 11g Patch Set 2 (11.1.1.3.0) for Microsoft Windows x86 (64-bit)     V21021-01     1.1G
    Download      Oracle Identity Management 11g Patch Set 3 (11.1.1.4.0) for Microsoft Windows x86 (64-bit)     V24452-01     1.5G
    Download      Oracle Identity Management 11g Patch Set 4 (11.1.1.5.0) for Microsoft Windows x86 (64-bit)     V26016-01     1.4G
    Download      Oracle Identity Management 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit)     V29779-01     1.7G
    Download      Oracle Fusion Middleware Companion 11g (11.1.1.4.1)     V24917-01     570M
    Download      Oracle Fusion Middleware Companion 11g (11.1.1.5.0)     V26019-01     566M
    Download      Oracle WebCenter WSRP Producer for .NET 11.1.1.4.0     V24952-01     609K
    Download      Oracle Fusion Middleware Repository Creation Utility 11g (11.1.1.5.0) for Linux x86     V26017-01     379M
    Download      Oracle Fusion Middleware Repository Creation Utility 11g (11.1.1.5.0) for Microsoft Windows     V26018-01     308M
    Download      Oracle Fusion Middleware Repository Creation Utility 11g (11.1.1.6.0) for Linux x86     V29674-01     390M
    Download      Oracle Fusion Middleware Repository Creation Utility 11g (11.1.1.6.0) for Microsoft Windows     V29675-01     319M
    Download      Oracle Fusion Middleware Documentation Library 11g Release 1 (11.1.1.5)     V26477-01     1.3G
    Download      Oracle Fusion Middleware Documentation Library 11g Release 1 (11.1.1.6.0)     V30762-01     2.5G
    Download      Oracle Fusion Middleware 11g Release 1 Patch Set 1 Patch Scripts     V18738-01     6.4M
    Download      Oracle Business Intelligence Publisher Enterprise 10.1.3.4.1 for Microsoft Windows     V16384-01     764M
    Download      Oracle Secure Enterprise Search 11g Release 1 (11.1.2.2.0) for Linux x86 (Part 1 of 2)     V25933-01 Part 1 of 2     1.4G
    Download      Oracle Secure Enterprise Search 11g Release 1 (11.1.2.2.0) for Linux x86 (Part 2 of 2)     V25933-01 Part 2 of 2     782M
    Download      B2B Document Editor v11.1.1.4.0 (Part 1 of 3)     V24561-01 Part 1 of 3     157M
    Download      B2B Document Editor v11.1.1.4.0 (Part 2 of 3)     V24561-01 Part 2 of 3     1.8G
    Download      B2B Document Editor v11.1.1.4.0 (Part 3 of 3)     V24561-01 Part 3 of 3     2.2G
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 1 of 2) (Part 1 of 5)     V27468-01 Part 1 of 5     899M
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 1 of 2) (Part 2 of 5)     V27468-01 Part 2 of 5     899M
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 1 of 2) (Part 3 of 5)     V27468-01 Part 3 of 5     899M
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 1 of 2) (Part 4 of 5)     V27468-01 Part 4 of 5     899M
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 1 of 2) (Part 5 of 5)     V27468-01 Part 5 of 5     99M
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 2 of 2) (Part 1 of 3)     V27687-01 Part 1 of 3     1.1G
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 2 of 2) (Part 2 of 3)     V27687-01 Part 2 of 3     1.1G
    Download      Oracle Business Process Analysis Suite 11g (11.1.1.4.0) (DVD 2 of 2) (Part 3 of 3)     V27687-01 Part 3 of 3     1.1G
    Download      JRockit JDK R28.1 for Java SE 5.0 with JRockit Mission Control 4.0.1 for Microsoft Windows (64-bit x86)     V23713-01     98M
    Download      Oracle JRockit JDK R28.2.2 for Java SE 6 with JRockit Mission Control 4.1.0 for Microsoft Windows (64-bit x86)     V30321-01     111M
    Download      Oracle JRockit JDK R28.2.2 JRockit Mission Control 4.1.0 and JRockit Real Time Documentation     V30322-01     8.2M
    Download      Oracle Service Registry 11gR1 PS5 (11.1.1.6.0)     V29087-01     74M
    Download      Oracle Enterprise Repository 11gR1 PS5 (11.1.1.6.0)     V29086-01     463M
    Download      Oracle Enterprise Content Management 11g (11.1.1.5.0) (Part 1 of 2)     V26126-01 Part 1 of 2     1.9G
    Download      Oracle Enterprise Content Management 11g (11.1.1.5.0) (Part 2 of 2)     V26126-01 Part 2 of 2     426M
    Download      Oracle Information Rights Management Desktop 11g (11.1.1.5.0) for Microsoft Windows     V26042-01     640M
    Download      Oracle iPlanet Proxy Server 4.0.15 for Windows     V23445-01     68M
    Download      Oracle iPlanet Web Server 7.0.11 for Windows     V25932-01     143M
    Download      Oracle Directory Server Enterprise Edition 11gR1 Patch Set 1 (11.1.1.5.0) for Microsoft Windows (32-bit) and Microsoft Windows x64 (64-bit) (Compressed Archive)     V25769-01     277M
    Download      Mainframe and TP-Monitor Adapters v11.1.1.3.0     V24264-01     425M
    Download      Oracle Tuxedo JCA Adapter 11gR1 (11.1.1.2.1)     V23564-01     968K
    Download      Oracle Service Architecture Leveraging Tuxedo (SALT) 11gR1 (11.1.1.2.0) for Microsoft Windows with VS2008 (64-bit)     V23505-01     61M
    Download      Oracle Tuxedo System and Application Monitor (TSAM) 11gR1 (11.1.1.2.2) for Microsoft Windows with VS2008 (64-bit)     V27588-01     162M
    Download      Oracle Tuxedo 11gR1 (11.1.1.2.0) for Microsoft Windows with VS2008 (64-bit)     V22506-01     66M
    Download      Oracle Tuxedo 11gR1 (11.1.1.2.0) for Microsoft Windows 7 with VS2008 (64-bit), Client Only     V26096-01     63M
    Download      Oracle Tuxedo 11gR1 (11.1.1.2.0) for Microsoft Windows Server 2008 (64-bit) with MS Visual Studio 2010     V28471-01     71M
    Download      Oracle Tuxedo 11gR1 (11.1.1.2.0) for Microsoft Windows 7 (64-bit) with MS Visual Studio 2010, client only     V28472-01     50M
    Download      Oracle Enterprise Single Sign-On Suite Plus (11.1.1.5.1) for Microsoft Windows (32-bit and 64-bit)     V29772-01     509M
    Download      Oracle Service Bus 11g (11.1.1.6.0)     V29756-01     1.1G
    Download      Oracle OpenSSO Fedlet version 11.1.1.3.0     V21906-01     12M
    Download      Oracle Data Integrator 11g (11.1.1.6.0) for Generic (Part 1 of 2)     V29762-01 Part 1 of 2     2.0G
    Download      Oracle Data Integrator 11g (11.1.1.6.0) for Generic (Part 2 of 2)     V29762-01 Part 2 of 2     520M
    Download      Oracle Data Integrator Companion 11g (11.1.1.6.2)     V31054-01     810M
    Download      Oracle Data Profiling and Oracle Data Quality for Oracle Data Integrator 11g (11.1.1.3.0) for Microsoft Windows x86 (64-bit)     V21705-01     1.2G
    Download      Oracle Enterprise Data Quality 9.0.3 for Oracle Data Integrator     V30584-01     634M
    Download      Oracle GlassFish Server 3.1.2 zip archive for Linux (x86/x86-64), Oracle Solaris on x86 (32/64-bit), Oracle Solaris on SPARC (32/64-bit), Apple Mac OS X (Intel), Microsoft Windows (32/64-bit)     V30866-01     88M
    Download      Oracle GlassFish Server 3.1.2 (multilingual) zip archive for Linux (x86/x86-64), Oracle Solaris on x86 (32/64-bit), Oracle Solaris on SPARC (32/64-bit), Apple Mac OS X (Intel), Microsoft Windows (32/64 bit)     V30867-01     106M
    Download      Oracle GlassFish Server 3.1.2 installer for Microsoft Windows (32/64-bit)     V30886-01     59M
    Download      Oracle GlassFish Server 3.1.2 (multilingual) installer for Microsoft Windows (32/64-bit)     V30887-01     68M
    Download      Oracle GlassFish Server 3.1.2 Web Profile zip archive for Linux (x86/x86-64), Oracle Solaris on x86 (32/64-bit), Oracle Solaris on SPARC (32/64-bit), Apple Mac OS X (Intel), Microsoft Windows (32/64-bit)     V30893-01     54M
    Download      Oracle GlassFish Server 3.1.2 Web Profile (multilingual) zip archive for Linux (x86/x86-64), Oracle Solaris on x86 (32/64-bit), Oracle Solaris on SPARC (32/64-bit), Apple Mac OS X (Intel), Microsoft Windows (32/64-bit)     V30894-01     68M
    Download      Oracle GlassFish Server 3.1.2 Web Profile installer for Microsoft Windows (32/64-bit)     V30897-01     38M
    Download      Oracle GlassFish Server 3.1.2 Web Profile (multilingual) installer for Microsoft Windows (32/64-bit)     V30898-01     45M
    Download      Project Metro Web Services Stack 2.2 zip archive for Linux (x86/x86-64), Oracle Solaris on x86 (32/64-bit), Oracle Solaris on SPARC (32/64-bit), Apple Mac OS X (Intel), Microsoft Windows (32/64-bit), IBM AIX on Power Systems (32/64-bit)     V30904-01     46M
    Download      Oracle Entitlements Server Security Module 11g (11.1.1.5.0)     V26468-01     104M
    Download      Oracle Unified Directory 11.1.1.5.0     V26534-01     107M
    Download      Oracle Identity and Access Management 11g (11.1.1.5.0)     V26461-01     2.0G
    Download      Oracle Access Manager WebGates 11.1.1.5.0     V26469-01     176M
    Download      Oracle Identity Analytics 11g(11.1.1.5.0)     V27627-01     56M
    Download      Oracle Coherence Version 3.7.1     V28274-01     15M
    Download      Oracle Coherence for C++ Version 3.7.1 - Microsoft Windows x64 vs2005     V27963-01     26M
    Download      Oracle Coherence for C++ Version 3.7.1 - Microsoft Windows x64 vs2010     V27966-01     26M
    Download      Oracle Coherence for the Microsoft .NET Framework Version 3.7.1     V27953-01     17M
    Download      Application Adapters v11.1.1.3.0 (Part 1 of 2)     V22789-01 Part 1 of 2     116M
    Download      Application Adapters v11.1.1.3.0 (Part 2 of 2)     V22789-01 Part 2 of 2     77M
    Download      Oracle Application Adapters v11.1.1.4.0     V28947-01     223M
    Download      Oracle Forms and Reports 11g R2 (11.1.2.0.0) for Microsoft Windows x64 (64-bit)     V28761-01     1.8G
    Download      Oracle Security Governor Integration Kit 11g (11.1.1.3.0)     V23475-01     613K
    Download      Changed Data Capture Adapters v11.1.1.3.0     V24266-01     461M
    Download      Oracle Application Integration Architecture Foundation Pack 11gR1 PS5 (11.1.1.6.0)     V29757-01     944M
    Download      Oracle Enterprise Gateway 11.1.1.6.0 for Microsoft Windows x86 (32 bit) and Microsoft Windows x64 (64 bit)     V30535-01     1.1G
    Download      Oracle JDK 6 Update 31 for Microsoft Windows x64 (64-bit)     V30996-01     69M
    Download      Oracle JRE 6 Update 31 for Microsoft Windows x64 (64-bit)     V30997-01     14M
    Download      Oracle JDK 6 Update 31 (Java For Business binary) for Microsoft Windows x64 (64-bit)     V30998-01     69M
    Download      Oracle JRE 6 Update 31 (Java For Business binary) for Microsoft Windows x64 (64-bit)     V30999-01     14M
    Download      Oracle JDK 6 Update 31 documentation (covers JDK and JRE)     V31000-01     59M
    Download      Oracle JDK 7 Update 3 for Microsoft Windows x64 (64-bit)     V30959-01     85M
    Download      Oracle JRE 7 Update 3 for Microsoft Windows x64 (64-bit)     V30960-01     18M
    Download      Oracle JDK 7 Update 3 (Java For Business binary) for Microsoft Windows x64 (64-bit)     V30961-01     85M
    Download      Oracle JRE 7 Update 3 (Java For Business binary) for Microsoft Windows x64 (64-bit)     V30962-01     18M
    Download      Oracle JDK 7 Update 3 documentation (covers JDK and JRE)     V30963-01     58M
    Download      Oracle Identity Manager Connectors 11g     V29045-01     186M
    Download      Oracle Universal Records Management 10g Adapter for EMC Documentum     V19271-01     563M
    Download      Oracle Universal Records Management 10g Adapter for Microsoft SharePoint     V26552-01     4.2M
    Download      Oracle Universal Records Management 10g Adapter for Microsoft .Net     V19277-01     80M
    Download      Oracle Universal Records Management 10g Adapter for File Systems     V19273-01     568M
    Download      Oracle Universal Records Management 10g Adapter for Java     V19274-01     132M
    Download      Oracle WebCenter Suite - Additional Services 10gR3 (10.1.3.3.0)     B45900-01     73M
    Download      FatWire Content Server Suite 7.5-7.6     V27697-01     230M
    Download      FatWire Content Server Suite 7.5 Language Packs     V27698-01     59M
    Download      FatWire Satellite Server 7.6     V27701-01     22M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Analytics Module     V30836-01     117M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Community Module     V30926-01     86M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Gadgets Module     V30835-01     208M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Mobility Server     V30863-01     19M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Content Integration Platform for EMC Documentum     V30812-01     47M
    Download      Oracle WebCenter Sites 11gR1 (11.1.1.6.0) Content Integration Platform for File System & Microsoft SharePoint     V30813-01     47M
    Which one i have to download ?
    Edited by: NOADF on 04-May-2012 09:00

    Can You give me steps to install this one in windows 7Before going much further, please clarify exactly which FMw release you are trying to install? You said, "... install this one...". What does that mean? I mentioned both Release 1 and Release 2.
    Additionally, if you are installing on a 64bit OS, you will need to install a 64bit JDK (version 1.6.0_xx) in order to correctly complete the WLS installation. Refer to the Installation Guide for details about this:
    http://docs.oracle.com/cd/E23943_01/doc.1111/e14142/guimode.htm#BABHJJEG
    The complete installation steps will require that you review the product Installation Guide. However, here are the basic steps assuming you are installing on a 64bit machine:
    Release 2
    <blockquote>1. Download and install a 64bit JDK (version 1.6.0_xx)
    2. Run the generic WLS installer (.jar) as documented (version 10.3.5)
    3. Run the FMw 11.1.2.0 (64bit) installation. You can choose either "Install Only" or "Install and Config".</blockquote>
    R2 Documentation
    http://docs.oracle.com/cd/E24269_01/index.htm
    Release 1
    <blockquote>1. Download and install a 64bit JDK (version 1.6.0_xx)
    2. Run the generic WLS installer (.jar) as documented. (either version 10.3.5 or 10.3.6)
    3. Run the FMw 11.1.1.2 (64bit) installation. Choose "*Install Only*"
    4. Download and install the FMw 11.1.1.6 patch set (Patch ID 13517084)
    5. Run config.bat (config.sh on Unix) found in the Oracle Home\bin</blockquote>
    R1 Documentation
    http://docs.oracle.com/cd/E23943_01/pfrd.htm
    In general, if you read and follow the Installation Guide, you should not have a problem. I understand that the documentation can be a little confusing, but the trick is to understand exactly your situation. In other words, know what you are installing and on what you are installing it. For example+,
    <blockquote>I am installing FMw 11.1.1.2, specifically the "Portal, Forms, Reports and Discoverer" distribution"
    I am installing on Windows 7 Professional - 64bit
    My installation will be all on one machine
    My installation will not use SSO/OID or OAM
    My machine meets or exceeds the System Requirements noted in the documentation
    My machine complies with the Product Certification Guide for this product version
    I am installing from a local directory or disk and not a remote or shared directory
    My OS user is a member of the Windows Admin Group (for Windows). I have root access (for Unix)
    I have completed the pre-installation steps (e.g. configured network settings, etc)
    .... and so on....</blockquote>
    Understand what you want to accomplish before you start and know your environment.

  • How do I install Oracle Configuration Manager in oracle Fusion - discoverer 11i

    Hello Gurus,
    I need some guidance to install Oracle Configuration Manager.
    I have just successfully installed Oracle Fusion - following "Fusion Middleware Installation Guide for Oracle Portal, Forms, Reports and Discoverer 11g Release 1 (11.1.1.6.0) (Part Number E10421-07)" without OCM. I have EBS 12.1.3 and rdbms 11.2.0 on the same server.
    Thanks
    Mathias

    ikaros wrote:
    I have installed OracleAS 10g. What should I download now in order to install Oracle Portal 10g?Portal (actually Portal and wireless) is one of the three installation types of a full-fledged OAS 10g in release 1 and 2.
    You need to have an infrastructure as a pre-requisite for a portal type OAS installation.
    Please see this [link and the whole guide - click Content on the top-right|http://download.oracle.com/docs/cd/B14099_19/win.1012/install.1012/install/mt.htm#sthref508] for details and then decide what have you installed that you are referring to as OAS 10g.
    thanks,
    AMN

  • Looking For Oracle Fusion Middleware Repository Creation Utility

    I'm trying to install a development Fusion Middleware 11.1.1.7 (Weblogic, BPM, etc) environment in a Windows Virtual Box VM. I'm following the directions in the following document: Oracle Fusion Middleware Download, Installation, and Configuration ReadMe. I've installed Oracle 11G r2 and am on the step for using the "Oracle Fusion Middleware Repository Creation Utility". I have looked high and low and can't find this utility on the Oracle web site. Can someone PLEASE point me to the location so I can download it.

    Actually it is delivered on Edelivery and as a Patch on MOS:
    Oracle® Fusion Middleware Download, Installation, and Configuration ReadMe
    5.2 Downloading the Oracle Fusion Middleware Repository Creation Utility
    You use the Oracle Fusion Middleware Repository Creation Utility to install the database schemas that are required by specific Oracle Fusion Middleware products.
    For Oracle Fusion Middleware 11g Release 1 (11.1.1.7.0), download one of the following:
        Repository Creation Utility 11g Release 1 (11.1.1.7.0) from OTN or Oracle Software Delivery Cloud
        Patch 16471709 (for Windows and Linux 32-bit systems) from My Oracle Support

  • Report Instance not getting started in Oracle Fusion Middleware 11g Report

    Hi
    Report Instance not getting started in Oracle Fusion Middleware 11g Report Instance Error
    Rep-50125 Java.lang.nullpointerexception
    I just installed Oracle Forms,Reports 11g 11.1.1.3.0 in my machine
    Even I started opmnctl(Oracle Process Management Control). Its too running fine.
    Please Guide me the settings need to do to start the report instance.
    Regards
    Murali N S

    Hello,
    Copy rwlpr.exe from Oracle_Home\bin to Oracle_Instance\config\reports\bin
    Regards

  • Integration with Oracle Fusion Apps SaaS

    Hi,
    I have the following integration requirement in my on-premise SOA/ADF application
    1) Get Service Contract details from Oracle Fusion apps cloud instance ( Enterprise Contracts) given a contract number. The details include i) Name ii) Owner iii)Type iv) Business Unit v) Start Date vi) End Date viii) Party details etc..
    2) Create/Get Invoice in Fusion apps cloud instance ( Oracle Financials Cloud ?) from my application.
    3) Create an Order into the the Oracle Fusion apps Order management cloud from my application.
    For the same, I started looking into the OER (https://fusionappsoer.oracle.com/) provided by oracle to find Assets/Services that help us integrate with the SaaS.
    However, I could not find a right service for my above requirements. Here are my findings ( right or wrong) :
    =======================================
    a) For Order Creation ( requirement (2) above):
    -> For Creating an Order, I see a service called Sales Order Service (oracle.apps.crmCommon.orders.salesOrdersService.SalesOrderService) but this service only CRUD's Sales Order Header where as I am looking for a service that needs.
    -> I found another service ( Composite service) ,Get Orchestration Order Service (11.1.7.0.0), Operation: GetOrderDetails , that may get me order details but doesnt give me a way to create an order as I didn't find any operation for Create/Generate.
    -> Another Asset =>File Based Data Import: Purchase Orders Import (11.1.9.0.0) that Imports purchase orders from external systems into Oracle Fusion Purchasing.
    But not sure how to use it. The documentation is duanting here.
    b) For Getting contract details
    -> While looking for a service that would would cater my "get contract details" need, I could find only Contract Type , Contract Business unit services but no service ( ADF or composite) that would give me all the contract details.
    c) For Invoice creation / get - I found these but not sure which one to pick.
    -> Request Invoice Orchestration Task for Fusion Systems Service (11.1.8.0.0) Description:Provides the ability to communicate with the Oracle Fusion Invoicing application to perform create operations.Type: Composite Service. Process Provides the ability for Oracle Fusion Receivables to perform create operations.
    -> Product Family: Financials
    ADF Service: Receivables Invoice Service (11.1.9.0.0)
    Operations: createSimpleInvoice, invoiceHeaderInformation,createInterfaceLine,processInterfaceLine
    Service Path: https://<fin_server:PortNumber>/finArTrxnsInvoices/InvoiceService?WSDL
    Abstract WSDL URL: rep://R9_FUSIONAPPS_HOSTEDREP/oracle/apps/financials/receivables/transactions/invoices/invoiceService/InvoiceService.wsdl
    -> ADF Service: Receivables Invoice (11.1.9.0.0) Service Path: http://<fin_server:PortNumber>/finArTrxnsAutoInvoices/AutoInvoicesBCService?WSDL
    Abstract WSDL URL: rep://R9_FUSIONAPPS_HOSTEDREP/oracle/apps/financials/receivables/transactions/autoInvoices/autoInvoicesService/v1/AutoInvoicesBCService.wsdl
    ======================================
    Can someone help me here in helping me find a right service / way to fullfill my above requirements?
    Thanks,
    Sridhar.

    Hey Reo,
    We need to do few configuration steps to integrate both products
    you can refer to the metalink2 doc id : 552735.1
    https://metalink2.oracle.com/metalink/plsql/f?p=130:14:3427836754632619337::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,552735.1,1,1,1,helvetica
    Remember, if u integrate EBS & OBIEE, you cannot directly login to BI. Instead, you always need to navigate from EBS only..
    Regards,
    Raghu

Maybe you are looking for

  • Java Comm API in FreeBSD? HELP!!!

    I'm doing a project for my company that needs to access the serial port, with commAPI the thing works flawlessly under Windows XP, however big problem comes with commAPI doesn't work in FreeBSD which the company server runs on. This is what I have do

  • Unable to do Software update, access iTunes, use widgets on dash and upload

    *_Here is the problem:_* 1. Unable to use Software Update. When I try I get: "+A networking error has occurred: timed out (-1001). Make sure you can connect to the Internet, then try again+" This is despite being connected to the internet and getting

  • Grant select sequence to other users

    Hi all, Assume: I have a user "A" who have table name "test" and sequence name "test_seq". How can the user "B" able to select on the sequence "test_seq" of user A, by this command below: connect B/password SELECT test_seq.nextval from dual; Thanks,

  • TS3989 Can't synch photos from PC to Ipad through icloud

    Two days ago I successfully set up icloud and transferred a few photos from my PC to my ipad.  Tried again today, by dragging photos to the Photostream folder on my PC but can't get them to move to the ipad.  Can someone guide me through the process

  • JLabel icon position question

    I want to have a JLabel with text and an icon. I want the text to be positioned on the left and I want the icon on the right. My question is: Is this possible and if so how?