I_CndnContrClassfctnTypeText

DDL: I_CNDNCONTRCLASSFCTNTYPETEXT Type: view BASIC

Cndn Contr Classification Type - Text

I_CndnContrClassfctnTypeText is a Basic CDS View that provides data about "Cndn Contr Classification Type - Text" in SAP S/4HANA. It reads from 1 data source (twcbcategoryt) and exposes 5 fields with key fields Language, CndnContrClassfctnType.

Data Sources (1)

SourceAliasJoin Type
twcbcategoryt twcbcategoryt from

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName ICCCLASSFCTNTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 002 view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CndnContrClassfctnType view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_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
Analytics.internalName #LOCAL view
EndUserText.label Cndn Contr Classification Type - Text view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY CndnContrClassfctnType category
CndnContrClassfctnTypeDesc text
_CndnContrClassfctnType _CndnContrClassfctnType
_Language _Language
@AbapCatalog: {
  sqlViewName: 'ICCCLASSFCTNTT',
  compiler.compareFilter: true,
  buffering: {
     status: #ACTIVE,
     type: #GENERIC,
     numberOfKeyFields: 002
  },
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: { 
  authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
   representativeKey: 'CndnContrClassfctnType',
   dataCategory: #TEXT,
   modelingPattern:        #LANGUAGE_DEPENDENT_TEXT,
   supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE],
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #B,
     sizeCategory:   #S
   }
}
@ClientHandling: { 
     type: #INHERITED,
     algorithm: #SESSION_VARIABLE
}
@Analytics: {
    internalName: #LOCAL
}   
@EndUserText.label: 'Cndn Contr Classification Type - Text'
@Metadata.ignorePropagatedAnnotations: true

define view I_CndnContrClassfctnTypeText   
as select from 
twcbcategoryt
association[0..1] to I_CndnContrClassfctnType  as _CndnContrClassfctnType on $projection.CndnContrClassfctnType  = _CndnContrClassfctnType.CndnContrClassfctnType
association[0..1] to I_Language                as _Language               on $projection.Language = _Language.Language 
{
 
    @ObjectModel.foreignKey.association: '_Language'
    @Semantics.language: true
    key spras as Language,
    @ObjectModel.foreignKey.association: '_CndnContrClassfctnType'
    key category as CndnContrClassfctnType,
    @Semantics.text: true
    text as CndnContrClassfctnTypeDesc,

//Associations

    _CndnContrClassfctnType,
    _Language 
  
}