I_CommodityHedgeRequestType

DDL: I_COMMODITYHEDGEREQUESTTYPE SQL: ICMMHREQTYPE Type: view BASIC

Hedge Request Category

I_CommodityHedgeRequestType is a Basic CDS View that provides data about "Hedge Request Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key fields CommodityHedgeRequestType, DomainValuePosition.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICMMHREQTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Hedge Request Category view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CommodityHedgeRequestType
KEY DomainValuePosition valpos
@AbapCatalog.sqlViewName: 'ICMMHREQTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: { dataClass: #MASTER,
                          sizeCategory: #S,
                          serviceQuality: #A }
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Hedge Request Category'
define view I_CommodityHedgeRequestType
  as select from dd07l
{
  key   cast(domvalue_l as cmm_hedge_request_category ) as CommodityHedgeRequestType,
  key   valpos                                          as DomainValuePosition
}
where
      domname  = 'CMM_HEDGE_REQUEST_CATEGORY'
  and as4local = 'A'
  and as4vers  = '0000'