I_SASAction

DDL: I_SASACTION SQL: IMPESASA Type: view BASIC

SAS Action

I_SASAction is a Basic CDS View that provides data about "SAS Action" in SAP S/4HANA. It reads from 1 data source (mpe_sas_action) and exposes 4 fields with key field StatusAndActionSchemaAction. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mpe_sas_action act from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SASActionText _Text $projection.StatusAndActionSchemaAction = _Text.StatusAndActionSchemaAction

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPESASA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StatusAndActionSchemaAction view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label SAS Action view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatusAndActionSchemaAction mpe_sas_action action_name Action
LastChangedByUser mpe_sas_action changed_by User Name
LastChangeDateTime mpe_sas_action changed_at Timestamp
_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_SASAction.
-- 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: IMPESASA

CREATE VIEW I_SASAction AS
SELECT
  act.action_name AS StatusAndActionSchemaAction,
  act.changed_by AS LastChangedByUser,
  act.changed_at AS LastChangeDateTime
FROM mpe_sas_action AS act
LEFT OUTER JOIN I_SASActionText AS _Text ON StatusAndActionSchemaAction = _Text.StatusAndActionSchemaAction  -- association [0..*]
;