Oracle Hospitality OPERA Exchange Interface Profile Lookup Vendor Specification. May 2018

Size: px
Start display at page:

Download "Oracle Hospitality OPERA Exchange Interface Profile Lookup Vendor Specification. May 2018"

Transcription

1 Oracle Hospitality OPERA Exchange Interface Profile Lookup Vendor Specification May 2018

2 Copyright 2004, 2018, Oracle and/or its affiliates. All rights reserved. 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 software or related documentation is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then 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 software or hardware and documentation may provide access to or information about content, products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services unless otherwise set forth in an applicable agreement between you and Oracle. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services, except as set forth in an applicable agreement between you and Oracle. 2

3 Contents Preface... 4 Audience... 4 Customer Support... 4 Documentation Assumptions Validations Profile Lookup Lifecycle HTTP Communication... 8 Lookup Request... 8 Profile Request XML Schemas... 9 Lookup Request... 9 Lookup Response Profile Request Profile Response HTTP Call Samples Profile Lookup Request and Response HTTP POST Data (Request for matching profiles) HTTP POST Response (List of matching profiles returned synchronously by external system) Profile Request HTTP GET Response (Unique matching profile returned synchronously by external system) Profile Anonymization Schema Changes XDR: profile.fidelio.5.0.xml: XSD Sample Message

4 Preface Profile lookup may be used to retrieve profile information from remote systems. At a minimum, profile lookup should provide the following functionality: Search for profiles matching the criteria provided by the user. It should accept wildcards as part of the matching criteria. Retrieve complete information of a profile when requested by specifying the unique identifier of the profile. Audience This document explains the functionality currently offered by OPERA XChange Interface for doing profile lookup in external systems from OPERA. It is intended for third party vendor developers who might be implementing the functionality to interface with OPERA XChange Interface. Knowledge of HTTP protocol and server side implementation is a prerequisite to accomplish this task. Customer Support Documentation To contact Oracle Customer Support, access My Oracle Support at the following URL: When contacting Customer Support, please provide the following: Product version and program/module name Functional and technical description of the problem (include business impact) Detailed step-by-step instructions to re-create Exact error message received and any associated log files Screen shots of each step you take Oracle Hospitality product documentation is available on the Oracle Help Center at 4

5 1 Assumptions This document describes the intended functionality of profile lookup in OXI flavored interfaces. Details explained in this document may change as needed or required. 5

6 2 Validations OXI does not validate the lookup criteria receive from OPERA. For details on any validations performed by OPERA, please refer to OPERA s documentation. External systems may get a wild card profile lookup request. Neither OPERA nor OXI mandates any particular wild card conventions. A commonly used wild card is * for one or more characters. 6

7 3 Profile Lookup Lifecycle OPERA user initiates profile lookup Listening OXI Processor receives the lookup request, builds a profile lookup request XML and sends to the external system as HTTP POST operation. External system retrieves lookup criteria from the input stream, builds a profile lookup response XML from the list of profiles matching the criteria and sends in the HTTP response stream. OXI processor parses the response and sends the profiles to OPERA. OPERA displays the profiles to the user. User selects a profile. OPERA initiates a profile request for the profile selected by the user. Listening OXI processor receives the profile request and sends to the external system as HTTP GET operation. Using OXI's generic match/ merge process, OXI processor builds the profile in OPERA and sends the id of the resultant profile to OPERA. External system retrieves the profile request from the URL parameters, builds a complete profile XML from the matching profile and sends in the HTTP response stream. OPERA displays the profile edit screen with the profile created/ merged by OXI

8 4 HTTP Communication Lookup Request URL HTTP Operation Parameters Content-Type Data Stream Response Stream Profile Request URL HTTP Operation Content-Type Data Stream Response Stream : : POST : none : text/xml : plquery XML message : plresult XML message : propertyname=externalresort&transactionid=transactionid&action=g ETC RS&profileId=ExtSysUniqueProfileID : GET : text/xml : None : profile XML message URL Parameters Seq Parameter Name Type Description 1 propertyname string Property code recognized by the external system. External resort configured in OXI s interface setup. 2 transactionid int Id to uniquely identify this request. 3 action string Always GETCRS. 4 profile_id int Unique profile Id recognized by the external system. This will be the value sent by the external system in ProfileSet\nameId element of plresult message. 8

9 5 XML Schemas Lookup Request XML Schema : plquery XML Schema version : 1.1 Query <xs:complextype name="query"> <xs:sequence> <xs:element name="propertyname" type="xs:string"/> <xs:element name="formatname" type="xs:string" minoccurs="0"/> <xs:element name="transactionid" type="xs:string"/> <xs:element name="setsize" type="xs:int" minoccurs="0"/> <xs:element name="transactiontype" type="xs:string" minoccurs="0"/> <xs:element name="firstname" type="xs:string" minoccurs="0"/> <xs:element name="lastname" type="xs:string" minoccurs="0"/> <xs:element name="city" type="xs:string" minoccurs="0"/> <xs:element name="state" type="xs:string" minoccurs="0"/> <xs:element name="zip" type="xs:string" minoccurs="0"/> <xs:element name="country" type="xs:string" minoccurs="0"/> <xs:element name="membernumber" type="xs:string" minoccurs="0"/> <xs:element name="creditcard" type="xs:string" minoccurs="0"/> </xs:sequence> <xs:attribute name="profiletype" type="xs:string" use="required"/> </xs:complextype> Name Type Data Type Use Comment profiletype attribute string required Type of the profile. Valid values are GUEST, CORPORATE, TRAVEL, GROUP and WHOLESALER. OXI uses profile type conversion. propertyname element string required Property code recognized by the external system. External resort configured in OXI s interface setup. formatname element string optional Not used. transactionid element string required Unique id associated with the lookup request. Generated by OPERA while initiating the lookup. XML Schemas 9

10 setsize element int optional Maximum number of matching profiles to return in the response. External system should use this as a hint to limit the number of matching profiles. transactiontype element string optional Not used. firstname element string optional First name of the profile. OPERA mandates this field. lastname element string optional Last name of the profile. OPERA mandates this field. city element string optional City of the profile. state element string optional State of the profile. zip element string optional Zip code of the profile. country element string optional Country of the profile. membernumber element string optional Membership number. creditcard element string optional Not used. Lookup Response XML Schema : plresult XML Schema version : 1.0 LookupResult <xs:complextype name="lookupresult"> <xs:sequence> <xs:element name="transactionid" type="xs:string"/> <xs:element name="profilesets" type="profilesets" minoccurs="0"/> <xs:element name="errormsg" type="xs:string" minoccurs="0"/> </xs:sequence> </xs:complextype> Name Type Data Type Use Comment transactionid element string required transactionid sent in lookup request. ProfileSets element ProfileSets optional List of matching profiles. errormsg element string optional Details of error, if any. 10

11 ProfileSets <xs:complextype name="profilesets"> <xs:sequence> <xs:element name="profileset" type="profileset" minoccurs="0" maxoccurs="unbounded"/> </xs:sequence> </xs:complextype> Name Type Data Type Use Comment ProfileSet element ProfileSet optional Details of matching profile. ProfileSet <xs:complextype name="profileset"> <xs:sequence> <xs:element name="resortnameid" type="xs:string" minoccurs="0"/> <xs:element name="nameid" type="xs:int" minoccurs="0"/> <xs:element name="membernumber" type="xs:string" minoccurs="0"/> <xs:element name="lastname" type="xs:string" minoccurs="0"/> <xs:element name="firstname" type="xs:string" minoccurs="0"/> <xs:element name="address" type="xs:string" minoccurs="0"/> <xs:element name="address2" type="xs:string" minoccurs="0"/> <xs:element name="city" type="xs:string" minoccurs="0"/> <xs:element name="state" type="xs:string" minoccurs="0"/> <xs:element name="zip" type="xs:string" minoccurs="0"/> <xs:element name="country" type="xs:string" minoccurs="0"/> <xs:element name="profiletype" type="xs:string" minoccurs="0"/> <xs:element name="udf" type="xs:string" minoccurs="0"/> </xs:sequence> </xs:complextype> Name Type Data Type Use Comment resortnameid element string optional Unique id of the profile in OPERA, if available. nameid element int optional Unique id of the profile in external system. This value is mandatory as it is the key used while requesting for full profile when user selects a profile from the returned list of profiles. membernumber element string optional Membership number. OPERA displays this. lastname element string optional Last name. OPERA displays this. firstname element string optional First name. OPERA displays this. XML Schemas 11

12 address element string optional Address line 1. OPERA displays this. address2 element string optional Address line 2. OPERA displays this. city element string optional City. OPERA displays this. state element string optional State. OPERA displays this. zip element string optional Postal code. OPERA displays this. country element string optional Country. OPERA displays this. profiletype element string optional Profile type. Udf element string optional Not used. Profile Request XML Schema Notes Profile Response XML Schema XML Schema version XML Tables : Not applicable : No XML schema is used to request a particular profile. Profile s unique identifier is passed in the request itself. : profile : 1.2 or 2.0 as configured in OXI : Please refer to OXI profile download specifications. 12

13 Profile Lookup Request and Response HTTP Action : POST Sample URL : /servlets/orslookup URL Parameters : None Request & Response content type : text/xml Request & Response character encoding : UTF8 6 HTTP Call Samples HTTP POST Data (Request for matching profiles) <?xml version="1.0"?> <?Label SLBK PLQUERY 5018 SUCCESS?> <Query xmlns="plquery.fidelio.1.1" profiletype=""> <propertyname>slbk</propertyname> <transactionid>1111</transactionid> <setsize>50</setsize> <firstname>jane</firstname> <lastname>smith</lastname> <city> Anytown</city> <state>fl</state> <zip>99999</zip> <country>us</country> </Query> HTTP POST Response (List of matching profiles returned synchronously by external system) <?xml version="1.0"?> <LookupResult xmlns="plresult.fidelio.1.0"> <transactionid>5018</transactionid> <ProfileSets> <ProfileSet> <resortnameid>29542</resortnameid> <nameid>10759</nameid> <membernumber>97105</membernumber> <lastname>smith</lastname> <firstname>jane</firstname> <address> 1111 Street</address> <city>anytown</city> <state>fl</state> <zip>99999</zip> <country>us</country> </ProfileSet> <ProfileSet> HTTP Call Samples 13

14 <resortnameid>29542</resortnameid> <nameid>10759</nameid> <membernumber>97105</membernumber> <lastname>john</lastname> <firstname>smith</firstname> <address> 1111 Street</address> <address2>2222 Street</address2> <city>anytown</city> <state>fl</state> <zip> 99999</zip> <country>us</country> </ProfileSet> <ProfileSet> <resortnameid>29542</resortnameid> <nameid>10759</nameid> <membernumber>97105</membernumber> <lastname>smith</lastname> <firstname>jane</firstname> <address>1111 Street</address> <city>anytown</city> <zip>99999</zip> <country>us</country> </ProfileSet> <ProfileSet> <nameid>10766</nameid> <lastname>smith</lastname> <firstname>jane</firstname> <address>2222 Street</address> <city>anytown</city> <state>fl</state> <zip>9999</zip> <country>us</country> </ProfileSet> </ProfileSets> </LookupResult> Profile Request HTTP Action : GET Sample URL : /servlets/orslookup URL Parameters : propertyname=slbk&transactionid=10766&action=getcrs&profileid=10766 Response content type : text/xml Response character encoding : UTF8 HTTP GET Response (Unique matching profile returned synchronously by external system) <?xml version = '1.0'?> <?Label SLBK PROFILE 108 SUCCESS?> <Profile profiletype="guest" gender="f" xmlns="profile.fidelio.1.2"> <profileid>10766</profileid> 14

15 <creatorcode>oxi-v6</creatorcode> <createddate> t13:57:03.000</createddate> <lastupdatercode>soriam</lastupdatercode> <lastupdated> t16:36:14.000</lastupdated> <genericname>john</genericname> <IndividualName> <nameprefix>mrs</nameprefix> <namefirst>jane</namefirst> <namesur>smith</namesur> </IndividualName> <primarylanguageid>e</primarylanguageid> <Documents> <Document> <name>jane</name> <docnumber>a </docnumber> <nationality>us</nationality> <documentcode>passport</documentcode> </Document> </Documents> <PostalAddresses> <PostalAddress addresstype="home"> <address1>1111 Street</address1> <city>anytown</city> <statecode>fl</statecode> <postalcode>99999</postalcode> <countrycode>us</countrycode> <mfprimaryyn>y</mfprimaryyn> </PostalAddress> </PostalAddresses> <PhoneNumbers> <PhoneNumber phonenumbertype="home"> <phonenumber>+1(999) </phonenumber> <mfprimaryyn>y</mfprimaryyn> </PhoneNumber> </PhoneNumbers> <mfresort>slbk</mfresort> <mfvipstatus>0</mfvipstatus> <mfallowmail>no</mfallowmail> <mfallow >no</mfallow > <mfguestpriv>no</mfguestpriv> </Profile> HTTP Call Samples 15

16 7 Profile Anonymization Schema Changes This message specification has been extended to exchange the anonymization status of a profile. XDR: profile.fidelio.5.0.xml: <AttributeType name="anonymizationstatus" dt:type="enumeration" dt:values="undefined REQUESTED ANONYMIZED" default="undefined" required="no"/> <ElementType name="profile" content="eltonly"> <attribute type="anonymizationstatus"/> XSD 16

17 Sample Message <?xml version="1.0" encoding="utf-8"?> <?Label MOTTI PROFILE SUCCESS?> <Profile xmlns="profile.fidelio.5.0" profiletype="guest" gender="unknown" multiproperty="0" miniprofile="0" pseudoprofile="0" anonymizationstatus="anonymized" replaceaddress="0"> <creatorcode>supervisor</creatorcode> <createddate> t16:13:45.000</createddate> <lastupdatercode>supervisor</lastupdatercode> <lastupdated> t16:13:58.000</lastupdated> <genericname>kxxxxxxxxn</genericname> <IndividualName> <namesur>kxxxxxxxxn</namesur> <nameordered>e</nameordered> </IndividualName> <primarylanguageid>e</primarylanguageid> <alternatelanguageids>ch</alternatelanguageids> <PostalAddresses> <PostalAddress addresstype="home"> <countrycode>us</countrycode> <mfprimaryyn>y</mfprimaryyn> <mfaddresslanguage>ch</mfaddresslanguage> <cleansed>0</cleansed> </PostalAddress> <PostalAddress addresstype="home"> <countrycode>us</countrycode> <mfprimaryyn>n</mfprimaryyn> <mfaddresslanguage>e</mfaddresslanguage> <cleansed>0</cleansed> </PostalAddress> </PostalAddresses> <mfresort>motti</mfresort> <mfresortprofileid> </mfresortprofileid> <mfnamecode>5xxxxxxxx5</mfnamecode> <mfallowmail>yes</mfallowmail> <mfallow >no</mfallow > <mfguestpriv>no</mfguestpriv> <Udfs> <Udf xmlns="udf.fidelio.2.0"> <UdfDefinition xmlns="udfdefinition.fidelio.2.0"> <pmstablename>name</pmstablename> <pmscolumnname>udfc01</pmscolumnname> </UdfDefinition> </Udf> </Udfs> Profile Anonymization Schema Changes 17

18 <mfnationalname> <namelast>kxxxxxxxxn</namelast> </mfnationalname> <mfallowphone>0</mfallowphone> <mfallowsms>0</mfallowsms> <SalesExtention/> <PrivacyOption> <mfallowmail>y</mfallowmail> <mfallow >n</mfallow > <mfallowphone>0</mfallowphone> <mfallowsms>0</mfallowsms> <mfallowhistory>0</mfallowhistory> <mfallowmarketresearch>1</mfallowmarketresearch> <mfallowthirdparty>1</mfallowthirdparty> </PrivacyOption> <ResortData> <mfresort>enterextresort_11504</mfresort> <mfresort>cloud5</mfresort> <mfresort>enterextresort_11510</mfresort> <mfresort>enterextresort_11512</mfresort> <mfresort>barrie</mfresort> <mfresort>zoltar</mfresort> <mfresort>enterextresort_11537</mfresort> 18

19 Profile Anonymization Schema Changes 19 <mfresort>qadeanna</mfresort> <mfresort>fair</mfresort> <mfresort>fair2</mfresort> <mfresort>fair3</mfresort> <mfresort>fred</mfresort> <mfresort>enterextresort_11551</mfresort> <mfresort>enterextresort_11560</mfresort> <mfresort>ipkk</mfresort> <mfresort>radqa</mfresort> <mfresort>enterextresort_11575</mfresort> <mfresort>kmh</mfresort> <mfresort>enterextresort_11577</mfresort>

20 <mfresort>enterextresort_11578</mfresort> <mfresort>enterextresort_11583</mfresort> <mfresort>enterextresort_11584</mfresort> <mfresort>enterextresort_11585</mfresort> <mfresort>mead</mfresort> <mfresort>mexico</mfresort> <mfresort>motti</mfresort> <mfresort>mottitwo</mfresort> <mfresort>mo_iii</mfresort> <mfresort>enterextresort_11606</mfresort> <mfresort>enterextresort_11608</mfresort> 20

21 Profile Anonymization Schema Changes 21 <mfresort>enterextresort_11614</mfresort> <mfresort>enterextresort_11633</mfresort> <mfresort>enterextresort_11638</mfresort> <mfresort>enterextresort_11654</mfresort> <mfresort>toronto</mfresort> <mfresort>vixx</mfresort> <mfresort>world1</mfresort> <mfresort>zeroors</mfresort> <mfresort>enterextresort_11699</mfresort> <mfresort>enterextresort_11710</mfresort> </ResortData> <ResortList>EnterExtResort_11504</ResortList> <ResortList>CLOUD5</ResortList>

22 <ResortList>EnterExtResort_11510</ResortList> <ResortList>EnterExtResort_11512</ResortList> <ResortList>BARRIE</ResortList> <ResortList>ZOLTAR</ResortList> <ResortList>EnterExtResort_11537</ResortList> <ResortList>QADEANNA</ResortList> <ResortList>FAIR</ResortList> <ResortList>FAIR2</ResortList> <ResortList>FAIR3</ResortList> <ResortList>FRED</ResortList> <ResortList>EnterExtResort_11551</ResortList> <ResortList>EnterExtResort_11560</ResortList> <ResortList>IPKK</ResortList> <ResortList>RADQA</ResortList> <ResortList>EnterExtResort_11575</ResortList> <ResortList>KMH</ResortList> <ResortList>EnterExtResort_11577</ResortList> <ResortList>EnterExtResort_11578</ResortList> <ResortList>EnterExtResort_11583</ResortList> <ResortList>EnterExtResort_11584</ResortList> <ResortList>EnterExtResort_11585</ResortList> <ResortList>MEAD</ResortList> <ResortList>MEXICO</ResortList> <ResortList>MOTTI</ResortList> <ResortList>MOTTITWO</ResortList> <ResortList>MO_III</ResortList> <ResortList>EnterExtResort_11606</ResortList> <ResortList>EnterExtResort_11608</ResortList> <ResortList>EnterExtResort_11614</ResortList> <ResortList>EnterExtResort_11633</ResortList> <ResortList>EnterExtResort_11638</ResortList> <ResortList>EnterExtResort_11654</ResortList> <ResortList>TORONTO</ResortList> <ResortList>VIXX</ResortList> <ResortList>WORLD1</ResortList> <ResortList>ZEROORS</ResortList> <ResortList>EnterExtResort_11699</ResortList> <ResortList>EnterExtResort_11710</ResortList> <MultiResortEntities> <entity>routing_instructions</entity> <entity>credit_cards</entity> 22

23 <entity>resort_ars</entity> <entity>comments</entity> <entity>preferences</entity> <entity>negotiated_rates</entity> <entity>resort_neg_rates</entity> <entity>resort_commissions</entity> <entity>channel_access_codes</entity> <entity>yield_adjustments</entity> <entity>pseudo_city_codes</entity> <entity>relationships</entity> </MultiResortEntities> </Profile> Note: profile.fidelio.5.0.xml is used in reservation.fidelio.5.0.xml, so it contains the same profile changes. Profile Anonymization Schema Changes 23

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017 Oracle Hospitality OPERA Exchange Interface Cloud Authentication October 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Oracle Hospitality MICROS Commerce Platform Release Notes Release Part Number: E December 2015

Oracle Hospitality MICROS Commerce Platform Release Notes Release Part Number: E December 2015 Oracle Hospitality MICROS Commerce Platform Release Notes Release 4.2.1 Part Number: E69448-01 December 2015 Copyright 2010, 2015, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015 Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9 July 2015 Copyright 1987, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Oracle Hospitality OPERA Exchange Interface Guest Stay Data XML Specifications. October 2017

Oracle Hospitality OPERA Exchange Interface Guest Stay Data XML Specifications. October 2017 Oracle Hospitality OPERA Exchange Interface Guest Data XML Specifications October 2017 Copyright 2009, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016 Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide March 2016 Original Issued Date: March 2006 Vision / Serduct version: 03.x Author Product: MICROS Opera 3.x Copyright

More information

Oracle Hospitality Cruise Shipboard Property Management System Topaz Signature Device Installation Guide Release 8.00 E

Oracle Hospitality Cruise Shipboard Property Management System Topaz Signature Device Installation Guide Release 8.00 E Oracle Hospitality Cruise Shipboard Property Management System Topaz Signature Device Installation Guide Release 8.00 E93107-01 January 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights

More information

Oracle Payment Interface Installation and Reference Guide Release E April 2018

Oracle Payment Interface Installation and Reference Guide Release E April 2018 Oracle Payment Interface Installation and Reference Guide Release 6.2.1 E94970-01 April 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality OPERA Exchange Interface Communication Vendor Specification. October 2017

Oracle Hospitality OPERA Exchange Interface Communication Vendor Specification. October 2017 Oracle Hospitality OPERA Exchange Interface Communication Vendor Specification October 2017 Copyright 1987, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016 Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release 8.7.4 and Higher E81378-01 November 2016 Copyright 2002, 2016, Oracle and/or its affiliates. All rights reserved.

More information

Oracle Hospitality OPERA Exchange Interface Inventory Snapshot XML Specifications. October 2017

Oracle Hospitality OPERA Exchange Interface Inventory Snapshot XML Specifications. October 2017 Oracle Hospitality OPERA Exchange Interface Snapshot XML Specifications October 2017 Copyright 2009, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Oracle Hospitality OPERA Exchange Interface HTTP Communication Specification for Business Event XML Retrieval. October 2017

Oracle Hospitality OPERA Exchange Interface HTTP Communication Specification for Business Event XML Retrieval. October 2017 Oracle Hospitality OPERA Exchange Interface HTTP Communication Specification for Business Event XML Retrieval October 2017 Copyright 2008, 2017, Oracle and/or its affiliates. All rights reserved. This

More information

Oracle Hospitality BellaVita Adding a New Language Release 2.7. September 2015

Oracle Hospitality BellaVita Adding a New Language Release 2.7. September 2015 Oracle Hospitality BellaVita Adding a New Language Release 2.7 September 2015 Copyright 1987, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Oracle Hospitality BellaVita Hardware Requirements. June 2016

Oracle Hospitality BellaVita Hardware Requirements. June 2016 Oracle Hospitality BellaVita Hardware Requirements June 2016 Copyright 1987, 2016, Oracle /or its affiliates. All rights reserved. This software related documentation are provided under a license agreement

More information

Oracle Communications Configuration Management

Oracle Communications Configuration Management Oracle Communications Configuration Management Planning Guide Release 7.2 E35436-01 October 2013 Oracle Communications Configuration Management Planning Guide, Release 7.2 E35436-01 Copyright 2011, 2013,

More information

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017 Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1 September 2017 Copyright 1987, 2017, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle mymicros.net, icare, myinventory and mylabor Self Host Release Notes Release v April 2015

Oracle mymicros.net, icare, myinventory and mylabor Self Host Release Notes Release v April 2015 Oracle mymicros.net, icare, myinventory and mylabor Self Host Release Notes Release v8.4.3 April 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality RES 3700 Server Setup Guide Release 5.5 E May 2016

Oracle Hospitality RES 3700 Server Setup Guide Release 5.5 E May 2016 Oracle Hospitality RES 3700 Server Setup Guide Release 5.5 E76174-01 May 2016 Copyright 1998, 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Oracle Hospitality Simphony Venue Management Release Notes Release 3.9 E March 2017

Oracle Hospitality Simphony Venue Management Release Notes Release 3.9 E March 2017 Oracle Hospitality Simphony Venue Management Release Notes Release 3.9 E80151-02 March 2017 Copyright 2002, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Database Change Reference Release 6.3

Database Change Reference Release 6.3 [1]Oracle Communications MetaSolv Solution Database Change Reference Release 6.3 E69841-01 April 2018 Oracle Communications MetaSolv Solution Database Change Reference, Release 6.3 E69841-01 Copyright

More information

JavaFX. JavaFX System Requirements Release E

JavaFX. JavaFX System Requirements Release E JavaFX JavaFX 2.0.3 System Requirements Release 2.0.3 E20473-03 February 2012 JavaFX/JavaFX 2.0.3 System Requirements, Release 2.0.3 E20473-03 Copyright 2008, 2012, Oracle and/or its affiliates. All rights

More information

Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release September 2015

Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release September 2015 Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release 1.36 September 2015 Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen, Release 1.36 Copyright

More information

Oracle Simphony Venue Management (SimVen) Installation Guide Release Part Number: E

Oracle Simphony Venue Management (SimVen) Installation Guide Release Part Number: E Oracle Simphony Venue Management (SimVen) Installation Guide Release 3.7.100 Part Number: E68504-01 May 2015 Copyright 2002, 2015, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle Hospitality Hotel Mobile Release Notes. Release (1.30)

Oracle Hospitality Hotel Mobile Release Notes. Release (1.30) Oracle Hospitality Hotel Mobile Release Notes Release 1.3.0.0 (1.30) F12511 02 December 2018 Oracle Hospitality Hotel Mobile Release Notes, Release 1.3.0.0 (1.30) F12511 02 Copyright 2016, 2018, Oracle

More information

Report Management and Editor!

Report Management and Editor! Quickly Find the Right Reports and Build New Reports with the Report Management and Editor! HOW DOES THE REPORT MANAGER AND EDITOR WORK? The Report Manager is a search and preview interface which helps

More information

Materials Control. Account Classes. Product Version Account Classes. Document Title: Joerg Trommeschlaeger

Materials Control. Account Classes. Product Version Account Classes. Document Title: Joerg Trommeschlaeger MICROS Product Version 8.7.10.40.1382 : : : Date: 19.09.2012 Version No. of Document: 1.0 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

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

Oracle Utilities Opower Custom URL Configuration

Oracle Utilities Opower Custom URL Configuration Oracle Utilities Opower Custom URL Configuration Technical Brief E84773-01 Last Updated: Thursday, May 25, 2017 Oracle Utilities Opower Customer URL Configuration Technical Brief Copyright 2012, 2017,

More information

Oracle Hospitality Cruise Silverwhere Release Notes for GDF Interface and Template Release 8.0. March 2016

Oracle Hospitality Cruise Silverwhere Release Notes for GDF Interface and Template Release 8.0. March 2016 Oracle Hospitality Cruise Silverwhere Release Notes for GDF Interface 9.0.5.6 and Template 1.1.29 Release 8.0 March 2016 Copyright 2015, 2016, Oracle and/or its affiliates. All rights reserved. This software

More information

Oracle Linux. UEFI Secure Boot Signing Key Update Notice

Oracle Linux. UEFI Secure Boot Signing Key Update Notice Oracle Linux UEFI Secure Boot Signing Key Update Notice F12070-01 November 2018 Oracle Legal Notices Copyright 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality Simphony Engagement Cloud Service Release Notes Release 2.0 E January 2016

Oracle Hospitality Simphony Engagement Cloud Service Release Notes Release 2.0 E January 2016 Oracle Hospitality Simphony Engagement Cloud Service Release Notes Release 2.0 E71449-01 January 2016 Copyright 2014, 2016, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle Enterprise Manager Ops Center

Oracle Enterprise Manager Ops Center Oracle Enterprise Manager Ops Center Discover and Manage SPARC T5 Series Servers and SPARC T7 Series Servers 12c Release 3 (12.3.2.0.0) E60000-03 July 2016 This guide provides an end-to-end example for

More information

Oracle Hospitality e7 Point-of-Sale Release Notes. Release 4.2

Oracle Hospitality e7 Point-of-Sale Release Notes. Release 4.2 Oracle Hospitality e7 Point-of-Sale Release Notes Release 4.2 E67877-02 June 2018 Oracle Hospitality e7 Point-of-Sale Release Notes, Release 4.2 E67877-02 Copyright 2003, 2018, Oracle and/or its affiliates.

More information

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007.

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007. Recipe Calculation Survey Materials Control Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: August 21 st 2007 Page 1 of 8 Copyright 2015, Oracle and/or its affiliates. All rights

More information

What s New for Cloud at Customer What's New for the Cloud Services on Oracle Cloud at Customer New Documentation for Oracle Cloud at Customer

What s New for Cloud at Customer What's New for the Cloud Services on Oracle Cloud at Customer New Documentation for Oracle Cloud at Customer Oracle Cloud at What's New for Oracle Cloud at Release 18.1.4 E93578-04 October 2018 What s New for Oracle Cloud at This document lists the new features and enhancements added to the Oracle Cloud at and

More information

Oracle Hospitality Cruise Meal Count System Security Guide Release 8.3 E

Oracle Hospitality Cruise Meal Count System Security Guide Release 8.3 E Oracle Hospitality Cruise Meal Count System Security Guide Release 8.3 E99233-01 August 2018 Copyright 2015, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality Cruise Fleet Management Release Notes Release 9.0 E

Oracle Hospitality Cruise Fleet Management Release Notes Release 9.0 E Oracle Hospitality Cruise Fleet Management Release Notes Release 9.0 E89560-02 April 2018 Copyright 2006, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality Suite8 Mobile Key User Manual Release Part Number: E May 2017

Oracle Hospitality Suite8 Mobile Key User Manual Release Part Number: E May 2017 Oracle Hospitality Suite8 Mobile Key User Manual Release 8.10.2 Part Number: E87505-01 May 2017 Copyright 2002, 2017, Oracle and/ or its affiliates. All rights reserved. This software and related documentation

More information

PeopleSoft Fluid Required Fields Standards

PeopleSoft Fluid Required Fields Standards ORACLE CORPORATION PeopleSoft Fluid Required Fields Standards Fluid User Experience November 2015 PeopleSoft Fluid Required Fields Standards Copyright 2015, Oracle and/or its affiliates. All rights reserved.

More information

Oracle Argus Safety. 1 Configuration. 1.1 Configuring a Reporting Destination for the emdr Profile. emdr Best Practices Document Release 8.0.

Oracle Argus Safety. 1 Configuration. 1.1 Configuring a Reporting Destination for the emdr Profile. emdr Best Practices Document Release 8.0. Oracle Argus Safety emdr Best Practices Document Release 8.0.1 E68590-01 November 2015 This document provides information on using emdr to switch from MedWatch Device reporting, and special considerations

More information

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E96343-01 May 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Defining Constants and Variables for Oracle Java CAPS Environments

Defining Constants and Variables for Oracle Java CAPS Environments Defining Constants and Variables for Oracle Java CAPS Environments Part No: 821 2547 March 2011 Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 18.1 E

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 18.1 E Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 18.1 E68585-02 May 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Known Issues for Oracle Cloud Identity and Access Management 16.3 E68445-07 August 2016 This document describes issues you might encounter when using shared identity management for Oracle

More information

Oracle Hospitality Materials Control Release Notes. Release 8.32

Oracle Hospitality Materials Control Release Notes. Release 8.32 Oracle Hospitality Materials Control Release Notes Release 8.32 E88125-02 August 2017 Oracle Hospitality Materials Control Release Notes, Release 8.32 E88125-02 Copyright 2002, 2017, Oracle and/or its

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Hardware and Software Configuration

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Hardware and Software Configuration Oracle Enterprise Manager Ops Center Create Private Networks in a Virtual Datacenter 12c Release 3 (12.3.0.0.0) E60045-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

Oracle Hospitality Materials Control. Server Sizing Guide

Oracle Hospitality Materials Control. Server Sizing Guide Oracle Hospitality Materials Control Server Sizing Guide Release 18.1 E96487-04 April 2019 Oracle Hospitality Materials Control Server Sizing Guide, Release 18.1 E96487-04 Copyright 1998, 2019, Oracle

More information

Oracle Hospitality Cruise Shipboard Property Management System DESKO Penta Installation Guide Release 8.00 F

Oracle Hospitality Cruise Shipboard Property Management System DESKO Penta Installation Guide Release 8.00 F Oracle Hospitality Cruise Shipboard Property Management System DESKO Penta Installation Guide Release 8.00 F10691-01 September 2018 Copyright 2015, 2015 Oracle and/or its affiliates. All rights reserved.

More information

Oracle Utilities Work and Asset Management Integration to Primavera P6 Enterprise Project Portfolio Management

Oracle Utilities Work and Asset Management Integration to Primavera P6 Enterprise Project Portfolio Management Release Notes Oracle Utilities Work and Asset Management Integration to Primavera P6 Enterprise Project Portfolio Management Release Notes Oracle Utilities Work and Asset Management v1.9.1 Primavera P6

More information

Oracle MICROS Simphony Server Setup Guide Server Version 1. April 2015

Oracle MICROS Simphony Server Setup Guide Server Version 1. April 2015 Oracle MICROS Simphony Server Setup Guide Server Version 1 April 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license

More information

Oracle Banking Channels Bank User Base

Oracle Banking Channels Bank User Base Oracle Banking Channels Bank User Base Functional Overview Release 2.2.0.0.0 E51323-01 December 2013 Oracle Banking Channels Bank User Base Functional Overview, Release 2.2.0.0.0 E51323-01 Copyright 2013,

More information

Taleo Enterprise Deep Linking Configuration Guide Release 17

Taleo Enterprise Deep Linking Configuration Guide Release 17 Oracle Taleo Enterprise Release 17 Taleo Enterprise Part Number: E89359-01 Copyright 2017, Oracle and/or its affiliates. All rights reserved Authors: Taleo Information Development Team This software and

More information

Oracle. Sales Cloud Using Sales for Outlook. Release 13 (update 18A)

Oracle. Sales Cloud Using Sales for Outlook. Release 13 (update 18A) Oracle Sales Cloud Release 13 (update 18A) Release 13 (update 18A) Part Number E92320-02 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved. Authors: Debjit Nag, Gowri Sudhindra This

More information

Oracle Hospitality OPERA Software Description for OPERA Activity Scheduler Interface Version 5.1. January 2018

Oracle Hospitality OPERA Software Description for OPERA Activity Scheduler Interface Version 5.1. January 2018 Oracle Hospitality OPERA Software Description for OPERA Activity Scheduler Interface Version 5.1 January 2018 Copyright 2002, 2018, Oracle and/or its affiliates. All rights reserved. This software and

More information

Oracle Hospitality Cruise Shipboard Property Management System Quick Encode Installation Guide Release 8.00 E

Oracle Hospitality Cruise Shipboard Property Management System Quick Encode Installation Guide Release 8.00 E Oracle Hospitality Cruise Shipboard Property Management System Quick Encode Installation Guide Release 8.00 E89748-01 November 2017 Copyright 2015, 2017, Oracle and/or its affiliates. All rights reserved.

More information

New Features in Primavera Professional 15.2

New Features in Primavera Professional 15.2 New Features in Primavera Professional 15.2 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Microsoft Active Directory Plug-in User s Guide Release

Microsoft Active Directory Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft Active Directory Plug-in User s Guide Release 13.1.0.1.0 E66401-01 December 2015 Oracle Enterprise Manager Microsoft Active Directory Plug-in User's Guide, Release

More information

Oracle Fusion Middleware Oracle Stream Analytics Release Notes. 12c Release ( )

Oracle Fusion Middleware Oracle Stream Analytics Release Notes. 12c Release ( ) Oracle Fusion Middleware Oracle Stream Analytics Release Notes 12c Release (12.2.1.3.0) E83091-01 August 2017 Oracle Fusion Middleware Oracle Stream Analytics Release Notes, 12c Release (12.2.1.3.0) E83091-01

More information

Introduction to Auto Service Request

Introduction to Auto Service Request Oracle Enterprise Manager Ops Center Enable and Test Auto Service Request 12c Release 3 (12.3.0.0.0) E59994-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need Oracle Enterprise Manager Ops Center Creating a Server Pool for Oracle VM Server for SPARC 12c Release 2 (12.2.2.0.0) E48147-03 December 2014 This guide provides an end-to-end example for how to use Oracle

More information

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release Oracle Cloud What's New for Oracle Cloud Stack Release 18.3.2 E83240-17 July 2018 What s New for Oracle Cloud Stack Manager Oracle Cloud Stack Manager is upgraded in Oracle Cloud data centers as soon as

More information

Managing Zone Configuration

Managing Zone Configuration Oracle Enterprise Manager Ops Center Managing the Configuration of a Zone 12c Release 1 (12.1.2.0.0) E27356-01 November 2012 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Oracle Hospitality Cruise Fine Dining System Security Guide Release E

Oracle Hospitality Cruise Fine Dining System Security Guide Release E Oracle Hospitality Cruise Fine Dining System Security Guide Release 9.0.2.29 E99054-01 August 2018 Copyright 2015, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Hospitality Simphony First Edition Venue Management (SimVen) Installation Guide Release 3.8 Part Number: E

Oracle Hospitality Simphony First Edition Venue Management (SimVen) Installation Guide Release 3.8 Part Number: E Oracle Hospitality Simphony First Edition Venue Management (SimVen) Installation Guide Release 3.8 Part Number: E69856-01 December 2015 Copyright 2002, 2015, Oracle and/or its affiliates. All rights reserved.

More information

PeopleSoft Fluid Icon Standards

PeopleSoft Fluid Icon Standards ORACLE CORPORATION PeopleSoft Fluid Icon Standards Fluid User Experience November 2015 PeopleSoft Fluid Icon Standards Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and

More information

Security Guide Release 4.0

Security Guide Release 4.0 [1]Oracle Communications Session Monitor Security Guide Release 4.0 E89197-01 November 2017 Oracle Communications Session Monitor Security Guide, Release 4.0 E89197-01 Copyright 2017, Oracle and/or its

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating vservers 12c Release 1 (12.1.4.0.0) E27357-02 June 2013 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops Center. Introduction

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release Oracle Enterprise Manager Ops Center Installing and Updating Local Software Packages 12c Release 12.1.2.0.0 E37233-01 November 2012 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

Oracle Utilities Meter Data Management Release Utility Reference Model Maintain Generic Usage Subscription

Oracle Utilities Meter Data Management Release Utility Reference Model Maintain Generic Usage Subscription Oracle Utilities Meter Data Management Release 2.0.1 Utility Reference Model 3.3.2.1 Maintain Generic Usage Subscription January 2014 Oracle Utilities Meter Data Management Utility Reference Model 3.3.2.1

More information

Oracle Payment Interface Oracle Hospitality OPERA Property Management System Installation Guide Release 6.1 E

Oracle Payment Interface Oracle Hospitality OPERA Property Management System Installation Guide Release 6.1 E Oracle Payment Interface Oracle Hospitality OPERA Property Management System Installation Guide Release 6.1 E84798-01 February 2017 Copyright 2010, 2017, Oracle and/or its affiliates. All rights reserved.

More information

Oracle. Field Service Cloud Using the Parts Catalog

Oracle. Field Service Cloud Using the Parts Catalog Oracle Field Service Cloud Release August 2016 Field Service Cloud Part Number: E67887-10 Copyright 2016, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

Oracle Hospitality Cruise Shipboard Property Management System E

Oracle Hospitality Cruise Shipboard Property Management System E Oracle Hospitality Cruise Shipboard Property Management System Advanced Oracle Hospitality 9700 Point-of-Sale Interface Installation Guide Release 8.0 E90960-01 October 2017 Copyright 2011, 2017, Oracle

More information

Oracle Communications Convergent Charging Controller. Sample Message Flows Reference Guide Release 6.0.1

Oracle Communications Convergent Charging Controller. Sample Message Flows Reference Guide Release 6.0.1 Oracle Communications Convergent Charging Controller Sample Message Flows Reference Guide Release 6.0.1 April 2017 Copyright Copyright 2017, Oracle and/or its affiliates. All rights reserved. This software

More information

Oracle Hospitality e7 Point-of-Sale Release Notes. Release 4.4 Global

Oracle Hospitality e7 Point-of-Sale Release Notes. Release 4.4 Global Oracle Hospitality e7 Point-of-Sale Release Notes Release 4.4 Global E95048-03 Autust 2018 Oracle Hospitality e7 Point-of-Sale Release Notes, Release 4.4 Global E95048-03 Copyright 2003, 2018, Oracle and/or

More information

Export generates an empty file

Export generates an empty file Known Issues for Oracle SQL Developer Web Release 18.1 E96172-01 May 2018 Known Issues for Oracle SQL Developer Web This section describes known issues associated with the Oracle SQL Developer Web 18.1

More information

Oracle Utilities Advanced Spatial and Operational Analytics

Oracle Utilities Advanced Spatial and Operational Analytics Oracle Utilities Advanced Spatial and Operational Analytics Release Notes Release 2.4.0.4 E36255-03 December 2012 Oracle Utilities Advanced Spatial and Operational Analytics Release Notes E36255-03 Copyright

More information

Oracle Hospitality Hotel Mobile OPERA Web Services Server Installation Guide Release 1.1 E May 2017

Oracle Hospitality Hotel Mobile OPERA Web Services Server Installation Guide Release 1.1 E May 2017 Oracle Hospitality Hotel Mobile OPERA Web Services Server Installation Guide Release 1.1 E87103-01 May 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Oracle Hospitality OPERA Cloud ID Document Scanning Specifications Version February 2018

Oracle Hospitality OPERA Cloud ID Document Scanning Specifications Version February 2018 Oracle Hospitality OPERA Cloud ID Document Scanning Specifications Version 1.0.1 February 2018 Copyright 2016, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Cloud Using Oracle E-Business Suite Adapter Endpoint Configuration Wizard. Release 17.3

Oracle Cloud Using Oracle E-Business Suite Adapter Endpoint Configuration Wizard. Release 17.3 Oracle Cloud Using Oracle E-Business Suite Adapter Endpoint Configuration Wizard Release 17.3 E70281-08 September 2017 Oracle Cloud Using Oracle E-Business Suite Adapter Endpoint Configuration Wizard,

More information

Oracle Communications Order and Service Management. OSM New Features

Oracle Communications Order and Service Management. OSM New Features Oracle Communications Order and Service Management What s New Release 7.3.5 E89975-01 March 2018 This document describes the new features that are delivered in Oracle Communications Order and Service Management

More information

OKM Key Management Appliance

OKM Key Management Appliance Oracle Key Manager Network Configuration Guide for OKM and the SL4000 Library E88947-01 July 2017 The SL4000 Modular Library System requires only a single connection to Oracle Key Manager (OKM) rather

More information

Microsoft Internet Information Services (IIS) Plug-in User s Guide Release

Microsoft Internet Information Services (IIS) Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft Internet Information Services (IIS) Plug-in User s Guide Release 13.1.0.1.0 E66400-01 December 2015 Oracle Enterprise Manager Microsoft Internet Information Services

More information

Oracle Hospitality BellaVita Installation Guide Release May 2016

Oracle Hospitality BellaVita Installation Guide Release May 2016 Oracle Hospitality BellaVita Installation Guide Release 2.7.2.2 May 2016 Copyright 1987, 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under

More information

Oracle Hospitality Cruise Shipboard Property Management System

Oracle Hospitality Cruise Shipboard Property Management System Oracle Hospitality Cruise Shipboard Property Management System Fargo HDP5000 Printer Installation Guide Release 7.30.872 E83930-01 April 2017 Copyright 1995, 2017 Oracle and/or its affiliates. All rights

More information

Oracle Hospitality Materials Control Server Sizing Guide Release 8.31 E February 2017

Oracle Hospitality Materials Control Server Sizing Guide Release 8.31 E February 2017 Oracle Hospitality Materials Control Server Sizing Guide Release 8.31 E83814-01 February 2017 Copyright 2002, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Oracle Agile Product Lifecycle Management for Process Reporting User Guide Release E

Oracle Agile Product Lifecycle Management for Process Reporting User Guide Release E Oracle Agile Product Lifecycle Management for Process Reporting User Guide Release 6.1.1.5 E57828-01 November 2014 Oracle Agile Product Lifecycle Management for Process Reporting User Guide, Release 6.1.1.5

More information

Oracle Cloud What's New for Oracle WebCenter Portal Cloud Service

Oracle Cloud What's New for Oracle WebCenter Portal Cloud Service Oracle Cloud What's New for Oracle WebCenter Portal Cloud Service E80293-09 April 2018 Oracle Cloud What's New for Oracle WebCenter Portal Cloud Service, E80293-09 Copyright 2017, 2018, Oracle and/or its

More information

Oracle Hospitality Cruise Shipboard Property Management System Fargo HDP5000 Printer Installation Guide Release 8.0 E

Oracle Hospitality Cruise Shipboard Property Management System Fargo HDP5000 Printer Installation Guide Release 8.0 E Oracle Hospitality Cruise Shipboard Property Management System Fargo HDP5000 Printer Installation Guide Release 8.0 E84863-01 August 2017 Copyright 2015, 2017 Oracle and/or its affiliates. All rights reserved.

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 Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure

Oracle Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure Oracle Communications Method of Procedure Oracle Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure E82603-01 January 2017 Page 1 E82603-01 Oracle Communications Oracle

More information

Oracle Utilities Work and Asset Management

Oracle Utilities Work and Asset Management ESRI3 ArcGIS Viewer Oracle Utilities Work and Asset Management ESRI3 ArcGIS Viewer User Guide Release 1.9.1.2.5 July 2015 Oracle Utilities Work and Asset Management ESRI3 ArcGIS Viewer Guide - Release

More information

1 Understanding the Cross Reference Facility

1 Understanding the Cross Reference Facility JD Edwards EnterpriseOne Tools Cross Reference Facility Guide Release 9.1 E21485-01 December 2011 The JD Edwards EnterpriseOne Tools Cross Reference Facility Guide contains the following topics: Section

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

Oracle Database Mobile Server

Oracle Database Mobile Server Oracle Database Mobile Server Getting Started - Quick Guide Release 12.1.0 E58913-01 January 2015 This document provides information for downloading and installing the Database Mobile Server (DMS) and

More information

Oracle Hospitality Cruise Shipboard Property Management System 3M AT9000MKII Installation Guide Release 7.30 E

Oracle Hospitality Cruise Shipboard Property Management System 3M AT9000MKII Installation Guide Release 7.30 E Oracle Hospitality Cruise Shipboard Property Management System 3M AT9000MKII Installation Guide Release 7.30 E97056-01 August 2018 Copyright 2015, 2018, Oracle and/or its affiliates. All rights reserved.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Concepts Guide for Oracle API Catalog 12c Release 1 (12.1.3.0) E55976-02 August 2015 Documentation for anyone evaluating or implementing Oracle API Catalog. This guide describes

More information

Oracle Retail MICROS Stores2 Functional Document Stores2 for Portugal Disaster Recovery Release

Oracle Retail MICROS Stores2 Functional Document Stores2 for Portugal Disaster Recovery Release Oracle Retail MICROS Stores2 Functional Document Stores2 for Portugal Disaster Recovery Release 1.39.4 March 2018 Oracle Retail MICROS Stores2 Functional Document for Portugal Disaster Recovery, Release

More information

Oracle NoSQL Database Integration with SQL Developer. Release 18.1

Oracle NoSQL Database Integration with SQL Developer. Release 18.1 Oracle NoSQL Database Integration with SQL Developer Release 18.1 E88121-03 April 2018 Oracle NoSQL Database Integration with SQL Developer, Release 18.1 E88121-03 Copyright 2017, 2018, Oracle and/or its

More information

Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools

Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools Spend less on file attachment storage space Reliably back up your data or file attachments Use your OpenAir data in your reporting tools With OpenAir s Automatic Backup System (ABS) and Workspace downloads,

More information

Materials Control Recipe Reduction based on Article Defaults

Materials Control Recipe Reduction based on Article Defaults Materials Control Recipe Reduction based on Article Defaults Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: August 31 st 2006 Page 1 of 15 Copyright 2015, Oracle and/or its affiliates.

More information