I_GB_DocumentStatusValueHelp
GB VAT Document Status
I_GB_DocumentStatusValueHelp is a Basic CDS View that provides data about "GB VAT Document Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field Status. Part of development package GLO_FIN_IS_GB_AP_VAT_PARKED.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | Status | view | |
| VDM.viewType | #BASIC | view | |
| Consumption.ranked | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | GB VAT Document Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Status | |||
| TextTypeDescription | text | ddtext |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'Status'
@VDM.viewType: #BASIC
@Consumption.ranked: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@EndUserText.label: 'GB VAT Document Status'
define view entity I_GB_DocumentStatusValueHelp
as select from dd07l
// left outer to one join I_SI_FileTypeText as text on dd07l.domvalue_l = text.DomainValue
// and text.Language = $session.system_language
left outer to one join dd07t as text on dd07l.domvalue_l = text.domvalue_l
and text.ddlanguage = $session.system_language
and text.domname = 'GLO_GB_PRKD_STATUS'
and text.as4local = 'A'
{
// @ObjectModel.text.element: ['TextTypeDescription']
@Search.defaultSearchElement: true
@Search.ranking:#HIGH
key cast ( dd07l.domvalue_l as glo_gb_prkd_status ) as Status,
// @Analytics.hidden: true
// @Consumption.hidden: true
// @Search.defaultSearchElement: true
// @Search.ranking: #HIGH
// dd07l.domvalue_l as DomainValue,
text.ddtext as TextTypeDescription
}
where
dd07l.domname = 'GLO_GB_PRKD_STATUS'
and dd07l.as4local = 'A'
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