I_BPAddlSuplrMblPhNumberTP
BO view for Mobile nos of MLTAS Suppliers
I_BPAddlSuplrMblPhNumberTP is a Transactional CDS View that provides data about "BO view for Mobile nos of MLTAS Suppliers" in SAP S/4HANA. It reads from 3 data sources (I_BPMobilePhoneNumber, I_BPMultipleAssignment, I_Supplier) and exposes 14 fields with key fields BusinessPartner, Supplier, AddressID, Person, OrdinalNumber. It has 2 associations to related views. Part of development package VDM_MD_BP.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_BPMobilePhoneNumber | BPMobileNumber | from |
| I_BPMultipleAssignment | BPMultipleAssignment | inner |
| 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 | IBPADDSMPNTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | BO view for Mobile nos of MLTAS Suppliers | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.writeEnabled | true | view | |
| ObjectModel.writeDraftPersistence | BPADDSMPN_D | view | |
| ObjectModel.draftEnabled | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | true | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | I_BPMultipleAssignment | BusinessPartner | |
| KEY | Supplier | I_Supplier | Supplier | |
| KEY | AddressID | I_BPMobilePhoneNumber | AddressID | |
| KEY | Person | I_BPMobilePhoneNumber | Person | |
| KEY | OrdinalNumber | I_BPMobilePhoneNumber | OrdinalNumber | |
| MobilePhoneCountry | I_BPMobilePhoneNumber | MobilePhoneCountry | ||
| IsDefaultPhoneNumber | I_BPMobilePhoneNumber | IsDefaultPhoneNumber | ||
| MobilePhoneNumber | I_BPMobilePhoneNumber | MobilePhoneNumber | ||
| PhoneNumberType | I_BPMobilePhoneNumber | PhoneNumberType | ||
| SupplierName | I_Supplier | SupplierName | ||
| BPSupplierName | I_Supplier | BPSupplierName | ||
| AddressCommunicationRemarkText | ||||
| _BusinessPartner | _BusinessPartner | |||
| _BPAdditionalSupplier | _BPAdditionalSupplier |
@AbapCatalog.sqlViewName: 'IBPADDSMPNTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'BO view for Mobile nos of MLTAS Suppliers'
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.writeEnabled: true
@ObjectModel.writeDraftPersistence: 'BPADDSMPN_D'
@ObjectModel.draftEnabled:true
@ObjectModel.semanticKey: ['BusinessPartner', 'Supplier', 'AddressID', 'Person', 'OrdinalNumber' ] // Need to check
@ObjectModel.createEnabled
@ObjectModel.updateEnabled
@ObjectModel.deleteEnabled
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
@Search.searchable: true
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view I_BPAddlSuplrMblPhNumberTP as select from I_BPMobilePhoneNumber as BPMobileNumber inner join I_BPMultipleAssignment as BPMultipleAssignment on BPMobileNumber.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 BPMobileNumber.AddressID,
key BPMobileNumber.Person,
key BPMobileNumber.OrdinalNumber,
BPMobileNumber.MobilePhoneCountry,
BPMobileNumber.IsDefaultPhoneNumber,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
BPMobileNumber.MobilePhoneNumber,
BPMobileNumber.PhoneNumberType,
Supplier.SupplierName,
// For field length incrrement
Supplier.BPSupplierName,
BPMobileNumber._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