Oracle Financial Services Analytical Applications Infrastructure

Size: px
Start display at page:

Download "Oracle Financial Services Analytical Applications Infrastructure"

Transcription

1 Oracle Financial Services Analytical Applications Infrastructure Security Guide Release

2 DOCUMENT CONTROL Version Number Revision Date Changes Done Draft January 2015 Made the document generic for all releases. This document captures the necessary security related configurations. 1.0 April 2015 Added section 3.3 Configuration to restrict file uploads for the Ngan Hang SR November 2015 Added section 3.4 based on Bug December 2015 Updated Web Application Server Security Configuration section based on Bug June 2016 Added content based on Bug December 2016 Rectified the broken link in the TLS Configuration for WebLogic section. Modified the Configuration to restrict HTTP methods other than GET/POST section based on Bug June 2017 Added section Configuring Application Security for Bug , and August 2017 Updated for Bug September 2017 Removed list of filter servlet keywords and created a MOS document. Created by: Gitcy Reviewed by: Darshan/Dhaval/Suresh Approved by: Kiran/ Jeevraj / Surag / Subhashini Executive Summary: This OFSAAI Security Guide includes configuration details for the Filter Servlet, and Web Application Server Security. It also includes generic security configurations.

3 Table of Contents TABLE OF CONTENTS About this Guide... 4 Audience... 4 Recommended Skills FILTER SERVLET Introduction Security and Access Vulnerability Checks Cross Site Scripting SQL Injection Filter Servlet Configurations Checking for XSS Vulnerability Exclusion of Keywords/ Key Characters Debug/ Logs WEB APPLICATION SERVER SECURITY CONFIGURATIONS Security Configuration for Tomcat Security Configuration for WebSphere Session Management Configuration Web Container Settings TLS Configuration for WebSphere Configuring Application Security Security Configuration for WebLogic TLS Configuration for WebLogic ADDITIONAL SECURITY CONFIGURATIONS Configuration to Restrict Access to Default Web Server Pages Configuration to Restrict Display of the Web Server Details Configuration to Restrict File Uploads Configuration to restrict HTTP methods other than GET/POST KNOWN ISSUES/ LIMITATIONS iii

4 About this Guide The information contained in this document is intended to give you a quick exposure and an understanding of the security configurations required after the installation of Oracle Financial Services Analytical Application Infrastructure. This guide is organized into following chapters: Filter Servlet Web Application Server Security Configurations Additional Security Configurations Known Issues Audience This guide is intended for System Administrators (SA) who are instrumental in installing and configuring the Infrastructure application. Recommended Skills It is assumed that the users (System Administrators) are technically sound and proficient in Unix, Database Administration, and Web Application Administration to install and configure OFSAAI in the released environment.

5 1 Filter Servlet This section consists of information related to Filter Servlet and the required configurations. This section also lists out the Keywords and Key Characters. 1.1 Introduction Filter Servlet is a controller in the web-container whose functions are the following: Security and Access This functionality checks whether a user has rights to access a web page that is trying to be accessed Vulnerability Checks This functionality checks for intrusion and Cross-site Scripting vulnerability. Currently this check is for the following group of keywords / key characters: JavascriptKeyWords - paramname in configuration table XSS_JS_KEYWORDS1 to XSS_JS_KEYWORDS13 JavascriptKeyChars - paramname in configuration table XSS_JS_METACHARS1 to XSS_JS_METACHARS10 SQLKeyWords - paramname in configuration table XSS_SQL_KEYWORDS1 to XSS_SQL_KEYWORDS23. SQLWords - paramname in configuration table XSS_SQL_WORDS1 to XSS_SQL_WORDS4 SQLTOKENS- XSS_SQL_TOKENS1 to XSS_SQL_TOKENS8 SQLOPERATORS- XSS_SQL_OPERATORS1 to XSS_SQL_OPERATORS5 are present in Configuration table Cross Site Scripting A Cross Site Scripting vulnerability check is triggered if the HTTP request contains a combination of any JavascriptKeyWords with the JavascriptKeyChars. For example, if an HTTP request contains a combination of any of the JavascriptKeyWords (such as Return, Alert, Script, JavaScript, or VBscript) along with any of JavascriptKeyChars (Meta Chars) such as,, (, ), ;, <, >, {, or }, then the request is blocked displaying an error message. 5

6 You can see the My Oracle Support Document (Doc ID ) containing the PARAMNAME, PARAMVALUE, and DESCRIPTION to view the list of keywords and key characters scoped for filtering SQL Injection An SQL Injection vulnerability check filters multiple combinations of SQLKeyWords and SQLWords. For example, if an HTTP request contains a combination of any of the disallowed SQLWords (such as From, Into, Where, table) with any of the SQLKeyWords (such as Alter, Insert, Select, Create, Update, Delete, Drop, Truncate) for XSS check, then the request is blocked displaying an error message. You can see the My Oracle Support Document (Doc ID ) containing the PARAMNAME, PARAMVALUE, and DESCRIPTION to view the list of keywords and key characters scoped for filtering. 1.2 Filter Servlet Configurations Checking for XSS Vulnerability The following entry will be available in the configuration table present in the Configuration Schema. The Cross site Checks will not be performed if the entry is not present or the PARAMVALUE is FALSE. By default PARAMVALUE is set to TRUE. PARAMNAME PARAMVALUE DESCRIPTION XSS_IS_CHECK_REQUIRED TRUE Parameter to decide whether XSS check is to be enabled or not Exclusion of Keywords/ Key Characters You can exclude the evaluation of a keyword by adding a new PARAMNAME with PARAMVALUE and a DESCRIPTION (optional) to the configuration table. The ending numeral in the new PARAMNAME should be higher than any other numbers in the group. For example, if you want to exclude the evaluation of JS keyword return, which has the PARAMNAME XSS_JS_KEYWORDS1, you need to update the keyword numeral to XSS_JS_KEYWORDS12 considering the table has 11 other keywords listed under this category. Ensure that the updated number is higher than any other numbers in the group. 6

7 1.2.3 Debug/ Logs In case of detection of vulnerability, a message is displayed in the front-end and logged into a file called CSSlogger.log under <deployed context>\logs directory of the webserver. The log contains date, time, URL, and the user. You can configure the CSSlogger.log file creation path. Insert the path for the CSS logger file in the place holder CSS_LOGGER_PATH provided in $FIC_WEB_HOME/conf/FICWeb.cfg file. If you do not provide the path, it gets generated in the default path (<deployed context>\logs). 7

8 2 Web Application Server Security Configurations Refer to the following sections depending on your configured web application server. Alternatively, you may refer to your web application server specific administration guide for additional details. Security Configuration for Tomcat Security Configuration for WebSphere Security Configuration for WebLogic 2.1 Security Configuration for Tomcat Perform the following security configurations for Tomcat: 1. Add preferred cipher list to Tomcat and update the value of sslprotocol to TLS 1.2 in the SSL Connector tag of $CATALINA_HOME/conf/server.xml file. 2. Add the following ciphers attribute to the same tag: ciphers="ssl_rsa_with_rc4_128_sha,tls_ecdhe_ecdsa_with_rc4_128_s HA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SH A,TLS_ECDH_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA256,TLS_DH_DSS_WITH_AES_128_CBC_SHA2 56,TLS_DH_RSA_WITH_AES_128_CBC_SHA256,TLS_DH_DSS_WITH_AES_256_CB C_SHA256,TLS_DH_RSA_WITH_AES_256_CBC_SHA256,TLS_DHE_DSS_WITH_AES _256_CBC_SHA256,TLS_DHE_RSA_WITH_AES_256_CBC_SHA256" 3. Add the following session attributes under Context tag of $CATALINA_HOME/conf/server.xml file. sessioncookiepath= <context> sessioncookiedomain= <domain> NOTE: <context> is OFSAAI context and <domain> is domain name of the server that needs to receive the cookie. For example, if the application is accessed through URL as app.mysite.com, then it should be set to app.mysite.com and not mysite.com. 8

9 2.2 Security Configuration for WebSphere In the WebSphere Admin console, you must restrict cookies to HTTPS sessions in Sessions Management Configuration, specify JSESSIONID variable in the Web Container Settings, set TLS configuration, and configure application security. The subsections describe the procedures in detail Session Management Configuration In Session Management Configuration, restrict cookies to HTTPS Sessions. The following is the procedure: 1. Navigate to your WebSphere Admin Console and in the LHS menu, select Servers > Application Servers. 2. Select the configured Application Server from the list by clicking on the Server Name. 9

10 3. In the Configuration tab, click Session Management link, in Container Settings section. 10

11 4. In the General Properties tab, click the Enable Cookies link. 5. Enter the following details: Cookie Name - JSESSIONID Cookie domain - <domain> Cookie Path - /<context>/ NOTE: <context> is OFSAAI context and <domain> is domain name of the server that needs to receive the cookie. For example, if the application is accessed through URL as app.mysite.com, then it should be set to app.mysite.com and not mysite.com. 11

12 6. Select the Restrict Cookies to HTTPS Sessions checkbox and click Apply and OK. 12

13 2.2.2 Web Container Settings In Web Container Settings, specify JSESSIONID variable in Custom Properties. This value is a string that can set internal system configuration properties. The following is the procedure: 1. Navigate to your WebSphere Admin Console and in the LHS menu, select Servers > Application Servers. 2. Select the configured Application Server from the list by clicking on the Server Name. 3. In the Configuration tab, expand Web Container Settings and click Web Container link. 13

14 4. In the Additional Properties section, click Custom Properties link. 5. Add a variable with the Name com.ibm.ws.webcontainer.httponlycookies and Value as JSESSIONID. You can also specify a Description if required. NOTE: Ensure you specify JSESSIONID in upper case. 6. Click Apply and OK to save the changes. 7. In the Messages section, click on Save link. 14

15 8. Restart Application Server through the console TLS Configuration for WebSphere Following are the steps to configure TLS protocol in WebSphere: 1. Log on to the console ( 2. Under the Security menu, select SSL certificate and key management, SSL configurations, NodeDefaultSSLSettings, and Quality of protection (QoP) settings. 3. Change the Protocol value to TLSv1.2. This ensures that WebSphere server will accept only TLSv1.2 connections. That is, when the web server acts as a server (inbound) or as client (outbound) the SSL connections will be established through the TLSv1.2 protocol. When testing from a browser, make sure to check the browser settings to initiate TLS handshakes only. For more information, see Configuring WebSphere Application Server to support TLS Configuring Application Security Enable Application security to secure your server from unauthorized users and allow access only to authenticated users. It prevents unauthorized access of configuration files in directories. The following is the procedure to enable Application security: 1. Log in to WebSphere with administrator credentials. 2. Click Security from the left menu and click Global security to display the Global security window. NOTE: By default, Administrative security is enabled. However, if it is disabled, enable it before you enable Application security. This is a prerequisite to enable Application security. 15

16 3. Select Enable application security. 2.3 Security Configuration for WebLogic In the WebLogic Server, though the Auth Cookie option is enabled by default, the cookies are not secure. In-order to ensure this, you need to toggle the Auth Cookie Enabled option in WebLogic console by disabling it first and then re-enabling it for secure cookies. You will then need to create a weblogic.xml file and deploy.ear file in your Weblogic server. Perform the following configurations: 1. Login to WebLogic Server Administrative Console and select the Domain from LHS > Domain Structure section. 2. In the Configurations tab (selected by default), select the Web Application tab. 16

17 3. Scroll through the configurations options within the page and locate Auth Cookie Enabled option. By default, the checkbox is selected. 4. De-select the checkbox adjacent to Auth Cookie Enabled option and click Save. 5. On save, select the Auth Cookie Enabled checkbox and resave the change. 6. If your OFSAAI version is below , do the following: Create a file with name weblogic.xml under $FIC_WEB_HOME/webroot/WEB-INF/ and add the below tags. <weblogic-web-app xmlns=" <session-descriptor> <cookie-secure>true</cookie-secure> <cookie-name>jsessionid</cookie-name> <cookie-domain><domain></cookie-domain> <cookie-path>/<context>/</cookie-path> </session-descriptor> </weblogic-web-app> 17

18 7. If your OFSAAI version is or higher, modify weblogic.xml file and add below tag under root element: <session-descriptor> <cookie-name>jsessionid</cookie-name> <cookie-domain><domain></cookie-domain> <cookie-path>/<context>/</cookie-path> </session-descriptor> NOTE: <context> is OFSAAI context and <domain> is domain name of the server that needs to receive the cookie. For example, if the application is accessed through URL as app.mysite.com, then it should be set to app.mysite.com and not mysite.com. 8. Build.ear file and deploy it onto the WebLogic server TLS Configuration for WebLogic Following are the steps to configure TLS protocol in Weblogic: 1. Add the following parameters in setdomainenv.sh present under /domains/<domainname>/bin as arguments for JAVA_OPTIONS: - Dweblogic.security.disableNullCipher=true - Dweblogic.security.SSL.protocolVersion=TLS1.2 For more information, see Enabling TLS-Only on WebLogic. 18

19 3 Additional Security Configurations 3.1 Configuration to Restrict Access to Default Web Server Pages Following are the configurations to restrict access to default web server pages in the Apache Tomcat server: 1. Start the Apache Tomcat server by executing the command startup.sh. 2. Log in to the Tomcat Web Application Manager. 3. Undeploy the Examples application from Tomcat: Go to the Tomcat Web Application Manager screen and click the Remove link corresponding to the Tomcat Examples application. 4. Shut down the Apache Tomcat Server by executing the command shutdown.sh. 5. Comment the following two sections from %CATALINA_HOME%/conf/server.xml (if available). Section I <Context path="/examples" docbase="examples" debug="0" reloadable="true" crosscontext="true"> <Logger classname="org.apache.catalina.logger.filelogger" prefix="localhost_examples_log." suffix=".txt" timestamp="true"/> <Ejb name="ejb/emplrecord" type="entity" home="com.wombat.empl.employeerecordhome" remote="com.wombat.empl.employeerecord"/> Section II <Environment name="maxexemptions" type="java.lang.integer" value="15"/> <Parameter name="context.param.name" value="context.param.value" override="false"/> <Resource name="jdbc/employeeappdb" auth="servlet" type="javax.sql.datasource"/> <ResourceParams name="jdbc/employeeappdb"> <parameter><name>user</name><value>sa</value></parameter> 19

20 <parameter><name>password</name><value></value></parameter> <parameter><name>driverclassname</name> <value>org.hsql.jdbcdriver</value></parameter> <parameter><name>drivername</name> <value>jdbc:hypersonicsql:database</value></parameter> </ResourceParams> <Resource name="mail/session" auth="container" type="javax.mail.session"/> <ResourceParams name="mail/session"> <parameter> <name>mail.smtp.host</name> <value>localhost</value> </parameter> </ResourceParams> </Context> <ResourceLink name="linktoglobalresource" global="simplevalue" type="java.lang.integer"/> 6. Delete %CATALINA_HOME%\webapps\ROOT\index.jsp file. 7. Create a blank file %CATALINA_HOME%\webapps\ROOT\index.html. 8. Comment the following two tags from %CATALINA_HOME%\conf\web.xml file: <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> 9. Change the default passwords of Tomcat users in %CATALINA_HOME%\conf\tomcat-users.xml file. Following are some examples: <user username="both" password="b$12" roles="tomcat,role1"/> <user username="tomcat" password="t$12" roles="tomcat"/> <user username="admin" password="a$12" roles="admin,manager"/> <user username="role1" password="r$12" roles="role1"/> 20

21 3.2 Configuration to Restrict Display of the Web Server Details Following are the configurations to restrict the display of the web server details from http responses: Modify the /httpd.conf file and set: ServerTokens parameter to Prod ServerSignature parameter to off 3.3 Configuration to Restrict File Uploads Following is the configuration to restrict upload of files with certain file types. This configuration is applicable for all UIs/ APPs that are rendered out of the platform s Forms Framework module. The parameter DOCUMENT_ALLOWED_EXTENSION in the CONFIGURATION table of the configuration schema holds the list of file extensions for valid file types that are allowed to be attached and uploaded in to OFSAA applications. Any files being attached that do not have an extension as listed in this parameter value, will be blocked. The current release has the below values set for the parameter. This list is extensible. DOCUMENT_ALLOWED_EXTENSION --> txt, pdf, doc, Doc, html, htm, xls, zip, jar,xml, jpg, bmp, and jpeg. 3.4 Configuration to restrict HTTP methods other than GET/POST Following configuration is required to restrict HTTP methods other than GET/POST: Modify httpd.conf file of HTTP Server (Apache HTTP Server/Oracle HTTP Server/IBM HTTP Server) RewriteEngine On RewriteCond %{REQUEST_METHOD}!^(GET POST) RewriteRule.* - [R=405,L] If the application is not configured with HTTP Server, perform the following steps in case of WebLogic and WebSphere application servers. 1. Add the following snippet to the $FIC_WEB_HOME/webroot/WEB-INF/web.xml file. <security-constraint> <web-resource-collection> methods</web-resourcename> <web-resource-name>restricted <url-pattern>/*</url-pattern> <http-method>put</http-method> 21

22 <http-method>patch</http-method> <http-method>head</http-method> <http-method>delete</http-method> <http-method>options</http-method> <http-method>trace</http-method> <http-method>connect</http-method> </web-resource-collection> <auth-constraint/> </security-constraint> 2. Navigate to the $FIC_WEB_HOME directory on the OFSAA Installed server. 3. Execute./ant.sh to regenerate <CONTEXTNAME>.ear/.war. 4. Re-deploy the EAR/WAR file onto your configured web application server. For more information on deploying EAR / WAR file, refer to the Post Installation Configuration section in Oracle Financial Services Advanced Analytical Applications Infrastructure Application Pack Installation and Configuration Guide. 22

23 4 Known Issues/ Limitations The following are the known issues or limitations while working with filter servlet: In modules like Data Management Tools, Unified Analytical Metadata, and Forms Framework, if an entered keyword is vulnerable to XSS attack, the page context may lose or action performed on screen may stop without a proper message. Refer CSSlogger.log file for details. In modules like Excel Upload and Modeling Framework, JavaScript error may be displayed if any vulnerability is found. Ensure the excludeurllist.cfg file is not empty. If it is empty, the filter servlet will include all the pages / URL s without filtering. 23

24 OFSAAI Security Guide Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: financial_services/ Copyright 2017 Oracle Financial Services Software Limited. All rights reserved. No part of this work may be reproduced, stored in a retrieval system, adopted or transmitted in any form or by any means, electronic, mechanical, photographic, graphic, optic recording or otherwise, translated in any language or computer language, without the prior written permission of Oracle Financial Services Software Limited. Due care has been taken to make this OFSAAI Security Guide and accompanying software package as accurate as possible. However, Oracle Financial Services Software Limited makes no representation or warranties with respect to the contents hereof and shall not be responsible for any loss or damage caused to the user by the direct or indirect use of this OFSAAI Security Guide and the accompanying Software System. Furthermore, Oracle Financial Services Software Limited reserves the right to alter, modify or otherwise change in any manner the content hereof, without obligation of Oracle Financial Services Software Limited to notify any person of such revision or changes. All company and product names are trademarks of the respective companies with which they are associated. 24

Gateway Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011]

Gateway Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011] Gateway Application Setup Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Table of Contents 1. SETTING UP GATEWAY FOR ORACLE FLEXCUBE... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP GATEWAY

More information

Oracle Financial Services Data Management Application Pack

Oracle Financial Services Data Management Application Pack Oracle Financial Services Data Management Application Pack Installation Guide Version 8.0.6..0 Table of Contents TABLE OF CONTENTS Preface... 3 Audience... 3 Prerequisites for the Audience... 3 Related

More information

Oracle Financial Services Analytical Applications Infrastructure

Oracle Financial Services Analytical Applications Infrastructure Oracle Financial Services Analytical Applications Infrastructure Installation & Configuration Guide Version 7.3.5.1.0 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0 March 2015 Created document

More information

Oracle Financial Services Data Management Application Pack

Oracle Financial Services Data Management Application Pack Oracle Financial Services Data Management Application Pack Installation Guide Version 8.0.2.0.0 Table of Contents TABLE OF CONTENTS Preface... 3 Audience... 3 Prerequisites for the Audience... 3 How this

More information

Oracle Financial Services Price Creation and Discovery Application Pack

Oracle Financial Services Price Creation and Discovery Application Pack Oracle Financial Services Price Creation and Discovery Application Pack Installation and Configuration Guide Version 8.0.5.1.0 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0 Created: January

More information

Oracle Financial Services Analytical Applications

Oracle Financial Services Analytical Applications Oracle Financial Services Analytical Applications Environment Check Utility Guide Release 8.0.1.0.0 DOCUMENT CONTROL Version Number Revision Date Changes Done Draft Created: July 2015 Created a draft document

More information

Oracle Financial Services Administrative Reports. Configuration Note Version July 2015

Oracle Financial Services Administrative Reports. Configuration Note Version July 2015 Oracle Financial Services Administrative Reports Configuration Note Version 6.1.1.0.0 July 2015 Document Control Created on : 08-Dec-2011 Revision No : 1.0 Group: OFSAA Updated by : Reviewed by : Approved

More information

Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA)

Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA) Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA) Installation Guide Release 8.0.5.0.0 December 2017 DOCUMENT CONTROL Version Number Revision Date Changes

More information

Document Management System Interface Version NT1316-ORACLE FCUBSV.UM [January] [2010] Oracle Part Number E

Document Management System Interface Version NT1316-ORACLE FCUBSV.UM [January] [2010] Oracle Part Number E Document Management System Interface Version-11.0 9NT1316-ORACLE FCUBSV.UM 11.0.0.0.0.0.0 [January] [2010] Oracle Part Number E51573-01 Document Control Author: Documentation Team Created on: October 01,

More information

Oracle Financial Services Regulatory Reporting for De Nederlandsche Bank (OFS AGILE RP DNB)

Oracle Financial Services Regulatory Reporting for De Nederlandsche Bank (OFS AGILE RP DNB) Oracle Financial Services Regulatory Reporting for De Nederlandsche Bank (OFS AGILE RP DNB) Installation Guide Release 8.0.4.0.0 April 2017 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0

More information

Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 Upload Adapter Development Guide Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 1.4 Hypothetical Example

More information

Product Release Note Version Oracle FLEXCUBE Investor Servicing [May] [2012]

Product Release Note Version Oracle FLEXCUBE Investor Servicing [May] [2012] Product Release Note Version - 1.0 Oracle FLEXCUBE Investor Servicing 12.0.0 [May] [2012] Document Control Author: Sivakumar Group: BPD Created on : 17-05-2012 Revision No : 2.0 Updated by : Sivakumar

More information

ELCM Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011]

ELCM Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011] ELCM Application Setup Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Table of Contents 1. SETTING UP STANDALONE ELCM... 1-1 1.1 INTRODUCTION... 1-1 1.2 PREREQUISITES... 1-1 1.3 PREPARING

More information

An Oracle Technical White Paper May CRM Service Pack Installation

An Oracle Technical White Paper May CRM Service Pack Installation An Oracle Technical White Paper May 2013 CRM 4.0.1.0.0 Service Pack Installation Guide Introduction Oracle Financial Services (OFS) Credit Risk Management (CRM) provides a single consistent view of portfolio

More information

Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA)

Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA) Oracle Financial Services Regulatory Reporting for European Banking Authority (OFS AGILE RP EBA) Installation Guide Release 8.0.6.0.0 June 2018 DOCUMENT CONTROL Version Number Revision Date Changes Done

More information

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E

Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E Oracle FLEXCUBE Investor Servicing BIP Report Development Guide Release 12.0 April 2012 Oracle Part Number E51528-01 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions...

More information

Installation and Setup Guide Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Installation and Setup Guide Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Installation and Setup Guide Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Installation and Setup Guide 1. PREFACE... 1-1 1.1 AUDIENCE... 1-1

More information

Document Management System Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Document Management System Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Document Management System Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Document Management System Interface 1. ORACLE FLEXCUBE -

More information

Bulletin Board Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Bulletin Board Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Bulletin Board Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Table of Contents Bulletin Board 1. BULLETIN BOARD... 1-1 1.1 INTRODUCTION... 1-1 1.2 MAINTAINING

More information

Oracle FLEXCUBE Universal Banking 12.0

Oracle FLEXCUBE Universal Banking 12.0 Oracle FLEXCUBE Universal Banking 12.0 Data Model Getting Started Release 1.0 May 2012 Oracle Part Number E51465-01 FCUBS-FD08-01-01-Data Model getting started 1 Contents 1 Preface... 3 1.1 Audience...

More information

Oracle FLEXCUBE Universal Banking Purge Entity Definition

Oracle FLEXCUBE Universal Banking Purge Entity Definition Oracle FLEXCUBE Universal Banking 12.87.03.0.0 Purge Entity Definition June 2017 1 Contents 1. Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2. Introduction... 3 2.1 How to use this Guide...

More information

Oracle Financial Services Economic Capital Advanced Installation Guide

Oracle Financial Services Economic Capital Advanced Installation Guide An Oracle Technical White Paper December 2013 Oracle Financial Services Economic Capital Advanced 1.1.1.1.0 Installation Guide Introduction Oracle Financial Services (OFS) Economic Capital Advanced Release

More information

Oracle FLEXCUBE Universal Banking Development of Dashboard Forms

Oracle FLEXCUBE Universal Banking Development of Dashboard Forms Oracle FLEXCUBE Universal Banking 12.0.2 August 2013 1 Table of Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2 Introduction... 4 3 Creating Dashboard Screen... 4 3.1 Preferences...

More information

Oracle FGL Application Setup Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012]

Oracle FGL Application Setup Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle FGL Application Setup Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Table of Contents 1. SETTING UP ORACLE FGL... 1-1 1.1 INTRODUCTION... 1-1 1.2 PREREQUISITES... 1-1 1.3 PREPARING

More information

Configuring OFSAA in Clustered Environment User Guide. Feburary 2015 E

Configuring OFSAA in Clustered Environment User Guide. Feburary 2015 E Configuring OFSAA in Clustered Environment User Guide Feburary 2015 E61373-01 Oracle Financial Services Configuring OFSAA in Clustered Environment User Guide Feburary 2015 Part Number: E61373-01 Document

More information

Reports Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E

Reports Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E Reports Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Oracle Part Number E51511-01 Table of Contents Reports 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION... 1-1 1.1.1 Audience... 1-1 1.1.2

More information

Oracle BI Reports Oracle FLEXCUBE Investor Servicing Release 12.0 [April] [2012] Oracle Part Number E

Oracle BI Reports Oracle FLEXCUBE Investor Servicing Release 12.0 [April] [2012] Oracle Part Number E Oracle BI Reports Oracle FLEXCUBE Investor Servicing Release 12.0 [April] [2012] Oracle Part Number E51528-01 Table of Contents Oracle BI Reports 1. AD HOC REPORTING USING ORACLE BI SUITE... 1-1 1.1 INTRODUCTION...

More information

Oracle Financial Services Basel Regulatory Capital Analytics Data Migration Guide

Oracle Financial Services Basel Regulatory Capital Analytics Data Migration Guide An Oracle Technical White Paper August 2013 Oracle Financial Services Basel Regulatory Capital Analytics 6.0.0.0.0 Data Migration Guide Data Migration Introduction Data migration is the process of transferring

More information

Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED)

Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED) Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED) Installation Guide Release 8.0.6.0.0 July 2018 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0

More information

Notification Development Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Notification Development Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Notification Development Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Notification Development 1. PREFACE... 1-1 1.1 AUDIENCE... 1-1 1.2 RELATED

More information

Oracle Financial Services Profitability Management Application Pack

Oracle Financial Services Profitability Management Application Pack Oracle Financial Services Profitability Management Application Pack Language Pack Installation & Configuration Guide Version 8.0.0.0.0 DOCUMENT CONTROL Version Number Revision Date Changes Done Version

More information

An Oracle Technical White Paper June LRM Service Pack Installation

An Oracle Technical White Paper June LRM Service Pack Installation An Oracle Technical White Paper June 2013 LRM 2.0.1.0.0 Service Pack Installation Guide Introduction Oracle Financial Services (OFS) Liquidity Risk Management (LRM) provides a single consistent view of

More information

Oracle FLEXCUBE Universal Banking 12.0 RAD BIP Report Integration. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 RAD BIP Report Integration. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 RAD BIP Report Integration Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 4 2 Introduction... 4 2.1

More information

Oracle Financial Services Analytical Applications

Oracle Financial Services Analytical Applications Oracle Financial Services Analytical Applications Configuration for High Availability (HA) Best Practices Guide Version 8.0.1.1.0 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0 Created:

More information

Profitability Application Pack Installation Guide Release

Profitability Application Pack Installation Guide Release Profitability Application Pack Installation Guide Release 8.0.6.1.0 October 2018 Document Versioning Version Number Revision Date Changes Done 1.0 10 September 2018 Final version released 1.1 5 October

More information

Oracle Financial Services Analytical Applications Infrastructure

Oracle Financial Services Analytical Applications Infrastructure Oracle Financial Services Analytical Applications Infrastructure Object Migration Utility - OFSAAI v7.3.5.1.0/7.3.5.2.0 to v8.x User Guide Part Number - E60058-01 Document Control DOCUMENT CONTROL Version

More information

Oracle FLEXCUBE Universal Banking 12.0 Interface Getting started. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 Interface Getting started. Release 1.0 Universal Banking 12.0 Interface Getting started Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 2 Introduction... 4 2.1 How to use this Guide...

More information

Oracle FLEXCUBE Universal Banking 12.0 Dashboard Development Guide

Oracle FLEXCUBE Universal Banking 12.0 Dashboard Development Guide Oracle FLEXCUBE Universal Banking 12.0 Dashboard Development Guide Release 12.0 June 2012 Contents 1. PREFACE... 1-1 1.1 AUDIENCE... 1-1 1.2 RELATED DOCUMENTS... 1-1 1.3 CONVENTIONS... 1-1 1.4 PREREQUISITES...

More information

Oracle FLEXCUBE Universal Banking Child and Screen Childs - Concept and Design. January 2018

Oracle FLEXCUBE Universal Banking Child and Screen Childs - Concept and Design. January 2018 Oracle FLEXCUBE Universal Banking 12.87.04.0.0 January 2018 1 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2 Introduction... 4 3 Child Screen... 4 3.1 Screen Development... 4 3.2

More information

Oracle Financial Services. Environment Cloning Guide

Oracle Financial Services. Environment Cloning Guide Oracle Financial Services Environment Cloning Guide Oracle Financial Services Environment Cloning Guide Oracle Financial Services Software, Inc. World Headquarters 500 Oracle Parkway Redwood Shores, CA

More information

Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Function ID Development II 1. PREFACE... 1-1 1.1 AUDIENCE... 1-1 1.2

More information

Oracle FLEXCUBE Universal Banking Development of Launch Forms

Oracle FLEXCUBE Universal Banking Development of Launch Forms Oracle FLEXCUBE Universal Banking 12.87.03.0.0 Development of Launch Forms June 2017 1 Contents 1. Preface... 3 1.1 Audience... 3 2. Introduction... 3 2.1 How to use this Guide... 4 3. Launch Forms...

More information

Oracle FLEXCUBE Universal Banking 12.0 RAD Function ID Development Volume 2. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 RAD Function ID Development Volume 2. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 RAD Function ID Development Volume 2 Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 4 1.4 Pre-request...

More information

Oracle FLEXCUBE Universal Banking

Oracle FLEXCUBE Universal Banking Oracle FLEXCUBE Universal Banking 12.87.03.0.0 June 2017 1 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2 Introduction... 1 3 Overview of... 1 4 Login... 2 5 Home Page... 3 5.1

More information

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Installation Guide Release 8.0.4.1.0 July 2017 Executive Summary This document includes the necessary

More information

Oracle FLEXCUBE Universal Banking Development Workbench Webservice & Silent Utility for generation of Webservice Artifacts Release 1.

Oracle FLEXCUBE Universal Banking Development Workbench Webservice & Silent Utility for generation of Webservice Artifacts Release 1. Oracle FLEXCUBE Universal Banking 12.0.3 Development Workbench Webservice & Silent Utility for generation of Webservice Artifacts Release 1.0 March 2014 Contents 1 Preface... 1 1.1 Audience... 2 2 Introduction...

More information

Oracle FLEXCUBE IVR User Manual Release Part No E

Oracle FLEXCUBE IVR User Manual Release Part No E Oracle FLEXCUBE IVR User Manual Release 5.0.2.0.0 Part No E52129-01 IVR User Manual Table of Contents (index) 1. IVR... 3 1.1. TBS01 - TBS Bank Params Maintenance... 4 1.2. TBS02 - TBS Acquirer Pos ID

More information

Oracle FLEXCUBE Universal Banking 12.0 Extensibility By Example Volume 2. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 Extensibility By Example Volume 2. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 Extensibility By Example Volume 2 Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 1.4 Pre-request for

More information

Oracle Financial Services Regulatory Reporting for US Treasury Lombard Risk Integration Pack

Oracle Financial Services Regulatory Reporting for US Treasury Lombard Risk Integration Pack Oracle Financial Services Regulatory Reporting for US Treasury Lombard Risk Integration Pack Installation Guide Release 8.0.5.0.0 March 2018 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0

More information

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express An Oracle White Paper May 2014 Example Web Listener Deployment for Oracle Application Express Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack

Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Release 8.0.6.2.0 Installation Guide January 2019 Document Versioning Version Date Change Reference 02 January 04, 2019 Updated:

More information

Oracle Financial Services Data Foundation

Oracle Financial Services Data Foundation Oracle Financial Services Data Foundation Product Installation Manual Version 7.4.2.0.0 April 2014 Document Control Author: Niraj Ranjan Biswal Group: OFSAA Created on: 30-Jan-14 Revision No: 1.0 Updated

More information

Oracle FLEXCUBE Universal Banking 12.0 Extensibility Getting started

Oracle FLEXCUBE Universal Banking 12.0 Extensibility Getting started Oracle FLEXCUBE Universal Banking 12.0 Extensibility Getting started Release 1.0 May 2012 Oracle Part Number E51527-01 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions...

More information

Regulatory Reporting Solution for US Federal Reserve Lombard Risk Integration Pack. Release Installation Guide November 2017

Regulatory Reporting Solution for US Federal Reserve Lombard Risk Integration Pack. Release Installation Guide November 2017 Regulatory Reporting Solution for US Federal Reserve Lombard Risk Integration Pack Release 8.0.5.0.0 Installation Guide November 2017 Document Versioning Version Date Change Reference 02 November 30, 2017

More information

Hajj Registration Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Hajj Registration Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Hajj Registration Interface Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Hajj Registration Interface 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION...

More information

EMS.NET Interface Version NT1316-ORACLE FCUBSV.UM [January] [2010] Oracle Part Number E

EMS.NET Interface Version NT1316-ORACLE FCUBSV.UM [January] [2010] Oracle Part Number E EMS.NET Interface Version-11.0 9NT1316-ORACLE FCUBSV.UM 11.0.0.0.0.0.0 [January] [2010] Oracle Part Number E51712-01 Document Control Author: Documentation Team Created on: October 01, 2008 Updated by:

More information

Oracle FLEXCUBE Universal Banking Development Workbench -Tracking Changes

Oracle FLEXCUBE Universal Banking Development Workbench -Tracking Changes Oracle FLEXCUBE Universal Banking 12.0.3 Development Workbench - Tracking Changes Release 1.0 Feb 2012 1 Contents 1 Preface... 3 1.1 Audience... 3 2 Introduction... 3 2.1 How to use this Guide... 3 3 View

More information

Oracle Financial Services Data Integration Application Pack

Oracle Financial Services Data Integration Application Pack Oracle Financial Services Data Integration Application Pack 8.0.1.0.0 Release Notes E65215-01 DOCUMENT CONTROL Version Number Revision Date Changes Done 1.0 Created: August 2015 Captured Software environment

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Tomcat

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Tomcat IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on Tomcat Note Before using this information and the product it supports, read the information in Notices on

More information

Oracle FLEXCUBE UI Style Designer Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Oracle FLEXCUBE UI Style Designer Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Oracle FLEXCUBE UI Style Designer Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Table of Contents Oracle FLEXCUBE UI Style Designer 1. ABOUT THIS MANUAL... 1-1

More information

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding A Joint Oracle Teradata White Paper September 2011 Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding Introduction... 1 Step 1. Query Band Configuration

More information

Oracle FLEXCUBE Universal Banking 12.0 Generic Interface Configuration Guide. Release 1.0

Oracle FLEXCUBE Universal Banking 12.0 Generic Interface Configuration Guide. Release 1.0 Oracle FLEXCUBE Universal Banking 12.0 Generic Interface Configuration Guide Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 2 Introduction...

More information

Oracle Financial Services Compliance Regulatory Reporting Administration Guide Kenya STR. Release May 2018

Oracle Financial Services Compliance Regulatory Reporting Administration Guide Kenya STR. Release May 2018 Oracle Financial Services Compliance Regulatory Reporting Administration Guide Kenya STR Release 8.0.6.0.0 May 2018 Oracle Financial Services Compliance Regulatory Reporting Administration Guide Kenya

More information

Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED)

Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED) Oracle Financial Services Regulatory Reporting for US Federal Reserve (OFS AGILE RP US FED) Installation Guide Release 8.0.7.0.0 February 2019 DOCUMENT CONTROL Version Number Revision Date Changes Done

More information

SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide

SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software,

More information

OFSAA Extension Guidelines Model. January 2018

OFSAA Extension Guidelines Model. January 2018 OFSAA Extension Guidelines Model January 2018 Table of Contents TABLE OF CONTENTS 1 OBJECTIVE... 3 2 OVERVIEW OF OFSAA DATA MODEL... 4 3 STRUCTURE OF OFSAA DATA MODEL... 5 3.1 Common Staging Area... 5

More information

Oracle Financial Services Behavior Detection Applications Pack

Oracle Financial Services Behavior Detection Applications Pack Oracle Financial Services Behavior Detection Applications Pack Installation Guide Release 8.0.2.0.0 E70893-01 February 2016 Installation Guide, Release 8.0.2.0.0 E70893-01 Copyright 2016, Oracle and/or

More information

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework An Oracle White Paper October 2012 Release Notes - V4.2.0.0.0 Oracle Utilities Application Framework Introduction... 2 Disclaimer... 2 Deprecation of Functionality... 2 New or Changed Features... 4 Native

More information

Deploying Intellicus Portal on IBM WebSphere. Version: 7.3

Deploying Intellicus Portal on IBM WebSphere. Version: 7.3 Deploying Intellicus Portal on IBM WebSphere Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be

More information

Oracle Financial Services Compliance Regulatory Reporting Administration Guide goaml. Release May 2018

Oracle Financial Services Compliance Regulatory Reporting Administration Guide goaml. Release May 2018 Oracle Financial Services Compliance Regulatory Reporting Administration Guide goaml Release 8.0.6.0.0 May 2018 Oracle Financial Services Compliance Regulatory Reporting Administration Guide goaml Release

More information

Oracle Financial Services Analytical Applications Infrastructure (OFSAAI)

Oracle Financial Services Analytical Applications Infrastructure (OFSAAI) Oracle Financial Services Analytical Applications Infrastructure (OFSAAI) Installation and Configuration Guide Release 7.1 Part No. E16678-01 December 2010 Oracle Financial Services Analytical Applications

More information

Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E

Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release [May] [2011] Oracle Part Number E Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Oracle Part Number E51511-01 Corporate Customer Creation Table of Contents 1. CREATION OF CORPORATE CUSTOMER...

More information

BPEL Workflow Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

BPEL Workflow Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E BPEL Workflow Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Table of Contents BPEL Workflow 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION... 1-1 1.2 AUDIENCE...

More information

Generic Interface Version NT832-ORACLE FCUBSV.UM [October] [2008] Oracle Part Number E

Generic Interface Version NT832-ORACLE FCUBSV.UM [October] [2008] Oracle Part Number E Generic Interface Version-10.2 9NT832-ORACLE FCUBSV.UM 10.2.0.0.0.0.0 [October] [2008] Oracle Part Number E51712-01 Document Control Author: Documentation Team Created on : October 01, 2008 Group: UBPG

More information

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4)

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) Oracle Application Server Portal Technical Note SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) November 2005 INTRODUCTION This Technical Note describes how to setup up and configure Oracle

More information

Process Commander Installation Guide

Process Commander Installation Guide Process Commander Installation Guide Version: 6.3 SP1 Database: Oracle Application Server: WebSphere 6 Copyright 2013 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud

Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud E67875-06 May 2018 Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud, E67875-06 Copyright

More information

Oracle FLEXCUBE Universal Banking Uploading Records from Upload Table

Oracle FLEXCUBE Universal Banking Uploading Records from Upload Table Oracle FLEXCUBE Universal Banking 12.0.3 Uploading Records from Upload Table May 2014 1 Contents 1. Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2. Introduction... 4 2.1 How to use this Guide...

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

Oracle Utilities Customer Self Service

Oracle Utilities Customer Self Service Oracle Utilities Customer Self Service Whitepaper: Creating and Deploying the Sample Mobile Client Application Release 2.1.0 Service Pack 2 E38172-07 October 2015 Oracle Utilities Customer Self Service

More information

SOA Software Policy Manager Agent v6.1 for tc Server Application Server Installation Guide

SOA Software Policy Manager Agent v6.1 for tc Server Application Server Installation Guide SOA Software Policy Manager Agent v6.1 for tc Server Application Server Installation Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software,

More information

Oracle FLEXCUBE Universal Banking 12.0 OBIEE Repository Development Guide

Oracle FLEXCUBE Universal Banking 12.0 OBIEE Repository Development Guide Oracle FLEXCUBE Universal Banking 12.0 OBIEE Repository Development Guide Release 1.0 May 2012 Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related documents... 3 1.3 Conventions... 3 2 Introduction...

More information

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011 An Oracle White Paper: November 2011 Installation Instructions: Oracle XML DB XFILES Demonstration Table of Contents Installation Instructions: Oracle XML DB XFILES Demonstration... 1 Executive Overview...

More information

Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p.

Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p. Preface p. xiii Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p. 11 Creating the Deployment Descriptor p. 14 Deploying Servlets

More information

SonicMQ - Oracle Enterprise Gateway Integration Guide

SonicMQ - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 SonicMQ - Oracle Enterprise Gateway Integration Guide 1 / 24 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

METADATA FRAMEWORK 6.3. and High Availability

METADATA FRAMEWORK 6.3. and High Availability METADATA FRAMEWORK 6.3 and High Availability Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright (c) 2005-2017 Varonis Systems Inc. All rights reserved.

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on WebLogic Note Before using this information and the product it supports, read the information in Notices

More information

Deploying Intellicus Portal on IBM WebSphere

Deploying Intellicus Portal on IBM WebSphere Deploying Intellicus Portal on IBM WebSphere Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document

More information

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Service Registry - Oracle Enterprise Gateway Integration Guide 1 / 19 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle FLEXCUBE OBIEE Reports Oracle FLEXCUBE Universal Banking Release [December] [2016]

Oracle FLEXCUBE OBIEE Reports Oracle FLEXCUBE Universal Banking Release [December] [2016] Oracle FLEXCUBE OBIEE Reports Oracle FLEXCUBE Universal Banking Release 12.3.0.0.0 [December] [2016] Table of Contents 1. FLEXCUBE OBIEE REPORTS SETTING... 1-2 1.1 INTRODUCTION... 1-2 1.2 CREATION OF USER

More information

OFS Profitability Management Language Pack Installation and Configuration Guide Version June 2014

OFS Profitability Management Language Pack Installation and Configuration Guide Version June 2014 OFS Profitability Management Language Pack Installation and Configuration Guide Version 6.1.1.0.0 June 2014 Document Control Author: Niraj Ranjan Biswal Group: OFSAA Created on : 01-May-14 Revision No

More information

April Understanding Federated Single Sign-On (SSO) Process

April Understanding Federated Single Sign-On (SSO) Process April 2013 Understanding Federated Single Sign-On (SSO) Process Understanding Federated Single Sign-On Process (SSO) Disclaimer The following is intended to outline our general product direction. It is

More information

Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Corporate Customer Creation Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Corporate Customer Creation Table of Contents 1. CREATION OF CORPORATE CUSTOMER... 1-1

More information

Branch Deployment on TomCat Oracle FLEXCUBE Universal Banking Release [May] [2017]

Branch Deployment on TomCat Oracle FLEXCUBE Universal Banking Release [May] [2017] Branch Deployment on TomCat Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. DEPLOYING DECENTRALIZED BRANCH APPLICATION... 1-1 1.1 INTRODUCTION... 1-1 1.2 PREREQUISITES...

More information

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

More information

RTGS SKN Messages Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

RTGS SKN Messages Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E RTGS SKN Messages Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Table of Contents RTGS SKN Messages 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION... 1-1 1.2 AUDIENCE...

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 00 Preparing the Environment Page 1 of 10 Overview For this workshop, you will use the Oracle WebCenter Portal Jump Start Kit, which is a utility that

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide Release 8.0.2.0.0 February 2016 E65393-01 Oracle Financial Services Governance, Risk, and Compliance Workflow Manager

More information