R_PersonNameTP

DDL: R_PERSONNAMETP Type: view_entity TRANSACTIONAL Package: S_ADDRESS_RAP_BO

Person Address BO - TP

R_PersonNameTP is a Transactional CDS View that provides data about "Person Address BO - TP" in SAP S/4HANA. It reads from 1 data source (I_ADDRPERSNAME_ADDRID) and exposes 24 fields with key fields AddressPersonID, AddressID. It has 2 associations to related views. Part of development package S_ADDRESS_RAP_BO.

Data Sources (1)

SourceAliasJoin Type
I_ADDRPERSNAME_ADDRID Person from

Associations (2)

CardinalityTargetAliasCondition
[0..*] R_AddressTP _Address $projection.AddressPersonID = _Address.AddressPersonIDForEdit and $projection.AddressID = _Address.AddressIDForEdit
[0..*] R_PersonNameAddlRprstnTP _PersAdditionalRepresentation

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Person Address BO - TP view
Metadata.allowExtensions true view
ObjectModel.representativeKey AddressPersonID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #TRANSACTIONAL view
Search.searchable true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY AddressPersonID AddressPersonID Person Number
KEY AddressID AddressID Ship-to address
AddressRepresentationCode AddressRepresentationCode Address Version
FormOfAddress FormOfAddress Title Key
GivenName GivenName
FamilyName FamilyName
PersonBirthName PersonBirthName
PersonMiddleName PersonMiddleName
SecondFamilyName SecondFamilyName
AcademicTitle AcademicTitle Academic Title
AcademicTitle2 AcademicTitle2 2nd Academic
FamilyNamePrefix FamilyNamePrefix
FamilyNameSecondPrefix FamilyNameSecondPrefix
PersonNameSupplementCode PersonNameSupplementCode
PersonNickname PersonNickname
NameInitials NameInitials
PersonFullName PersonFullName Full Name
CorrespondenceLanguage CorrespondenceLanguage Language
AddressPersonSearchTerm1 AddressPersonSearchTerm1
AddressPersonSearchTerm2 AddressPersonSearchTerm2
PersonFullNameFormattingCode PersonFullNameFormattingCode
PersonFullNameFormattingCntry PersonFullNameFormattingCntry
_PersAdditionalRepresentation _PersAdditionalRepresentation
_Address _Address

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 R_PersonNameTP.
-- 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 R_PersonNameTP AS
SELECT
  AddressPersonID,
  AddressID,
  AddressRepresentationCode,
  FormOfAddress,
  GivenName,
  FamilyName,
  PersonBirthName,
  PersonMiddleName,
  SecondFamilyName,
  AcademicTitle,
  AcademicTitle2,
  FamilyNamePrefix,
  FamilyNameSecondPrefix,
  PersonNameSupplementCode,
  PersonNickname,
  NameInitials,
  PersonFullName,
  CorrespondenceLanguage,
  AddressPersonSearchTerm1,
  AddressPersonSearchTerm2,
  PersonFullNameFormattingCode,
  PersonFullNameFormattingCntry
FROM I_ADDRPERSNAME_ADDRID AS Person
LEFT OUTER JOIN R_AddressTP AS _Address ON AddressPersonID = _Address.AddressPersonIDForEdit AND AddressID = _Address.AddressIDForEdit  -- association [0..*]
LEFT OUTER JOIN R_PersonNameAddlRprstnTP AS _PersAdditionalRepresentation ON /* condition not available in parsed metadata */  -- association [0..*]
;