C_DFS_AssgmtFeToMaintCapbltLi

DDL: C_DFS_ASSGMTFETOMAINTCAPBLTLI SQL: CDFSASSGMTMNTCAL Type: view CONSUMPTION

Consumption view - FE to METL List

C_DFS_AssgmtFeToMaintCapbltLi is a Consumption CDS View that provides data about "Consumption view - FE to METL List" in SAP S/4HANA. It reads from 1 data source (I_DFS_UniversalAssignmentUnion) and exposes 29 fields with key fields DfsAssgmtUUID, DraftUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_DFS_UniversalAssignmentUnion I_DFS_UniversalAssignmentUnion from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_DFS_StatusAttributes _StatusAttributes $projection.DfsAssgmtStatusCode = _StatusAttributes.SystemStatus
[0..*] I_DFS_TechnicalStatusText _TechnicalStatusText $projection.DfsAssgmtActiveDraft = _TechnicalStatusText.DfsAssgmtTechnicalStatus
[1..1] C_FrcElmntOrgMaintCapbltVH _MaintCapbltVH $projection.FrcElmntOrgMaintCapblt = _MaintCapbltVH.FrcElmntOrgMaintCapblt

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CDFSASSGMTMNTCAL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption view - FE to METL List view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Search.searchable true view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY DfsAssgmtUUID DfsAssgmtUUID Assigment GUID
KEY DraftUUID DraftUUID UUID
DfsAssgmtActiveDraft DfsAssgmtActiveDraft
HasActiveEntity HasActiveEntity TRUE
HasDraftEntity HasDraftEntity Has Draft
DfsAssgmtCreationDateTime DfsAssgmtCreationDateTime Created On
DfsAssgmtCreatedByUser DfsAssgmtCreatedByUser Created By
DfsAssgmtChangeDateTime DfsAssgmtChangeDateTime Changed On
DfsAssgmtLastChgdByUser DfsAssgmtLastChgdByUser Changed By
DfsAssgmtValdtyStrtDate DfsAssgmtValdtyStrtDate Valid Start Date
DfsAssgmtValdtyEndDate DfsAssgmtValdtyEndDate Valid End Date
DfsAssgmtSourceType DfsAssgmtSourceType Source Type
DfsAssgmtType DfsAssgmtType Assignment Type
ForceElementOrgSrceUUID ForceElementOrgSrceUUID GUID 32
ForceElementOrgSrceID ForceElementOrgSrceID Object ID
DfsAssgmtStatusObject DfsAssgmtStatusObject Object Number
DfsAssgmtStatusCode DfsAssgmtStatusCode Status Code
Status
FrcElmntOrgMaintCapblt FrcElmntOrgMaintCapblt Maintain Capablity ID
FrcElmntOrgMaintCapbltText _MaintCapbltVH FrcElmntOrgMaintCapbltText Maintain Capablity Description
DfsAssgmtPlanOperationCode DfsAssgmtPlanOperationCode Planned Op. Code
DfsAssgmtPlanOperationCodeDesc
DfsAssgmtPlanStatusObject DfsAssgmtPlanStatusObject Planning status
DfsAssgmtPlanDelimitDate DfsAssgmtPlanDelimitDate Planned Del. Date
DfsAssgmtPlanOperationStatus
DfsAssgmtPlanOpStsCriticality _PlanStatusObjectActiveStatus StatusCriticality
_StatusAttributes _StatusAttributes
_TechnicalStatusText _TechnicalStatusText
_PlannedOperation _PlannedOperation

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 C_DFS_AssgmtFeToMaintCapbltLi.
-- 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: CDFSASSGMTMNTCAL

CREATE VIEW C_DFS_AssgmtFeToMaintCapbltLi AS
SELECT
  DfsAssgmtUUID,
  DraftUUID,
  DfsAssgmtActiveDraft,
  HasActiveEntity,
  HasDraftEntity,
  DfsAssgmtCreationDateTime,
  DfsAssgmtCreatedByUser,
  DfsAssgmtChangeDateTime,
  DfsAssgmtLastChgdByUser,
  DfsAssgmtValdtyStrtDate,
  DfsAssgmtValdtyEndDate,
  DfsAssgmtSourceType,
  DfsAssgmtType,
  ForceElementOrgSrceUUID,
  ForceElementOrgSrceID,
  DfsAssgmtStatusObject,
  DfsAssgmtStatusCode,
  _StatusAttributes._SystemStatusText[1:Language = $session.system_language].SystemStatusName AS Status,
  FrcElmntOrgMaintCapblt,
  _MaintCapbltVH.FrcElmntOrgMaintCapbltText AS FrcElmntOrgMaintCapbltText,
  DfsAssgmtPlanOperationCode,
  _PlannedOperation._Text[1:Language = $session.system_language].DfsAssgmtPlanOperationCodeDesc AS DfsAssgmtPlanOperationCodeDesc,
  DfsAssgmtPlanStatusObject,
  DfsAssgmtPlanDelimitDate,
  _PlanStatusObjectActiveStatus._StatusCode._StatusCodeText[1:Language = $session.system_language].StatusName AS DfsAssgmtPlanOperationStatus,
  _PlanStatusObjectActiveStatus.StatusCriticality AS DfsAssgmtPlanOpStsCriticality
FROM I_DFS_UniversalAssignmentUnion
LEFT OUTER JOIN I_DFS_StatusAttributes AS _StatusAttributes ON DfsAssgmtStatusCode = _StatusAttributes.SystemStatus  -- association [0..1]
LEFT OUTER JOIN I_DFS_TechnicalStatusText AS _TechnicalStatusText ON DfsAssgmtActiveDraft = _TechnicalStatusText.DfsAssgmtTechnicalStatus  -- association [0..*]
LEFT OUTER JOIN C_FrcElmntOrgMaintCapbltVH AS _MaintCapbltVH ON FrcElmntOrgMaintCapblt = _MaintCapbltVH.FrcElmntOrgMaintCapblt  -- association [1..1]
;