ORACLE EDI GATEWAY (R10.7, R11)

Size: px
Start display at page:

Download "ORACLE EDI GATEWAY (R10.7, R11)"

Transcription

1 ORACLE EDI GATEWAY (R10.7, R11) E-COMMERCE GATEWAY (R11I) Support Document Outbound Transactions: Print and EDI Extract Creation Date: December 13, 1999 Update Date: November 20, 2000 Implementation of this custom solution is not supported by Oracle Support. This document was written as a guideline to assist you in expediting a custom solution. 11/21/00 3:40 PM Page 1

2 Contents Overview 3 Document Purpose 3 Reference Document 3 Documentation Changes 3 Parallel Printing and EDI Transaction 4 Resetting Print/EDI Flags 5 Invoice (INO) Sample Code 5 Purchase Order (POO) and PO Change (POCO) Sample Code 6 11/21/00 3:40 PM Page 2

3 Overview Document Purpose Several Oracle transactions do not allow both the printing and creation of the outbound EDI transaction. You need a work around until the base product can provide that. Plans are to enhance the Oracle application to allow you to do both. Until that is available (date not determined), this document may assist you as a work around The purpose of this document is to provide a guideline on the custom code you need to do the following: Process the EDI transaction through the EDI Gateway or e-commerce Gateway, AND Print the same document from the base application. Reference Document Documentation Changes Reference the Oracle R11i Oracle e-commerce Gateway Implementation Manual for a list of data elements that are updated in the transactions in the base application tables when an EDI transaction is extracted. These are the fields that need to be reset by the process described below. Confirm that these are the same fields in R10.7 and R11. They may have changed. Confirm in the base application s manuals whether their procedures allow both the EDI transaction and the printing of the document. The sample code in this document may not be exact. The table names and columns may have changed across releases. The sample code may need adjustments. We would like to have sample code for each transaction for each release until the standard product can provide this feature. Please send your recommendation for improving this document and sample code to EDISIG@us.oracle.com. 11/21/00 3:40 PM Page 3

4 Parallel Printing and EDI Transaction, Method 1 The following procedure will work for the following transactions that do not allow both printing of the document and the EDI transaction extraction: Outbound Invoice (INO) Outbound Purchase Order (POO) Outbound Purchase Order Change (POCO) Others to be determined These steps can be followed: 1. Run the Oracle EDI Gateway process first to extract transactions 2. Reset the print flag in the base application (custom code) given the transactions just extracted 3. Run the print document request. 1. Run the Oracle EDI Gateway process first Running the EDI Gateway process first will assure that the interface file for the EDI transactions is created. This process will update key data elements in the base Application tables. This file will provide the list of document/transactions extracted by the first process. Since the EDI Gateway and the base application are sharing the same flags and indicators in the base application tables that prevent duplicate or reprocessing, the flags must be reset for the second process to be successful.. 2. Reset the print flag in the base application (Custom Code) Custom code is needed to read through control (0010) records to identify which transactions were extracted. These transactions are found in the file just created by the EDI Gateway. Given the transaction identifier e.g. purchase order number, read the base Oracle application to reset the appropriate flags and codes that prevented the transaction from being processed again. 3. Run the print document request. Run the base Oracle application s regular process to produce paper documents. 11/21/00 3:40 PM Page 4

5 Resetting Print/EDI Flags Invoice (INO) Sample Code undefine 1 update ra_customer_trx set printing_pending = 'Y', edi_processed_flag = 'N', edi_processed_status = NULL where trx_number = '&1'; This one accepts a starting and ending date range as well as a customer id and shows how many invoices would be reset by the operation. Several other values, in particular the LAST_PRINTED_SEQUENCE_NUM, had to be decremented for the INO. set serveroutput on size DECLARE START_TRX_DATE DATE; END_TRX_DATE DATE; CUSTOMER_TO_RESET NUMBER; INVOICE_COUNT number; BEGIN START_TRX_DATE := '&1'; END_TRX_DATE := '&2'; CUSTOMER_TO_RESET := '&3'; begin SELECT COUNT(*) INTO INVOICE_COUNT FROM ra_customer_trx WHERE trx_date between START_TRX_DATE AND END_TRX_DATE and SOLD_TO_CUSTOMER_ID = CUSTOMER_TO_RESET; EXCEPTION when OTHERS THEN invoice_count := 0; end; DBMS_OUTPUT.PUT_LINE('Invoice count: ' TO_CHAR(INVOICE_COUNT)); update ra_customer_trx set printing_pending = 'Y', printing_count = NULL, printing_last_printed = NULL, printing_original_date = NULL, EDI_processed_flag = 'N', EDI_processed_status = NULL, LAST_PRINTED_SEQUENCE_NUM = DECODE((LAST_PRINTED_SEQUENCE_NUM-1), -1, 0,(LAST_PRINTED_SEQUENCE_NUM-1)) WHERE trx_date between START_TRX_DATE AND END_TRX_DATE and SOLD_TO_CUSTOMER_ID = CUSTOMER_TO_RESET; COMMIT; END; / 11/21/00 3:40 PM Page 5

6 Purchase Order (POO) and PO Change (POCO) Sample Code NOTE: PO outbound and PO Change Outbound update the update the same fields on the po_headers table and the po_headers_archive table (printed_date, print_count, edi_processed_flag). The difference is that the POCO SQL sets the edi_processed_flag in the po_headers table to Y. In other words: if the edi_processed_flag is Y the POCO process extracts the order else the POO process extracts the order REM The following script will reenable a Standard or REM Blanket PO for extraction by the POO transaction. UPDATE po_headers SET printed_date = NULL, print_count = 0, WHERE segment1 = &PO_NUMBER; COMMIT; UPDATE po_headers_archive SET printed_date = NULL, print_count = 0, WHERE segment1 = &PO_NUMBER AND latest_external_flag = 'Y'; COMMIT; update apps.po_headers_all set print_count = 0, printed_date = NULL, where apps.po_headers_all.segment1 = (select a.po_num from temp_head1 a where a.doc_type = apps.po_headers_all.type_lookup_code and a.po_num = apps.po_headers_all.segment1 ) ; update apps.po_headers_archive_all set print_count = 0, printed_date = NULL, where apps.po_headers_archive_all.segment1 = (select a.po_num from temp_head1 a where a.doc_type = apps.po_headers_archive_all.type_lookup_code and a.po_num = apps.po_headers_archive_all.segment1 ) and apps.po_headers_archive_all.latest_external_flag = 'Y' / 11/21/00 3:40 PM Page 6

7 update apps.po_releases_all set print_count = 0, printed_date = NULL, where apps.po_releases_all.po_header_id = (select b.po_header_id from temp_rel1 a, apps.po_headers_all b where b.po_header_id = apps.po_releases_all.po_header_id and b.type_lookup_code = a.doc_type and b.segment1 = a.po_num and a.rel_num = apps.po_releases_all.release_num) ; update apps.po_releases_archive_all set print_count = 0, printed_date = NULL, where apps.po_releases_archive_all.po_header_id = (select b.po_header_id from temp_rel1 a, apps.po_headers_all b where b.po_header_id = apps.po_releases_archive_all.po_header_id and b.type_lookup_code = a.doc_type and b.segment1 = a.po_num and a.rel_num = apps.po_releases_archive_all.release_num) and apps.po_releases_archive_all.latest_external_flag = 'Y' / 11/21/00 3:40 PM Page 7

8 Parallel Printing and EDI Transaction, Method 2 This is an alternative manual procedure that may be viable for some organizations. A company used this for invoices. You may try it for other transactions. INVOICES: The solution requires the user to connect to the Application using the EDI Gateway responsibility. Once connected follow the following navigation path. Navigation --> Trading Partner --> Query the Trading Partner --> Open the Trading Partner --> Select the Detail Alternate region --> Disable the Invoice Outbound reference by click on the Enable box; Save the transaction. Once this is done the regular invoice process will print the document. Upon completion, you MUST then reinstate the INO process using the above navigation. You MUST REINSTATE the Trading Partner for the outbound invoice in the Gateway again; otherwise, the EDI invoices will not be extracted when the Concurrent Manager Request is run again. 11/21/00 3:40 PM Page 8

9 Oracle EDI Gateway, Oracle e-commerce Gateway November 2000 Author: Bonnie Shebat Williams Contributing Authors: Geoff Scott-Baker, Oracle UK Stephen Douglas Nelson Copyright Oracle Corporation 2000 All Rights Reserved Printed in the U.S.A. This document is provided for informational purposes only and the information herein is subject to change without notice. Please report any errors herein to Oracle Corporation. Oracle Corporation does not provide any warranties covering and specifically disclaims any liability in connection with this document. Oracle is a registered trademark and Enabling the Information Age, Oracle, Oracle EDI Gateway, Oracle e-commerce Gateway are trademarks of Oracle Corporation. Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Fax Copyright Oracle Corporation 2000 All Rights Reserved 11/21/00 3:40 PM Page 9

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W D E C E M B E R 2017 Disclaimer

More information

Correction Documents for Poland

Correction Documents for Poland ERP CLOUD Correction Documents for Poland Oracle Financials for EMEA Table of Contents Purpose of the Document... 2 Setup... 3 Security Privilege... 3 Receivables Transaction Sources... 4 Receivables Transaction

More information

Technical Upgrade Guidance SEA->SIA migration

Technical Upgrade Guidance SEA->SIA migration Technical Upgrade Guidance SEA->SIA migration Oracle Siebel Customer Relationship Management Applications Siebel Industry-Driven CRM November 2011 This document is intended to outline our general product

More information

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware An Oracle White Paper October 2009 The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware Introduction Oracle Enterprise Manager provides a single, integrated

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

October Oracle Application Express Statement of Direction

October Oracle Application Express Statement of Direction October 2017 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

Insbridge Enterprise Rating Design Time Reporting Document

Insbridge Enterprise Rating Design Time Reporting Document Oracle Insurance Insbridge Enterprise Rating Design Time Reporting Document Release 5.1.x December 2015 DESIGN TIME REPORTING The IBRM database is the repository for content created in RateManager. Data

More information

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview An Oracle White Paper December, 3 rd 2014 Oracle Metadata Management v12.1.3.0.1 Oracle Metadata Management version 12.1.3.0.1 - December, 3 rd 2014 Disclaimer This document is for informational purposes.

More information

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 An Oracle White Paper [May] [2011] TABLE OF CONTENTS Executive Overview... 3 Introduction... 3 Scope... 3 Overview...

More information

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture: An Oracle Data Integrator Technical

More information

Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L

Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L 2 0 1 8 Disclaimer The following is intended to outline our

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

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Worked Example ORACLE PPM CLOUD SERVICES SOLUTION OVERVIEW MAY 2018 Disclaimer The following is intended

More information

Oracle Enterprise Data Quality New Features Overview

Oracle Enterprise Data Quality New Features Overview Oracle Enterprise Data Quality 12.2.1.1 New Features Overview Integrated Profiling, New Data Services, New Processors O R A C L E W H I T E P A P E R J U L Y 2 0 1 6 Table of Contents Executive Overview

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

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 5 Disclaimer The following is intended to outline our general

More information

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our

More information

Using Oracle Designer 6i to Configuration Management Internet Platform Applications. An Oracle Technical White Paper October 2000

Using Oracle Designer 6i to Configuration Management Internet Platform Applications. An Oracle Technical White Paper October 2000 Using Oracle Designer 6i to Configuration Management Internet Platform Applications An Oracle Technical White Paper INTRODUCTION Configuration Management does not normally become an issue within a software

More information

Upgrade Developer Forms 4.5 to Oracle Forms 6. An Oracle Technical White Paper March 2000

Upgrade Developer Forms 4.5 to Oracle Forms 6. An Oracle Technical White Paper March 2000 Upgrade Developer Forms 4.5 to Oracle Forms 6 An Oracle Technical White Paper WHY UPGRADE? Upgrade Developer Forms 4.5 to Oracle Forms 6 ORACLE APPLICATIONS MANUFACTURING AND FINANCIALS FORMS UPGRADE 2

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

Oracle NoSQL Database For Time Series Data O R A C L E W H I T E P A P E R D E C E M B E R

Oracle NoSQL Database For Time Series Data O R A C L E W H I T E P A P E R D E C E M B E R Oracle NoSQL Database For Time Series Data O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 7 Introduction As massive amounts of data are being created with a need to store and analyze this data,

More information

Audit History in Order Management. An Oracle WhitePaper

Audit History in Order Management. An Oracle WhitePaper Audit History in Order Management An Oracle WhitePaper November 2010 Oracle Order Management enables you to audit the changes in order attributes from the Sales Orders, Quick Sales Order, Order Organizer,

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

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 Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data An Oracle White Paper August 2006 Oracle Database Vault Overview Oracle Database Vault enables you to Restrict

More information

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

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 4.5 February 2011 CONTENTS STATEMENT OF PURPOSE... 3 HARDWARE / SOFTWARE REQUIREMENTS... 4 Server Hardware... 4 Server Software...

More information

Oracle e-commerce Gateway

Oracle e-commerce Gateway Oracle e-commerce Gateway Implementation Manual Release 11i.2 August 2000 Part No. A75164-02 Oracle e-commerce Gateway Implementation Manual, Release 11i.2 Part No. A75164-02 Copyright 2000, Oracle Corporation.

More information

An Oracle White Paper March How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document

An Oracle White Paper March How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document An Oracle White Paper March 2012 How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document Disclaimer The following is intended to outline our general

More information

BAA Oracle EBS R12.1 isupplier Portal Created on 11/26/2012 3:18:00 PM

BAA Oracle EBS R12.1 isupplier Portal Created on 11/26/2012 3:18:00 PM Created on 11/26/2012 3:18:00 PM COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005 Partitioning in Oracle Database 10g Release 2 An Oracle White Paper May 2005 Oracle Partitioning EXECUTIVE OVERVIEW Oracle Partitioning will enhance the manageability, performance, and availability of

More information

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013 Using the Oracle Business Intelligence Publisher Memory Guard Features August 2013 Contents What Are the Memory Guard Features?... 3 Specify a maximum data sized allowed for online processing... 3 Specify

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

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture Introduction... 3 Oracle Application

More information

An Oracle White Paper September Security and the Oracle Database Cloud Service

An Oracle White Paper September Security and the Oracle Database Cloud Service An Oracle White Paper September 2012 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

Publishing Concurrent Requests with XML Publisher. An Oracle White Paper January 2005

Publishing Concurrent Requests with XML Publisher. An Oracle White Paper January 2005 Publishing Concurrent Requests with XML Publisher An Oracle White Paper January 2005 Publishing Concurrent Requests with XML Publisher EXECUTIVE SUMMARY... 1 INTRODUCTION... 1 Process Overview... 2 Register

More information

Securing Your Oracle Reports Environment Through Oracle Portal A Walkthrough Release 6i. An Oracle Technical White Paper August 2000

Securing Your Oracle Reports Environment Through Oracle Portal A Walkthrough Release 6i. An Oracle Technical White Paper August 2000 Securing Your Oracle Reports Environment Through Oracle Portal 2.2 -- A Walkthrough Release 6i An Oracle Technical White Paper OVERVIEW Once you have installed Oracle Reports and Oracle Portal release

More information

Subledger Accounting Reporting Journals Reports

Subledger Accounting Reporting Journals Reports ERP CLOUD Subledger Accounting ing Journals s Oracle Financials for EMEA Table of Contents 1. Purpose of the document 3 2. Assumptions and Prerequisites 3 3. Feature Specific Setup 4 Implementation 4 Assign

More information

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach An Oracle White Paper November 2012 Primavera Unifier Integration Overview: A Web Services Integration Approach Introduction Oracle s Primavera Unifier offers an extensible interface platform based on

More information

August 6, Oracle APEX Statement of Direction

August 6, Oracle APEX Statement of Direction AUGUST 6, 2018 DISCLAIMER The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

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 Direct Banking Release Corporate Cash Management User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Corporate Cash Management User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Cash Management User Manual Part No. E52305-01 Corporate Cash Management User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Automatic Receipts Reversal Processing

Automatic Receipts Reversal Processing ERP CLOUD Automatic Receipts Reversal Processing Oracle Receivables Table of Contents 1. Purpose of the document... 2 2. Assumptions and Prerequisites... 2 3. Feature Specific Setup... 3 Receivables Lookups...

More information

Loading User Update Requests Using HCM Data Loader

Loading User Update Requests Using HCM Data Loader Loading User Update Requests Using HCM Data Loader Oracle Fusion Human Capital Management 11g Release 11 (11.1.11) Update 8 O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Loading

More information

Using Oracle In-Memory Advisor with JD Edwards EnterpriseOne

Using Oracle In-Memory Advisor with JD Edwards EnterpriseOne Using Oracle In-Memory Advisor with JD Edwards EnterpriseOne Oracle provides a tool to recommend and implement Oracle tables that would benefit performance if placed in the column store. This document

More information

Load Project Organizations Using HCM Data Loader O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W A U G U S T 2018

Load Project Organizations Using HCM Data Loader O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W A U G U S T 2018 Load Project Organizations Using HCM Data Loader O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W A U G U S T 2018 Disclaimer The following is intended to outline our general

More information

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices INTRODUCTION

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

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Transfer Payments User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration

Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration Release 12.0.3.0.0 Part No. E52543-01 April 2014 iphone/ipad Workspace Configuration April 2014 Oracle Financial Services Software Limited

More information

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+ Oracle Cloud Applications Oracle Transactional Business Intelligence BI Catalog Folder Management Release 11+ ORACLE WHITE PAPER November 2017 ORACLE WHITE PAPER November 2017 Table of Contents Introduction

More information

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Customer Services User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

JD Edwards World EDI Error Notification. Version A9.2

JD Edwards World EDI Error Notification. Version A9.2 JD Edwards World EDI Error Notification Version A9.2 Revised June 8, 2009 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of Oracle Corporation

More information

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator: An Oracle Data Integrator Technical Brief Metadata

More information

An Oracle White Paper October Deploying and Developing Oracle Application Express with Oracle Database 12c

An Oracle White Paper October Deploying and Developing Oracle Application Express with Oracle Database 12c An Oracle White Paper October 2013 Deploying and Developing Oracle Application Express with Oracle Database 12c Disclaimer The following is intended to outline our general product direction. It is intended

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

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data June 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

Insbridge Enterprise Rating RateManager Client Setup Document

Insbridge Enterprise Rating RateManager Client Setup Document Oracle Insurance Insbridge Enterprise Rating RateManager Client Setup Document Release 5.2.x July 2016 INTRODUCTION RateManager is a component within the Oracle Insurance Insbridge Enterprise Rating (Insbridge)

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

Working with Time Zones in Oracle Business Intelligence Publisher ORACLE WHITE PAPER JULY 2014

Working with Time Zones in Oracle Business Intelligence Publisher ORACLE WHITE PAPER JULY 2014 Working with Time Zones in Oracle Business Intelligence Publisher ORACLE WHITE PAPER JULY 2014 Table of Contents Introduction 1 Time Zones in Oracle BI Publisher Reports 2 Converting Dates to the User

More information

Oracle e-commerce Gateway

Oracle e-commerce Gateway Oracle e-commerce Gateway User s Guide Release 11i.2 August, 2000 Part No. A75089-02 Oracle e-commerce Gateway User s Guide, Release 11i.2 (as a variable) for Platform (as a variable) Part No. A75089-02

More information

Oracle SQL Developer TimesTen In-Memory Database Support

Oracle SQL Developer TimesTen In-Memory Database Support Oracle SQL Developer TimesTen In-Memory Database Support Release Notes Release 2.1 E15859-03 March 2010 This document provides late-breaking information as well as information that is not yet part of the

More information

August Oracle - GoldenGate Statement of Direction

August Oracle - GoldenGate Statement of Direction August 2015 Oracle - GoldenGate Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your

More information

Oracle Application Server 10g Integration Interconnect. An Oracle Technical White Paper January 2005

Oracle Application Server 10g Integration Interconnect. An Oracle Technical White Paper January 2005 Oracle Application Server 10g Integration Interconnect An Oracle Technical White Paper January 2005 Introduction... 2 FeatureS... 2 Clean Separation of Integration Logic from Integration Platform... 2

More information

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2010 Upgrade Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade...

More information

Web ADI: Extending the E-Business Suite with Desktop Applications

Web ADI: Extending the E-Business Suite with Desktop Applications Web ADI: Extending the E-Business Suite with Desktop Applications Desktop Integration The leveraging of Desktop Application functionality to perform E-business Suite tasks Page 1 of 24 Contents Preface

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

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E 2 0 1 8 Revision History The following revisions have been made to this white paper

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

Oracle Insurance. Implementing a. Release 5.6

Oracle Insurance. Implementing a. Release 5.6 Oracle Insurance Insbridge Enterprise Rating Implementing a Shared Workfiles Location Guide Release 5.6 November 2018 Copyright 2005, 2018, Oracle and/or its affiliates. All rights reserved. Oracle Insurance

More information

Guide to Database Tuning: Row Cache Hints and Tricks

Guide to Database Tuning: Row Cache Hints and Tricks Guide to Database Tuning: Row Cache Hints and Tricks A feature of Oracle Rdb By Norm Lastovica Oracle Rdb Relational Technology Group Oracle Corporation 1 Oracle Rdb Journal Row Cache Hints and Tricks

More information

Hard Partitioning with Oracle VM Server for SPARC O R A C L E W H I T E P A P E R J U L Y

Hard Partitioning with Oracle VM Server for SPARC O R A C L E W H I T E P A P E R J U L Y Hard Partitioning with Oracle VM Server for SPARC O R A C L E W H I T E P A P E R J U L Y 2 0 1 6 Introduction This document describes hard partitioning with Oracle VM Server for SPARC, and how to use

More information

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Oracle Cloud Infrastructure Ravello Cloud Service Oracle Cloud Infrastructure Ravello

More information

Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H

Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Tracking/Viewing Changes is Complicated 3 Enabling Flashback Data Archive

More information

An Oracle White Paper August Building Highly Scalable Web Applications with XStream

An Oracle White Paper August Building Highly Scalable Web Applications with XStream An Oracle White Paper August 2010 Building Highly Scalable Web Applications with XStream Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

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 Supplier Network

Oracle Supplier Network Oracle Supplier Network Buyer s Guide to Connecting 11i Release 4.3 Part No. B19153-01 June 2005 Oracle Supplier Network Buyer s Guide to Connecting 11i, Release 4.3 Part No. B19153-01 Copyright 2005,

More information

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R 2 0 1 7 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

More information

Oracle SaaS Public Cloud Services P I L L A R D O C U M E N T A T I O N J A N U A R Y

Oracle SaaS Public Cloud Services P I L L A R D O C U M E N T A T I O N J A N U A R Y Oracle SaaS Public Cloud Services P I L L A R D O C U M E N T A T I O N J A N U A R Y 2 0 1 8 Table of Contents Scope 1 Oracle Cloud Security Policy 1 Physical Security Safeguards 1 Oracle Cloud Service

More information

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009 Oracle Fusion Middleware 11g Oracle Access Manager 10.1.4.3.0 Frequently Asked Questions June 2009 This FAQ addresses frequently asked questions relating specifically to Oracle Access Manager (OAM) 10.1.4.3.0

More information

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences An Oracle White Paper September 2010 Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Introduction... 1 What Is Memory Ordering?... 2 More About

More information

Oracle NoSQL Database Parent-Child Joins and Aggregation O R A C L E W H I T E P A P E R A P R I L,

Oracle NoSQL Database Parent-Child Joins and Aggregation O R A C L E W H I T E P A P E R A P R I L, Oracle NoSQL Database Parent-Child Joins and Aggregation O R A C L E W H I T E P A P E R A P R I L, 2 0 1 8 Table of Contents Introduction 1 Parent Table Child Table Joins 2 Comparison to RDBMS LEFT OUTER

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 03 Integrating Content Page 1 of 12 Overview WebCenter Content is the content repository for WebCenter Portal. To leverage the content stored in the repository,

More information

Rapid Bottleneck Identification A Better Way to do Load Testing. An Oracle White Paper June 2008

Rapid Bottleneck Identification A Better Way to do Load Testing. An Oracle White Paper June 2008 Rapid Bottleneck Identification A Better Way to do Load Testing An Oracle White Paper June 2008 Rapid Bottleneck Identification A Better Way to do Load Testing. RBI combines a comprehensive understanding

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

Oracle Enterprise Performance Management Cloud

Oracle Enterprise Performance Management Cloud An Oracle White Paper January 2018 Oracle Enterprise Performance Management Cloud Extracting YTD Balances from FCCS using Data Management Disclaimer This document is provided for information purposes and

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 5.2 October 2014 CONTENTS STATEMENT OF PURPOSE... 3 OIDC Hardware Configuration Example... 4 OIDC Workflow Example... 5 QUICK VIEW...

More information

Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved.

Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Clearing Cache COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names

More information

An Oracle Technical Article March Certification with Oracle Linux 4

An Oracle Technical Article March Certification with Oracle Linux 4 An Oracle Technical Article March 2011 Certification with Oracle Linux 4 Introduction... 1 Comparing Oracle Linux 4 and Red Hat Enterprise Linux (RHEL) 4.. 2 Checking the /etc/redhat-release File... 2

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

Oracle CRM Foundation

Oracle CRM Foundation Oracle CRM Foundation Concepts and Procedures Release 11i August 2000 Part No. A86099-01 Oracle CRM Foundation Concepts and Procedures, Release 11i Part No. A86099-01 Copyright 1996, 2000, Oracle Corporation.

More information

E-BUSINESS SUITE APPLICATIONS R12 (R12.1.3) iprocurement (OLTP) BENCHMARK - USING ORACLE DATABASE 11g ON FUJITSU S M10-4S SERVER RUNNING SOLARIS 11

E-BUSINESS SUITE APPLICATIONS R12 (R12.1.3) iprocurement (OLTP) BENCHMARK - USING ORACLE DATABASE 11g ON FUJITSU S M10-4S SERVER RUNNING SOLARIS 11 User Count O R A C L E E - B U S I N E S S B E N C H M A R K R EV. 1.0 E-BUSINESS SUITE APPLICATIONS R12 (R12.1.3) iprocurement (OLTP) BENCHMARK - USING ORACLE DATABASE 11g ON FUJITSU S M10-4S SERVER RUNNING

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

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

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication Technical White Paper August 2010 Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication. Recovering from Catastrophic Failures Using Data Replicator Software for Data

More information

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g An Oracle White Paper March 2009 Introduction to Groovy Support in JDeveloper and Oracle ADF 11g Oracle White Paper Introduction to Groovy support in JDeveloper and Oracle ADF 11g Introduction... 2 Introduction

More information

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite Table of

More information

Primavera Portfolio Management Reporting Views for SQL Server databases

Primavera Portfolio Management Reporting Views for SQL Server databases Portfolio Management Reporting Views for SQL Server Databases 16 R1 Copyright 1999-2016, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary

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