I_CommodityHedgeRequestTypeT
Commodity Hedge Request Category - Text
I_CommodityHedgeRequestTypeT is a Basic CDS View that provides data about "Commodity Hedge Request Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 4 fields with key fields CommodityHedgeRequestType, DomainValuePosition, Language. Part of development package FIN_CMM_CMDTY_HEDGE_REQUESTS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICMMHDGREQTYPET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Commodity Hedge Request Category - Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CommodityHedgeRequestType | |||
| KEY | DomainValuePosition | valpos | ||
| KEY | Language | ddlanguage | ||
| CommodityHedgeRequestTypeText |
@AbapCatalog.sqlViewName: 'ICMMHDGREQTYPET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType : { dataClass: #MASTER,
sizeCategory: #M,
serviceQuality: #A }
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Commodity Hedge Request Category - Text'
define view I_CommodityHedgeRequestTypeT
as select from dd07v
{
key cast(domvalue_l as cmm_hedge_request_category ) as CommodityHedgeRequestType,
key valpos as DomainValuePosition,
@Semantics.language:true
key ddlanguage as Language,
@Semantics.text: true
cast( ddtext as abap.char( 23 ) ) as CommodityHedgeRequestTypeText
}
where
domname = 'CMM_HEDGE_REQUEST_CATEGORY'
//group by domvalue_l , ddlanguage , ddtext
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