I_BusPartIdentificationType

DDL: I_BUSPARTIDENTIFICATIONTYPE SQL: IBPIDTYPE Type: view COMPOSITE Package: MDC_BUPA_BO

Business Partner identification Type View

I_BusPartIdentificationType is a Composite CDS View (Fact) that provides data about "Business Partner identification Type View" in SAP S/4HANA. It reads from 3 data sources (tb039a, tb039a, tb039a) and exposes 8 fields with key fields BPIdentificationType, BusinessPartnerCategory, BusinessPartnerCategory, BusinessPartnerCategory. It has 2 associations to related views. Part of development package MDC_BUPA_BO.

Data Sources (3)

SourceAliasJoin Type
tb039a tb039a from
tb039a tb039a union
tb039a tb039a union

Associations (2)

CardinalityTargetAliasCondition
[1..*] I_BusPartIdentificationTypeT_2 _Text $projection.BPIdentificationType = _Text.BPIdentificationType
[1..1] I_BusPartCategory _BusinessPartnerCategory $projection.BusinessPartnerCategory = _BusinessPartnerCategory.BusinessPartnerCategory

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBPIDTYPE view
Analytics.dataCategory #FACT view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Business Partner identification Type View view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BPIdentificationType type Worklist Type
KEY BusinessPartnerCategory
_Text _Text
KEY BusinessPartnerCategory
_Text _Text
KEY BusinessPartnerCategory
_Text _Text
_BusinessPartnerCategory _BusinessPartnerCategory

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_BusPartIdentificationType.
-- 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: IBPIDTYPE

CREATE VIEW I_BusPartIdentificationType AS
SELECT
  type AS BPIdentificationType,
  cast('1' as bu_type) AS BusinessPartnerCategory
FROM tb039a
LEFT OUTER JOIN I_BusPartIdentificationTypeT_2 AS _Text ON BPIdentificationType = _Text.BPIdentificationType  -- association [1..*]
LEFT OUTER JOIN I_BusPartCategory AS _BusinessPartnerCategory ON BusinessPartnerCategory = _BusinessPartnerCategory.BusinessPartnerCategory  -- association [1..1]
-- UNION with additional select branch(es): tb039a
;