I_SupDmndAssgdSupType
Assigned Supply Type
I_SupDmndAssgdSupType is a Basic CDS View (Dimension) that provides data about "Assigned Supply Type" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 4 fields with key field AssignedSupplyType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SupDmndAssgdSupTypeText | _Text | $projection.AssignedSupplyType = _Text.AssignedSupplyType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IASSGDSUPTYP | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | AssignedSupplyType | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| EndUserText.label | Assigned Supply Type | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AssignedSupplyType | |||
| DomainValue | dd07v | domvalue_l | ||
| AssignedSupplyTypeName | ddtext | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IASSGDSUPTYP'
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'AssignedSupplyType'
@VDM.viewType:#BASIC
@Analytics: { dataCategory: #DIMENSION }
@ClientHandling.algorithm: #SESSION_VARIABLE
//@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #X
@EndUserText.label: 'Assigned Supply Type'
@Search.searchable: true
define view I_SupDmndAssgdSupType
as select from dd07v
association [0..*] to I_SupDmndAssgdSupTypeText as _Text on $projection.AssignedSupplyType = _Text.AssignedSupplyType
// Need to replace when I_SupDmndAssgdSupType_Text is available in GFC
{
@ObjectModel.text.association: '_Text'
key cast (domvalue_l as arun_bskz) as AssignedSupplyType,
@Consumption.hidden: true
@Analytics.hidden:true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07v.domvalue_l as DomainValue,
// @Semantics.text: true
ddtext as AssignedSupplyTypeName,
_Text
}
where
domname = 'ARUN_SDO_SUPPLY_SOURCE'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[
"I_SUPDMNDASSGDSUPTYPETEXT"
],
"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