I_BPAddressIndependentWebsite

DDL: I_BPADDRESSINDEPENDENTWEBSITE SQL: P_BPADDINDURI Type: view BASIC Package: MDC_BUPA_BO

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

CategoryCDS Views for Business Partner
Purpose
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

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessDatabase & Data Management
Application ComponentAP-MD-BP-RAP
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageDatabase 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

Data Sources (1)

SourceAliasJoin Type
I_AddressURI I_AddressURI from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner $projection.AddressID = _BusinessPartner.IndependentAddressID

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]
;