P_CADisputeCase
Contr Acct Dispute Case
P_CADisputeCase is a Composite CDS View that provides data about "Contr Acct Dispute Case" in SAP S/4HANA. It reads from 2 data sources (I_CaseAttribute, I_CADisputedObject) and exposes 12 fields with key fields CaseUniqueID, CADocumentNumber.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CaseAttribute | _CaseAttribute | inner |
| I_CADisputedObject | _DisputeObject | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Contr Acct Dispute Case | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CaseUniqueID | I_CADisputedObject | CaseUniqueID | |
| KEY | CADocumentNumber | I_CADisputedObject | CADocumentNumber | |
| RelationshipNumber | I_CADisputedObject | RelationshipNumber | ||
| RelationToLinkedObject | I_CADisputedObject | RelationToLinkedObject | ||
| ObjectType | I_CADisputedObject | ObjectType | ||
| ObjectKey | I_CADisputedObject | ObjectKey | ||
| BusinessPartner | I_CADisputedObject | BusinessPartner | ||
| ContractAccount | I_CADisputedObject | ContractAccount | ||
| CaseID | I_CaseAttribute | CaseID | ||
| CaseTitle | I_CaseAttribute | CaseTitle | ||
| _BusinessPartner | I_CADisputedObject | _BusinessPartner | ||
| _ContractAccount | I_CADisputedObject | _ContractAccount |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Contr Acct Dispute Case'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #P,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_CADisputeCase
as select from I_CADisputedObject as _DisputeObject
inner join I_CaseAttribute as _CaseAttribute on _DisputeObject.CaseUniqueID = _CaseAttribute.CaseUniqueID
{
key _DisputeObject.CaseUniqueID,
key _DisputeObject.CADocumentNumber,
_DisputeObject.RelationshipNumber,
_DisputeObject.RelationToLinkedObject,
_DisputeObject.ObjectType,
_DisputeObject.ObjectKey,
_DisputeObject.BusinessPartner,
_DisputeObject.ContractAccount,
_CaseAttribute.CaseID,
_CaseAttribute.CaseTitle,
/* Associations */
_DisputeObject._BusinessPartner,
_DisputeObject._ContractAccount
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CADISPUTEDOBJECT",
"I_CASEATTRIBUTE"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_CONTRACTACCOUNTPARTNER"
],
"BASE":
[
"I_CADISPUTEDOBJECT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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