I_SDMassChgCkptEntityLevelTxt
Mass Chg of Sls Doc Entity Level - Text
I_SDMassChgCkptEntityLevelTxt is a Basic CDS View that provides data about "Mass Chg of Sls Doc Entity Level - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields SlsDocMassChgEntityLevel, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SDMassChgCkptEntityLevel | _EntityLevel | $projection.SlsDocMassChgEntityLevel = _EntityLevel.SlsDocMassChgEntityLevel |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISDMCCENTLVLT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Mass Chg of Sls Doc Entity Level - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | SlsDocMassChgEntityLevel | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SlsDocMassChgEntityLevel | |||
| KEY | Language | ddlanguage | ||
| SlsDocMassChgEntityLevelName | ||||
| DomainValue | dd07t | domvalue_l | ||
| _EntityLevel | _EntityLevel | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog:{
sqlViewName: 'ISDMCCENTLVLT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Mass Chg of Sls Doc Entity Level - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel:{
dataCategory: #TEXT,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
representativeKey: 'SlsDocMassChgEntityLevel',
usageType:{
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
}
@Search.searchable: true
define view I_SDMassChgCkptEntityLevelTxt
as select from dd07t
association [0..1] to I_SDMassChgCkptEntityLevel as _EntityLevel on $projection.SlsDocMassChgEntityLevel = _EntityLevel.SlsDocMassChgEntityLevel
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_EntityLevel'
key cast(SUBSTRING(dd07t.domvalue_l, 1, 1) as sd_mcc_entity_level preserving type) as SlsDocMassChgEntityLevel,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key ddlanguage as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
cast(ddtext as sd_mcc_entity_level_name preserving type) as SlsDocMassChgEntityLevelName,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
//Associations
_EntityLevel,
_Language
}
where
(
domname = 'SD_MCC_ENTITY_LEVEL'
)
and(
as4local = 'A'
)
and(
as4vers = '0000'
);
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SDMASSCHGCKPTENTITYLEVEL"
],
"BASE":
[],
"ANNO_REF":
[],
"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