I_SURcp2BOMStatusText

DDL: I_SURCP2BOMSTATUSTEXT SQL: ISUR2BSTATUST Type: view BASIC

Sync Unit Rcp2BOM Status Text

I_SURcp2BOMStatusText is a Basic CDS View that provides data about "Sync Unit Rcp2BOM Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SyncUnitStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SURcp2BOMStatus _SyncUnitStatus $projection.SyncUnitStatus = _SyncUnitStatus.SyncUnitStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISUR2BSTATUST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Sync Unit Rcp2BOM Status Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey SyncUnitStatus view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SyncUnitStatus
KEY Language dd07t ddlanguage Lang.
SyncUnitStatusText dd07t ddtext Short text
_SyncUnitStatus _SyncUnitStatus
_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_SURcp2BOMStatusText.
-- 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: ISUR2BSTATUST

CREATE VIEW I_SURcp2BOMStatusText AS
SELECT
  cast( dd07t.domvalue_l as /plmb/gss_r2b_sync_status ) AS SyncUnitStatus,
  dd07t.ddlanguage AS Language,
  dd07t.ddtext AS SyncUnitStatusText
FROM dd07t
LEFT OUTER JOIN I_SURcp2BOMStatus AS _SyncUnitStatus ON SyncUnitStatus = _SyncUnitStatus.SyncUnitStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;