Sabre Profiles Error Messages Guide

1y ago
11 Views
3 Downloads
1.17 MB
91 Pages
Last View : 3m ago
Last Download : 3m ago
Upload by : Bennett Almond
Transcription

Exception MessagesSabre ProfilesService Version 6-61-4Product Release 20.10Product deployment 2020/10/07 Wen

2020 Sabre Inc. All rights reserved.This documentation is the confidential and proprietary intellectualproperty of Sabre Inc. Any unauthorized use, reproduction,preparation of derivative works, performance, or display of thisdocument, or software represented by this document, without theexpress written permission of Sabre Inc. is strictly prohibited.Sabre and the Sabre logo design are trademarks and/or servicemarks of an affiliate of Sabre Inc. All other trademarks, servicemarks, and trade names are owned by their respectivecompanies.

Table of ContentsIntroduction . 1Sabre Profiles Overview . 1Exception Message Types . 3Error Messages . 3Sabre Web Services Errors . 3Sabre Profiles System Errors . 5Sabre Profiles Application Errors . 6Sabre Profiles Create Error Messages. 6Sabre Profiles Update Error Messages . 7Sabre Profiles Read Error Messages . 8Sabre Profiles Search Error Messages . 9Sabre Profiles Delete Error Messages . 10Error Message Descriptions . 11Sabre Profiles Error Messages Reference. 11Sabre Profiles Exception MessagesConfidential and Proprietary Sabre Inc.iii

1IntroductionSabre Profiles OverviewThe objective of Sabre Profiles (aka PPP) is to develop a profile system that: Provides a single view of the traveler Enables or creates new or improved revenue channels Offers best-of-breed products and services Maximizes the value of resources spent on profile data and services.Sabre Profiles helps Sabre to: Achieve unique identification of all travelers across the Sabre Enterprise Create/Enable value-added features for users of the Sabre System and SabreProducts and Services, as well as their customers Increase ROI associated with profile system investments across the SabreEnterprise System Architecture.Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.1

Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.2

Exception Message Types2Error MessagesThere are three types of exception messages that describe the errors discussed inthis section.Sabre Web Services ErrorsSabre Web Services Errors occur within the Sabre Web Services infrastructure. Theyare caused by fault messages from the web client or problems with the Sabre ProfileWeb Services connectivity. The infrastructure detects and generates these errorsand returns them as SOAP faults, with or without ebXML headers.Sabre Profiles System ErrorsSabre Profiles System Errors occur within the Sabre Profile application for manyreasons; however, in the scenario provided in the Sabre Web Services Errorssection, a SOAP fault message is returned.Sabre Profiles Application ErrorsSabre Profiles Application Errors are generated by the Sabre Profile applicationservices that are called by the SWS infrastructure. They are returned to clients in theErrorRS XML response format.Sabre Web Services ErrorsFor this example, a SOAP fault message is returned. When the response containsthe soap-env:fault element, an HTTP status code of 500 is returned. If noSOAP fault exists, an HTTP Status Code of 200 is returned.The general structure of a SOAP fault message is shown as follows. (For additionalinformation on XML Structure, refer to Schemas.) ?xml version "1.0" encoding "UTF-8"? soap-env:Envelope xmlns:soapenv "http://schemas.xmlsoap.org/soap/envelope/" soap-env:Header eb:MessageHeaderxmlns:eb version "1.0" soap-env:mustUnderstand "1" eb:From eb:PartyId eb:type "URI" 123123 /eb:PartyId Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.3

/eb:From eb:To eb:PartyId eb:type "URI" 999999 /eb:PartyId /eb:To eb:CPAId Sabre /eb:CPAId eb:ConversationId abc1232008-01-2975976 /eb:ConversationId eb:Service eb:type "string" Session /eb:Service eb:Action ErrorRS /eb:Action eb:MessageData eb:MessageId 19848df2-c014-4e34-a9b3b617e2762f36@91 /eb:MessageId eb:Timestamp 2008-01-29T15:57:40 /eb:Timestamp eb:RefToMessageId 99999999 /eb:RefToMessageId /eb:MessageData /eb:MessageHeader wsse:Securityxmlns:wsse "http://schemas.xmlsoap.org/ws/2002/12/secext" wsse:BinarySecurityToken valueType "String"EncodingType "wsse:Base64Binary" 68!0 /wsse:BinarySecurityToken /wsse:Security /soap-env:Header soap-env:Body soap-env:Fault faultcode soap-env:Client.AuthorizationFailed /faultcode faultstring Authorization failed /faultstring detail StackTrace ationException: errors.authorization.USG AUTHORIZATION ecurityInterceptor.java:374)Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.4

at java.lang.Thread.run(Thread.java:595) /StackTrace /detail /soap-env:Fault /soap-env:Body /soap-env:Envelope FaultCode and FaultString provide the necessary information about the typeof errors.Authentication failed: Authentication can fail because the ICE system is down,username/password/Group/Domain combination is invalid, account is inactive, etc.If any of these instances occur, a SOAP fault message displays with the followingdata: faultcode soap-env:Client.AuthenticationFailed /faultcode faultstring Authentication failed /faultstring Authorization failed: Authorization can fail because the ICE system is down, or theusername/password/Group/Domain combination used does not have the rightprivileges to access the web service.If any of these instances occur, a SOAP fault message displays with the followingdata: faultcode soap-env:Client.AuthorizationFailed /faultcode faultstring Authorization failed /faultstring Sabre Profiles System ErrorsSabre Profiles System Errors can occur when the hardware containing theapplication server is down, the database is down, or connectivity cannot beestablished.If any of these instances occur, a SOAP fault message (using the structure explainedabove) displays, together with a stack trace including additional details: faultcode soap-env:Server.SystemFailure /faultcode faultstring Service provider invocation timedout /faultstring Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.5

When the application is unable to handle a request, EPS application runtime errorsoccur and a SOAP fault message displays, together with a stack trace: faultcode soap-env:EPSApplication.SystemFailure /faultcode faultstring EPS Application Server cannot processrequest /faultstring When the EPS database server is down, or connectivity cannot be established to thedatabase servers, a SOAP fault message displays, together with a stack trace: faultcode soapenv:EPSApplication.DatabaseSystemFailure /faultcode faultstring EPS Application Server cannot connect to databaseserver /faultstring Sabre Profiles Application ErrorsSabre Profiles Application Errors are application-specific errors that can occurbecause of an invalid XML message, invalid data in the request, etc. If any of theseinstances occur, a SOAP error response message is sent.Sabre Profiles Create Error MessagesIf an error occurs during the Create process, a SOAP error response message isreturned. The error message and code displays in the ErrorMessage element ofthe schema. The format is shown below. ResponseMessage Errors ErrorMessage ErrorCode ”123” /ErrorMessage /ResponseMessage The error message structure for a Create request is: RequestTypeCode :: RequestCategoryType :: Error Message :: Additional Details Where: RequestTypeCode is C RequestCategoryType is:– PRF (Profiles)– TPL (Templates)– FLT (Filters)– FMT (Formats)Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.6

ErrorMessage resembles the following format: ErrorMessage ErrorCode ”123” C::Invalid XML Data:: ProfileType cannot be null /ErrorMessage For a list of prospective error messages, refer to Chapter 3, Error MessageDescriptions.Sabre Profiles Update Error MessagesIf an error occurs during the Update process, a SOAP error response message isreturned. The error message and code displays in the ErrorMessage element ofthe schema. The format is shown below. ResponseMessage Errors ErrorMessage ErrorCode ”123” /ErrorMessage /ResponseMessage The error message structure for an Update request is: RequestTypeCode :: RequestCategoryType :: Error Message :: Additional Details Where: RequestTypeCode is U RequestCategoryType is:– PRF (Profiles)– TPL (Templates)– FLT (Filters)– FMT (Formats) ErrorMessage resembles the following format: ErrorMessage ErrorCode ”123” U::Invalid XML Data:: ProfileType cannot be null /ErrorMessage For a list of prospective error messages, refer to Chapter 3, Error MessageDescriptions.Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.7

Sabre Profiles Read Error MessagesIf an error occurs during the Read process, a SOAP error response message isreturned. The error message and code displays in the ErrorMessage element ofthe schema. The format is shown below. ResponseMessage Errors ErrorMessage ErrorCode ”123” /ErrorMessage /ResponseMessage The error message structure for a Read request is: RequestTypeCode :: RequestCategoryType :: Error Message :: Additional Details Where: RequestTypeCode is R RequestCategoryType is:– PRF (Profiles)– TPL (Templates)– FLT (Filters)– FMT (Formats) ErrorMessage resembles the following format: ErrorMessage ErrorCode ”123” R::Invalid XML Data:: ProfileType cannot be null /ErrorMessage For a list of prospective error messages, refer to Chapter 3, Error MessageDescriptions.If no profile is found, a Success response message is sent in the format shownbelow. ResponseMessage Success /ResponseMessage Message No Profiles are found in the database based on the readrequest Criteria /Message Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.8

Sabre Profiles Search Error MessagesIf an error occurs during the Search process, a SOAP error response message isreturned. The error message and code displays in the ErrorMessage element ofthe schema. The format is shown below. ResponseMessage Errors ErrorMessage ErrorCode ”123” /ErrorMessage /ResponseMessage The error message structure for a Search request is: RequestTypeCode :: RequestCategoryType :: Error Message :: Additional Details Where: RequestTypeCode is R RequestCategoryType is:– PRF (Profiles)– TPL (Templates)– FLT (Filters)– FMT (Formats) ErrorMessage resembles the following format: ErrorMessage ErrorCode ”123” S::Invalid XML Data:: ProfileType cannot be null /ErrorMessage For a list of prospective error messages, refer to Chapter 3, Error MessageDescriptions.If no profile is found based on the Search criteria, a Success response message issent in the format shown below. ResponseMessage Success /ResponseMessage ProfileInfo Message No Profiles are found in the database based on theSearch Criteria /Message /ProfileInfo If more than 250 profiles are found based on the Search criteria, a message is sentin the format shown below. ResponseMessage Success /ResponseMessage ProfileInfo Message Max Response Limit Size Reached: Please refine yourSearch Criteria /Message /ProfileInfo Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.9

Sabre Profiles Delete Error MessagesIf an error occurs during the Delete process, a SOAP error response message isreturned. The error message and code displays in the ErrorMessage element ofthe schema. The format is shown below. ResponseMessage Errors ErrorMessage ErrorCode ”123” /ErrorMessage /ResponseMessage The error message structure for a Delete request is: RequestTypeCode :: RequestCategoryType :: Error Message :: Additional Details Where: RequestTypeCode is D RequestCategoryType is:– PRF (Profiles)– TPL (Templates)– FLT (Filters)– FMT (Formats) ErrorMessage resembles the following format: ErrorMessage ErrorCode ”123” D::Invalid XML Data:: ProfileType cannot be null /ErrorMessage For a list of prospective error messages, refer to Chapter 3, Error MessageDescriptions.Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.10

Error Message Descriptions3Sabre Profiles Error Messages ReferenceIdCodeMessageDescription1INVALID TPAInvalid TPA Identity dataInvalid TPA Identity Data2INVALID PROFILEInvalid Profile dataInvalid Profile Data3INVALID CUSTOMERInvalid Customer dataInvalid Customer Data4INVALID TELEPHONInvalid Telephone dataEInvalid Telephone Data5INVALID EMAILInvalid Email dataInvalid Email Data6INVALID ADDRESSInvalid Address dataInvalid Address Data7INVALID PAYMENTInvalid PaymentForm dataFORMInvalid Payment FormData8INVALID PAYMENTInvalid PaymentCard dataCARDInvalid Payment CardData9INVALID DOCUMENInvalid Document DataT10INVALID AIRLINE PREFInvalid AirlinePref dataInvalid AirlinePreference Data11INVALID AIRPORT PInvalid AirportPref dataREFInvalid AirportPreference Data12INVALID AIRLINE SEInvalid AirlineSeatPref dataAT PREFInvalid Airline Seat Data13INVALID PREFERRED AIRLINESInvalid Preferred AirlineDataInvalid PreferredAirlines dataSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.11

14INVALID PRIORITYREMARKSInvalid PriorityRemarks dataInvalid Priority RemarksData15INVALID REMARKInvalid Remark dataInvalid Remark Data16INVALID SSRError saving SSRError Saving SSR17INVALID ASSOCIATEInvalid AssociatedProfiles dataD PROFILESAssociated profiles havedifferent client codes orDomain IDs18INVALID ASSOCIATEInvalid AssociatedFilters dataD FILTERSEither ClientCode andClientContextCode equalTN and associated filtername starts with\"SUPER\" or retrievedor saved associatedfilters are not found inthe current domain20INVALID CUSTOMDEFINED DATAInvalid CustomDefinedData dataCustom Defined data isnot valid21INVALID TAX INFOInvalid TaxInfo dataTax Info data is not valid22DUPLICATE PROFILEDuplicate ProfileName exists within same ProfileType in Domain23INVALID AGENCY INFOInvalid AgencyInfo DataAgency Info data is notvalid24INVALID AGENCY FEEInvalid Agency Fee DataAgency Fee data is notvalid25INVALID GDSInvalid GDS dataGDS data is not valid26INVALID AGENT INFOInvalid Agent Info dataAgent Info is not valid27INVALID AGENT GDInvalid AgentGDSIdentity dataS IDENTITYAgent GDS Identity isnot valid28INVALID CORPORATInvalid CorporateInfo dataE INFOCorporate Info data isnot validSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.12

29INVALID NOTIFICATIInvalid NotificationPreference dataON PREFERENCEData is not inaccordance withexpected values et bycontrol tabledata/dictionary30INVALID CONSENTConsent data is not validInvalid Consent data31INVALID PSYCHOGRInvalid PsychographicCategory dataAPHIC CATEGORYData is not inaccordance withexpected values set bycontrol tabledata/dictionary32NO PROFILES ARE No profiles are found which match your selectionFOUNDcriteriaNo profiles found thatmatch your selectioncriteria33INVALID LAST UPDATE TIMESTAMPInvalid last update timestampLast update timestampis not valid35INVALID FORMATInvalid Format dataFormat data is not valid36INVALID FILTERInvalid Filter dataFilder data is not valid37NO FORMATS ARE No formats have been found that match searchFOUNDcriteriaFormat does not exist indatabase38NO FILTERS ARE FOUNDNo filters have been found that match searchcriteriaFilter does not exist inDB40PARTIAL LOGIN ALREADY EXISTSCannot add new Login. Profile already has the Loginelement.Cannot add new login.Profile already has thelogin element41INVALID UNIQUE IDInvalid Unique ID: UniqueID Not Found in thedatabaseUniqueID not found indatabase43INVALID FILTER IDFilterID is not validFilter ID is not valid44INVALID FILTER ASSInvalid Filter AssociatedProfiles dataOC PRFInvalid Filter AssociatedProfiles data45INVALID FILTER ASS Invalid Filter AssociatedFormats DataInvalid Filter AssociatedSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.13

OC FORMATFormats data47INVALID XMLInvalid XML not compliant with Schema: cvccomplex-type.2.4.a: Message indicates place ofdefectMessage indicates placeof defect48INVALID EMAIL CONTACTInvalid Email-Contact dataInvalid Email Contactdata49INVALID TELEPHONInvalid Telephone-Contact dataE CONTACTInvalid TelephoneContact data50INVALID PAYMENTInvalid PaymentCard-Contact dataCARD CONTACTInvalid Payment CardContact Data51INVALID PROFILE NInvalid ProfileName dataAMEInvalid Profile Namedata52CANNOT MODIFY PProfileName cannot be modifiedROFILE NAMEProfile Name cannot bemodified53INVALID PASSWORD CREDENTIALSPassword Credentials are invalidPassword credentials arenot validYour account has been locked due to securityreason. Too many unsuccessful login attempts.Your account has beenlocked due to securityreason. Too manyunsuccessful loginattempts.54ACCOUNT LOCKED61INVALID FLT APPL Filter Client Code or Domain ID does not matchCD OR PCCprofile62INVALID FMT APPLInvalid Format Client Code or Domain ID detectedCD OR PCC63INVALID ASSOCIATEInvalid AssociatedFormats dataD FORMAT DATAAssociated format andprofile have differentclient code or Domain ID64INVALID USER INPUT DATAInvalid User Input DataInvalid UserInputData dataSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.Filter client code orDomain ID does notmatch profile14

65INVALID XPATH EXPRESSIONInvalid XPath Expression: {0}Xpath expression isincorrect or notcompliant with schema66INSUFFICIENT RIGHTS TO ACCESS DOMAINBranch access is not allowedRight access privileges tospecific DomainID donot exist67INVALID RQ PAYLO Invalid Request: Payload does not haveADProfile/Filter/AssociationInvalid request: Payloaddoes not haveProfile/Filter/Association68INVALID DOMAIN SDomain Status is not allowed to do this operationTATUSIncorrect Domain ID. TheDomain level status,which is parent levelstatus for the profile, isin a status that prohibitsProfile operation (i.e, IN- Inactive or NA - NotActivated)69UNSUPPORTED FORInvalid Format data. Unsupported FormatTypeMAT TYPEUnsupportedFormatType72CANNOT READ FMFormat cannot be read/updated because it is inT IN INVALID STATDL/SP statusE73INVALID FLT TYPEFilterTypeCode has to be accordant with ProfileCD ACCORDANT WIinsideTH PRFFilter Type Code has tobe accordant withProfile inside74INVALID PRF TYPEProfileTypeCode has to be accordant with ProfileCD ACCORDANT WITypeTH PRF TYPEProfile type TVL cannotinclude a Corporatesection75INVALID FORMAT SUnsupported FormatString pattern: {0}TRINGUnsupported FormatString Pattern76INVALID PRF TPA IDENTITY ACCORDA Profile TPAIdentity has to be accordant with FilterNT WITH FILTERProfile TPAIdentity mustbe accordant with theFilter78INVALID STAR DAT STAR Data does not exist in ProfileA IN PRF PARTIALWarning: Nocorresponding STARdata was saved for theSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.15

READprofile79DUPLICATE UNIQUEDuplicate UniqueIDIDDuplicate Unique IDs arenot allowed80DUPLICATE LOGIN I Profile with Login ID {0} already exists for ClientDCode '{1}' and Domain ID '{2}'CANNOT MOVE TOProfile cannot be moved to PNR because status isPNR IN INVALID Snot AC/MPTATEProfile to PNR moveservice is permitted onlyif Domain and profilestatus are AC (Active) orMP (Migration inProgress)82INVALID PROFILE SUBJECT TYPEError generated if Profile- PartialReadSubjectAreas- SubjectAreaNamedoes not equal\"CustomerValueScore\"83INVALID FORMAT ID IN ASSOCIATED Invalid FormatID in AssociatedFormats dataFORMAT DATAFormat ID in theassociated Formatssection is not valid forcurrent PCC84DUPLICATE ASSOCIATED FORMAT DAT Duplicate AssociatedFormats data for FormatID {0}ADuplicate AssociatedFormats data for thisFormat ID85CANNOT ASSOCIATE FORMAT TO DIFFERENT PCCAssociated Format hasanother PCC/DomainIDsaved in database86CANNOT NULL ORDER SEQ NUMBER OrderSequenceNumber cannot be NULL inIN ASSOCIATED FO AssociatedFormatsRMATOrder sequence numbercannot be NULL inAssociated Formats87INCORRECT ORDERSEQ NUMBER ORDER IN ASSOCIATED FORMATOrder Sequence Numberdoes not follow thecorrect sequence orderin Associated Formats81Unsupported Profile Subject TypeCannot associate Format to another PCCOrderSequenceNumber is not followed the correctsequence order in AssociatedFormatsSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.16

88DUPLICATE ORDERSEQ NUMBER IN A Duplicate OrderSequenceNumbers is not allowed inSSOCIATED FORMA AssociatedFormatsTDupldicate OrderSequence Numbers arenot allowed inAssociated Formats89ORDER SEQ NUMBER NOT VALID IN OrderSequenceNumber is not a valid value inASSOCIATED FORM AssociatedFormatsATOrder Sequence Numberis not a number90ORDER SEQ NUMBER LESS THAN ON OrderSequenceNumber should not be less than 1 inE IN ASSOCIATED F AssociatedFormatsORMATOrder Sequence numberin associated formatsmust be an integerstarting with (1) orhigher91CANNOT INSTANTIATE CRYPTO SERVIC Cannot instantiate Sabre Crypto ServiceE92CANNOT ENCRYPTCannot encrypt textTEXT93CANNOT DECRYPTCannot decrypt textTEXT94INVALID TB LOGINInvalid login/password95INVALID DISCOUNTInvalid discount data96INVALID PREF CODE CATEGORYInvalid combination of @PrefCode and@PrefCatCode in Preference: ({0},{1})99DELETE DOMAIN INVALID AGT PROFI Bulk {0} of TravelAgent profiles is not allowedLE TYPE CODE101INVALID PROFILE T Invalid ProfileTypeCode found in Search Request.YPE CODE SEARCH Allowed values are TVL, AGT, AGY, CRP, GRP, OPX,ERRORALLSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.Data is not inaccordance withexpected values set bycontrol tabledata/dictionaryData is not inaccordance withexpected values set bycontrol tabledata/dictionary17

102STAR PROFILE TYPE * is not allowed in ProfileTypeCode for ProfileCODE SEARCH ER Search Request. Allowed values are TVL, AGT, AGY,RORCRP, GRP, OPX, ALL104INVALID TPA IDENT Profile History TPA Idenity is not allowed NULLITY PROFILE HISTO values for UniqueID, DomainID, ProfileTypeCode,RYClientCode and ClientContextCode105INVALID PROFILE T Profile History Service does not support Agent,YPE CODE PROFILE Agency and Corporation profiles. Supports onlyHISTORYTraveler and Operational Profiles106PROFILE CHANGE HISTORY NOT FOUN Profile Change History Data not Found, Profile hasD FOR ACTIVE PRO not been updated since creationFILEProfile Change HistoryData not found. Profilehas not been updatedsince creation107INVALID P3 ACTION CODEService might be disabled/Action code might beinvalid. Please contact P3 System AdministratorService might bedisabled or action codeis invalid. Please contactP3 SystemAdministration.108DUPLICATE LANGUAGE ID CODEThe profile has anotherThe profile has another Contact Name specified with Contact Name specifiedthe same Language ID Code: {0}with the same LanguageID code!109INVALID REFERENCE TYPE CODEInvalid Reference Type Code: {0}110INVALID VEND LOCInvalid VendorLocationCode dataCDInvalid Vendor LocationCode data111INVALID VEND CDData is not inaccordance withexpected values set bycontrol tabledata/dictionary112INVALID CONTACTInvalid ContactTypeCode: {0}TYP CDInvalid Contact TypeCode113INVALID SERVICE TYP CDInvalid Service TypeCodeInvalid VendorCode dataInvalid ServiceTypeCode dataSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.18

114INVALID LANGUAGEInvalid LanguageIDCode dataCDInvalid Language ID code500INTERNAL APPLICATAn internal application error has occurred.ION ERRORAn internal applicationerror has occurred.119INVALID DATE RANInvalid date range for Codes {0}GEEffective Date and/orDiscontinue Date areincorrect. (DicontinueDate cannot be datefrom the past. Thereshould be at least a oneday difference betweenEffective Date andDisctoninue Date)125NON EXISTENT ASSNo such associated formats existOCIATED FORMATAssociated Format IDwas not found133NO ACTIVE DOMAINo active DomainID {0} exists for givenN ID FOR GIVEN CClientCode {1}LIENT CODE137NO PROFILES AREProfile may not exist or Profile History/AuditFOUND AND AUDITInformation may not be found for ProfileDOES NOT EXIST140DATE OF BIRTH ISREQUIRED FOR LAP Date of Birth is required when Lap Infant is selectedINFANTMissing minimal data141DATE OF BIRTH ISLap Infant is selected but Date of Birth is notNOT MATCHING INmatching InfantFANTIncorrect data142DATE OF BIRTH ISVALIDATOR RULE: DateofBirth is required whenREQUIRED FOR SECIsSubjectToSecureFlightRule is selectedURE FLIGHT RULEMissing minimal data143SUR NAME IS REQSurName is required when Is Subject To SecureUIRED FOR SECUREFlight Rule is selectedFLIGHT RULEMissing minimal data144GIVEN NAME IS RE Given Name is required when Is Subject To SecureQUIRED FOR SECU Flight Rule is selectedMissing minimal dataSabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.19

RE FLIGHT RULE145GENDER CODE IS RVALIDATOR RULE: GenderCode is required whenEQUIRED FOR SECIsSubjectToSecureFlightRule is selectedURE FLIGHT RULE146READ PROFILES IS Sabre OTA ProfileReadRQ/Profiles is not supportedNOT SUPPORTEDby SABRE PROFILES147NON EXISTENT ASSNo such associated filters existOCIATED FILTER149NON EXISTENT ASSNo such associated profiles existOCIATED PROFILE150INVALID SECURITYInvalid Security Question code suppliedQUESTION CODE151ASTERISK UNIQUE IInvalid Unique ID: UniqueID has to be equal to *D REQUIRED161DUPLICATE PROFILE Profile with the same LoginId or UniqueId alreadyCREDENTIALSexistsDuplicate data exists162INVALID AIRPORT CInvalid AirportCode: {0}ODEData is not inaccordance withexpected values set bycontrol tabledata/dictionary163INVALID PSYCHOGR Invalid ValueCode '{0}' in PsychographicData and/orAPHIC CODECategoryCode '{1}' in PsychographicCategory164INVALID OPERATION STATUS CODE166INVALID CLIENT CODE OR CLIENT CON Invalid client code '{0}' or client context code '{1}'TEXT CODE167INVALID TRAVEL AGENCY TYPE CODE168INVALID DATA SOUInvalid data source: {0}RCEMissing minimal dataInvalid operation status: {0}Invalid Travel Agency Type Code: {0}Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.Data is not inaccordance with20

expected values set bycontrol tabledata/dictionary (i.e, datasource does not exist inthe dictionary)169INVALID PROFILE TInvalid profile type code: {0}YPE CODE170INVALID MARITALSTATUS CODE171INVALID CURRENCYInvalid currency fee code: {0}CODE172INVALID STATE CODE173INVALID DUP CHECK MATCH LEVEL C Invalid dup check match level code: {0}ODE174INVALID GENDER CInvalid Gender code specified: {0}ODE175INVALID GROUNDTRANSPORTATIONPREF176INVALID DOCUMENInvalid document type: {0}T TYPE177INVALID COUNTRYInvalid Country of residence: {0}OF RESIDENCEData error in the countrysection of XML178INVALID CITIZEN COUNTRY CODEData error in thecustomer data,CitizenCountryCodesection of XML179INVALID COUNTRYInvalid Country code: {0}CODE180INVALID CONTACT Invalid Contact location type code: {0}LOCATION TYPE COInvalid marital status code: {0}Invalid state/province code: {0}Invalid GroundTransportationPref dataInvalid Citizen country code: {0}Sabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.Data is not inaccordance with21

expected values set bycontrol tabledata/dictionaryDE181INVALID EMAIL USAGE CODEInvalid email usage code: {0}182INVALID EMAIL FORMAT CODEInvalid email format code: {0}183INVALID PURPOSEInvalid purpose code: {0}CODE184INVALID TRIP TYPECODE185INVALID REMARK CInvalid remark category code: {0}ATEGORY CODE186INVALID REMARK TInvalid remark type code: {0}YPE CODE187INVALID PREFERRED DEVICE DELIVERY Invalid preferred device delivery capability code: {0}CAPABILITY CODEInvalid trip type code: {0}188INVALID CAMPAIGNInvalid Campaign type code: {0}TYPE CODE189INVALID MEAL SERInvalid meal service type code: {0}VICE TYPE CODE190INVALID PAYMENTINSTRUMENT TYPE Invalid payment instrument type code: {0}CODE191INVALID MEASUREInvalid measure type code: {0}TYPE CODESabre Profiles Exception Messages VersionConfidential and Proprietary Sabre Inc.Data is not inaccordance withexpected values set bycontrol tabledata/dictionary.Data is not inaccordance withexpected values set bycontrol tabledata/dictionary22

192INVALID GDS CODE Invalid GDS code: {0}193INVALID VICINITY CInvalid vicinity code: {0}ODE194INVALID SSR CODEInvalid SSR code: {0}195INVALID TAX TYPEInvalid tax type code: {0}CODE196INVALID CUSTOM FIELD CODE IN CUSInvalid CustomFieldCode: {0} in CustomDefinedDataTOM DEFINED DATA197INVALID SCORE TYPE CODEInvalid ScoreTypeCode: {0}198INVALID DEFAULTBUSINESS TRAVELER TYPE CODEInvalid default bu

Sabre Web Services Errors Sabre Web Services Errors occur within the Sabre Web Services infrastructure. They are caused by fault messages from the web client or problems with the Sabre Profile Web Services connectivity. The infrastructure detects and generates these errors and returns them as SOAP faults, with or without ebXML headers.

Related Documents:

Sabre Airline Solutions, the Sabre Airline Solutions logo, Sabre Holdings, the Sabre Holdings logo, Sabre Travel Network, the Sabre Travel Network logo, AirCentre, AirCommerce, AirVision, ASx, MyFares, Qik, Sabre, SabreSonic, Service360 and Virtually There are trademarks and/or service marks of an affiliate of Sabre Holdings Corp.

If the user ID uses the Sabre global distribution system (Sabre system), it also uses Sabre sessions (remember that Sabre sessions are synonymous with TAs). When a client creates a Sabre APIs connection, a Sabre session is allocated simultaneously by the infrastructure for this type of user ID. Most user IDs fall into this category.

Guide to Accessing and Consuming SOAP-Based Services, v1.42 Page 9 Sabre Confidential SOAP-Based Sabre APIs Resources The following resources are all available via the Sabre Dev Studio, located at . SOAP-Based Sabre APIs Documentation Each Web service has an artifact on the Sabre Dev Studio. Each artifact contains: A request design document

Sabre Airline Solutions 3150 Sabre Drive Southlake, Texas 76092 USA Please contact our nearest regional office for more information: Asia / Pacific Tel: 65 6215 9500 Email: contact.apac@sabre.com Europe, Middle East, Africa Tel: 44 208 538 8539 Email: emea.contact@sabre.com The Americas Tel: 1 682 605 6750 Email: contact.americas@sabre.com

Min Longitude Error: -67.0877 meters Min Altitude Error: -108.8807 meters Mean Latitude Error: -0.0172 meters Mean Longitude Error: 0.0028 meters Mean Altitude Error: 0.0066 meters StdDevLatitude Error: 12.8611 meters StdDevLongitude Error: 10.2665 meters StdDevAltitude Error: 13.6646 meters Max Latitude Error: 11.7612 metersAuthor: Rafael Apaza, Michael Marsden

Sabre Schedule Change Web Service User Guide 6 Confidential and Proprietary Sabre Travel Network 1 Introduction 1.1 Overview A new Web service has been developed to deliver the functionality of the Sabre Schedule Change product. This Web service provides a quick and easy way for Sabre users to perform an even exchange transaction after processing a planned airline schedule change.

Rohn 25G Guyed Tower 44 Rohn 45G Guyed Tower 46 Rohn 55G Guyed Tower 48 Rohn SSV Towers 49 Sabre 1200 TLWD Guyed Tower 50 Sabre 1800 TLWD Guyed Tower 52 Sabre 1800 SRWD Guyed Tower 54 Sabre Series UL Self-Supporting Tower 55 Sabre Series VL Self-Supporting Tower 55 Lightweight Towe

Investigating Chemistry through Inquiry 11 - 1 S PRELIMINARY ACTIVITY FOR . Beer’s Law Investigations . Guided Inquiry Version . The primary objective of this Preliminary Activity is to determine the concentration of an unknown copper (II) sulfate solution. You will use a Colorimeter (a side view is shown in Figure 1). In this device, red light from the LED light source will pass through the .