I_BusPartNameFormatName
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)
| Source | Alias | Join Type |
|---|---|---|
| t005n | t005n | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Country | _Country | _Country.Country = $projection.Country |
| [1..1] | I_Language | _Language | _Language.Language = $session.system_language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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