P_SrvcOrdDistinctConfExist

DDL: P_SRVCORDDISTINCTCONFEXIST SQL: PSRVCONFDSTEXST Type: view COMPOSITE

P_SrvcOrdDistinctConfExist is a Composite CDS View in SAP S/4HANA.

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName PSRVCONFDSTEXST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrder ServiceOrder Transaction ID
KEY ServiceObjectType ServiceObjectType Object Type
ServiceConfirmation
ServiceOrderUUID

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_SrvcOrdDistinctConfExist.
-- 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: PSRVCONFDSTEXST

CREATE VIEW P_SrvcOrdDistinctConfExist AS
SELECT
  ServiceOrder,
  ServiceObjectType,
  min(ServiceConfirmation) AS ServiceConfirmation,
  min(ServiceOrderUUID) AS ServiceOrderUUID
;