A_CustAddrDepdntExtIdentifier

DDL: A_CUSTADDRDEPDNTEXTIDENTIFIER SQL: ACUSTADDREXTID Type: view BASIC

Customer Address Dependent External Identifier

A_CustAddrDepdntExtIdentifier is a Basic CDS View that provides data about "Customer Address Dependent External Identifier" in SAP S/4HANA. It reads from 1 data source (I_CustAddrDepdntExtIdentifier) and exposes 4 fields with key fields Customer, AddressID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CustAddrDepdntExtIdentifier I_CustAddrDepdntExtIdentifier from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Customer _Customer $projection.Customer = _Customer.Customer

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ACUSTADDREXTID view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
EndUserText.label Customer Address Dependent External Identifier view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
KEY AddressID AddressID Ship-to address
CustomerExternalRefID CustomerExternalRefID SlrDfndCustAddrID
_Customer _Customer

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 A_CustAddrDepdntExtIdentifier.
-- 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: ACUSTADDREXTID

CREATE VIEW A_CustAddrDepdntExtIdentifier AS
SELECT
  Customer,
  AddressID,
  CustomerExternalRefID
FROM I_CustAddrDepdntExtIdentifier
LEFT OUTER JOIN A_Customer AS _Customer ON Customer = _Customer.Customer  -- association [1..1]
;