A_CADisputeCaseObject

DDL: A_CADISPUTECASEOBJECT Type: view_entity COMPOSITE

Dispute Case Object

A_CADisputeCaseObject is a Composite CDS View that provides data about "Dispute Case Object" in SAP S/4HANA. It reads from 1 data source (R_CADisputeCaseObjectTP) and exposes 6 fields with key fields CaseUUID, ObjectType, ObjectKey.

Data Sources (1)

SourceAliasJoin Type
R_CADisputeCaseObjectTP R_CADisputeCaseObjectTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Dispute Case Object view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CaseUUID CaseUUID UUID
KEY ObjectType ObjectType Type
KEY ObjectKey ObjectKey Object Key
ObjectClassification ObjectClassification
CAPaymentLot CAPaymentLot
CAPaymentLotItem CAPaymentLotItem

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 A_CADisputeCaseObject.
-- 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 A_CADisputeCaseObject AS
SELECT
  CaseUUID,
  ObjectType,
  ObjectKey,
  ObjectClassification,
  CAPaymentLot,
  CAPaymentLotItem
FROM R_CADisputeCaseObjectTP
;