I_BusPartPrefixName
Basic View to show Business Partner Name Prefix
I_BusPartPrefixName is a Basic CDS View that provides data about "Basic View to show Business Partner Name Prefix" in SAP S/4HANA. It reads from 1 data source (tsad4) and exposes 2 fields with key field LastNamePrefix. Part of development package MDC_BUPA_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsad4 | tsad4 | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPPREFIXNAME | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | LastNamePrefix | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Basic View to show Business Partner Name Prefix | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LastNamePrefix | prefix_key | ||
| LastNamePrefixName | prefix_txt |
@AbapCatalog.sqlViewName: 'IBPPREFIXNAME'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'LastNamePrefix'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.resultSet.sizeCategory: #XS
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@EndUserText.label: 'Basic View to show Business Partner Name Prefix'
define view I_BusPartPrefixName
as select from tsad4
{
@ObjectModel.text.element:['LastNamePrefixName']
key prefix_key as LastNamePrefix,
@Semantics.text: true
prefix_txt as LastNamePrefixName
}
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