I_OQ_ITEM_STATUS_VH
Notification Type Value Help
I_OQ_ITEM_STATUS_VH is a CDS View that provides data about "Notification Type Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field ItemStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Notification Type Value Help | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ItemStatus | |||
| Description | ddtext |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Notification Type Value Help'
@ObjectModel.resultSet.sizeCategory: #XS
define view entity I_OQ_ITEM_STATUS_VH
as select from dd07t
{
@ObjectModel.text.element: ['Description']
@UI.textArrangement: #TEXT_ONLY
key cast ( domvalue_l as abap.char( 1 ) ) as ItemStatus,
ddtext as Description
}
where
domname = 'OQ_ITEM_STATUS'
and ddlanguage = $session.system_language
and as4local = 'A'
and domvalue_l <> 'T'
and domvalue_l <> 'P'
and domvalue_l <> 'W'
and domvalue_l <> 'D'
and domvalue_l <> 'H'
and domvalue_l <> 'E'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"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