A_Sitn2ObjStructureText
Situation Object Structure - Text
A_Sitn2ObjStructureText is a Composite CDS View that provides data about "Situation Object Structure - Text" in SAP S/4HANA. It reads from 2 data sources (I_Language, R_Sitn2ObjStructureText) and exposes 4 fields with key fields SitnObjectID, SitnObjStructureID, Language. 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_Sitn2ObjStructureText | _ObjectStructureText | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SitnObjStructureID | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| OData.entityType.name | SituationObjectStructureText_Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Situation Object Structure - 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 (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SitnObjectID | R_Sitn2ObjStructureText | SitnObjectID | |
| KEY | SitnObjStructureID | R_Sitn2ObjStructureText | SitnObjStructureID | |
| KEY | Language | R_Sitn2ObjStructureText | Language | |
| SitnObjStrucDescription | R_Sitn2ObjStructureText | SitnObjStrucDescription |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel:{
usageType:{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MIXED
},
semanticKey: [ 'SitnObjectID' , 'SitnObjStructureID' ],
dataCategory: #TEXT,
representativeKey: 'SitnObjStructureID'
}
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@OData.entityType.name:'SituationObjectStructureText_Type'
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Situation Object Structure - Text'
define view entity A_Sitn2ObjStructureText
as select from R_Sitn2ObjStructureText as _ObjectStructureText
inner join I_Language as _Language on _ObjectStructureText.Language = _Language.Language
and _Language.LanguageISOCode <> '1Q'
and _Language.LanguageISOCode <> '2Q'
{
key _ObjectStructureText.SitnObjectID,
key _ObjectStructureText.SitnObjStructureID,
@Semantics.language: true
key _ObjectStructureText.Language,
@Semantics.text:true
_ObjectStructureText.SitnObjStrucDescription
}
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