I_BusinessPartnerFormOfAddress
Business Partner Form Of Address
I_BusinessPartnerFormOfAddress is a Basic CDS View that provides data about "Business Partner Form Of Address" in SAP S/4HANA. It reads from 1 data source (tsad3) and exposes 2 fields with key field FormOfAddress. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsad3 | tsad3 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusinessPartnerFormOfAddrTxt | _Text | $projection.FormOfAddress = _Text.FormOfAddress |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPFORMOFADDR | 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.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Business Partner Form Of Address | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FormOfAddress | title | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IBPFORMOFADDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Form Of Address'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BusinessPartnerFormOfAddress
as select from tsad3
association [0..*] to I_BusinessPartnerFormOfAddrTxt as _Text on $projection.FormOfAddress = _Text.FormOfAddress
{
@ObjectModel.text.association: '_Text'
key title as FormOfAddress,
case
when person = 'X' then '1'
when organizatn = 'X' then '2'
when xgroup = 'X' then '3'
else '2'
end as BusinessPartnerCategory,
_Text
}
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