Oracle Fusion Middleware
|
|
|
- Wilfrid Ball
- 9 years ago
- Views:
Transcription
1 Oracle Fusion Middleware Deploying a Signed ios Application to the Enterprise using Oracle Business Intelligence Mobile SecurityToolkit 11g Release 1 (11.1.1) E April 2016 If your enterprise is working with a Mobile Device Management (MDM) vendor or a Mobile Application Management (MAM) vendor, use this document to prepare the Oracle BI Mobile application for enterprise deployment. This document shows you how to create a wrapped mobile app from Oracle BI Mobile. Audience Introduction How Are Updates to Oracle BI Mobile and the Security Toolkit Delivered? Overview of Creating an Application Build the Application with a Storyboard-Based Project Add the Oracle BI Mobile Framework to the Project Modify the Project Properties Make Minor Code Modifications Test and Deploy the Application Appendix Audience The intended audience for these instructions is the ios mobile developer using Apple Xcode 7.x who is familiar with Apple's signing and deployment process and who is also familiar with the details of deploying an application with a selected MDM (Mobile Device Management) vendor. The current version of Oracle BI Mobile supports ios 8.4 and above. Older versions of ios are no longer supported. Introduction 1
2 The Oracle Business Intelligence Mobile Security Toolkit provides the ability to generate a signed version of the Oracle BI Mobile application. The toolkit includes the instructions and necessary content to build this application making use of Apple's Xcode and the ios SDKs. Details for building an ios application can be found at: RoadMapiOS/index.html. How Are Updates to Oracle BI Mobile and the Security Toolkit Delivered? The Oracle BI Mobile Security Toolkit is updated on a regular basis in order to synchronize with the Oracle BI Mobile application available on Apple's App Store. Toolkit updates are delivered in alignment with the releases of the Oracle BI Mobile application. As these updates are provided on an on-going basis, users must periodically update their Oracle BI Mobile applications either through the App Store or through the Oracle BI Mobile Security Toolkit. Whether you update your application through the App Store or through the Security Toolkit, the ability to provide incremental updates is not supported. For updates accessed through Apple's App Store, your installed application is replaced with the latest version available. For updates through the Oracle BI Mobile Security Toolkit, a completely new package of support files and libraries is provided. Known Issues for Simulators Issues have been noted with Apple ios simulators when updated versions of the Security Toolkit are executed with only the project libraries replaced and the application rebuilt. The simulator may not respect the updates to the libraries. In order to use simulators with library updates, perform a complete rebuild of the project or reset the content settings in the simulator. In order to avoid these simulator issues, you should replace all project and library files and build a completely new version of the application. Overview of Creating an Application The high-level process of creating an application for deployment in your organization's enterprise application store involves five steps. The first four steps in this process are documented in detail; the final step requires you to work with your IT department, the team in charge of your enterprise distribution, and your MDM vendor. This final step will vary from organization to organization. 2
3 Build the Application with a Storyboard-Based Project Use these instructions to build an application with a storyboard-based project. To create the project: 1. From the Xcode menu, select File, then New, and Project to create a new Xcode project. 2. When asked to choose a template, under ios, select Application. Then select Single View Application and click Next. 3. Give your project a name and fill out the other fields with your organization's information. For the Company Identifier and the Class Prefix, you may want to consult your IT department to see if there are standards you should follow. 4. In the Devices dropdown, specify the devices you are targeting. Make sure to select Universal. 3
4 The Oracle BI Mobile application is a universal application that supports iphone and ipad clients, so it is important that you select Universal. The instructions that follow are based on the assumption that you are building a universal application. 5. Select a destination for your new project. Choose a safe location that you will remember. Add the Oracle BI Mobile Framework to the Project Use these instructions to add Oracle BI Mobile content to the new project. To add Oracle BI Mobile content to the new project: 1. Download the latest security toolkit files to the machine on which you have created your new Xcode project. The files can be found here: sssourcesiteid=ocomen 2. Extract the files from the security toolkit zip. 3. Drag the following files to the project, as shown in the image: OracleBIToolkit.framework Settings.bundle Be sure to drop the files on the Project icon, not above the icon. 4. For the Destination option, select Copy items if needed as shown in the image and leave the other options as defaults, then click Finish. 4
5 5. Delete the existing Assets.xcassets folder and replace it with Image.xcassets provided in the zip file. When prompted, select the Move to trash option. This option removes references and deletes the entire folder in the project. 6. From the files you extracted in Step 2, drag the Images.xcassets folder to the Project folder. 5
6 Be sure to drop the folder on the Project icon, not elsewhere in the project. 7. From the files you extracted in Step 2, drag the Launch folder to the Project folder. 8. In the Added folders option, select Create Groups as shown in the image. Leave the other options as defaults, then click Finish. 6
7 Modify the Project Properties Use these instructions to modify properties of the project. To modify project properties: 1. In the General section of the new project, verify that the App Icons and Launch Images section is as shown in the following image: 2. Verify that the asset catalog and the images that were added in the previous section are correctly selected. 3. Ensure that the Launch Screen File field is set to OBILaunch. 4. In the General section, select the orientations. For both the ipad and the iphone, select every orientation: Portrait Upside Down Landscape Left Landscape Right 5. In the General section of the new project, verify that Deployment Target is set to a version of ios that the Oracle BI Mobile application supports. 7
8 Do not select an option lower than 8.4 and ensure that the Requires full screen check box is selected. Find the supported ios versions by checking the Requirements list for the Oracle BI Mobile application on the Apple App Store here: oracle-business-intelligence/id ?mt=8 6. In the Info section of the new project, add a new Dictionary type called App Transport Security Settings, and add the following in the new property: Key: Allow Arbitrary Loads Type: Boolean Value: Yes This new dictionary type enables you to connect to non-ssl servers. If you only connect to SSL servers, then you can skip this step. Additionally, if you want to white list specific domains, then you can perform this step as an alternative. See the Apple Tech Note for details on how to create exceptions here: 8
9 developer.apple.com/library/prerelease/ios/technotes/app-transport-security- Technote/index.html 7. In the Info section of the new project, expand URL Types. Click the plus sign (+) to add a new URL type and add values as follows to complete the fields: Identifier: com.oracle.obimobile URL Schemes: oraclebimobile Leave the rest of the options for the new URL type blank or as defaults. 8. In the Build Phases section of the new project, under Link Binary With Libraries, make sure the following frameworks are included, and make sure that each Status is set to Required. MessageUI.framework libsqllite3.tbd MobileCoreServices.framework OracleBIToolkit.framework 9. In the Capabilities section of the new project, set Background Modes to ON and select Background fetch. 9
10 10. In the Build Phases section of the new project, under Copy Bundle Resources, click the plus sign (+) and select OracleBIToolkit.framework from the list. 11. In the General section of the new project, do the following: a. Expand the Embedded Binaries section and click the plus sign (+) to select OracleBIToolkit.framework from the list. b. After you have completed Step a, in the Linked Frameworks and Libraries section, OracleBIToolkit.framework appears twice. Remove one instance of OracleBIToolkit.framework so that only one appears. 10
11 12. In the General section of the new project, under Deployment Info, from the Main Interface dropdown, select or enter Frameworks/ OracleBIToolkit.framework/OracleBI. Make Minor Code Modifications Use these instructions to make minor code modifications. To modify the default application code: 1. In the project, select the file called <classprefix>appdelegate.h and add or modify the following lines of code: a. Add #import <OracleBIToolkit/OracleBIToolkit.h>. b. Make AppDelegate inherit from OBIApplicationDelegate. c. Comment out or delete any code inside the interface. The modified <classprefix>appdelegate.h should look like the file in the following image: 11
12 The modified file must have the following lines of code (changes shown in boldface) #import <UIKit/UIKit.h> #import <CoreData/CoreData.h> #import <classprefix>appdelegate : OBIApplicationDelegate /* CODE COMMENTED The <classprefix> represents the name of the Class Prefix used in Step 5 of Build the Application with a Storyboard-Based Project. If you did not specify a class prefix, the file will simply be called AppDelegate.h and any reference in the code will be AppDelegate. 2. Comment out all the code in <classprefix>appdelegate.m and replace it with the following code: #import /* CODE COMMENTED OUT*/ The <classprefix> represents the name of the Class Prefix used in Step 5 of Build the Application with a Storyboard-Based Project. If you did not specify a class prefix, then the file will simply be called AppDelegate.m and any reference in the code will be AppDelegate. 12
13 Test and Deploy the Application The project is now ready to run and test. To run and test the project: Make sure you thoroughly test the application prior to deployment or integration with any MDM tool. 1. From the Product menu in Xcode, run and test the new project in the simulator or on an ios device. 2. Complete the certification process, driven by Apple, to prepare your application for distribution. This process includes the following steps: a. Certify the application and provision it within the ios Developer Enterprise Program. b. Sign and build your project in Xcode. You can deploy your application only after completing the certification process within Apple's ios Developer Enterprise Program. For details, see the information on distributing enterprise apps at deploy/ and work with your IT department or the team in charge of your enterprise distribution for additional details. Appendix This appendix covers the following topics: Configure a Server When Deploying the Application Add Supported Languages to the Project Configure a Server When Deploying the Application You can configure a server when deploying the application. Perhaps, like many organizations, you want to spare your end users the bother of being involved with server configuration. One of the benefits of creating a wrapped application that is deployed in an enterprise application store is the ability to modify the code and avoid this problem of server configuration having to be done by end users. To modify the code for a storyboard-based project: 1. In the project, select the file called <classprefix>appdelegate.m and add the following method: 13
14 - (BOOL)application:(UIApplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { // To add a server you can do the following: [super createserver:@"<provide server name>" host:@"<provide host>" port:<9704> enablessl:no enablesso:no savecredential:yes username:@"<provide username or blank (user will be prompted)>" password:@"<provide password or blank (user will be prompted)>" analyticscontextpath:nil bipcontextpath:nil madcontextpath:nil vacontextpath:nil devicelocale:yes setasdefaultserver:yes]; // To modify an existing server do the following: [super modifyserver:@"<provide server name>" host:@"<provide host>" port:<9704> enablessl:no enablesso:no savecredential:yes username:@"<username>" password:@"<password>" analyticscontextpath:nil bipcontextpath:nil madcontextpath:nil vacontextpath:nil devicelocale:yes setasdefaultserver:no]; // To delete an existing server do the following: [super removeserver:@"<provide server name>" // Override point for customization after application launch. return ([super application:application didfinishlaunchingwithoptions:launchoptions]); } Replace any boldface strings above in <> with actual values based on your configuration. Add Supported Languages to the Project You can test languages on a simulator. On-device, the application is translated into 29 languages. If, however, you need to test languages on a simulator, use these instructions. To add supported languages to the project: 1. In the project navigator, select the project (not a target) as shown in the following image and then click Info. 14
15 2. In the Localizations section, in the Language column, click the plus sign (+) as shown in the image. From the drop-down menu, choose the language you want to add. See Supported Languages and Codes for a list of supported languages. 3. In the Choose Files dialog, select all the resource files for the language, as shown in the following image: 4. Click Finish. Supported Languages and Codes Oracle BI Mobile supports several languages. The following image displays the languages and their corresponding codes. 15
16 Oracle Fusion Middleware Deploying a Signed ios Application to the Enterprise using Oracle Business Intelligence Mobile SecurityToolkit, 11g Release 1 (11.1.1) E Copyright 2015, 2016, Oracle and/or its affiliates. All rights reserved. 16
17 This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. No other rights are granted to the U.S. Government. This software or hardware is developed for general use in a variety of information management applications. It is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use this software or hardware in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages caused by use of this software or hardware in dangerous applications. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. AMD, Opteron, the AMD logo, and the AMD Opteron logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a registered trademark of The Open Group. This documentation is in preproduction status and is intended for demonstration and preliminary use only. It may not be specific to the hardware on which you are using the software. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to this documentation and will not be responsible for any loss, costs, or damages incurred due to the use of this documentation. The information contained in this document is for informational sharing purposes only and should be considered in your capacity as a customer advisory board member or pursuant to your beta trial agreement only. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described in this document remains at the sole discretion of Oracle. This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your access to and use of this confidential material is subject to the terms and conditions of your Oracle Master Agreement, Oracle License and Services Agreement, Oracle PartnerNetwork Agreement, Oracle distribution agreement, or other license agreement which has been executed by you and Oracle and with which you agree to comply. This document and information contained herein may not be disclosed, copied, reproduced, or distributed to anyone outside Oracle without prior written consent of Oracle. This document is not part of your license agreement nor can it be incorporated into any contractual agreement with Oracle or its subsidiaries or affiliates. 17
Oracle Cloud. Creating a Business Intelligence Cloud Extract 11.1.1.10.1 E59934 01
Oracle Cloud Creating a Business Intelligence Cloud Extract 11.1.1.10.1 E59934 01 June 2015 Oracle Cloud Creating a Business Intelligence Cloud Extract, 11.1.1.10.1 E59934 01 Copyright 2014, 2015, Oracle
Oracle Fusion Transactional Business Intelligence 11.1.1.8.0
Oracle Fusion Transactional Business Intelligence 11.1.1.8.0 Payroll Payroll Run Results Real Time Subject Area November 2014 Contents Payroll Payroll Run Results Real Time... 3 Description... 3 This subject
Oracle Cloud E37404-05
Oracle Cloud Known Issues for Oracle Business Intelligence Cloud Service E37404-05 November 2015 Describes information about known software issues and their workarounds for this release of Oracle Business
How To Customize An Orgsync App On Anorus Mobile Security Suite On A Microsoft Ipad Oracle 2.5 (Ios) On A Pc Orca 2.2 (Iphone) On An Android Orca2 (Ip
Oracle Fusion Middleware Customization and Branding Guide for Oracle Mobile Security Suite Release 3.0 E51967-01 February 2014 Oracle Mobile Security Suite enhances employee productivity by allowing secure
Oracle Retail MICROS Stores2 Functional Document Tax Free - Manual Receipt Number Assignment Release 1.35. September 2015
Oracle Retail MICROS Stores2 Functional Document Tax Free - Manual Receipt Number Assignment Release 1.35 September 2015 Oracle Retail MICROS Stores2 Functional Document Tax Free - Manual Receipt Number
Oracle Retail MICROS Stores2 Functional Document Sales - Reasons Release 1.34. September 2015
Oracle Retail MICROS Stores2 Functional Document Sales - Reasons Release 1.34 September 2015 Oracle Retail MICROS Stores2 Functional Document, Sales - Reasons, Release 1.34 Copyright 2015, Oracle and/or
Oracle Fusion Middleware. 1 Oracle Identity Management Templates
Oracle Fusion Middleware Domain Reference for Oracle Identity and Access Management 11g Release 2 (11.1.2) E35961-01 July 2012 This chapter describes the WebLogic domain and extension templates that are
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10 Human Resources Workforce Learning Enrollment and Completion July 2015 Contents Human Resources
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft
Oracle Retail MICROS Stores2 Functional Document General - License Control Release 1.37.1. September 2015
Oracle Retail MICROS Stores2 Functional Document General - License Control Release 1.37.1 September 2015 Oracle Retail MICROS Stores2 Functional Document General - License Control, Release 1.37.1 Copyright
Oracle Fusion Middleware
Oracle Fusion Middleware Getting Started with Oracle Business Intelligence Publisher 11g Release 1 (11.1.1) E28374-02 September 2013 Welcome to Getting Started with Oracle Business Intelligence Publisher.
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10 Human Resources Talent Profile Subject Area July 2015 Contents Human Resources Talent Profile
Review Employee Leave Balances
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 may be trademarks
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Internet Information Services Release 12.1.0.2.0 E28547-05 February 2014 This document provides a brief description
Third Party System Management Integration Solution
Third Party System Management Integration Solution Oracle Hardware Management Connector Update Catalog 1.1 for Microsoft System Center Configuration Manager 2007 A complete list of currently supported
Oracle Enterprise Manager Ops Center. Introduction. Tuning Monitoring Rules and Policies 12c Release 1 (12.1.1.0.0)
Oracle Enterprise Manager Ops Center Tuning Monitoring Rules and Policies 12c Release 1 (12.1.1.0.0) E27340-01 August 2012 This guide provides an end-to-end example for how to use Oracle Enterprise Manager
Oracle CRM On Demand Connected Mobile Sales Administration Guide. Version 1.0.3 March 2012
Oracle CRM On Demand Connected Mobile Sales Administration Guide March 2012 Copyright 2005, 2012 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided
Oracle Retail Customer Engagement Cloud Service (Relate) Release Notes Release 11.4. March 2015
Oracle Retail Customer Engagement Cloud Service (Relate) Release Notes Release 11.4 March 2015 Oracle Retail Customer Engagement Cloud Service (Relate), Release Notes, Release 11.4 Copyright 2015, Oracle
Oracle Sales Cloud Reporting and Analytics Overview. Release 13.2 Part Number E51666-02 January 2014
Oracle Sales Cloud Reporting and Analytics Overview Release 13.2 Part Number E51666-02 January 2014 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved. This software and related documentation
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10
Oracle Transactional Business Intelligence Enterprise for Human Capital Management Cloud Service 11.1.1.10 Human Resources Succession Management Subject Area July 2015 Contents Human Resources Succession
http://support.oracle.com/
Contract Management System Architecture Data Sheet October 2012 Legal Notices Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle
NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0
[1]Oracle Communications Offline Mediation Controller NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 E39478-01 June 2015 Oracle Communications Offline Mediation Controller NetFlow
Pre-Installation Instructions
Agile Product Lifecycle Management PLM Mobile Release Notes Release 2.0 E49504-02 October 2014 These Release Notes provide technical information about Oracle Product Lifecycle Management (PLM) Mobile 2.0.
Oracle Cloud E66330-01
Oracle Cloud Known Issues for Oracle Data Visualization Cloud Service E66330-01 November 2015 Describes information about known software issues and their workarounds for this release of Oracle Data Visualization
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Apache Tomcat Release 12.1.0.1.0 E28545-04 February 2014 This document provides installation instructions and configuration information
Introduction to Virtual Datacenter
Oracle Enterprise Manager Ops Center Configuring a Virtual Datacenter 12c Release 1 (12.1.1.0.0) E27347-01 June 2012 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops
Reviewing Employee History
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 may be trademarks
Revenue/Expenses Balance by Fund
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 may be trademarks
IBM WebSphere Portal Reference Guide Release 9.2
[1]JD Edwards EnterpriseOne IBM WebSphere Portal Reference Guide Release 9.2 E53620-03 March 2016 Describes how to use this guide to supplement the use of the IBM WebSphere Portal with Oracle JD Edwards
Oracle VM. Paravirtual Drivers Installation Guide for Microsoft Windows for Release 3.1.1. E27311-02 May 2012
Paravirtual Drivers Installation Guide for Microsoft Windows for Release 3.1.1 E27311-02 May 2012 Copyright 2011, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered
Oracle Enterprise Manager. Introduction to the Oracle Virtual Networking Plug-in. Requirements. Supported Versions
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Oracle Virtual Networking Release 12.1.0.2.0 E40873-02 October 2013 This document describes how to install and use the System
About Contract Management
Contract Management System Architecture Data Sheet June 2015 About Contract Management Oracle Primavera Contract Management is a multi-user, multi-project Web-based application that manages all aspects
Oracle Fusion Middleware
Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide December 2014 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright
JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence
JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create
StorageTek Library Attach for Window Servers
StorageTek Library Attach for Window Servers Release Notes Version 1.4.3 Part Number: 316138001 May 2010, Revision AA Submit comments about this document by clicking the Feedback [+] link at: http://docs.sun.com
Oracle Cloud. What s New for Oracle Compute Cloud Service (IaaS) Topics. July 2016. What's New for Oracle Compute Cloud Service (IaaS) Release 16.
Oracle Cloud What's New for Oracle Compute Cloud Service (IaaS) Release 16.3 E71882-05 July 2016 What s New for Oracle Compute Cloud Service (IaaS) Learn about the new and changed features of Oracle Compute
Vendor Performance Summary Report
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 may be trademarks
Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide
December 2014 Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide Doc version 1.0 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved.
Oracle Cloud E66791-05
Oracle Cloud Using Oracle Managed File Transfer Cloud Service 16.2.5 E66791-05 June 2016 Oracle Managed File Transfer (MFT) is a standards-based, endto-end managed file gateway. Security is maintained
Oracle Hospitality OPERA Cloud Services Security Guide Release 1.20 Part Number: E69079-01. April 2016
Oracle Hospitality OPERA Cloud Services Security Guide Release 1.20 Part Number: E69079-01 April 2016 Copyright 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation
Oracle Human Capital Management Cloud Securing Oracle HCM Cloud. Release 10
Oracle Human Capital Management Cloud Release 10 Oracle Human Capital Management Cloud Part Number E61339-03 Copyright 2011-2015, Oracle and/or its affiliates. All rights reserved. Authors: Suzanne Kinkead,
Oracle Beehive. Using iphone or ipad with Oracle Beehive Release 2 (2.0.1.6)
Oracle Beehive Using iphone or ipad with Oracle Beehive Release 2 (2.0.1.6) November 2011 Document updated November 4, 2011 This page contains instructions on how to access Oracle Beehive from your iphone
Oracle FLEXCUBE Direct Banking Release 12.0.1.0.0 Help Desk User Manual. Part No. E52306-01
Oracle FLEXCUBE Direct Banking Release 12.0.1.0.0 Help Desk User Manual Part No. E52306-01 Help Desk User Manual Table of Contents 1. Transaction Host Integration Matrix... 3 2. Introduction... 4 3. Advance
New Features in Primavera Contract Management 14.1
New Features in Primavera Contract Management 14.1 July 2014 COPYRIGHT & TRADEMARKS Copyright 2014 Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation
Oracle Banking Digital Experience
Oracle Banking Digital Experience Merchant Payments User Manual Release 16.1.0.0.0 Part No. E71761-01 March 2016 Merchant Payments User Manual March 2016 Oracle Financial Services Software Limited Oracle
COPYRIGHT & TRADEMARKS
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 may be trademarks
Oracle Audit Vault Administrator s Guide Oracle Audit Vault Auditor s Guide Oracle Enterprise Manager Cloud Control Administrator s Guide
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Oracle Audit Vault Release 12.1 (12.1.0.2.0) E26595-02 September 2012 Oracle Audit Vault is used to transparently collect and
Oracle Hospitality Cruise Shipboard Property Management System 3M AT9000MKII Installation Guide Release 7.30.868
Oracle Hospitality Cruise Shipboard Property Management System 3M AT9000MKII Installation Guide Release 7.30.868 August 2015 Copyright 2015, 2015, Oracle and/or its affiliates. All rights reserved. This
Oracle Cloud E54561-04
Oracle Cloud Known Issues for Trial and Paid Subscriptions Release 15.3 E54561-04 August 2015 Documentation for Oracle Cloud administrators that lists the known issues related to subscription of Oracle
Oracle Virtual Desktop Client for ipad. User Guide for Version 1.0
Oracle Virtual Desktop Client for ipad User Guide for Version 1.0 Oracle Virtual Desktop Client for ipad: User Guide for Version 1.0 Published June 2011 Abstract Part Number: E23350-01 This manual describes
Oracle WebCenter Content Service for Microsoft Exchange
Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade Guide 10g Release 3 (10.3) November 2008 Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade
Oracle Communications Network Charging and Control. Release: 4.4
Oracle Communications Network Charging and Control SMS Email Interface Release: 4.4 June 2011 Copyright Copyright 2011, Oracle and/or its affiliates. All rights reserved. This software and related documentation
Oracle Virtual Desktop Client for Android. Release Notes for Release 1.2
Oracle Virtual Desktop Client for Android Release Notes for Release 1.2 E35974-01 February 2013 Oracle Virtual Desktop Client for Android: Release Notes for Release 1.2 Copyright 2013, Oracle and/or its
Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2
[1]JD Edwards EnterpriseOne Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 E61545-01 October 2015 Describes the configuration of the Application
Oracle. Human Capital Management Cloud Using Workforce Reputation Management. Release 11. This guide also applies to on-premise implementations
Oracle Human Capital Management Cloud Using Workforce Reputation Management Release 11 This guide also applies to on-premise implementations Oracle Human Capital Management Cloud Part Number E67266-01
MySQL and Virtualization Guide
MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit
Version 15.5. Using Oracle Commerce Cloud Service Agent Console
Version 15.5 Using Oracle Commerce Cloud Service Agent Console Using Oracle Commerce Cloud Service Agent Console Product version: 15.5 Release date: 10-28-15 Document identifier: UsingCCAgent1511110401
Copyright http://support.oracle.com/
Primavera Portfolio Management 9.0 Security Guide July 2012 Copyright Oracle Primavera Primavera Portfolio Management 9.0 Security Guide Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle Virtual Desktop Client. Release Notes for Version 3.0
Oracle Virtual Desktop Client Release s for Version 3.0 Oracle Virtual Desktop Client: Release s for Version 3.0 Published August 2011 Abstract Part Number: E23537-01 This manual provides information about
Oracle Secure Payment Gateway for HIS Profit Series SQL Server Upgrade Procedures. May 2016
Oracle Secure Payment Gateway for HIS Profit Series SQL Server Upgrade Procedures May 2016 Copyright 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation are
Oracle Field Service Cloud SmartCollaboration Administration Panel. Release 4.5
Oracle Field Service Cloud SmartCollaboration Administration Panel Release 4.5 Copyright 2015 Oracle and/or its affiliates. All rights reserved. Part Number E62377-02. This software and related documentation
Oracle Hospitality Payment Gateway Services Release Notes Release 6.0.2 Part Number: E70291-01. January 2016
Oracle Hospitality Payment Gateway Services Release Notes Release 6.0.2 Part Number: E70291-01 January 2016 Copyright 2006, 2016, Oracle and/or its affiliates. All rights reserved. This software and related
1 Changes in this release
Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part
Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related
Oracle Banking Digital Experience
Oracle Banking Digital Experience Dashboard Widgets Loans User Manual Release 15.1.0.0.0 Part No. E66313-01 October 2015 Dashboard Widgets Loans User Manual October 2015 Oracle Financial Services Software
Hardware and Software Requirements
Oracle Retail Allocation Release Notes Release 14.1 E58971-01 December 2014 This document highlights the major changes for Release 14.1 of Oracle Retail Allocation. Overview A retailer's most important
Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1)
Oracle WebCenter Sites Backup and Recovery Guide 11g Release 1 (11.1.1) April 2012 Oracle WebCenter Sites Backup and Recovery Guide, 11g Release 1 (11.1.1) Copyright 2012 Oracle and/or its affiliates.
Oracle Utilities Meter Data Management Business Intelligence
Oracle Utilities Meter Data Management Business Intelligence Metric Reference Guide Release 2.3.2 E22567-01 May 2011 Oracle Utilities Meter Data Management Business Intelligence Metric Reference Guide
Oracle Retail MICROS Retail-J. Inventory Management: Stock Adjustments Release 13.0
Oracle Retail MICROS Retail-J Inventory Management: Stock Adjustments Release 13.0 June 2015 Oracle Retail Inventory Management: Stock Adjustments, 13.0 Copyright 2015, Oracle and/or its affiliates. All
Introduction. Document Conventions. Administration. In This Section
MS Project Integration Guide March 2014 Contents Introduction... 5 Document Conventions... 5 Administration... 5 MS Project Template... 6 MS Project Template Usage... 6 Project Metadata... 6 Project WBS/Assignments...
Siebel Correspondence, Proposals, and Presentations Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Correspondence, Proposals, and Presentations Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software
Bank Account Numbers for ACH Payments
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 may be trademarks
Contents Legal Notices... 2 Preface... 5 Introduction... 7 Installation Instructions... 8
Unifier File Transfer Utility Instructions Release 9.13.0.0 August 2013 Legal Notices Oracle Primavera Unifier File Transfer Utility Instructions Copyright 1998, 2013, Oracle and/or its affiliates. All
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway
Customer Order Portal Created on 9/24/2009 12:45 PM
Created on 9/24/2009 12:45 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.
PeopleSoft Enterprise Campus Solutions 9.0 Enrollment Web Services
PeopleSoft Enterprise Campus Solutions 9.0 Enrollment Web Services DEVELOPER'S GUIDE July 2011 ORACLE PROPRIETARY AND C ONFIDENTIAL P AGE 1 OF 26 Enrollment Web Services Developer s Guide for PeopleSoft
Approve or Reject Purchase Requistions, Contracts, and Purchase Orders
Contracts, and Purchase Orders 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.
Oracle Retail MICROS Stores2 Functional Document Customers - Online Centralized Customer Management Release 1.34.1. September 2015
Oracle Retail MICROS Stores2 Functional Document Customers - Online Centralized Customer Management Release 1.34.1 September 2015 Oracle Retail MICROS Stores2 Functional Document, Customers - Online Centralized
Oracle Taleo Enterprise Scheduling Center Configuration Guide
Oracle Taleo Enterprise Scheduling Center Configuration Guide Feature Pack 15A Part Number: E64232-01 June 19, 2015 Scheduling Center Configuration Guide Part Number: E64232-01 Copyright 2015, Oracle and/or
Note : It may be possible to run Test or Development instances on 32-bit systems with less memory.
Oracle Enterprise Data Quality Customer Data Services Pack Installation Guide Release 11g R1 (11.1.1.7) E40736-01 October 2013 1 Installation This guide explains how to install Oracle Enterprise Data Quality
Oracle Virtual Desktop Client. Release Notes for Release 3.2
Oracle Virtual Desktop Client Release s for Release 3.2 E36350-03 January 2013 Oracle Virtual Desktop Client: Release s for Release 3.2 Copyright 2013, Oracle and/or its affiliates. All rights reserved.
2 Software requirements and installation
Oracle Enterprise Manager for Oracle TimesTen In-Memory Database Release Notes Release 12.1.0.3.0 E58956-03 October 2015 This document provides late-breaking information and information that is not yet
University of Missouri
University of Missouri PeopleSoft End User Training MYHR - NEW EMPLOYEE ONBOARDING T R A IN IN G PARTICIPANT GUIDE P E O P L E S O F T H R M S 9.1 MYHR J A N U A R Y 28, 2014 COPYRIGHT & TRADEMARKS Copyright
Crystal Access Guide HCM 9.1 All Sites
Crystal Access Guide HCM 9.1 Version Date: April 2013 COPYRIGHT & TRADEMARKS Copyright 1998, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation
Oracle Enterprise Manager. Description. Versions Supported
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory 10g Release 2 (10.2.0.2) B28044-02 June 2006 This document provides a brief description about the Oracle
Oracle Utilities Integration for Device Operations
Oracle Utilities Integration for Device Operations Release Notes Oracle Utilities Meter Data Management v2.0.1.8 Oracle Utilities Operational Device Management v2.0.1 E36211-01 October 2012 Oracle Utilities
Oracle Enterprise Data Quality. 1 JMX Binding. 1.1 Examples. Java Management Extensions Configuration Release 11g R1 (11.1.1.7)
Oracle Enterprise Data Quality Java Management Extensions Configuration Release 11g R1 (11.1.1.7) E40043-02 October 2013 Oracle Enterprise Data Quality (EDQ) provides a Java Management Extensions (JMX)
ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01
ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part
Configuring Internet Explorer Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014]
Configuring Internet Explorer Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014] Table of Contents 1. CONFIGURING INTERNET EXPLORER... 1-1 1.1 CONFIGURING INTERNET OPTIONS... 1-1 1.2 CREATING
P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T
O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T, F U S I O N E D I T I O N R E L E A S E 1 1. 1. 1.x P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E
Oracle Agile Engineering Data Management
Oracle Agile Enterprise Integration Platform Development Guide for Agile e6.1.3.0 Part No. E50950-01 January 2014 Copyright and Trademarks Copyright 1995, 2014,Oracle and/or its affiliates. All rights
Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 (10.1.3.4.
Oracle Business Intelligence Publisher Certification Information 10g Release 3 (10.1.3.4.2) E12692-08 September 2011 This document outlines the certified hardware and software configurations for Oracle
Reference Process Models User's Guide for Oracle Application Integration Architecture Foundation Pack 11g Release 1 (11.1.1.9.0)
[1]Oracle Fusion Middleware Reference Process Models User's Guide for Oracle Application Integration Architecture Foundation Pack 11g Release 1 (11.1.1.9.0) E17368-09 December 2014 Describes the modeling
Oracle Retail Clearance Optimization Engine. Overview. About Patch Releases. Release Notes Release 14.0.1
Oracle Retail Clearance Optimization Engine Release Notes Release 14.0.1 E53504-01 May 2014 Oracle Retail Clearance Optimization Engine (COE) Release 14.0.1 is a patch release for COE 14.0. COE 14.0.1
Oracle Agile Product Lifecycle Management for Process
Oracle Agile Product Lifecycle Management for Process Document Reference Library User Guide Release 6.1.0.1 E27854-01 March 2012 Oracle Agile Product Lifecycle Management for Process Document Reference
Siebel Installation Guide for Microsoft Windows. Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014
Siebel Installation Guide for Microsoft Windows Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved. This software and
Oracle Java Micro Edition Software Development Kit
Oracle Java Micro Edition Software Development Kit Release Notes Release 3.0.5 for Windows E25309-04 April 2012 Contents Release Highlights Prerequisites Installation Installation and Runtime Security
Oracle Enterprise Single Sign-on Logon Manager Best Practices: Packaging ESSO-LM for Mass Deployment Release 11.1.1.2.0 E20406-01
Oracle Enterprise Single Sign-on Logon Manager Best Practices: Packaging ESSO-LM for Mass Deployment Release 11.1.1.2.0 E20406-01 December 2010 Oracle Enterprise Single Sign-on Logon Manager Best Practices:
New Features in Primavera P6 Professional 15.1
New Features in Primavera P6 Professional 15.1 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
MySQL Installer Guide
MySQL Installer Guide Abstract This document describes MySQL Installer, an application that simplifies the installation and updating process for a wide range of MySQL products, including MySQL Notifier,
