I_BusPartNameFormatName

DDL: I_BUSPARTNAMEFORMATNAME SQL: IBPNAMEFORMATTXT Type: view BASIC

View shows BUPA Name Format Text

I_BusPartNameFormatName is a Basic CDS View that provides data about "View shows BUPA Name Format Text" in SAP S/4HANA. It reads from 1 data source (t005n) and exposes 5 fields with key fields Language, Country, NameFormat. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t005n t005n from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Country _Country _Country.Country = $projection.Country
[1..1] I_Language _Language _Language.Language = $session.system_language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPNAMEFORMATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey Country view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label View shows BUPA Name Format Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language _Language Language
KEY Country land1
KEY NameFormat nameformat
NameFormatDescription Description
_Country _Country
@AbapCatalog.sqlViewName: 'IBPNAMEFORMATTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'Country'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'View shows  BUPA  Name Format Text'
define view I_BusPartNameFormatName
  as select from t005n
  association [1..1] to I_Country  as _Country  on _Country.Country = $projection.Country
  association [1..1] to I_Language as _Language on _Language.Language = $session.system_language

{
      @Semantics.language: true
  key _Language.Language,
      @ObjectModel.foreignKey.association: '_Country'
  key land1                               as Country,
      @ObjectModel.text.element: ['NameFormatDescription']
  key nameformat                          as NameFormat,
      @ObjectModel.virtualElement: true
      @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_BP_BUPATP2_CALC_EXIT'
      @Semantics.text: true
      @EndUserText.label: 'Description'
      cast ( ''  as abap.sstring( 260 ) ) as NameFormatDescription,

      _Country
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LANGUAGE",
"T005N"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/