I_REPartnerRoleType

DDL: I_REPARTNERROLETYPE SQL: IREBPROLETYPE Type: view BASIC

Real Estate BP Role Type

I_REPartnerRoleType is a Basic CDS View that provides data about "Real Estate BP Role Type" in SAP S/4HANA. It reads from 1 data source (tivbpsubrole) and exposes 3 fields with key fields BusinessPartnerRole, REPartnerRoleType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tivbpsubrole tivbpsubrole from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_REPartnerRoleTypeText _Text $projection.BusinessPartnerRole = _Text.BusinessPartnerRole and $projection.REPartnerRoleType = _Text.REPartnerRoleType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IREBPROLETYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate BP Role Type view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRole role VMS Roles
KEY REPartnerRoleType subrole Role type
_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_REPartnerRoleType.
-- 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: IREBPROLETYPE

CREATE VIEW I_REPartnerRoleType AS
SELECT
  role AS BusinessPartnerRole,
  subrole AS REPartnerRoleType
FROM tivbpsubrole
LEFT OUTER JOIN I_REPartnerRoleTypeText AS _Text ON BusinessPartnerRole = _Text.BusinessPartnerRole AND REPartnerRoleType = _Text.REPartnerRoleType  -- association [0..*]
;