I_BPAddlSuplrTelNmbrTP
BO view for Tel nos of MLTAS Suppliers
I_BPAddlSuplrTelNmbrTP is a Transactional CDS View that provides data about "BO view for Tel nos of MLTAS Suppliers" in SAP S/4HANA. It reads from 3 data sources (I_BPMultipleAssignment, I_BPTelephoneNumber, I_Supplier) and exposes 16 fields with key fields BusinessPartner, Supplier, AddressID, Person, OrdinalNumber. It has 2 associations to related views.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_BPMultipleAssignment | BPMultipleAssignment | inner |
| I_BPTelephoneNumber | BPTelephoneNumber | from |
| I_Supplier | Supplier | inner |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartnerTP | _BusinessPartner | $projection.BusinessPartner = _BusinessPartner.BusinessPartner |
| [1..1] | I_BPAdditionalSupplierTP | _BPAdditionalSupplier | $projection.BusinessPartner = _BPAdditionalSupplier.BusinessPartner and $projection.Supplier = _BPAdditionalSupplier.Supplier |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPADDSTNTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | BO view for Tel nos of MLTAS Suppliers | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.writeEnabled | true | view | |
| Search.searchable | true | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ObjectModel.writeDraftPersistence | BPADDSTN_D | view | |
| ObjectModel.draftEnabled | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | I_BPMultipleAssignment | BusinessPartner | |
| KEY | Supplier | I_Supplier | Supplier | |
| KEY | AddressID | I_BPTelephoneNumber | AddressID | |
| KEY | Person | I_BPTelephoneNumber | Person | |
| KEY | OrdinalNumber | I_BPTelephoneNumber | OrdinalNumber | |
| DestinationLocationCountry | I_BPTelephoneNumber | DestinationLocationCountry | ||
| IsDefaultPhoneNumber | I_BPTelephoneNumber | IsDefaultPhoneNumber | ||
| PhoneNumber | I_BPTelephoneNumber | PhoneNumber | ||
| PhoneNumberExtension | I_BPTelephoneNumber | PhoneNumberExtension | ||
| InternationalPhoneNumber | I_BPTelephoneNumber | InternationalPhoneNumber | ||
| PhoneNumberType | I_BPTelephoneNumber | PhoneNumberType | ||
| SupplierName | I_Supplier | SupplierName | ||
| BPSupplierName | I_Supplier | BPSupplierName | ||
| AddressCommunicationRemarkText | ||||
| _BusinessPartner | _BusinessPartner | |||
| _BPAdditionalSupplier | _BPAdditionalSupplier |
@AbapCatalog.sqlViewName: 'IBPADDSTNTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'BO view for Tel nos of MLTAS Suppliers'
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.writeEnabled: true
@ObjectModel.createEnabled
@ObjectModel.deleteEnabled
@ObjectModel.updateEnabled
@Search.searchable: true
@ObjectModel.semanticKey: ['BusinessPartner', 'Supplier', 'AddressID', 'Person', 'OrdinalNumber' ]
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel.writeDraftPersistence: 'BPADDSTN_D'
@ObjectModel.draftEnabled:true
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
define view I_BPAddlSuplrTelNmbrTP as select from I_BPTelephoneNumber as BPTelephoneNumber inner join I_BPMultipleAssignment as BPMultipleAssignment on BPTelephoneNumber.AddressID = BPMultipleAssignment.AddressNumber inner join I_Supplier as Supplier on BPMultipleAssignment.BPObjectID = Supplier.Supplier
association [1..1] to I_BusinessPartnerTP as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
association [1..1] to I_BPAdditionalSupplierTP as _BPAdditionalSupplier on $projection.BusinessPartner = _BPAdditionalSupplier.BusinessPartner
and $projection.Supplier = _BPAdditionalSupplier.Supplier
{
key BPMultipleAssignment.BusinessPartner,
key Supplier.Supplier as Supplier,
key BPTelephoneNumber.AddressID,
key BPTelephoneNumber.Person,
key BPTelephoneNumber.OrdinalNumber,
BPTelephoneNumber.DestinationLocationCountry,
BPTelephoneNumber.IsDefaultPhoneNumber,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
BPTelephoneNumber.PhoneNumber,
BPTelephoneNumber.PhoneNumberExtension,
BPTelephoneNumber.InternationalPhoneNumber,
BPTelephoneNumber.PhoneNumberType,
Supplier.SupplierName,
// For field length increment
Supplier.BPSupplierName,
BPTelephoneNumber._AddressCommunicationRemark.CommunicationRemarkText as AddressCommunicationRemarkText,
// cast('' as ad_remark2 ) as AddressCommunicationRemarkText,
@ObjectModel.association.type: [#TO_COMPOSITION_ROOT]
_BusinessPartner,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT]
_BPAdditionalSupplier
}
where BPMultipleAssignment.IsStandardAssignment <> 'X' and BPMultipleAssignment.BPAssignmentCategory = 'SUPPL'
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