I_SASStatusCategory

DDL: I_SASSTATUSCATEGORY Type: view_entity BASIC

SAS Status Category

I_SASStatusCategory is a Basic CDS View that provides data about "SAS Status Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SASStatusCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SASStatusCategoryText _Text $projection.SASStatusCategory = _Text.SASStatusCategory

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SASStatusCategory view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
AbapCatalog.entityBuffer.definitionAllowed true view
VDM.viewType #BASIC view
EndUserText.label SAS Status Category view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SASStatusCategory
_Text _Text

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_SASStatusCategory.
-- 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_SASStatusCategory AS
SELECT
  cast( cast(substring(typ.domvalue_l, 1, 1) as abap.numc(1) ) as mpe_sas_status_category_type) AS SASStatusCategory
FROM dd07l AS typ
LEFT OUTER JOIN I_SASStatusCategoryText AS _Text ON SASStatusCategory = _Text.SASStatusCategory  -- association [0..*]
;