R_Sitn2ObjStructureInMemory
Situation Object In-Memory Strutures
R_Sitn2ObjStructureInMemory is a Basic CDS View that provides data about "Situation Object In-Memory Strutures" in SAP S/4HANA. It reads from 1 data source (dd02l) and exposes 2 fields with key field SitnObjStrucName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd02l | dd02l | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Situation Object In-Memory Strutures | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SitnObjStrucName | |||
| SitnObjStrucDescription | dd02t | ddtext |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Situation Object In-Memory Strutures'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
define view entity R_Sitn2ObjStructureInMemory
as select from dd02l as dd02l
left outer to one join dd02t on dd02l.tabname = dd02t.tabname
and dd02t.ddlanguage = $session.system_language
{
key cast ( dd02l.tabname as ddstrucobjname ) as SitnObjStrucName,
dd02t.ddtext as SitnObjStrucDescription
}
where
dd02l.as4local = 'A' //Activation state of the object (Entry was activated or generated in this form)
and(
dd02l.tabclass = 'INTTAB' //Structure
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD02L",
"DD02T"
],
"ASSOCIATED":
[],
"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