R_AddrAddlRepresentationTP
Additional Representation - TP
R_AddrAddlRepresentationTP is a CDS View that provides data about "Additional Representation - TP" in SAP S/4HANA. It reads from 1 data source (I_AddrOrgNamePostalAddress) and exposes 58 fields with key fields AddressID, AddressRepresentationCode. Part of development package S_ADDRESS_RAP_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_AddrOrgNamePostalAddress | I_AddrOrgNamePostalAddress | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Additional Representation - TP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (58)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AddressID | AddressID | Ship-to address | |
| KEY | AddressRepresentationCode | AddressRepresentationCode | Address Version | |
| AddressIsPersonAddress | AddressIsPersonAddress | pers. address | ||
| 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 | ||
| FormOfAddress | FormOfAddress | Title Key | ||
| AddresseeName1 | AddresseeName1 | PA text | ||
| AddresseeName2 | AddresseeName2 | Name2/First nme | ||
| AddresseeName3 | AddresseeName3 | Name 3 | ||
| AddresseeName4 | AddresseeName4 | Name 4 | ||
| 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 | Address group | ||
| _Country | _Country | |||
| _FormOfAddress | _FormOfAddress | |||
| _Region | _Region | |||
| _TransportationZone | _TransportationZone | |||
| _OrganizationAddress | _OrganizationAddress |
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_AddrAddlRepresentationTP.
-- 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_AddrAddlRepresentationTP AS
SELECT
AddressID,
AddressRepresentationCode,
AddressIsPersonAddress,
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,
FormOfAddress,
AddresseeName1,
AddresseeName2,
AddresseeName3,
AddresseeName4,
TaxJurisdiction,
TransportZone,
DeliveryServiceTypeCode,
DeliveryServiceNumber,
AddressTimeZone,
SecondaryRegion,
SecondaryRegionName,
TertiaryRegion,
TertiaryRegionName,
AddressSearchTerm1,
AddressSearchTerm2,
RegionalStructureCheckStatus,
AddressGroup
FROM I_AddrOrgNamePostalAddress
;
Learn More
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA