I_CADISPUTEDOBJECT

CDS View

FICA Disputed Object

I_CADISPUTEDOBJECT is a CDS View in S/4HANA. FICA Disputed Object. It contains 10 fields. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
I_CADisputeCaseFllwUpPosting view inner COMPOSITE Disputed Follow Up Posting Document
I_CADisputedCreditTP view from TRANSACTIONAL Disputed Credits Assigned
I_CADisputedDocument view from COMPOSITE Documents in Dispute Cases
I_CADisputedPaymentDoc view from COMPOSITE FICA Payment Document
P_CADisputeCase view_entity from COMPOSITE Contr Acct Dispute Case
P_CADisputedDocument view from COMPOSITE
R_CADisputedCreditTP view_entity from TRANSACTIONAL Disputed Credit

Fields (10)

KeyField CDS FieldsUsed in Views
KEY CADocumentNumber CADocumentNumber 4
KEY CaseUniqueID CaseUniqueID 4
_BusinessPartner _BusinessPartner 3
_ContractAccount _ContractAccount 3
BusinessPartner BusinessPartner 4
ContractAccount ContractAccount 4
ObjectKey ObjectKey 3
ObjectType ObjectType 3
RelationshipNumber RelationshipNumber 3
RelationToLinkedObject RelationToLinkedObject 3
@AbapCatalog.sqlViewName: 'ICADISPOBJ'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'FICA Disputed Object'
define view I_CADisputedObject 
 as select from I_CADisputedBusinessPartner as _CADisputeBP
 left outer join I_CADisputedContractAccount as _CADisputeCA on _CADisputeBP.CaseUniqueID = _CADisputeCA.CaseUniqueID
 left outer join I_CADisputedObjectDocument as _CADisputeDoc on _CADisputeBP.CaseUniqueID = _CADisputeDoc.CaseUniqueID
  association [1..1] to I_BusinessPartner  as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
  association [0..1] to I_ContractAccountPartner   as _ContractAccount on $projection.ContractAccount = _ContractAccount.ContractAccount
                                                                      and $projection.BusinessPartner = _ContractAccount.BusinessPartner 
 {  
  key _CADisputeBP.CaseUniqueID,
  key _CADisputeDoc.CADocumentNumber,
  _CADisputeDoc.RelationshipNumber,
  _CADisputeDoc.RelationToLinkedObject,
  
  _CADisputeDoc.ObjectType,
  
  _CADisputeDoc.ObjectKey,
  _CADisputeBP.BusinessPartner,
  _CADisputeCA.ContractAccount,
  _BusinessPartner,
  _ContractAccount
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CADISPUTEDBUSINESSPARTNER",
"I_CADISPUTEDCONTRACTACCOUNT",
"I_CADISPUTEDOBJECTDOCUMENT"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_CONTRACTACCOUNTPARTNER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/