I_DfsMatlConditionMgmtText
Defense Material Condition Management Text
I_DfsMatlConditionMgmtText is a Basic CDS View that provides data about "Defense Material Condition Management Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields DfsMatlConditionMgmt, 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_DfsMatlConditionMgmt | _DfsMatlConditionMgmt | $projection.DfsMatlConditionMgmt = _DfsMatlConditionMgmt.DfsMatlConditionMgmt |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDFSMATCONDMGMTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.type | #SINGLE | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Defense Material Condition Management Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DfsMatlConditionMgmt | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
@AbapCatalog.sqlViewName: 'IDFSMATCONDMGMTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.type: #SINGLE
@AbapCatalog.buffering.numberOfKeyFields: 1
@AbapCatalog.buffering.status: #ACTIVE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Defense Material Condition Management Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel : { dataCategory: #TEXT,
representativeKey: 'DfsMatlConditionMgmt',
usageType: { serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING} }
define view I_DfsMatlConditionMgmtText
as select from dd07t
association [0..1] to I_DfsMatlConditionMgmt as _DfsMatlConditionMgmt on $projection.DfsMatlConditionMgmt = _DfsMatlConditionMgmt.DfsMatlConditionMgmt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast(dd07t.domvalue_l as dfps_mcond ) as DfsMatlConditionMgmt,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@Semantics.text:true
dd07t.ddtext as DfsMatlConditionMgmtName,
// association
_DfsMatlConditionMgmt,
_Language
}
where
dd07t.domname = 'DFPS_MCOND'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_DFSMATLCONDITIONMGMT",
"I_LANGUAGE"
],
"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