R_CADisputeCaseObjectTP
Object of dispute case
R_CADisputeCaseObjectTP is a Transactional CDS View that provides data about "Object of dispute case" in SAP S/4HANA. It reads from 1 data source (I_CADisputeCaseObject) and exposes 7 fields with key fields CaseUUID, ObjectType, ObjectKey. Part of development package RAP_FICA_CADSPUTCASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CADisputeCaseObject | I_CADisputeCaseObject | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Object of dispute case | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| OData.entitySet.name | CACaseObject | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CaseUUID | CaseUUID | ||
| KEY | ObjectType | ObjectType | ||
| KEY | ObjectKey | ObjectKey | ||
| ObjectClassification | ObjectClassification | |||
| CAPaymentLot | CAPaymentLot | |||
| CAPaymentLotItem | CAPaymentLotItem | |||
| _CADisputeCase | _CADisputeCase |
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Object of dispute case'
@AccessControl.personalData.blocking: #REQUIRED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@OData.entitySet.name : 'CACaseObject'
define view entity R_CADisputeCaseObjectTP as select from I_CADisputeCaseObject
association to parent R_CADisputeCaseTP as _CADisputeCase on $projection.CaseUUID = _CADisputeCase.CaseUUID
{
key CaseUUID,
key ObjectType,
key ObjectKey,
ObjectClassification,
CAPaymentLot,
CAPaymentLotItem,
_CADisputeCase
}
where _CADisputeCase.CaseUUID is not initial //Only FICA
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA