I_RequestStatus
Request/Task: Status
I_RequestStatus is a CDS View that provides data about "Request/Task: Status" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field domvalue_l. Part of development package SCTS_REQ_APP.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IREQUEST_STATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Request/Task: Status | view |
@AbapCatalog.sqlViewName: 'IREQUEST_STATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Request/Task: Status'
define view I_RequestStatus
as select from dd07l as Domain
left outer join dd07t as DomainText on Domain.domname = DomainText.domname
and Domain.as4local = DomainText.as4local
and Domain.valpos = DomainText.valpos
and Domain.as4vers = DomainText.as4vers
{
key Domain.domvalue_l,
@Semantics.text: true
DomainText.ddtext as TransportRequestStatusText
}
where
(
Domain.domname = 'TRSTATUS'
or Domain.domname = 'ATO_CMN_REQUEST_CHECK_STATE'
)
and Domain.as4local = 'A'
and Domain.as4vers = '0000'
and DomainText.ddlanguage = $session.system_language
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