I_PARTNERFUNCTIONTEXT

CDS View

Partner Function - Text

I_PARTNERFUNCTIONTEXT is a CDS View in S/4HANA. Partner Function - Text. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_Partfunctextvhtemp view from CONSUMPTION Value help for partner function text
R_ComplaintPartnerFunctionText view_entity from TRANSACTIONAL Partner Function - Text
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PartnerFunction'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Partner Function - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED 
@AbapCatalog.sqlViewName: 'ISDPARTFUNCT'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern:           #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #LANGUAGE_DEPENDENT_TEXT  ]
define view I_PartnerFunctionText
as select from tpart

association[0..1] to I_PartnerFunction as _PartnerFunction on $projection.PartnerFunction = _PartnerFunction.PartnerFunction
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_PartnerFunction'
    key cast(parvw as parvw_unv) as PartnerFunction,
    
    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language' 
    key spras as Language,
    
    @Semantics.text: true
    vtext as PartnerFunctionName,
    
    //Associations

    _PartnerFunction,
    _Language
};