R_EvtBsdPostgRuleDistrType

DDL: R_EVTBSDPOSTGRULEDISTRTYPE SQL: REBPSTRLDSTTYP Type: view COMPOSITE

EB Posting Rule Distribution Type

R_EvtBsdPostgRuleDistrType is a Composite CDS View that provides data about "EB Posting Rule Distribution Type" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 3 fields with key fields EventBasedDistributionType, Language.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText I_DomainFixedValueText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName REBPSTRLDSTTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey EventBasedDistributionType view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label EB Posting Rule Distribution Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EventBasedDistributionType
KEY Language Language
EventBasedDistributionTypeText
@AbapCatalog.sqlViewName: 'REBPSTRLDSTTYP'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #COMPOSITE

@ObjectModel: {
    usageType: {
        dataClass: #MASTER,
        serviceQuality: #A,
        sizeCategory: #S
    }
}

@ObjectModel.representativeKey: 'EventBasedDistributionType'

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@EndUserText.label: 'EB Posting Rule Distribution Type'
define view R_EvtBsdPostgRuleDistrType
  as select from I_DomainFixedValueText
{
      @ObjectModel.text.element: 'EventBasedDistributionTypeText'
  key cast(DomainValue as fco_ebpr_distribution_type)  as EventBasedDistributionType,

      @UI.hidden: true
  key Language,

      @Semantics.text: true
      cast(DomainText as fco_ebpr_distribution_type_txt) as EventBasedDistributionTypeText
}
where
      SAPDataDictionaryDomain = 'FCO_EBPR_DISTRIBUTION_TYPE'
  and Language                = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/