P_MaintCallCompltnDateTime

DDL: P_MAINTCALLCOMPLTNDATETIME SQL: PMNTCLCOMPDATTIM Type: view COMPOSITE

P_MaintCallCompltnDateTime is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_MaintenanceCall, P_MaintCallCompletionDate) and exposes 2 fields with key fields MaintenancePlan, MaintenanceCall.

Data Sources (2)

SourceAliasJoin Type
I_MaintenanceCall I_MaintenanceCall from
P_MaintCallCompletionDate P_MaintCallCompletionDate inner

Annotations (7)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName PMNTCLCOMPDATTIM view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlan I_MaintenanceCall MaintenancePlan MaintenancePlan
KEY MaintenanceCall I_MaintenanceCall MaintenanceCall Call Number

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 P_MaintCallCompltnDateTime.
-- 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: PMNTCLCOMPDATTIM

CREATE VIEW P_MaintCallCompltnDateTime AS
SELECT
  I_MaintenanceCall.MaintenancePlan AS MaintenancePlan,
  I_MaintenanceCall.MaintenanceCall AS MaintenanceCall
FROM I_MaintenanceCall
INNER JOIN P_MaintCallCompletionDate ON /* join condition not captured in parsed metadata */
;