I_HCMProcessNameText
HCM Process Name - Text
I_HCMProcessNameText is a Basic CDS View that provides data about "HCM Process Name - Text" in SAP S/4HANA. It reads from 1 data source (t5asrproct) and exposes 6 fields with key fields Language, HCMProcessNameCode. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t5asrproct | t5asrproct | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_HCMProcessName | _HCMProcessName | $projection.HCMProcessNameCode = _HCMProcessName.HCMProcessNameCode |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | HCM Process Name - Text | view | |
| AbapCatalog.sqlViewName | IHCMPROCNAMETEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | HCMProcessNameCode | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | language | ||
| KEY | HCMProcessNameCode | process | ||
| HCMProcessDescription | description | |||
| HCMProcessLongDesc | description_long | |||
| _Language | _Language | |||
| _HCMProcessName | _HCMProcessName |
@EndUserText.label: 'HCM Process Name - Text'
@AbapCatalog:{ sqlViewName: 'IHCMPROCNAMETEXT',
compiler.compareFilter: true,
buffering.status: #ACTIVE,
buffering.type: #FULL }
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { dataCategory: #TEXT,
representativeKey: 'HCMProcessNameCode',
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
usageType.serviceQuality: #A,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT }
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_HCMProcessNameText
as select from t5asrproct
association [0..1] to I_HCMProcessName as _HCMProcessName on $projection.HCMProcessNameCode = _HCMProcessName.HCMProcessNameCode
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key language as Language,
@ObjectModel.foreignKey.association: '_HCMProcessName'
key process as HCMProcessNameCode,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
description as HCMProcessDescription,
description_long as HCMProcessLongDesc,
_Language,
_HCMProcessName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T5ASRPROCT"
],
"ASSOCIATED":
[
"I_HCMPROCESSNAME",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA