I_SupDmndAllDocSupSourceT
View for Description of Supply Source for All Documents
I_SupDmndAllDocSupSourceT is a Basic CDS View that provides data about "View for Description of Supply Source for All Documents" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SupAssgmtSource, 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_SupDmndAllDocSupSource | _SupDmndAllDocSupSource | $projection.SupAssgmtSource = _SupDmndAllDocSupSource.SupAssgmtSource |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISUPDMNDADSUPSCT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | SupAssgmtSource | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | View for Description of Supply Source for All Documents | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupAssgmtSource | |||
| KEY | Language | ddlanguage | ||
| SupAssgmtSourceName | ddtext | Supply Source Description | ||
| _SupDmndAllDocSupSource | _SupDmndAllDocSupSource | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@AbapCatalog: {
sqlViewName: 'ISUPDMNDADSUPSCT',
compiler.compareFilter: true,
preserveKey: true
}
@Analytics: {
dataExtraction.enabled: true
}
@ObjectModel: {
dataCategory: #TEXT,
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #X,
sizeCategory: #S
},
representativeKey: 'SupAssgmtSource'
}
@Metadata.ignorePropagatedAnnotations:true
@EndUserText.label: 'View for Description of Supply Source for All Documents'
define view I_SupDmndAllDocSupSourceT
as select from dd07t
association [0..1] to I_SupDmndAllDocSupSource as _SupDmndAllDocSupSource on $projection.SupAssgmtSource = _SupDmndAllDocSupSource.SupAssgmtSource
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SupDmndAllDocSupSource'
key cast( dd07t.domvalue_l as arun_bskz) as SupAssgmtSource,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@EndUserText.label: 'Supply Source Description'
@Semantics.text: true
ddtext as SupAssgmtSourceName,
//Associations
_SupDmndAllDocSupSource,
_Language
}
where
(
domname = 'ARUN_SDO_ALLDOC_STOCK_SOURCE'
and ddlanguage = $session.system_language
)
and(
as4local = 'A'
);
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUPDMNDALLDOCSUPSOURCE"
],
"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