I_CustMgmtPartnerFuncText

DDL: I_CUSTMGMTPARTNERFUNCTEXT SQL: ICUSTPARTFUNCTXT Type: view BASIC Package: CRMS4_REPORT

Service Document Partner Function Text

I_CustMgmtPartnerFuncText is a Basic CDS View that provides data about "Service Document Partner Function Text" in SAP S/4HANA. It reads from 1 data source (crmc_partner_ft) and exposes 3 fields with key fields PartnerFunction, Language. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
crmc_partner_ft crmc_partner_ft from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICUSTPARTFUNCTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Service Document Partner Function Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey PartnerFunction view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction
KEY Language spras
PartnerFunctionName description
@AbapCatalog.sqlViewName: 'ICUSTPARTFUNCTXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Service Document Partner Function Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'PartnerFunction'

define view I_CustMgmtPartnerFuncText
  as select from crmc_partner_ft
{
  key cast( partner_fct as abap.char(8) )                          as  PartnerFunction,

      @Semantics.language: true
  key spras                                                        as  Language,

      @Semantics.text: true
      description                                                  as  PartnerFunctionName

}
where
  spras = $session.system_language;