SlideShare a Scribd company logo
1 of 29
1© 2014 SAP AG or an SAP affiliate company. All rights reserved.
SAP HANA SPS 11 - What’s New?
Search, Text Analysis and Text Mining
SAP HANA Product Management December, 2015
(Delta from SPS 10 to SPS 11)
Search
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 3Public
Table
Search Models
In a search model you define the structure of your “search object”
and how it is exposed to an application
 Tables and joins
 Columns
– Defaults for search
– Weights for ranking
– Fuzziness
– Defaults for facets
Table
Model
Access
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 4Public
*any* View
search annotations
Search Models and Data Access
Table
Table
Model
Access
Table
Table
OData SQL
CDS View
w/ search annotations
Table
Table
OData SQL
*any* View
search annotations
JSON JSON JSON
CALL ESH_CONFIG(configuration)
Built-in procedure to add search annotations
(request/response, facets, UI areas etc.) to views
CALL ESH_SEARCH(query,?)
Built-in procedure to search on multiple search
models with an “OData” query and a “JSON”
response
Fiori
SAP HANA SPS10 SAP HANA SPS11
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 5Public
ESH_CONFIG and ESH_SEARCH
SAP HANA SPS11 supports adding “search annotations” to existing views.
Search annotations are added in a CDS-like format, using the built-in procedure ESH_CONFIG.
ESH_SEARCH is the new search API
• Federated search across multiple search models in a single call
• Based on OData v4, response is JSON
• Search specific extensions, e.g. Search.score(), Search.search()
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 6Public
Search Model Example
CALL ESH_CONFIG('[{
"uri": "~/$metadata/EntitySets", "method": "PUT",
"content":{
"Fullname": "DMM264/V_DOCUMENTS",
"EntityType": {
"@Search.searchable": true,
"@EnterpriseSearch.enabled": true,
"Properties": [
{"Name": "ID", "@Search.defaultSearchElement": true, "@EnterpriseSearch.key": true, "@EnterpriseSearch.presentationMode": [ "TITLE" ]},
{"Name": "AUTHOR", "@EnterpriseSearch.usageMode": [ "AUTO_FACET" ],"@EnterpriseSearch.presentationMode": [ "SUMMARY" ]},
{"Name": "CATEGORY", "@EnterpriseSearch.usageMode": [ "AUTO_FACET" ],"@EnterpriseSearch.presentationMode": [ "SUMMARY" ]},
{"Name": "TITLE", "@Search.defaultSearchElement": true, "@EnterpriseSearch.highlighted.enabled": true, "@Search.ranking":
"HIGH","@EnterpriseSearch.presentationMode": [ "TITLE" ]},
{"Name": "CONTENT", "@Search.defaultSearchElement": true, "@EnterpriseSearch.snippets.enabled": true,
@Search.fuzzinessThreshold": 0.9, "@Search.ranking": "MEDIUM","@EnterpriseSearch.presentationMode": [ "DETAIL" ]}
]
}
}
}]
',?);
existing view
expose as facet
search in this column relevance ranking
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 7Public
Data Access Example
CALL ESH_SEARCH('[
"/$all?facets=all&$filter=Search.search(
query=''scope:V_DOCUMENTS merkel'')&$top=10"
]', ?);
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 8Public
Search Response Example
1st result item
2nd result item
1st facet
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 9Public
How to find SAP HANA documentation on this topic?
SAP HANA Advanced Data Processing
 What’s New in the SAP HANA Advanced Data
Processing (Release Notes)
 Development
– File Loader Guide for SAP HANA
– SAP HANA Search Developer Guide
 References
– SAP HANA INA Search JavaScript
• In addition to this learning material, you can find SAP HANA documentation on the
SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp.
• The knowledge center is structured according to the product lifecycle: installation, security, administration,
development.
Text Analysis
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 11Public
Agenda – Text Analysis
New or Improved Features
 Grammatical Role Analysis
 Text Analysis XS API – Document Metadata
 Dictionaries – Case Sensitivity
 Language Column – SAP Language Codes
 Tolerant Stemming: Dutch, English, German, Italian
 Linguistic Analysis: Hungarian and Romanian
 Core Extraction: Korean
 Voice of Customer: English and German
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 12Public
New Grammatical Role Analysis (1/2)
Optional analyzer for English that identifies syntactic relationships between elements of a sentence in
the form of subject–verb–object expressions, commonly known as ‘triples’.
The [SUBJECT]big brown cat[/SUBJECT] on the red couch was [VERB]eating[/VERB] a
[DIRECTOBJECT]dead mouse[/DIRECTOBJECT].
The following grammatical roles describe arguments of verbs that are supported:
• Subject person, place, thing, or idea that is doing or being something: Oracle bought Responsys.
• DirectObject recipient of the action: Oracle bought Responsys.
• IndirectObject affected by the action but not primary object: Oracle offered Responsys an improved contract.
• OtherObject often prepositional object: They talked about the contract.
• Predicate object of the verb to be: This is a revised version.
An additional grammatical role supported, which does not describe a function with respect to a verb:
• PredicateSubject subject of a predicative expression: The contract is new.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 13Public
New Grammatical Role Analysis (2/2)
Input:
Oracle was rumored to buy marketing-software maker Responsys Inc. for $1.5 billion.
Output:
TA_RULE TA_COUNTER TA_TOKEN TA_TYPE TA_PARENT TA_OFFSET
Entity Extraction 1 Oracle ORGANIZATION/COMMERCIAL ? 0
Entity Extraction 2 marketing-software maker NOUN_GROUP ? 26
Entity Extraction 3 Responsys Inc. ORGANIZATION/COMMERCIAL ? 51
Entity Extraction 4 $1.5 billion CURRENCY ? 70
Grammatical Role 5 Oracle Subject 7 0
Grammatical Role 6 Oracle Subject 8 0
Grammatical Role 7 rumored Root/MainVerb/Passive ? 11
Grammatical Role 8 buy MainVerb/Active ? 22
Grammatical Role 9 marketing-software maker Responsys Inc. DirectObject 8 26
Grammatical Role 10 $1.5 billion OtherObject/for 8 70
Notes:
• Core extraction is included in the configuration (1 - 4)
• Each grammatical role is either the governor (verb) or dependent (verb argument)
• TA_TYPE holds the details about its grammatical role
• TA_PARENT holds the TA_COUNTER value of its corresponding governor
• It is possible for a single dependent to be the argument (5 and 6) of two different verbs
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 14Public
Improved Text Analysis XS API – Document Metadata
For on-demand processing, text analysis output can be accessed via the SAP HANA Extended
Application Services (XS) API:
• Alternative to persisting output data to the $TA table
• Bypasses creating the full-text index
Now the following metadata properties for documents can be optionally included:
• Author
• Date
• Date Created
• Date Modified
• Description
• Keyword
• Language
• Subject
• Title
• Version
• FromEmailAddress
• FromName
• ToEmailAddress
• ToName
• CcEmailAddress
• CcName
• BccEmailAddress
• BccName
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 15Public
Improved Dictionaries – Case Sensitivity
In the context of extraction,
dictionaries are user-defined
repositories of entities.
Dictionaries are used for customized information about the
entities your application must find.
Dictionaries can be used to store name variations in a structured
way that is accessible through the extraction process.
Dictionary XML syntax now includes the option:
<dictionary xmlns=“http://www.sap.com/ta/4.0” case-sensitive=“true”>
: :
</dictionary>
For example, adding the attribute will ensure the dictionary entry
WHO will match WHO and not who or Who.
The default behavior is case-insensitive.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 16Public
Improved Language Column – SAP Language Codes
You can specify the input language for each row.
Use LANGUAGE COLUMN to bypass automatic language detection:
 Specify ISO 639 language code or…
 SAP language codes can now be optionally utilized
 English = E, French = F, German = D, etc.
This option allows configuring full-text search over existing SAP business applications without
modifying the underlying database tables.
CREATE FULLTEXT INDEX PRODUCT_REVIEWS_IDX ON PRODUCT_REVIEWS(CONTENT) FAST PREPROCESS OFF
LANGUAGE COLUMN LANGUAGE;
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 17Public
Improved Stemming – Dutch, English, German, Italian
Stemming identifies the base form referenced in a dictionary.
Tolerant stemming is introduced for Dutch, English, German and Italian. This default behavior allows
for handling non-standard spellings to better maximize recall.
For example in English, the stemmer handles spelling variation found in American and British English;
does not require correct capitalization and accentuation and allows required hyphens to be optional.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 18Public
Improved Language Support for Hungarian and Romanian
Full linguistic analysis support by adding Part-of-
Speech (POS) tagging and Noun Group (concept)
extraction for Hungarian and Romanian.
Language
LINGANALYSIS_BASIC
LINGANALYSIS_STEMS
LINGANALYSIS_FULL
Arabic  
Catalan  
Chinese (Simplified)  
Chinese (Traditional)  
Croatian  
Czech  
Danish  
Dutch  
English  
Farsi  
French  
German  
Greek 
Hebrew  
Hungarian   NEW
Indonesian  
Italian  
Japanese  
Korean  
Norwegian (Bokmal)  
Norwegian (Nynorsk)  
Polish  
Portuguese  
Romanian   NEW
Russian  
Serbian  
Slovak  
Slovenian  
Spanish  
Swedish  
Thai  
Turkish  
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 19Public
TITLE President
PERSON Barak Obama
LOCALITY Cambridge
REGION@MINOR Napa County
REGION@MAJOR Connecticut
COUNTRY Brazil
CONTINENT South America
GEO_FEATURE Mount Fuji
GEO_AREA Scandinavia
FACILITY Logan International Airport
LOCALITY New Delhi
ORGANIZATION@COMMERCIAL AT&T
ORGANIZATION@EDUCATIONAL University of Washington
ORGANIZATION@OTHER FBI
SOCIAL_MEDIA@TWITTER_ID @SAP
SOCIAL_MEDIA@TWITTER_TOPIC #HANA
DATE 2/14/2011
DAY Monday
MONTH June
YEAR 2011
PHONE 617-677-2030
URI@EMAIL john.smith@sap.com
URI@URL http://sap.com
Improved Core Extraction for Korean
Higher precision and recall on existing predefined core extractions.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 20Public
Improved Voice of Customer – English and German
Set of rules to extract sentiments expressed about a product or a service:
I [love] [my new phone]!  Strong positive sentiment about my new phone
He did [not like] [the book].  Weak negative sentiment about the book
More granular than competing systems because it can link sentiments with topics:
[love my new phone] = Sentiment
‘love’ = StrongPositiveSentiment
‘my new phone’ = Topic
Determiners (above strikethroughs) are now not included with the topic classifications for English and German.
This is a change to the previous behavior as it simplifies topic aggregation.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 21Public
How to find SAP HANA documentation on this topic?
SAP HANA Advanced Data Processing
 What’s New in the SAP HANA Advanced Data
Processing (Release Notes)
 Development
– File Loader Guide for SAP HANA
– SAP HANA Search Developer Guide
– SAP HANA Text Analysis Developer Guide
 References
– SAP HANA Text Analysis Extraction Customization Guide
– SAP HANA Text Analysis Language Reference Guide
– SAP HANA Text Analysis XS JavaScript API
• In addition to this learning material, you can find SAP HANA documentation on the
SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp.
• The knowledge center is structured according to the product lifecycle: installation, security, administration,
development.
Text Mining
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 23Public
Agenda – Text Mining
New or Improved Features
 Language Support
 Automatic Stop Words
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 24Public
Text Mining Recap
Text mining provides statistical functions that
can compare documents by examining the
terms used within them.
The term-document matrix (a.k.a. text mining
index) is an optional data structure that is
optimized through the results of text
analysis.
Text mining is bound to the full-text indexing
and text analysis process.
Full-textindex
Text
analysis
results
table
Full-text
indexing
with TA
and TM
Term-document
matrix
TM config.
Insert
ID TITLE
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 25Public
New Language Support
Text mining is now natively integrated with all 32 languages supported by text analysis.
It leverages the available text preprocessing steps:
 Tokenization
 Stemming
 Part-of-Speech tagging
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 26Public
Improved Stop Word Customization
Stop words are lists of literal terms to ignore in order to focus
on the important content.
Text mining automatically filters terms to include only nouns
based on their part-of-speech tags for 31 languages.
Optionally, users can manually include additional stop words
in the configuration properties.
Language Automatic Stop Words
Arabic 
Catalan 
Chinese (Simplified) 
Chinese (Traditional) 
Croatian 
Czech 
Danish 
Dutch 
English 
Farsi 
French 
German 
Greek
Hebrew 
Hungarian 
Indonesian 
Italian 
Japanese 
Korean 
Norwegian (Bokmal) 
Norwegian (Nynorsk) 
Polish 
Portuguese 
Romanian 
Russian 
Serbian 
Slovak 
Slovenian 
Spanish 
Swedish 
Thai 
Turkish 
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 27Public
How to find SAP HANA documentation on this topic?
SAP HANA Advanced Data Processing
 What’s New in the SAP HANA Advanced Data
Processing (Release Notes)
 Development
– File Loader Guide for SAP HANA
– SAP HANA Search Developer Guide
– SAP HANA Text Mining Developer Guide
 References
– SAP HANA Text Mining XS JavaScript API
– SQL Reference for Options
• In addition to this learning material, you can find SAP HANA documentation on the
SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp.
• The knowledge center is structured according to the product lifecycle: installation, security, administration,
development.
© 2015 SAP SE or an SAP affiliate company. All rights reserved. 28Public
Disclaimer
This presentation outlines our general product direction and should not be relied on in making
a purchase decision. This presentation is not subject to your license agreement or any other
agreement with SAP.
SAP has no obligation to pursue any course of business outlined in this presentation or to
develop or release any functionality mentioned in this presentation. This presentation and
SAP’s strategy and possible future developments are subject to change and may be changed
by SAP at any time for any reason without notice.
This document is provided without a warranty of any kind, either express or implied, including
but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or
non-infringement. SAP assumes no responsibility for errors or omissions in this document,
except if such damages were caused by SAP intentionally or grossly negligent.
© 2015 SAP SE or an SAP affiliate company. All rights reserved.
Thank you
Contact information
Anthony Waite
SAP HANA Product Management
AskSAPHANA@sap.com

More Related Content

What's hot

What's New in SAP HANA View Modeling
What's New in SAP HANA View ModelingWhat's New in SAP HANA View Modeling
What's New in SAP HANA View ModelingSAP Technology
 
SAP HANA SPS09 - SAP HANA Core & SQL
SAP HANA SPS09 - SAP HANA Core & SQLSAP HANA SPS09 - SAP HANA Core & SQL
SAP HANA SPS09 - SAP HANA Core & SQLSAP Technology
 
What's new in SAP HANA SPS 11 SQL/SQLScript
What's new in SAP HANA SPS 11 SQL/SQLScriptWhat's new in SAP HANA SPS 11 SQL/SQLScript
What's new in SAP HANA SPS 11 SQL/SQLScriptSAP Technology
 
What's New in SPS11 Overview
What's New in SPS11 OverviewWhat's New in SPS11 Overview
What's New in SPS11 OverviewSAP Technology
 
SAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA ModelingSAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA ModelingSAP Technology
 
What's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data QualityWhat's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data QualitySAP Technology
 
SAP HANA SPS10- Predictive Analysis Library and Application Function Modeler
SAP HANA SPS10- Predictive Analysis Library and Application Function ModelerSAP HANA SPS10- Predictive Analysis Library and Application Function Modeler
SAP HANA SPS10- Predictive Analysis Library and Application Function ModelerSAP Technology
 
SAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP Technology
 
SAP HANA SPS10- SAP HANA Modeling
SAP HANA SPS10- SAP HANA ModelingSAP HANA SPS10- SAP HANA Modeling
SAP HANA SPS10- SAP HANA ModelingSAP Technology
 
SAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic TieringSAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic TieringSAP Technology
 
What's new on SAP HANA Smart Data Access
What's new on SAP HANA Smart Data AccessWhat's new on SAP HANA Smart Data Access
What's new on SAP HANA Smart Data AccessSAP Technology
 
What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11SAP Technology
 
SAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware PlatformsSAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware PlatformsSAP Technology
 
SAP HANA SPS09 - XS Programming Model
SAP HANA SPS09 - XS Programming ModelSAP HANA SPS09 - XS Programming Model
SAP HANA SPS09 - XS Programming ModelSAP Technology
 
What's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementWhat's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementSAP Technology
 
What's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringWhat's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringSAP Technology
 
Spark Usage in Enterprise Business Operations
Spark Usage in Enterprise Business OperationsSpark Usage in Enterprise Business Operations
Spark Usage in Enterprise Business OperationsSAP Technology
 
SAP HANA SPS10- Series Data/ TimeSeries
SAP HANA SPS10- Series Data/ TimeSeriesSAP HANA SPS10- Series Data/ TimeSeries
SAP HANA SPS10- Series Data/ TimeSeriesSAP Technology
 
SAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control CenterSAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control CenterSAP Technology
 
SAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP Technology
 

What's hot (20)

What's New in SAP HANA View Modeling
What's New in SAP HANA View ModelingWhat's New in SAP HANA View Modeling
What's New in SAP HANA View Modeling
 
SAP HANA SPS09 - SAP HANA Core & SQL
SAP HANA SPS09 - SAP HANA Core & SQLSAP HANA SPS09 - SAP HANA Core & SQL
SAP HANA SPS09 - SAP HANA Core & SQL
 
What's new in SAP HANA SPS 11 SQL/SQLScript
What's new in SAP HANA SPS 11 SQL/SQLScriptWhat's new in SAP HANA SPS 11 SQL/SQLScript
What's new in SAP HANA SPS 11 SQL/SQLScript
 
What's New in SPS11 Overview
What's New in SPS11 OverviewWhat's New in SPS11 Overview
What's New in SPS11 Overview
 
SAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA ModelingSAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA Modeling
 
What's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data QualityWhat's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data Quality
 
SAP HANA SPS10- Predictive Analysis Library and Application Function Modeler
SAP HANA SPS10- Predictive Analysis Library and Application Function ModelerSAP HANA SPS10- Predictive Analysis Library and Application Function Modeler
SAP HANA SPS10- Predictive Analysis Library and Application Function Modeler
 
SAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data Sync
 
SAP HANA SPS10- SAP HANA Modeling
SAP HANA SPS10- SAP HANA ModelingSAP HANA SPS10- SAP HANA Modeling
SAP HANA SPS10- SAP HANA Modeling
 
SAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic TieringSAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic Tiering
 
What's new on SAP HANA Smart Data Access
What's new on SAP HANA Smart Data AccessWhat's new on SAP HANA Smart Data Access
What's new on SAP HANA Smart Data Access
 
What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11
 
SAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware PlatformsSAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware Platforms
 
SAP HANA SPS09 - XS Programming Model
SAP HANA SPS09 - XS Programming ModelSAP HANA SPS09 - XS Programming Model
SAP HANA SPS09 - XS Programming Model
 
What's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementWhat's new on SAP HANA Workload Management
What's new on SAP HANA Workload Management
 
What's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringWhat's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic Tiering
 
Spark Usage in Enterprise Business Operations
Spark Usage in Enterprise Business OperationsSpark Usage in Enterprise Business Operations
Spark Usage in Enterprise Business Operations
 
SAP HANA SPS10- Series Data/ TimeSeries
SAP HANA SPS10- Series Data/ TimeSeriesSAP HANA SPS10- Series Data/ TimeSeries
SAP HANA SPS10- Series Data/ TimeSeries
 
SAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control CenterSAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control Center
 
SAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration Monitoring
 

Viewers also liked

SAP HANA SPS09 - Text Analysis
SAP HANA SPS09 - Text AnalysisSAP HANA SPS09 - Text Analysis
SAP HANA SPS09 - Text AnalysisSAP Technology
 
SAP HANA SPS09 - Full-text Search
SAP HANA SPS09 - Full-text SearchSAP HANA SPS09 - Full-text Search
SAP HANA SPS09 - Full-text SearchSAP Technology
 
SAP HANA Native Application Development
SAP HANA Native Application DevelopmentSAP HANA Native Application Development
SAP HANA Native Application DevelopmentSAP Technology
 
Why Companies Need New Approaches for Faster Time-to-Insight
Why Companies Need New Approaches for Faster Time-to-Insight Why Companies Need New Approaches for Faster Time-to-Insight
Why Companies Need New Approaches for Faster Time-to-Insight SAP Asia Pacific
 
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANAFive Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANASAP Technology
 
HANA SPS07 Text Analysis
HANA SPS07 Text AnalysisHANA SPS07 Text Analysis
HANA SPS07 Text AnalysisSAP Technology
 
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform SAP Inside Track Munich 2016 - SAP HANA Cloud Platform
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform Christian Lechner
 
How a real time platform supports the modern utility
How a real time platform supports the modern utilityHow a real time platform supports the modern utility
How a real time platform supports the modern utilityrobgirvan
 
What's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 SecurityWhat's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 SecuritySAP Technology
 
SAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP Technology
 
SQLAnywhere 16.0 and Odata
SQLAnywhere 16.0 and OdataSQLAnywhere 16.0 and Odata
SQLAnywhere 16.0 and OdataSAP Technology
 
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)SAP Technology
 
SAP HANA SPS09 - Series Data
SAP HANA SPS09 - Series DataSAP HANA SPS09 - Series Data
SAP HANA SPS09 - Series DataSAP Technology
 

Viewers also liked (16)

Text Analysis with SAP HANA
Text Analysis with SAP HANAText Analysis with SAP HANA
Text Analysis with SAP HANA
 
SAP HANA SPS09 - Text Analysis
SAP HANA SPS09 - Text AnalysisSAP HANA SPS09 - Text Analysis
SAP HANA SPS09 - Text Analysis
 
Text Analysis with SAP HANA
Text Analysis with SAP HANAText Analysis with SAP HANA
Text Analysis with SAP HANA
 
SAP HANA SPS09 - Full-text Search
SAP HANA SPS09 - Full-text SearchSAP HANA SPS09 - Full-text Search
SAP HANA SPS09 - Full-text Search
 
SAP HANA Native Application Development
SAP HANA Native Application DevelopmentSAP HANA Native Application Development
SAP HANA Native Application Development
 
Why Companies Need New Approaches for Faster Time-to-Insight
Why Companies Need New Approaches for Faster Time-to-Insight Why Companies Need New Approaches for Faster Time-to-Insight
Why Companies Need New Approaches for Faster Time-to-Insight
 
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANAFive Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
 
HANA SPS07 Text Analysis
HANA SPS07 Text AnalysisHANA SPS07 Text Analysis
HANA SPS07 Text Analysis
 
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform SAP Inside Track Munich 2016 - SAP HANA Cloud Platform
SAP Inside Track Munich 2016 - SAP HANA Cloud Platform
 
How a real time platform supports the modern utility
How a real time platform supports the modern utilityHow a real time platform supports the modern utility
How a real time platform supports the modern utility
 
What's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 SecurityWhat's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 Security
 
SAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/Recovery
 
SAP HANA Timeline
SAP HANA TimelineSAP HANA Timeline
SAP HANA Timeline
 
SQLAnywhere 16.0 and Odata
SQLAnywhere 16.0 and OdataSQLAnywhere 16.0 and Odata
SQLAnywhere 16.0 and Odata
 
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
 
SAP HANA SPS09 - Series Data
SAP HANA SPS09 - Series DataSAP HANA SPS09 - Series Data
SAP HANA SPS09 - Series Data
 

Similar to What's new for Text in SAP HANA SPS 11

Industrial strength - Natural Language Processing
Industrial strength - Natural Language ProcessingIndustrial strength - Natural Language Processing
Industrial strength - Natural Language ProcessingJeffrey Williams
 
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and Predictive
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and PredictiveDmm117 – SAP HANA Processing Services Text Spatial Graph Series and Predictive
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and PredictiveLuc Vanrobays
 
SAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information ManagementSAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information ManagementSAP Technology
 
Rama prasad owk etl hadoop_developer
Rama prasad owk etl hadoop_developerRama prasad owk etl hadoop_developer
Rama prasad owk etl hadoop_developerramaprasad owk
 
Sustainability Investment Research Using Cognitive Analytics
Sustainability Investment Research Using Cognitive AnalyticsSustainability Investment Research Using Cognitive Analytics
Sustainability Investment Research Using Cognitive AnalyticsCambridge Semantics
 
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation James Sinclair
 
DITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneDITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneAmit Siddhartha
 
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQL
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQLBreaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQL
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQLconfluent
 
Tableau and hadoop
Tableau and hadoopTableau and hadoop
Tableau and hadoopCraig Jordan
 
HANA SPS07 App Function Library
HANA SPS07 App Function LibraryHANA SPS07 App Function Library
HANA SPS07 App Function LibrarySAP Technology
 
Using metadata repositories with search
Using metadata repositories with searchUsing metadata repositories with search
Using metadata repositories with searchJean Graef
 
Data sevice architecture
Data sevice architectureData sevice architecture
Data sevice architecturePankaj Sharma
 
Our Compliance Plan Templates and Tracking Worksheets
Our Compliance Plan Templates and Tracking WorksheetsOur Compliance Plan Templates and Tracking Worksheets
Our Compliance Plan Templates and Tracking WorksheetsJohn E Griggs, Ph.D.
 

Similar to What's new for Text in SAP HANA SPS 11 (20)

Industrial strength - Natural Language Processing
Industrial strength - Natural Language ProcessingIndustrial strength - Natural Language Processing
Industrial strength - Natural Language Processing
 
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and Predictive
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and PredictiveDmm117 – SAP HANA Processing Services Text Spatial Graph Series and Predictive
Dmm117 – SAP HANA Processing Services Text Spatial Graph Series and Predictive
 
SAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information ManagementSAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information Management
 
What is apache_pig
What is apache_pigWhat is apache_pig
What is apache_pig
 
What is apache_pig
What is apache_pigWhat is apache_pig
What is apache_pig
 
Rama prasad owk etl hadoop_developer
Rama prasad owk etl hadoop_developerRama prasad owk etl hadoop_developer
Rama prasad owk etl hadoop_developer
 
What is apache pig
What is apache pigWhat is apache pig
What is apache pig
 
Salesforce 11 yrs exp - Vinoth
Salesforce 11 yrs exp - VinothSalesforce 11 yrs exp - Vinoth
Salesforce 11 yrs exp - Vinoth
 
Sustainability Investment Research Using Cognitive Analytics
Sustainability Investment Research Using Cognitive AnalyticsSustainability Investment Research Using Cognitive Analytics
Sustainability Investment Research Using Cognitive Analytics
 
SAP BI 7.0 Info Providers
SAP BI 7.0 Info ProvidersSAP BI 7.0 Info Providers
SAP BI 7.0 Info Providers
 
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation
EnterpriseJungle For SuccessFactors - SuccessConnect L1 Overview Presentation
 
DITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneDITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at Pune
 
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQL
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQLBreaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQL
Breaking Down a SQL Monolith with Change Tracking, Kafka and KStreams/KSQL
 
Tableau and hadoop
Tableau and hadoopTableau and hadoop
Tableau and hadoop
 
HANA SPS07 App Function Library
HANA SPS07 App Function LibraryHANA SPS07 App Function Library
HANA SPS07 App Function Library
 
Using metadata repositories with search
Using metadata repositories with searchUsing metadata repositories with search
Using metadata repositories with search
 
HDP Next: Governance
HDP Next: GovernanceHDP Next: Governance
HDP Next: Governance
 
Bibo sap
Bibo sapBibo sap
Bibo sap
 
Data sevice architecture
Data sevice architectureData sevice architecture
Data sevice architecture
 
Our Compliance Plan Templates and Tracking Worksheets
Our Compliance Plan Templates and Tracking WorksheetsOur Compliance Plan Templates and Tracking Worksheets
Our Compliance Plan Templates and Tracking Worksheets
 

More from SAP Technology

SAP Integration Suite L1
SAP Integration Suite L1SAP Integration Suite L1
SAP Integration Suite L1SAP Technology
 
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...SAP Technology
 
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...SAP Technology
 
Extend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processesExtend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processesSAP Technology
 
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...SAP Technology
 
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology PlatformAccelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology PlatformSAP Technology
 
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...SAP Technology
 
Transform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANATransform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANASAP Technology
 
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Technology
 
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...SAP Technology
 
The IoT Imperative for Consumer Products
The IoT Imperative for Consumer ProductsThe IoT Imperative for Consumer Products
The IoT Imperative for Consumer ProductsSAP Technology
 
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...SAP Technology
 
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...SAP Technology
 
The IoT Imperative in Government and Healthcare
The IoT Imperative in Government and HealthcareThe IoT Imperative in Government and Healthcare
The IoT Imperative in Government and HealthcareSAP Technology
 
SAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital CoreSAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital CoreSAP Technology
 
SAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial DataSAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial DataSAP Technology
 
Spotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASESpotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASESAP Technology
 
SAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance FeaturesSAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance FeaturesSAP Technology
 
What's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle ManagementWhat's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle ManagementSAP Technology
 

More from SAP Technology (20)

SAP Integration Suite L1
SAP Integration Suite L1SAP Integration Suite L1
SAP Integration Suite L1
 
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
 
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
 
Extend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processesExtend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processes
 
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
 
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology PlatformAccelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
 
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
 
Transform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANATransform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANA
 
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
 
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
 
The IoT Imperative for Consumer Products
The IoT Imperative for Consumer ProductsThe IoT Imperative for Consumer Products
The IoT Imperative for Consumer Products
 
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
 
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
 
The IoT Imperative in Government and Healthcare
The IoT Imperative in Government and HealthcareThe IoT Imperative in Government and Healthcare
The IoT Imperative in Government and Healthcare
 
SAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital CoreSAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital Core
 
SAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial DataSAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial Data
 
Why SAP HANA?
Why SAP HANA?Why SAP HANA?
Why SAP HANA?
 
Spotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASESpotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASE
 
SAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance FeaturesSAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance Features
 
What's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle ManagementWhat's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle Management
 

Recently uploaded

Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...Suhani Kapoor
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Predicting Employee Churn: A Data-Driven Approach Project Presentation
Predicting Employee Churn: A Data-Driven Approach Project PresentationPredicting Employee Churn: A Data-Driven Approach Project Presentation
Predicting Employee Churn: A Data-Driven Approach Project PresentationBoston Institute of Analytics
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...shivangimorya083
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 

Recently uploaded (20)

Decoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in ActionDecoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in Action
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Predicting Employee Churn: A Data-Driven Approach Project Presentation
Predicting Employee Churn: A Data-Driven Approach Project PresentationPredicting Employee Churn: A Data-Driven Approach Project Presentation
Predicting Employee Churn: A Data-Driven Approach Project Presentation
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 

What's new for Text in SAP HANA SPS 11

  • 1. 1© 2014 SAP AG or an SAP affiliate company. All rights reserved. SAP HANA SPS 11 - What’s New? Search, Text Analysis and Text Mining SAP HANA Product Management December, 2015 (Delta from SPS 10 to SPS 11)
  • 3. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 3Public Table Search Models In a search model you define the structure of your “search object” and how it is exposed to an application  Tables and joins  Columns – Defaults for search – Weights for ranking – Fuzziness – Defaults for facets Table Model Access
  • 4. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 4Public *any* View search annotations Search Models and Data Access Table Table Model Access Table Table OData SQL CDS View w/ search annotations Table Table OData SQL *any* View search annotations JSON JSON JSON CALL ESH_CONFIG(configuration) Built-in procedure to add search annotations (request/response, facets, UI areas etc.) to views CALL ESH_SEARCH(query,?) Built-in procedure to search on multiple search models with an “OData” query and a “JSON” response Fiori SAP HANA SPS10 SAP HANA SPS11
  • 5. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 5Public ESH_CONFIG and ESH_SEARCH SAP HANA SPS11 supports adding “search annotations” to existing views. Search annotations are added in a CDS-like format, using the built-in procedure ESH_CONFIG. ESH_SEARCH is the new search API • Federated search across multiple search models in a single call • Based on OData v4, response is JSON • Search specific extensions, e.g. Search.score(), Search.search()
  • 6. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 6Public Search Model Example CALL ESH_CONFIG('[{ "uri": "~/$metadata/EntitySets", "method": "PUT", "content":{ "Fullname": "DMM264/V_DOCUMENTS", "EntityType": { "@Search.searchable": true, "@EnterpriseSearch.enabled": true, "Properties": [ {"Name": "ID", "@Search.defaultSearchElement": true, "@EnterpriseSearch.key": true, "@EnterpriseSearch.presentationMode": [ "TITLE" ]}, {"Name": "AUTHOR", "@EnterpriseSearch.usageMode": [ "AUTO_FACET" ],"@EnterpriseSearch.presentationMode": [ "SUMMARY" ]}, {"Name": "CATEGORY", "@EnterpriseSearch.usageMode": [ "AUTO_FACET" ],"@EnterpriseSearch.presentationMode": [ "SUMMARY" ]}, {"Name": "TITLE", "@Search.defaultSearchElement": true, "@EnterpriseSearch.highlighted.enabled": true, "@Search.ranking": "HIGH","@EnterpriseSearch.presentationMode": [ "TITLE" ]}, {"Name": "CONTENT", "@Search.defaultSearchElement": true, "@EnterpriseSearch.snippets.enabled": true, @Search.fuzzinessThreshold": 0.9, "@Search.ranking": "MEDIUM","@EnterpriseSearch.presentationMode": [ "DETAIL" ]} ] } } }] ',?); existing view expose as facet search in this column relevance ranking
  • 7. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 7Public Data Access Example CALL ESH_SEARCH('[ "/$all?facets=all&$filter=Search.search( query=''scope:V_DOCUMENTS merkel'')&$top=10" ]', ?);
  • 8. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 8Public Search Response Example 1st result item 2nd result item 1st facet
  • 9. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 9Public How to find SAP HANA documentation on this topic? SAP HANA Advanced Data Processing  What’s New in the SAP HANA Advanced Data Processing (Release Notes)  Development – File Loader Guide for SAP HANA – SAP HANA Search Developer Guide  References – SAP HANA INA Search JavaScript • In addition to this learning material, you can find SAP HANA documentation on the SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp. • The knowledge center is structured according to the product lifecycle: installation, security, administration, development.
  • 11. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 11Public Agenda – Text Analysis New or Improved Features  Grammatical Role Analysis  Text Analysis XS API – Document Metadata  Dictionaries – Case Sensitivity  Language Column – SAP Language Codes  Tolerant Stemming: Dutch, English, German, Italian  Linguistic Analysis: Hungarian and Romanian  Core Extraction: Korean  Voice of Customer: English and German
  • 12. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 12Public New Grammatical Role Analysis (1/2) Optional analyzer for English that identifies syntactic relationships between elements of a sentence in the form of subject–verb–object expressions, commonly known as ‘triples’. The [SUBJECT]big brown cat[/SUBJECT] on the red couch was [VERB]eating[/VERB] a [DIRECTOBJECT]dead mouse[/DIRECTOBJECT]. The following grammatical roles describe arguments of verbs that are supported: • Subject person, place, thing, or idea that is doing or being something: Oracle bought Responsys. • DirectObject recipient of the action: Oracle bought Responsys. • IndirectObject affected by the action but not primary object: Oracle offered Responsys an improved contract. • OtherObject often prepositional object: They talked about the contract. • Predicate object of the verb to be: This is a revised version. An additional grammatical role supported, which does not describe a function with respect to a verb: • PredicateSubject subject of a predicative expression: The contract is new.
  • 13. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 13Public New Grammatical Role Analysis (2/2) Input: Oracle was rumored to buy marketing-software maker Responsys Inc. for $1.5 billion. Output: TA_RULE TA_COUNTER TA_TOKEN TA_TYPE TA_PARENT TA_OFFSET Entity Extraction 1 Oracle ORGANIZATION/COMMERCIAL ? 0 Entity Extraction 2 marketing-software maker NOUN_GROUP ? 26 Entity Extraction 3 Responsys Inc. ORGANIZATION/COMMERCIAL ? 51 Entity Extraction 4 $1.5 billion CURRENCY ? 70 Grammatical Role 5 Oracle Subject 7 0 Grammatical Role 6 Oracle Subject 8 0 Grammatical Role 7 rumored Root/MainVerb/Passive ? 11 Grammatical Role 8 buy MainVerb/Active ? 22 Grammatical Role 9 marketing-software maker Responsys Inc. DirectObject 8 26 Grammatical Role 10 $1.5 billion OtherObject/for 8 70 Notes: • Core extraction is included in the configuration (1 - 4) • Each grammatical role is either the governor (verb) or dependent (verb argument) • TA_TYPE holds the details about its grammatical role • TA_PARENT holds the TA_COUNTER value of its corresponding governor • It is possible for a single dependent to be the argument (5 and 6) of two different verbs
  • 14. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 14Public Improved Text Analysis XS API – Document Metadata For on-demand processing, text analysis output can be accessed via the SAP HANA Extended Application Services (XS) API: • Alternative to persisting output data to the $TA table • Bypasses creating the full-text index Now the following metadata properties for documents can be optionally included: • Author • Date • Date Created • Date Modified • Description • Keyword • Language • Subject • Title • Version • FromEmailAddress • FromName • ToEmailAddress • ToName • CcEmailAddress • CcName • BccEmailAddress • BccName
  • 15. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 15Public Improved Dictionaries – Case Sensitivity In the context of extraction, dictionaries are user-defined repositories of entities. Dictionaries are used for customized information about the entities your application must find. Dictionaries can be used to store name variations in a structured way that is accessible through the extraction process. Dictionary XML syntax now includes the option: <dictionary xmlns=“http://www.sap.com/ta/4.0” case-sensitive=“true”> : : </dictionary> For example, adding the attribute will ensure the dictionary entry WHO will match WHO and not who or Who. The default behavior is case-insensitive.
  • 16. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 16Public Improved Language Column – SAP Language Codes You can specify the input language for each row. Use LANGUAGE COLUMN to bypass automatic language detection:  Specify ISO 639 language code or…  SAP language codes can now be optionally utilized  English = E, French = F, German = D, etc. This option allows configuring full-text search over existing SAP business applications without modifying the underlying database tables. CREATE FULLTEXT INDEX PRODUCT_REVIEWS_IDX ON PRODUCT_REVIEWS(CONTENT) FAST PREPROCESS OFF LANGUAGE COLUMN LANGUAGE;
  • 17. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 17Public Improved Stemming – Dutch, English, German, Italian Stemming identifies the base form referenced in a dictionary. Tolerant stemming is introduced for Dutch, English, German and Italian. This default behavior allows for handling non-standard spellings to better maximize recall. For example in English, the stemmer handles spelling variation found in American and British English; does not require correct capitalization and accentuation and allows required hyphens to be optional.
  • 18. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 18Public Improved Language Support for Hungarian and Romanian Full linguistic analysis support by adding Part-of- Speech (POS) tagging and Noun Group (concept) extraction for Hungarian and Romanian. Language LINGANALYSIS_BASIC LINGANALYSIS_STEMS LINGANALYSIS_FULL Arabic   Catalan   Chinese (Simplified)   Chinese (Traditional)   Croatian   Czech   Danish   Dutch   English   Farsi   French   German   Greek  Hebrew   Hungarian   NEW Indonesian   Italian   Japanese   Korean   Norwegian (Bokmal)   Norwegian (Nynorsk)   Polish   Portuguese   Romanian   NEW Russian   Serbian   Slovak   Slovenian   Spanish   Swedish   Thai   Turkish  
  • 19. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 19Public TITLE President PERSON Barak Obama LOCALITY Cambridge REGION@MINOR Napa County REGION@MAJOR Connecticut COUNTRY Brazil CONTINENT South America GEO_FEATURE Mount Fuji GEO_AREA Scandinavia FACILITY Logan International Airport LOCALITY New Delhi ORGANIZATION@COMMERCIAL AT&T ORGANIZATION@EDUCATIONAL University of Washington ORGANIZATION@OTHER FBI SOCIAL_MEDIA@TWITTER_ID @SAP SOCIAL_MEDIA@TWITTER_TOPIC #HANA DATE 2/14/2011 DAY Monday MONTH June YEAR 2011 PHONE 617-677-2030 URI@EMAIL john.smith@sap.com URI@URL http://sap.com Improved Core Extraction for Korean Higher precision and recall on existing predefined core extractions.
  • 20. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 20Public Improved Voice of Customer – English and German Set of rules to extract sentiments expressed about a product or a service: I [love] [my new phone]!  Strong positive sentiment about my new phone He did [not like] [the book].  Weak negative sentiment about the book More granular than competing systems because it can link sentiments with topics: [love my new phone] = Sentiment ‘love’ = StrongPositiveSentiment ‘my new phone’ = Topic Determiners (above strikethroughs) are now not included with the topic classifications for English and German. This is a change to the previous behavior as it simplifies topic aggregation.
  • 21. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 21Public How to find SAP HANA documentation on this topic? SAP HANA Advanced Data Processing  What’s New in the SAP HANA Advanced Data Processing (Release Notes)  Development – File Loader Guide for SAP HANA – SAP HANA Search Developer Guide – SAP HANA Text Analysis Developer Guide  References – SAP HANA Text Analysis Extraction Customization Guide – SAP HANA Text Analysis Language Reference Guide – SAP HANA Text Analysis XS JavaScript API • In addition to this learning material, you can find SAP HANA documentation on the SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp. • The knowledge center is structured according to the product lifecycle: installation, security, administration, development.
  • 23. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 23Public Agenda – Text Mining New or Improved Features  Language Support  Automatic Stop Words
  • 24. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 24Public Text Mining Recap Text mining provides statistical functions that can compare documents by examining the terms used within them. The term-document matrix (a.k.a. text mining index) is an optional data structure that is optimized through the results of text analysis. Text mining is bound to the full-text indexing and text analysis process. Full-textindex Text analysis results table Full-text indexing with TA and TM Term-document matrix TM config. Insert ID TITLE
  • 25. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 25Public New Language Support Text mining is now natively integrated with all 32 languages supported by text analysis. It leverages the available text preprocessing steps:  Tokenization  Stemming  Part-of-Speech tagging
  • 26. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 26Public Improved Stop Word Customization Stop words are lists of literal terms to ignore in order to focus on the important content. Text mining automatically filters terms to include only nouns based on their part-of-speech tags for 31 languages. Optionally, users can manually include additional stop words in the configuration properties. Language Automatic Stop Words Arabic  Catalan  Chinese (Simplified)  Chinese (Traditional)  Croatian  Czech  Danish  Dutch  English  Farsi  French  German  Greek Hebrew  Hungarian  Indonesian  Italian  Japanese  Korean  Norwegian (Bokmal)  Norwegian (Nynorsk)  Polish  Portuguese  Romanian  Russian  Serbian  Slovak  Slovenian  Spanish  Swedish  Thai  Turkish 
  • 27. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 27Public How to find SAP HANA documentation on this topic? SAP HANA Advanced Data Processing  What’s New in the SAP HANA Advanced Data Processing (Release Notes)  Development – File Loader Guide for SAP HANA – SAP HANA Search Developer Guide – SAP HANA Text Mining Developer Guide  References – SAP HANA Text Mining XS JavaScript API – SQL Reference for Options • In addition to this learning material, you can find SAP HANA documentation on the SAP Help Portal knowledge center at http://help.sap.com/hana_options_adp. • The knowledge center is structured according to the product lifecycle: installation, security, administration, development.
  • 28. © 2015 SAP SE or an SAP affiliate company. All rights reserved. 28Public Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your license agreement or any other agreement with SAP. SAP has no obligation to pursue any course of business outlined in this presentation or to develop or release any functionality mentioned in this presentation. This presentation and SAP’s strategy and possible future developments are subject to change and may be changed by SAP at any time for any reason without notice. This document is provided without a warranty of any kind, either express or implied, including but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. SAP assumes no responsibility for errors or omissions in this document, except if such damages were caused by SAP intentionally or grossly negligent.
  • 29. © 2015 SAP SE or an SAP affiliate company. All rights reserved. Thank you Contact information Anthony Waite SAP HANA Product Management AskSAPHANA@sap.com