A_CADisputeCaseObject

DDL: A_CADISPUTECASEOBJECT Type: view_entity COMPOSITE Package: ODATA_API_FICA_DISPUTECASE_MNG

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. It is exposed through 1 OData service (API_CADISPUTECASE). Part of development package ODATA_API_FICA_DISPUTECASE_MNG.

Data Sources (1)

SourceAliasJoin Type
R_CADisputeCaseObjectTP R_CADisputeCaseObjectTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY 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

OData Services (1)

ServiceBindingVersionContractRelease
API_CADISPUTECASE API_CADISPUTECASE V4 C2 Deprecated

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
;