I_BusPartNameFormat

DDL: I_BUSPARTNAMEFORMAT SQL: IBPNAMEFORM Type: view BASIC

Business Partner Name Format

I_BusPartNameFormat is a Basic CDS View that provides data about "Business Partner Name Format" in SAP S/4HANA. It reads from 1 data source (t005n) and exposes 4 fields with key fields 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
[0..*] I_BusPartNameFormatName _Text $projection.Country = _Text.Country and $projection.NameFormat = _Text.NameFormat

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBPNAMEFORM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Business Partner Name Format view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Country/Region
KEY NameFormat nameformat
_Country _Country
_Text _Text
@AbapCatalog.sqlViewName: 'IBPNAMEFORM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Business Partner Name Format'
define view I_BusPartNameFormat
  as select from t005n
  association [1..1] to I_Country               as _Country on  _Country.Country = $projection.Country
  association [0..*] to I_BusPartNameFormatName as _Text    on  $projection.Country    = _Text.Country
                                                            and $projection.NameFormat = _Text.NameFormat
{
      @ObjectModel.foreignKey.association: '_Country'
      @EndUserText.label: 'Country/Region'
  key land1      as Country,
      @ObjectModel.text.association: '_Text'
  key nameformat as NameFormat,
      _Country,
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T005N"
],
"ASSOCIATED":
[
"I_BUSPARTNAMEFORMATNAME",
"I_COUNTRY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/