I_SrvcMgmtDocRejectionStatus

DDL: I_SRVCMGMTDOCREJECTIONSTATUS Type: view BASIC Package: CRMS4_REPORT

Rejection Status of Service Transaction

I_SrvcMgmtDocRejectionStatus is a Basic CDS View that provides data about "Rejection Status of Service Transaction" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field SrvcDocRejectionStatus. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISRVCDOCRJCNSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SrvcDocRejectionStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Rejection Status of Service Transaction view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SrvcDocRejectionStatus
DomainValue domvalue_l
_SrvcMgmtDocRjcnStatusText _SrvcMgmtDocRjcnStatusText
@AbapCatalog: {
                 sqlViewName: 'ISRVCDOCRJCNSTAT',
                 compiler.compareFilter: true,
                 preserveKey: true
              }
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
                 representativeKey: 'SrvcDocRejectionStatus',
                 usageType: {
                               dataClass: #CUSTOMIZING,
                               serviceQuality: #X,
                               sizeCategory:   #S
                            },
                 resultSet.sizeCategory:#XS,
                 supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE],
                 dataCategory: #VALUE_HELP
              }
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Rejection Status of Service Transaction'
define root view I_SrvcMgmtDocRejectionStatus 
  as select from dd07l 
  composition[0..*] of I_SrvcMgmtDocRjcnStatusText as _SrvcMgmtDocRjcnStatusText

{
      @ObjectModel.text.association: '_SrvcMgmtDocRjcnStatusText'
      key cast( domvalue_l   as abap.char( 1 ))       as  SrvcDocRejectionStatus,
      @Consumption.hidden: true
      @Analytics.hidden: true
      @Search: {
                  defaultSearchElement: true,
                  ranking: #HIGH
               }
      domvalue_l                                  as DomainValue,
      
      
      _SrvcMgmtDocRjcnStatusText
  
}
where
      domname  = 'CRM_REJECTION_STATUS'
  and as4local = 'A'
  and domvalue_l is not initial