P_BillingAddressPersonName

DDL: P_BILLINGADDRESSPERSONNAME Type: view_entity COMPOSITE

P_BillingAddressPersonName is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_AddressPersonName) and exposes 6 fields with key fields AddressPersonID, AddressRepresentationCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AddressPersonName I_AddressPersonName from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _CorrespondenceLanguage $projection.CorrespondenceLanguage = _CorrespondenceLanguage.Language

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY AddressPersonID AddressPersonID Person Number
KEY AddressRepresentationCode AddressRepresentationCode Address Version
FormOfAddress FormOfAddress Title Key
CorrespondenceLanguage CorrespondenceLanguage Language
_FormOfAddress _FormOfAddress
_CorrespondenceLanguage _CorrespondenceLanguage

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 P_BillingAddressPersonName.
-- 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.

CREATE VIEW P_BillingAddressPersonName AS
SELECT
  AddressPersonID,
  AddressRepresentationCode,
  FormOfAddress,
  CorrespondenceLanguage
FROM I_AddressPersonName
LEFT OUTER JOIN I_Language AS _CorrespondenceLanguage ON CorrespondenceLanguage = _CorrespondenceLanguage.Language  -- association [0..1]
;