I_OverdueSITDocSelectionTypeVH
GI GR Document Selection Types
I_OverdueSITDocSelectionTypeVH is a Basic CDS View that provides data about "GI GR Document Selection Types" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field OverdueSITDocSelectionType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | l | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDOCSELTYPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | GI GR Document Selection Types | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | OverdueSITDocSelectionType | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OverdueSITDocSelectionType | |||
| OverdueSITDocSelectionTypeText |
@AbapCatalog.sqlViewName: 'IDOCSELTYPVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'GI GR Document Selection Types'
@ObjectModel: { usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #TRANSACTIONAL },
resultSet.sizeCategory:#XS,
representativeKey: 'OverdueSITDocSelectionType',
dataCategory: #VALUE_HELP }
define view I_OverdueSITDocSelectionTypeVH
as select from dd07l as l
left outer to one join dd07t as t on t.domvalue_l = l.domvalue_l
and t.domname = l.domname
and t.ddlanguage = $session.system_language
{
@ObjectModel.text.element: ['OverdueSITDocSelectionTypeText']
key cast(l.domvalue_l as mmim_document_selection_type ) as OverdueSITDocSelectionType,
@Semantics.text: true
cast ( t.ddtext as mmim_document_selection_type_t preserving type ) as OverdueSITDocSelectionTypeText
}
where l.domname = 'MMIM_DOCUMENT_SELECTION_TYPE'
and l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"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