I_CmmdtyFwdStatusText
Commodity Forward Status Text
I_CmmdtyFwdStatusText is a Basic CDS View that provides data about "Commodity Forward Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field CmmdtyOrdFwdStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | Domain | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICMMDTYFWDSTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CmmdtyOrdFwdStatus | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Commodity Forward Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CmmdtyOrdFwdStatus | |||
| CmmdtyOrdFwdStatusText | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'ICMMDTYFWDSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CmmdtyOrdFwdStatus'
@ObjectModel.usageType:{ serviceQuality: #B, sizeCategory : #S, dataClass: #CUSTOMIZING}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Commodity Forward Status Text'
@Metadata.ignorePropagatedAnnotations:true
define view I_CmmdtyFwdStatusText
as select from dd07t as Domain
{
key substring(Domain.domvalue_l , 1, 2 ) as CmmdtyOrdFwdStatus,
@Semantics.text: true
Domain.ddtext as CmmdtyOrdFwdStatusText
}
where
Domain.domname = 'CMMFDOF_CMMDTYORDERFRWDSTATUS'
and Domain.ddlanguage = $session.system_language
and Domain.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"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