I_Addressindependentfax

DDL: I_ADDRESSINDEPENDENTFAX SQL: IADDRINDFAX Type: view BASIC Package: VDM_MD_BP_BASE

Core View Addr Indp Fax

I_Addressindependentfax is a Basic CDS View that provides data about "Core View Addr Indp Fax" in SAP S/4HANA. It reads from 1 data source (adr3) and exposes 9 fields with key fields AddressID, Person, OrdinalNumber. It has 1 association to related views. Part of development package VDM_MD_BP_BASE.

Data Sources (1)

SourceAliasJoin Type
adr3 adr3 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.FaxCountry = _Country.Country

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IADDRINDFAX view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Core View Addr Indp Fax view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AddressID addrnumber Address Number
KEY Person persnumber Person Number
KEY OrdinalNumber consnumber Sequence Number
IsDefaultFaxNumber adr3 flgdefault Standard No.
FaxCountry country Venue: Ctry/Reg
FaxNumber fax_number Fax Number
FaxNumberExtension fax_extens Extension
InternationalFaxNumber faxnr_long Fax Number
_Country _Country

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_Addressindependentfax.
-- 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: IADDRINDFAX

CREATE VIEW I_Addressindependentfax AS
SELECT
  addrnumber AS AddressID,
  persnumber AS Person,
  consnumber AS OrdinalNumber,
  adr3.flgdefault AS IsDefaultFaxNumber,
  country AS FaxCountry,
  fax_number AS FaxNumber,
  fax_extens AS FaxNumberExtension,
  faxnr_long AS InternationalFaxNumber
FROM adr3
LEFT OUTER JOIN I_Country AS _Country ON FaxCountry = _Country.Country  -- association [0..1]
;