I_SupDmndRqmtTypeText
Requirement Type Text
I_SupDmndRqmtTypeText is a Basic CDS View that provides data about "Requirement Type Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 5 fields with key fields RequirementType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SupDmndRqmtType | _RequirementType | $projection.RequirementType = _RequirementType.RequirementType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRQMTTYPTXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RequirementType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| EndUserText.label | Requirement Type Text | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'IRQMTTYPTXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RequirementType'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@EndUserText.label: 'Requirement Type Text'
@Search.searchable: true
define view I_SupDmndRqmtTypeText
as select from dd07v
association [0..1] to I_SupDmndRqmtType as _RequirementType on $projection.RequirementType = _RequirementType.RequirementType
{
key cast( domvalue_l as arun_sdo_reqmt_type ) as RequirementType,
@Semantics.language: true
key dd07v.ddlanguage as Language,
@Consumption.hidden: true
@Analytics.hidden:true
dd07v.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
ddtext as RequirementTypeName,
_RequirementType
}
where domname = 'ARUN_SDO_REQMT_TYPE'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[
"I_SUPDMNDRQMTTYPE"
],
"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