I_BlockCategoryText

DDL: I_BLOCKCATEGORYTEXT Type: view BASIC

Block Category - Text

I_BlockCategoryText (Basic)

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

Supply Chain

I_BlockCategoryText is a Basic CDS View that provides data about "Block Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields BlockCategory, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentTM-CF
CapabilitiesLanguage-Dependent Text, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search, Data Source in SQL Select
PackageSupply Chain for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BlockCategory _BlockCategory $projection.BlockCategory = _BlockCategory.BlockCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
EndUserText.label Block Category - Text view
ObjectModel.representativeKey BlockCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IBLOCKCATEGORYT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BlockCategory Block Category
KEY Language ddlanguage Language Key
BlockCategoryDesc Transportation Order Block Category Description
_BlockCategory _BlockCategory
_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_BlockCategoryText.
-- 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.

CREATE VIEW I_BlockCategoryText AS
SELECT
  cast(substring(domvalue_l, 1, 1) as /scmtms/block_category preserving type) AS BlockCategory,
  ddlanguage AS Language,
  cast(ddtext as /scmtms/vdm_block_cat_desc preserving type) AS BlockCategoryDesc
FROM dd07t
LEFT OUTER JOIN I_BlockCategory AS _BlockCategory ON BlockCategory = _BlockCategory.BlockCategory  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;