A_BuPaAddressUsage

DDL: A_BUPAADDRESSUSAGE SQL: ABPADDRESSUSAGE Type: view BASIC

Address Usage

A_BuPaAddressUsage is a Basic CDS View that provides data about "Address Usage" in SAP S/4HANA. It reads from 1 data source (I_Businesspartneraddressusage) and exposes 8 fields with key fields BusinessPartner, ValidityEndDate, AddressUsage, AddressID.

Data Sources (1)

SourceAliasJoin Type
I_Businesspartneraddressusage I_Businesspartneraddressusage from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ABPADDRESSUSAGE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Address Usage view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
KEY ValidityEndDate ValidityEndDate ValidTo
KEY AddressUsage AddressUsage Address Type
KEY AddressID AddressNumber Src Address No
ValidityStartDate ValidityStartDate Validity Start Date
StandardUsage StandardUsage TRUE
_BusinessPartner _BusinessPartner
AuthorizationGroup AuthorizationGroup AuthorizGroup

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 A_BuPaAddressUsage.
-- 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: ABPADDRESSUSAGE

CREATE VIEW A_BuPaAddressUsage AS
SELECT
  BusinessPartner,
  ValidityEndDate,
  AddressUsage,
  AddressNumber AS AddressID,
  ValidityStartDate,
  StandardUsage,
  AuthorizationGroup
FROM I_Businesspartneraddressusage
;