I_TrdgContrPartAddressDets

DDL: I_TRDGCONTRPARTADDRESSDETS SQL: ITCPARTADDET Type: view BASIC

Interface view for Trading Contract Partner Address details

I_TrdgContrPartAddressDets is a Basic CDS View that provides data about "Interface view for Trading Contract Partner Address details" in SAP S/4HANA. It reads from 1 data source (adrc) and exposes 5 fields with key field ActiveAddressID.

Data Sources (1)

SourceAliasJoin Type
adrc adrc from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ITCPARTADDET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Interface view for Trading Contract Partner Address details view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ActiveAddressID addrnumber Address Number
BusinessPartnerName1 name1 PA text
CustomerSupplierCityName city1 City
CustomerSupplierPostalCode post_code1 Postal Code
CustomerSupplierStreetName street Street Code

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_TrdgContrPartAddressDets.
-- 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: ITCPARTADDET

CREATE VIEW I_TrdgContrPartAddressDets AS
SELECT
  addrnumber AS ActiveAddressID,
  name1 AS BusinessPartnerName1,
  city1 AS CustomerSupplierCityName,
  post_code1 AS CustomerSupplierPostalCode,
  street AS CustomerSupplierStreetName
FROM adrc
;