I_BusinessPartnerFormOfAddress

DDL: I_BUSINESSPARTNERFORMOFADDRESS SQL: IBPFORMOFADDR Type: view COMPOSITE

Business Partner Form Of Address

I_BusinessPartnerFormOfAddress is a Composite CDS View that provides data about "Business Partner Form Of Address" in SAP S/4HANA. It reads from 1 data source (tsad3) and exposes 2 fields with key field FormOfAddress. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tsad3 tsad3 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerFormOfAddrTxt _Text $projection.FormOfAddress = _Text.FormOfAddress

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBPFORMOFADDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Form Of Address view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FormOfAddress title View Title
_Text _Text

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_BusinessPartnerFormOfAddress.
-- 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: IBPFORMOFADDR

CREATE VIEW I_BusinessPartnerFormOfAddress AS
SELECT
  title AS FormOfAddress
FROM tsad3
LEFT OUTER JOIN I_BusinessPartnerFormOfAddrTxt AS _Text ON FormOfAddress = _Text.FormOfAddress  -- association [0..*]
;