I_SOURCINGPROJECTTYPETEXT

CDS View

Type of Sourcing Project - Text

I_SOURCINGPROJECTTYPETEXT is a CDS View in S/4HANA. Type of Sourcing Project - Text. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
A_SourcingProjectTypeText view_entity projection BASIC Sourcing Project Type - Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.entityBuffer.definitionAllowed: true

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

@VDM.viewType: #BASIC

@Search.searchable: true

@EndUserText.label: 'Type of Sourcing Project - Text'
define view entity I_SourcingProjectTypeText
  as select from mmpursrcgproj_tt
  association        to parent I_SourcingProjectType as _SourcingProjectType on $projection.SourcingProjectType = _SourcingProjectType.SourcingProjectType
  association [0..1] to I_Language                   as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_SourcingProjectType'
      @ObjectModel.text.element: ['SourcingProjectTypeText']
  key sptype     as SourcingProjectType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key spras      as Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      sptypetext as SourcingProjectTypeText,
      _SourcingProjectType,
      _Language
}