P_CcpLatestDisputeCase

DDL: P_CCPLATESTDISPUTECASE SQL: PCCPDSPUTCS Type: view COMPOSITE Package: EBPP_APAR_FIORI

CCP latest dispute case

P_CcpLatestDisputeCase is a Composite CDS View that provides data about "CCP latest dispute case" in SAP S/4HANA. It reads from 1 data source (I_CollsInvoiceRelatedObject) and exposes 3 fields with key field obj_key. Part of development package EBPP_APAR_FIORI.

Data Sources (1)

SourceAliasJoin Type
I_CollsInvoiceRelatedObject I_CollsInvoiceRelatedObject from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCCPDSPUTCS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CCP latest dispute case view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY obj_key ObjectKey Object Key
case_guid CaseUniqueID UUID
create_time

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_CcpLatestDisputeCase.
-- 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: PCCPDSPUTCS

CREATE VIEW P_CcpLatestDisputeCase AS
SELECT
  ObjectKey AS obj_key,
  CaseUniqueID AS case_guid,
  max( _CaseAttribute.CaseCreatedOn) AS create_time
FROM I_CollsInvoiceRelatedObject
;