I_OptionSettlementType

DDL: I_OPTIONSETTLEMENTTYPE SQL: IOPTIONSETTYPE Type: view BASIC

Option settlement type

I_OptionSettlementType is a Basic CDS View (Dimension) that provides data about "Option settlement type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field OptionSettlementType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OptionSettlementTypeText _Text $projection.OptionSettlementType = _Text.OptionSettlementType

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IOPTIONSETTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Option settlement type view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey OptionSettlementType view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OptionSettlementType
_Text _Text
@AbapCatalog.sqlViewName: 'IOPTIONSETTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Option settlement type'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
    usageType : {
        sizeCategory: #S,
        serviceQuality: #X,
        dataClass: #MIXED
    },
    resultSet.sizeCategory: #XS,
    representativeKey:'OptionSettlementType',
    dataCategory:#VALUE_HELP 
}
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@Analytics : {dataCategory: #DIMENSION}
@Analytics.internalName: #LOCAL 
@Metadata.allowExtensions:true   
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

define view I_OptionSettlementType 
  as select from dd07l  as DomainValue 
  association [0..*] to I_OptionSettlementTypeText as _Text on $projection.OptionSettlementType = _Text.OptionSettlementType
{
      @ObjectModel.text.association: '_Text'
      @Consumption.valueHelpDefault.binding.usage: #FILTER_AND_RESULT
  key cast(DomainValue.domvalue_l as option_settlement_type) as OptionSettlementType,
  
  _Text
}
where
     DomainValue.domname  = 'T_SETTLFL'
 and DomainValue.as4local = 'A'  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_OPTIONSETTLEMENTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/