I_ChmlCmplncMktReqSts

DDL: I_CHMLCMPLNCMKTREQSTS Type: view BASIC

Request Status

I_ChmlCmplncMktReqSts is a Basic CDS View that provides data about "Request Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChmlCmplncReqStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l ChmlCmplncMktReqSts from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlCmplncMktReqStsTxt _Text $projection.ChmlCmplncReqStatus = _Text.ChmlCmplncReqStatus

Annotations (10)

NameValueLevelField
EndUserText.label Request Status view
AbapCatalog.sqlViewName ICCMKTREQSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlCmplncReqStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncReqStatus
_Text _Text
@EndUserText.label: 'Request Status'

@AbapCatalog:
{
  sqlViewName: 'ICCMKTREQSTS',
  compiler.compareFilter: true
}

@AccessControl:
{
  -- Customizing values of Request Status --> No auth. check necessary 
  authorizationCheck: #NOT_REQUIRED
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@ObjectModel:
{
  usageType:
  {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlCmplncReqStatus'
}

define view I_ChmlCmplncMktReqSts
  as select from dd07l as ChmlCmplncMktReqSts

  --Text association
  association [0..*] to I_ChmlCmplncMktReqStsTxt    as _Text     on $projection.ChmlCmplncReqStatus = _Text.ChmlCmplncReqStatus

{
      @ObjectModel.text.association: '_Text'
  key substring(ChmlCmplncMktReqSts.domvalue_l, 1, 10) as ChmlCmplncReqStatus,
      
      _Text
      
}
where
      ChmlCmplncMktReqSts.domname  = 'EHFND_CCI_MREQ_STATUS'
  and ChmlCmplncMktReqSts.as4local = 'A'