I_BusinessPartnerRoleText

DDL: I_BUSINESSPARTNERROLETEXT SQL: IBPROLETXT Type: view BASIC

Business Partner Role- Text

I_BusinessPartnerRoleText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Database & Data Management

I_BusinessPartnerRoleText is a Basic CDS View that provides data about "Business Partner Role- Text" in SAP S/4HANA. It reads from 1 data source (tb003t) and exposes 6 fields with key fields Client, BusinessPartnerRole, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentAP-MD-BP
CapabilitiesLanguage-Dependent Text, Data Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Data Extraction, Analytical Dimension
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tb003t tb003t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_BusinessPartnerRole _BusinessPartnerRole $projection.BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole

Annotations (13)

NameValueLevelField
EndUserText.label Business Partner Role- Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey BusinessPartnerRole view
AbapCatalog.sqlViewName IBPROLETXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Client client Workflow definition: Client
KEY BusinessPartnerRole role VMS Roles
KEY Language spras Off. Language
BusinessPartnerRoleShortName rltitl Role Description
_BusinessPartnerRole _BusinessPartnerRole
_Language _Language

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_BusinessPartnerRoleText.
-- 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: IBPROLETXT

CREATE VIEW I_BusinessPartnerRoleText AS
SELECT
  Client,
  role AS BusinessPartnerRole,
  spras AS Language,
  rltitl AS BusinessPartnerRoleShortName
FROM tb003t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_BusinessPartnerRole AS _BusinessPartnerRole ON BusinessPartnerRole = _BusinessPartnerRole.BusinessPartnerRole  -- association [1..1]
;