I_BOORelshpTypeText

DDL: I_BOORELSHPTYPETEXT SQL: IBOORELTYPTXT Type: view_entity BASIC Package: VDM_PP_MD_MRC

Relationship Type

I_BOORelshpTypeText is a Basic CDS View that provides data about "Relationship Type" in SAP S/4HANA. It reads from 1 data source (tcn2t) and exposes 4 fields with key fields Language, NetworkActivityRelationTypeKey. Part of development package VDM_PP_MD_MRC.

Data Sources (1)

SourceAliasJoin Type
tcn2t tcn2t from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Relationship Type view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY NetworkActivityRelationTypeKey aobky Rel. key
NetworkActyRelationDescription aobtx Relations. type
NetworkActivityRelationType aobkt Rel. type

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_BOORelshpTypeText.
-- 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: IBOORELTYPTXT

CREATE VIEW I_BOORelshpTypeText AS
SELECT
  langu AS Language,
  aobky AS NetworkActivityRelationTypeKey,
  aobtx AS NetworkActyRelationDescription,
  aobkt AS NetworkActivityRelationType
FROM tcn2t
;