I_BusPartPersonFullName

DDL: I_BUSPARTPERSONFULLNAME SQL: IBPPERSONADDR Type: view BASIC

Person data of business partner

I_BusPartPersonFullName is a Basic CDS View that provides data about "Person data of business partner" in SAP S/4HANA. It reads from 1 data source (adrp) and exposes 4 fields with key fields PersonNumber, ValidityStartDateTime, AddressRepresentationCode.

Data Sources (1)

SourceAliasJoin Type
adrp PersonAddress from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBPPERSONADDR view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Person data of business partner view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PersonNumber adrp persnumber Person Number
KEY ValidityStartDateTime adrp date_from Validity Start Date
KEY AddressRepresentationCode adrp nation Country/Region
PersonFullName adrp name_text Full Name

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_BusPartPersonFullName.
-- 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: IBPPERSONADDR

CREATE VIEW I_BusPartPersonFullName AS
SELECT
  PersonAddress.persnumber AS PersonNumber,
  PersonAddress.date_from AS ValidityStartDateTime,
  PersonAddress.nation AS AddressRepresentationCode,
  PersonAddress.name_text AS PersonFullName
FROM adrp AS PersonAddress
;