I_FMEATaskAssignedActionStatus

DDL: I_FMEATASKASSIGNEDACTIONSTATUS Type: view_entity BASIC

Assigned Action Status

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

Data Sources (1)

SourceAliasJoin Type
I_FMEATask I_FMEATask from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FMEATaskActionStatusText _Text $projection.FMEATaskActionStatus = _Text.FMEATaskActionStatus

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Assigned Action Status view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FMEATaskUUID I_FMEATask FMEATaskUUID
FMEAAuthorizationGroup I_FMEATask FMEAAuthorizationGroup AuthorizGroup
_FMEATaskPartner I_FMEATask _FMEATaskPartner
_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_FMEATaskAssignedActionStatus.
-- 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_FMEATaskAssignedActionStatus AS
SELECT
  I_FMEATask.FMEATaskUUID AS FMEATaskUUID,
  I_FMEATask.FMEAAuthorizationGroup AS FMEAAuthorizationGroup,
  I_FMEATask._FMEATaskPartner AS _FMEATaskPartner
FROM I_FMEATask
LEFT OUTER JOIN I_FMEATaskActionStatusText AS _Text ON FMEATaskActionStatus = _Text.FMEATaskActionStatus  -- association [0..*]
;