I_SourceListRestrictionVH
Source List Restriction Value Help
I_SourceListRestrictionVH is a Basic CDS View that provides data about "Source List Restriction Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SourceListRestriction, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRCLISTRSTRCN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Source List Restriction Value Help | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SourceListRestriction | |||
| KEY | Language | ddlanguage | ||
| SourceListStatusName | ddtext | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ISRCLISTRSTRCN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Source List Restriction Value Help'
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_SourceListRestrictionVH as
select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: [ 'SourceListStatusName' ]
key cast ( ( domvalue_l ) as srcelistrstrcn ) as SourceListRestriction,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as SourceListStatusName,
//association
_Language
}
where
domname = 'SRCELISTRSTRCN'
and as4local = 'A'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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