I_BusinessPartnerCustRoleTxt

DDL: I_BUSINESSPARTNERCUSTROLETXT SQL: IBUPACUSTROLETXT Type: view BASIC

CDS view for Customer Roles text

I_BusinessPartnerCustRoleTxt is a Basic CDS View that provides data about "CDS view for Customer Roles text" in SAP S/4HANA. It reads from 1 data source (tb003t) and exposes 5 fields with key fields Role, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tb003t tb003t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BusinessPartnerCustRole _CustRole $projection.Role = _CustRole.Role
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBUPACUSTROLETXT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label CDS view for Customer Roles text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Role view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Role role Business Partner Roles
KEY Language spras Off. Language
RoleText rltxt BP Role Description
_Language _Language
_CustRole _CustRole

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_BusinessPartnerCustRoleTxt.
-- 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: IBUPACUSTROLETXT

CREATE VIEW I_BusinessPartnerCustRoleTxt AS
SELECT
  Role,
  spras AS Language,
  rltxt AS RoleText
FROM tb003t
LEFT OUTER JOIN I_BusinessPartnerCustRole AS _CustRole ON Role = _CustRole.Role  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;