I_BusPartNameFormat
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)
| Source | Alias | Join Type |
|---|---|---|
| t005n | t005n | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Country | _Country | _Country.Country = $projection.Country |
| [0..*] | I_BusPartNameFormatName | _Text | $projection.Country = _Text.Country and $projection.NameFormat = _Text.NameFormat |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA