C_BPAddressValueHelp

DDL: C_BPADDRESSVALUEHELP SQL: CBPADDRESSVH Type: view CONSUMPTION

Value Help view for list of addresses of a BP

C_BPAddressValueHelp is a Consumption CDS View that provides data about "Value Help view for list of addresses of a BP" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartnerAddress) and exposes 9 fields with key field AddressNumber. It has 1 association to related views. It is exposed through 1 OData service (ICL_INSURCLMPAYMENT).

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerAddress I_BusinessPartnerAddress from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CBPADDRESSVH view
EndUserText.label Value Help view for list of addresses of a BP view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey AddressNumber view
Search.searchable true view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
ICL_INSURCLMPAYMENT ICL_UI_INSURCLMPAYMENT_O2 V2 C1 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AddressNumber AddressNumber Src Address No
BusinessPartner BusinessPartner Issuing Authority
HouseNumber HouseNumber House Number
StreetName StreetName Text
CityName CityName Name
Country Country Venue: Ctry/Reg
PostalCode PostalCode Postal Code
_BusinessPartner _BusinessPartner
_BPProtectedAddress _BPProtectedAddress

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 C_BPAddressValueHelp.
-- 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: CBPADDRESSVH

CREATE VIEW C_BPAddressValueHelp AS
SELECT
  AddressNumber,
  BusinessPartner,
  HouseNumber,
  StreetName,
  CityName,
  Country,
  PostalCode
FROM I_BusinessPartnerAddress
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
;