I_BusPartContactPermissionText

DDL: I_BUSPARTCONTACTPERMISSIONTEXT SQL: IBPCONTCATPERMT Type: view BASIC

Business Partner Contact Permission Text

I_BusPartContactPermissionText is a Basic CDS View that provides data about "Business Partner Contact Permission Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ContactPermission, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IBPCONTCATPERMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ContactPermission view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
Search.searchable true view
EndUserText.label Business Partner Contact Permission Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ContactPermission
KEY Language ddlanguage
ContactPermissionName ddtext Description
DomainValue domvalue_l
@AbapCatalog.sqlViewName: 'IBPCONTCATPERMT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
  representativeKey: 'ContactPermission',
  dataCategory: #TEXT,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Analytics.dataExtraction.enabled: true 
@Search.searchable: true
@EndUserText.label: 'Business Partner Contact Permission Text'
define view I_BusPartContactPermissionText
  as select from dd07t
{
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_type ) as ContactPermission,
      @Semantics.language: true
  key ddlanguage                                                                   as Language,
      @Semantics.text: true
      @EndUserText.label: 'Description'
      ddtext                                                                       as ContactPermissionName,
      @Search.defaultSearchElement: true
      @Consumption.hidden: true
      domvalue_l                                                                   as DomainValue
}
where
  domname = 'BU_CONTACT'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/