I_CndnContrTypeText
Condition Contract Type - Text
I_CndnContrTypeText is a Basic CDS View that provides data about "Condition Contract Type - Text" in SAP S/4HANA. It reads from 1 data source (R_CndnContrTypeText) and exposes 5 fields with key fields CndnContrType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_CndnContrTypeText | R_CndnContrTypeText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CndnContrType | _CndnContrType | $projection.CndnContrType = _CndnContrType.CndnContrType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWLFCOCOTYPETEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Condition Contract Type - Text | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CndnContrType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Search.searchable | true | view | |
| Analytics.internalName | #LOCAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CndnContrType | CndnContrType | ||
| KEY | Language | Language | ||
| CndnContrTypeDesc | CndnContrTypeDesc | |||
| _CndnContrType | _CndnContrType | |||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'IWLFCOCOTYPETEXT',
compiler.compareFilter: true,
preserveKey: true
}
@EndUserText.label: 'Condition Contract Type - Text'
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'CndnContrType',
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#SEARCHABLE_ENTITY ],
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
}
@ClientHandling: {
type: #INHERITED,
algorithm: #SESSION_VARIABLE
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Search.searchable: true
@Analytics: {
internalName: #LOCAL
}
@Metadata.ignorePropagatedAnnotations: true
define view I_CndnContrTypeText
as select from R_CndnContrTypeText
association [0..1] to I_CndnContrType as _CndnContrType on $projection.CndnContrType = _CndnContrType.CndnContrType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_CndnContrType'
@ObjectModel.text.element: ['CndnContrTypeDesc']
@Consumption: {
valueHelpDefinition: [{ entity: { name: 'I_CndnContrTypeStdVH', element: 'CndnContrType' } }]
}
key CndnContrType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
CndnContrTypeDesc,
/* Associations */
_CndnContrType,
_Language
}
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