I_BOPTriangularDealRelevancy

DDL: I_BOPTRIANGULARDEALRELEVANCY SQL: IBOPTRIDEALREL Type: view BASIC Package: GLO_FIN_IS_BOP_GEN

Triangular Deal Relevancy

I_BOPTriangularDealRelevancy is a Basic CDS View (Dimension) that provides data about "Triangular Deal Relevancy" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BOPTriangularDealRelevancy. It has 1 association to related views. Part of development package GLO_FIN_IS_BOP_GEN.

SAP Help Documentation

CategoryCDS Views for Balance of Payments
Data CategoryCustomizing
StatusReleased
Purpose
This CDS view reads the configured balance of payment triangular deal relevancy flags.

Structure
Object types This view relates to the following SAP object types: not applicable

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BOPTriangularDealRelevancyT _Text $projection.BOPTriangularDealRelevancy = _Text.BOPTriangularDealRelevancy

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBOPTRIDEALREL view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Triangular Deal Relevancy view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BOPTriangularDealRelevancy view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BOPTriangularDealRelevancy
_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_BOPTriangularDealRelevancy.
-- 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: IBOPTRIDEALREL

CREATE VIEW I_BOPTriangularDealRelevancy AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as boptriangulardealrelevancy ) AS BOPTriangularDealRelevancy
FROM dd07l
LEFT OUTER JOIN I_BOPTriangularDealRelevancyT AS _Text ON BOPTriangularDealRelevancy = _Text.BOPTriangularDealRelevancy  -- association [0..*]
;