I_SupplierAddrDepdntGeneral

DDL: I_SUPPLIERADDRDEPDNTGENERAL SQL: ISUPADDRDEPDNT Type: view BASIC Package: VDM_MD_COMMON

Supplier General Address Dependent info

I_SupplierAddrDepdntGeneral is a Basic CDS View that provides data about "Supplier General Address Dependent info" in SAP S/4HANA. It reads from 1 data source (lfa1_addr) and exposes 9 fields with key fields Supplier, AddressID. It has 3 associations to related views. Part of development package VDM_MD_COMMON.

Data Sources (1)

SourceAliasJoin Type
lfa1_addr lfa1_addr from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[0..1] I_Address_2 _AddressDefaultRepresentation $projection.AddressID = _AddressDefaultRepresentation.AddressID and _AddressDefaultRepresentation.AddressRepresentationCode = ' '
[0..1] E_SupplierAddrDepdnt _SupAddrDepExt $projection.Supplier = _SupAddrDepExt.Supplier and $projection.AddressID = _SupAddrDepExt.AddressID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ISUPADDRDEPDNT 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.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey AddressID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
EndUserText.label Supplier General Address Dependent info view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Supplier lfa1_addr lifnr Vendor no.
KEY AddressID lfa1_addr adrnr Sold-To Address
TrainStationName lfa1_addr bahns Train station
FactoryCalendar lfa1_addr plkal Factory Calend.
TranspServiceAgentStstcGrp lfa1_addr stgdl Stat.grp, agent
SuplrTaxAuthorityAccountNumber lfa1_addr fisku Tax Office
IsToBeAcceptedAtOrigin lfa1_addr weora Origin Accept.
_Supplier _Supplier
_AddressDefaultRepresentation _AddressDefaultRepresentation

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_SupplierAddrDepdntGeneral.
-- 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: ISUPADDRDEPDNT

CREATE VIEW I_SupplierAddrDepdntGeneral AS
SELECT
  lfa1_addr.lifnr AS Supplier,
  lfa1_addr.adrnr AS AddressID,
  lfa1_addr.bahns AS TrainStationName,
  lfa1_addr.plkal AS FactoryCalendar,
  lfa1_addr.stgdl AS TranspServiceAgentStstcGrp,
  lfa1_addr.fisku AS SuplrTaxAuthorityAccountNumber,
  lfa1_addr.weora AS IsToBeAcceptedAtOrigin
FROM lfa1_addr
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
LEFT OUTER JOIN I_Address_2 AS _AddressDefaultRepresentation ON AddressID = _AddressDefaultRepresentation.AddressID AND _AddressDefaultRepresentation.AddressRepresentationCode = ' '  -- association [0..1]
LEFT OUTER JOIN E_SupplierAddrDepdnt AS _SupAddrDepExt ON Supplier = _SupAddrDepExt.Supplier AND AddressID = _SupAddrDepExt.AddressID  -- association [0..1]
;