I_BPAddressIndependentWebsite
BP Address independent Website
I_BPAddressIndependentWebsite (Basic)
Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.
Database & Data Management
I_BPAddressIndependentWebsite is a Basic CDS View that provides data about "BP Address independent Website" in SAP S/4HANA. It reads from 1 data source (I_AddressURI) and exposes 14 fields with key fields BusinessPartner, AddressID, Person, OrdinalNumber. It has 1 association to related views. Part of development package MDC_BUPA_BO.
SAP Help Documentation
| Category | CDS Views for Business Partner |
|---|
This CDS view is designed to provide a structured representation of business partner's website information, specifically focusing on address-independent website URLs. It integrates data from different entities to offer a comprehensive view of website URLs linked to business partners, including details such as the default status of the URL, the type of URI, and associated remarks. This CDS view provides the data to answer the following business questions: What are the website URLs associated with each business partner? Which website URL is marked as the default for a given business partner? What type of URI is used for the business partner's website? Are there any remarks or additional information associated with the business partner's website URL? How can we identify all business partners linked to a specific address-independent website URL?
Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: BEGRU_BUPA_GRP – Authorization Group for Business Partners RLTYP – Business Partner Role
Structure
Important Fields Important fields in this view include the following: Field Name Description BusinessPartner Business Partner Number AddressID Address Number Person Person Number OrdinalNumber Sequence Number ValidityStartDate Date from when validity starts IsDefaultURLAddress Default website address UniformResourceIdentifierType URI type identifier
SAP API Hub
| Category | Basic |
|---|---|
| State | C1 |
| Line of Business | Database & Data Management |
| Application Component | AP-MD-BP-RAP |
| Extensible (Key User) | No |
| Extensible (Developer) | No |
| Release State (Key User) | Released |
| Release State (Developer) | Released |
| Package | Database and Data Management for SAP S/4HANA Cloud Public Edition |
| Description | <p>This CDS view is designed to provide a structured representation of business partner's website information, specifically focusing on address-independent website URLs. It integrates data from different entities to offer a comprehensive view of website URLs linked to business partners, including details such as the default status of the URL, the type of URI, and associated remarks.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What are the website URLs associated with each business partner?</p></li> <li><p>Which website URL is marked as the default for a given business partner?</p></li> <li><p>What type of URI is used for the business partner's website?</p></li> <li><p>Are there any remarks or additional information associated with the business partner's website URL?</p></li> <li><p>How can we identify all business partners linked to a specific address-independent website URL?</p></li> </ul> |
Documentation
- Analytics with CDS Views — Build Analytics for S/4HANA Cloud Public Edition ABAP CDS views replicated to SAP Cloud Platform
- CDS Views on SAP Business Accelerator Hub — Explore SAP S/4HANA Cloud Public Edition CDS Views on SAP Business Accelerator Hub
- Create CDS View as API — Create CDS views in SAP S/4HANA Cloud Public Edition and consume them as APIs
- Custom CDS Views — Access data using a Custom Core Data Service view (Custom CDS view)
- Custom Communication Scenarios — Create custom communication scenarios to configure custom communication arrangement
- Key User Extensibility Tools — The Key User Extensibility Tools of S/4HANA
- SAP S/4HANA Extensibility — SAP S/4HANA Extensibility Tutorial
- VDM View Types — The Virtual Data Model in SAP S/4HANA Cloud Public Edition
- View Browser — Search, browse and tag CDS Views
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_AddressURI | I_AddressURI | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartner | _BusinessPartner | $projection.AddressID = _BusinessPartner.IndependentAddressID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_BPADDINDURI | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | AddressID | view | |
| EndUserText.label | BP Address independent Website | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | _BusinessPartner | BusinessPartner | Business Partner Number |
| KEY | AddressID | I_AddressURI | AddressID | Ship-to address |
| KEY | Person | I_AddressURI | AddressPersonID | Person Number |
| KEY | OrdinalNumber | I_AddressURI | CommMediumSequenceNumber | Sequence Number |
| ValidityStartDate | ||||
| IsDefaultURLAddress | I_AddressURI | URLIsCurrentDefault | Flag: this address is the default address | |
| CommNumberIsNotUsed | Flag: This Communication Number is Not Used | |||
| UniformResourceIdentifierType | I_AddressURI | AddressManagementURIType | URI type flag | |
| SearchURLAddress | URI address search field | |||
| URLFieldLength | ||||
| WebsiteURL | I_AddressURI | UniformResourceIdentifier | ||
| _BusinessPartner | _BusinessPartner | |||
| _AddressCommunicationRemark | I_AddressURI | _AddressCommunicationRemark | ||
| _AddressManagementURIType | I_AddressURI | _AddressManagementURIType |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_BPAddressIndependentWebsite.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: P_BPADDINDURI
CREATE VIEW I_BPAddressIndependentWebsite AS
SELECT
_BusinessPartner.BusinessPartner AS BusinessPartner,
I_AddressURI.AddressID AS AddressID,
I_AddressURI.AddressPersonID AS Person,
I_AddressURI.CommMediumSequenceNumber AS OrdinalNumber,
cast ( '00010101' as abap.dats) AS ValidityStartDate,
I_AddressURI.URLIsCurrentDefault AS IsDefaultURLAddress,
cast ( '' as ad_flnouse ) AS CommNumberIsNotUsed,
I_AddressURI.AddressManagementURIType AS UniformResourceIdentifierType,
cast ( '' as ad_uri2 ) AS SearchURLAddress,
cast ('00000' as abap.int4 ) AS URLFieldLength,
I_AddressURI.UniformResourceIdentifier AS WebsiteURL,
I_AddressURI._AddressCommunicationRemark AS _AddressCommunicationRemark,
I_AddressURI._AddressManagementURIType AS _AddressManagementURIType
FROM I_AddressURI
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON AddressID = _BusinessPartner.IndependentAddressID -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA