I_BusinessPartnerAddressTypeT
Business Partner Address Types Text
I_BusinessPartnerAddressTypeT is a Basic CDS View that provides data about "Business Partner Address Types Text" in SAP S/4HANA. It reads from 1 data source (tb010) and exposes 3 fields with key fields AddressType, Language. Part of development package MDC_BUPA_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb010 | tb010 | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPADDRTYPETXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | Business Partner Address Types Text | view | |
| ObjectModel.representativeKey | AddressType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AddressType | adr_kind | ||
| KEY | Language | spras | ||
| AddressUsageName | textlong | Description |
@AbapCatalog.sqlViewName: 'IBPADDRTYPETXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Business Partner Address Types Text'
@ObjectModel: {
representativeKey: 'AddressType',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory : #M,
usageType.dataClass: #CUSTOMIZING,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusinessPartnerAddressTypeT
as select from tb010
{
@semanticKey: true
key adr_kind as AddressType,
@Semantics.language:true
key spras as Language,
@Semantics.text: true
@EndUserText.label: 'Description'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
textlong as AddressUsageName
}
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