I_SrvcMgmtDocRejectionStatus
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
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