I_BPWebsiteURLTP
Business Partner Website
I_BPWebsiteURLTP is a Transactional CDS View that provides data about "Business Partner Website" in SAP S/4HANA. It reads from 1 data source (I_BPWebsiteURL) and exposes 12 fields with key fields BusinessPartner, AddressID, Person, OrdinalNumber, ValidityStartDate. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BPWebsiteURL | BPWebsiteURL | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartnerTP | _BusinessPartner | $projection.BusinessPartner = _BusinessPartner.BusinessPartner |
| [1..1] | I_BusinessPartnerAddressTP | _BusinessPartnerAddress | $projection.AddressID = _BusinessPartnerAddress.AddressNumber and $projection.BusinessPartner = _BusinessPartnerAddress.BusinessPartner |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPWEBSITEURLTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Business Partner Website | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.writeEnabled | true | view | |
| ObjectModel.writeDraftPersistence | BUPA_WEBURL_D | view | |
| ObjectModel.draftEnabled | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | true | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | I_BPWebsiteURL | BusinessPartner | |
| KEY | AddressID | I_BPWebsiteURL | AddressID | |
| KEY | Person | I_BPWebsiteURL | Person | |
| KEY | OrdinalNumber | I_BPWebsiteURL | OrdinalNumber | |
| KEY | ValidityStartDate | I_BPWebsiteURL | ValidityStartDate | |
| KEY | IsDefaultURLAddress | I_BPWebsiteURL | IsDefaultURLAddress | |
| SearchURLAddress | I_BPWebsiteURL | SearchURLAddress | ||
| AddressCommunicationRemarkText | _AddressCommunicationRemark | AddressCommunicationRemarkText | ||
| URLFieldLength | I_BPWebsiteURL | URLFieldLength | ||
| WebsiteURL | I_BPWebsiteURL | WebsiteURL | ||
| _BusinessPartner | _BusinessPartner | |||
| _BusinessPartnerAddress | _BusinessPartnerAddress |
@AbapCatalog.sqlViewName: 'IBPWEBSITEURLTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Business Partner Website'
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.writeEnabled: true
@ObjectModel.writeDraftPersistence: 'BUPA_WEBURL_D'
@ObjectModel.draftEnabled:true
@ObjectModel.semanticKey: ['BusinessPartner','AddressID','Person', 'OrdinalNumber', 'ValidityStartDate', 'IsDefaultURLAddress' ] // Need to check
@ObjectModel.createEnabled
@ObjectModel.updateEnabled
@ObjectModel.deleteEnabled
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
@Search.searchable: true
define view I_BPWebsiteURLTP as select from I_BPWebsiteURL as BPWebsiteURL
association [1..1] to I_BusinessPartnerTP as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
association [1..1] to I_BusinessPartnerAddressTP as _BusinessPartnerAddress on $projection.AddressID = _BusinessPartnerAddress.AddressNumber
and $projection.BusinessPartner = _BusinessPartnerAddress.BusinessPartner
{
key BPWebsiteURL.BusinessPartner,
key BPWebsiteURL.AddressID,
key BPWebsiteURL.Person,
key BPWebsiteURL.OrdinalNumber,
key BPWebsiteURL.ValidityStartDate,
key BPWebsiteURL.IsDefaultURLAddress,
BPWebsiteURL.SearchURLAddress ,
_AddressCommunicationRemark.AddressCommunicationRemarkText,
BPWebsiteURL.URLFieldLength ,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
BPWebsiteURL.WebsiteURL,
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT ]
_BusinessPartner,
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT ]
_BusinessPartnerAddress
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ADDRESSCOMMUNICATIONREMARK",
"I_BPWEBSITEURL"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNERADDRESSTP",
"I_BUSINESSPARTNERTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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