I_SourcingProjectReasonText

DDL: I_SOURCINGPROJECTREASONTEXT Type: view BASIC

Reason for New Vers of Srcg Proj - Text

I_SourcingProjectReasonText is a Basic CDS View that provides data about "Reason for New Vers of Srcg Proj - Text" in SAP S/4HANA. It reads from 1 data source (I_ProductSourcingReasonText) and exposes 5 fields with key fields SourcingProjectReason, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductSourcingReasonText I_ProductSourcingReasonText from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISRCGPROJRSNTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SourcingProjectReason view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Reason for New Vers of Srcg Proj - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectReason ProductSourcingReason
KEY Language Language
SourcingProjectReasonText ProductSourcingReasonText
_Language _Language
_text _text
@AbapCatalog: { sqlViewName: 'ISRCGPROJRSNTXT',
                compiler.compareFilter: true,
                preserveKey: true }
                
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true

@ObjectModel:{
    representativeKey: 'SourcingProjectReason',
    semanticKey: ['SourcingProjectReason'],
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
        },
    dataCategory: #TEXT,
    supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET]
    }

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@EndUserText.label: 'Reason for New Vers of Srcg Proj - Text'
define view I_SourcingProjectReasonText
  as select from I_ProductSourcingReasonText
  association [0..1] to I_Language                     as _Language on $projection.Language = _Language.Language
  association        to parent I_SourcingProjectReason as _text     on $projection.SourcingProjectReason = _text.SourcingProjectReason
{

  key ProductSourcingReason     as SourcingProjectReason,
      @Semantics.language
  key Language                  as Language,
      @Semantics.text: true
      ProductSourcingReasonText as SourcingProjectReasonText,

      _Language,
      _text
}