A_Sitn2TypeText
Situation Type - Text
A_Sitn2TypeText is a Composite CDS View that provides data about "Situation Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_Language, R_Sitn2TypeText) and exposes 5 fields with key fields SitnTypeID, Language. It has 1 association to related views. It is exposed through 1 OData service (API_BUS_SITN_MSTRDATA_SRV_V4). Part of development package CA_SIT2_PUB_MD.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Language | _Language | inner |
| R_Sitn2TypeText | _TypeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Sitn2Type | _Type | $projection.SitnTypeID = _Type.SitnTypeID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SitnTypeID | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| OData.entityType.name | SituationTypeText_Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Situation Type - Text | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_BUS_SITN_MSTRDATA_SRV_V4 | API_BUS_SITN_MSTRDATA_SRV_V4 | V4 | C2 | C1 |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SitnTypeID | R_Sitn2TypeText | SitnTypeID | |
| KEY | Language | R_Sitn2TypeText | Language | |
| SitnTypeName | R_Sitn2TypeText | SitnDefName | ||
| SitnTypeDescription | R_Sitn2TypeText | SitnDefDescription | ||
| _Type | _Type |
@AccessControl.authorizationCheck: #MANDATORY
@ObjectModel:{
usageType:{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MIXED
},
semanticKey: [ 'SitnTypeID' ],
dataCategory: #TEXT,
representativeKey: 'SitnTypeID'
}
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@OData.entityType.name:'SituationTypeText_Type'
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Situation Type - Text'
define view entity A_Sitn2TypeText
as select from R_Sitn2TypeText as _TypeText
inner join I_Language as _Language on _TypeText.Language = _Language.Language
and _Language.LanguageISOCode <> '1Q'
and _Language.LanguageISOCode <> '2Q'
association [1..1] to A_Sitn2Type as _Type on $projection.SitnTypeID = _Type.SitnTypeID
{
key _TypeText.SitnTypeID,
@Semantics.language: true
key _TypeText.Language,
@Semantics.text:true
_TypeText.SitnDefName as SitnTypeName,
@Semantics.text:true
_TypeText.SitnDefDescription as SitnTypeDescription,
_Type
}
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