R_AddlRepresentationTP

DDL: R_ADDLREPRESENTATIONTP Type: view_entity TRANSACTIONAL

Address for Person BO

R_AddlRepresentationTP is a Transactional CDS View that provides data about "Address for Person BO" in SAP S/4HANA. It reads from 1 data source (I_PostalWorkplaceAddress) and exposes 67 fields with key fields AddressID, AddressPersonID, AddressRepresentationCode.

Data Sources (1)

SourceAliasJoin Type
I_PostalWorkplaceAddress I_PostalWorkplaceAddress from

Annotations (10)

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

Fields (67)

KeyFieldSource TableSource FieldDescription
KEY AddressID AddressID Ship-to address
KEY AddressPersonID AddressPersonID Person Number
KEY AddressRepresentationCode AddressRepresentationCode Address Version
AddressPersonIDForEdit AddressPersonID Person Number
AddressIsPersonAddress AddressIsPersonAddress
WorkplaceBuilding WorkplaceBuilding Building code
WorkplaceFloor WorkplaceFloor
WorkplaceRoomNumber WorkplaceRoomNumber
WorkplaceFunctionalTitleName WorkplaceFunctionalTitleName
WorkplaceDepartmentName WorkplaceDepartmentName
WorkplacePrfrdCommMediumType WorkplacePrfrdCommMediumType
WorkplaceCorrespncShortName WorkplaceCorrespncShortName
WorkplaceInhouseMail WorkplaceInhouseMail
CorrespondenceLanguage CorrespondenceLanguage Language
PrfrdCommMediumType PrfrdCommMediumType Comm. Method
CityNumber CityNumber City Code
CityName CityName Name
DistrictName DistrictName District
VillageName VillageName Different City
PostalCode PostalCode Postal Code
CompanyPostalCode CompanyPostalCode Company Post Cd
POBox POBox PO Box
POBoxAddrNonDeliverableReason POBoxAddrNonDeliverableReason Undeliverable
POBoxIsWithoutNumber POBoxIsWithoutNumber PO Box w/o No.
POBoxPostalCode POBoxPostalCode PO Box Postal Code
POBoxLobbyName POBoxLobbyName PO Box Lobby
POBoxDeviatingCityName POBoxDeviatingCityName PO Box City
POBoxDeviatingCityCode POBoxDeviatingCityCode City Code
POBoxDeviatingRegion POBoxDeviatingRegion PO Region
POBoxDeviatingCountry POBoxDeviatingCountry PO Box C/R
Street Street Street Code
StreetName StreetName Text
StreetAddrNonDeliverableReason StreetAddrNonDeliverableReason Undeliverable
StreetPrefixName1 StreetPrefixName1 Street 2
StreetPrefixName2 StreetPrefixName2 Street 3
StreetSuffixName1 StreetSuffixName1 Street 4
StreetSuffixName2 StreetSuffixName2 Street 5
HouseNumber HouseNumber House Number
HouseNumberSupplementText HouseNumberSupplementText Supplement
Building Building Building code
Floor Floor Floor
RoomNumber RoomNumber Room Number
Country Country Venue: Ctry/Reg
Region Region Venue Region
CareOfName CareOfName c/o
AddresseeName1 AddresseeName1
AddresseeName2 AddresseeName2
AddresseeName3 AddresseeName3
AddresseeName4 AddresseeName4
TaxJurisdiction TaxJurisdiction Tax Jurisdiction
TransportZone TransportZone Transport Zone
DeliveryServiceTypeCode DeliveryServiceTypeCode Delvry Serv Type
DeliveryServiceNumber DeliveryServiceNumber Delivery Service No.
AddressTimeZone AddressTimeZone Time Zone
SecondaryRegion SecondaryRegion County code
SecondaryRegionName SecondaryRegionName County
TertiaryRegion TertiaryRegion Township code
TertiaryRegionName TertiaryRegionName Township
AddressSearchTerm1 AddressSearchTerm1 Search Term 1
AddressSearchTerm2 AddressSearchTerm2 Search Term 2
RegionalStructureCheckStatus RegionalStructureCheckStatus Check Status
AddressGroup AddressGroup
AddressType AddressType Address Type
_Country _Country
_Region _Region
_TransportationZone _TransportationZone
_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_AddlRepresentationTP.
-- 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_AddlRepresentationTP AS
SELECT
  AddressID,
  AddressPersonID,
  AddressRepresentationCode,
  AddressPersonID AS AddressPersonIDForEdit,
  AddressIsPersonAddress,
  WorkplaceBuilding,
  WorkplaceFloor,
  WorkplaceRoomNumber,
  WorkplaceFunctionalTitleName,
  WorkplaceDepartmentName,
  WorkplacePrfrdCommMediumType,
  WorkplaceCorrespncShortName,
  WorkplaceInhouseMail,
  CorrespondenceLanguage,
  PrfrdCommMediumType,
  CityNumber,
  CityName,
  DistrictName,
  VillageName,
  PostalCode,
  CompanyPostalCode,
  POBox,
  POBoxAddrNonDeliverableReason,
  POBoxIsWithoutNumber,
  POBoxPostalCode,
  POBoxLobbyName,
  POBoxDeviatingCityName,
  POBoxDeviatingCityCode,
  POBoxDeviatingRegion,
  POBoxDeviatingCountry,
  Street,
  StreetName,
  StreetAddrNonDeliverableReason,
  StreetPrefixName1,
  StreetPrefixName2,
  StreetSuffixName1,
  StreetSuffixName2,
  HouseNumber,
  HouseNumberSupplementText,
  Building,
  Floor,
  RoomNumber,
  Country,
  Region,
  CareOfName,
  AddresseeName1,
  AddresseeName2,
  AddresseeName3,
  AddresseeName4,
  TaxJurisdiction,
  TransportZone,
  DeliveryServiceTypeCode,
  DeliveryServiceNumber,
  AddressTimeZone,
  SecondaryRegion,
  SecondaryRegionName,
  TertiaryRegion,
  TertiaryRegionName,
  AddressSearchTerm1,
  AddressSearchTerm2,
  RegionalStructureCheckStatus,
  AddressGroup,
  AddressType
FROM I_PostalWorkplaceAddress
;