R_SITN2OBJSTRUCTUREINMEMORY
Situation Object In-Memory Strutures
R_SITN2OBJSTRUCTUREINMEMORY is a CDS View in S/4HANA. Situation Object In-Memory Strutures. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| R_Sitn2ObjStructureInMemoryVH | view_entity | inner | COMPOSITE | Situation Object InMemory Structures |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| SitnObjStrucDescription | SitnObjStrucDescription | 1 |
@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
)