I_BusVolFieldCombnTypeText

DDL: I_BUSVOLFIELDCOMBNTYPETEXT Type: view BASIC

Business Volume Field Combn Type - Text

I_BusVolFieldCombnTypeText is a Basic CDS View that provides data about "Business Volume Field Combn Type - Text" in SAP S/4HANA. It reads from 1 data source (R_BusVolFieldCombnTypeText) and exposes 5 fields with key fields Language, BusVolFieldCombnType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_BusVolFieldCombnTypeText R_BusVolFieldCombnTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BusVolFieldCombnType _BusVolFieldCombnType $projection.BusVolFieldCombnType = _BusVolFieldCombnType.BusVolFieldCombnType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IBUSVOLFLDCTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Business Volume Field Combn Type - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BusVolFieldCombnType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY BusVolFieldCombnType BusVolFieldCombnType
BusVolFieldCombnTypeDesc BusVolFieldCombnTypeDesc
_BusVolFieldCombnType _BusVolFieldCombnType
_Language _Language
@AbapCatalog: {
    sqlViewName: 'IBUSVOLFLDCTYPET',
    compiler.compareFilter: true,
    preserveKey: true
    }
@EndUserText.label: 'Business Volume Field Combn Type - Text'
@AccessControl: {
    authorizationCheck: #NOT_REQUIRED
    }
@ObjectModel: {
    representativeKey: 'BusVolFieldCombnType',
    modelingPattern : #LANGUAGE_DEPENDENT_TEXT,
    supportedCapabilities : [ #LANGUAGE_DEPENDENT_TEXT,
                              #SQL_DATA_SOURCE,
                              #CDS_MODELING_DATA_SOURCE,
                              #CDS_MODELING_ASSOCIATION_TARGET ],
    dataCategory: #TEXT,
    usageType: {
      dataClass:      #CUSTOMIZING,
      serviceQuality: #B,
      sizeCategory:   #S
      }
    }
@ClientHandling: {
    type: #INHERITED,
    algorithm: #SESSION_VARIABLE
    }
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
    }
@Analytics: {
    internalName: #LOCAL
    }
@Metadata.ignorePropagatedAnnotations: true

define view I_BusVolFieldCombnTypeText
  as select from R_BusVolFieldCombnTypeText

  association [0..1] to I_BusVolFieldCombnType as _BusVolFieldCombnType on $projection.BusVolFieldCombnType = _BusVolFieldCombnType.BusVolFieldCombnType
  association [0..1] to I_Language             as _Language             on $projection.Language = _Language.Language

{

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key Language,
      @ObjectModel.foreignKey.association: '_BusVolFieldCombnType'
  key BusVolFieldCombnType,
      @Semantics.text: true
      BusVolFieldCombnTypeDesc,

      /* Associations */
      _BusVolFieldCombnType,
      _Language

}