I_RetsMgmtProcess

DDL: I_RETSMGMTPROCESS SQL: IRMRTSPROCESS Type: view BASIC

Returns Management Process

I_RetsMgmtProcess is a Basic CDS View that provides data about "Returns Management Process" in SAP S/4HANA. It reads from 1 data source (msr_d_head) and exposes 6 fields with key field RetsMgmtProcess. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
msr_d_head msr_d_head from

Associations (3)

CardinalityTargetAliasCondition
[1..*] I_RetsMgmtProcessItem _RetsMgmtProcessItem $projection.RetsMgmtProcess = _RetsMgmtProcessItem.RetsMgmtProcess
[0..1] I_ReturnsDocumentType _ReturnsDocumentType $projection.ReturnsDocumentType = _ReturnsDocumentType.ReturnsDocumentType
[1..1] I_RetsMgmtProcessWthProcgSts _RetsMgmtProcessingStatus $projection.RetsMgmtProcess = _RetsMgmtProcessingStatus.RetsMgmtProcess

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey RetsMgmtProcess view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
EndUserText.label Returns Management Process view
AbapCatalog.sqlViewName IRMRTSPROCESS view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY RetsMgmtProcess msr_id
ReturnsDocumentType doc_type
ReturnsDocument doc_nr
_RetsMgmtProcessItem _RetsMgmtProcessItem
_ReturnsDocumentType _ReturnsDocumentType
_RetsMgmtProcessingStatus _RetsMgmtProcessingStatus
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'RetsMgmtProcess'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.modelingPattern: [ #NONE ]
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE ]
@VDM.viewType: #BASIC
@EndUserText.label: 'Returns Management Process'
@AbapCatalog.sqlViewName: 'IRMRTSPROCESS'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Metadata.ignorePropagatedAnnotations: true

define view I_RetsMgmtProcess
  as select from msr_d_head

  association [1..*] to I_RetsMgmtProcessItem        as _RetsMgmtProcessItem      on $projection.RetsMgmtProcess = _RetsMgmtProcessItem.RetsMgmtProcess
  association [0..1] to I_ReturnsDocumentType        as _ReturnsDocumentType      on $projection.ReturnsDocumentType = _ReturnsDocumentType.ReturnsDocumentType
  association [1..1] to I_RetsMgmtProcessWthProcgSts as _RetsMgmtProcessingStatus on $projection.RetsMgmtProcess = _RetsMgmtProcessingStatus.RetsMgmtProcess
{
      //Key

  key msr_id   as RetsMgmtProcess,

      //Return

      @ObjectModel.foreignKey.association: '_ReturnsDocumentType'
      doc_type as ReturnsDocumentType,
      doc_nr   as ReturnsDocument,

      //Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
      _RetsMgmtProcessItem,
      _ReturnsDocumentType,
      _RetsMgmtProcessingStatus
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MSR_D_HEAD"
],
"ASSOCIATED":
[
"I_RETSMGMTPROCESSITEM",
"I_RETSMGMTPROCESSWTHPROCGSTS",
"I_RETURNSDOCUMENTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/