I_RequestsHeader
Requests
I_RequestsHeader is a CDS View that provides data about "Requests" in SAP S/4HANA. It reads from 1 data source (e070) and exposes 11 fields with key field TransportRequestID. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| e070 | e070 | from |
Associations (2)
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IREQUEST_HEADER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Requests | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TransportRequestID | trkorr | ||
| ABAPSourceSystem | ||||
| TransportRequestSourceClient | _RequestsClient | client | ||
| TransportRequestType | trfunction | |||
| TransportRequestStatus | trstatus | |||
| TransportRequestTarget | tarsystem | |||
| TransportRequestCategory | korrdev | |||
| TransportRequestOwner | as4user | |||
| TransportRequestChangedOn | as4date | |||
| TransportRequestChangedAt | as4time | |||
| TransportRequestDesc | _Text | as4text |
@AbapCatalog.sqlViewName: 'IREQUEST_HEADER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Requests'
define view I_RequestsHeader
as select from e070
// Table E07T is language-dependent but not translation relevant
association [0..*] to e07t as _Text on $projection.TransportRequestID = _Text.trkorr
and _Text.as4text is not null
association [0..1] to e070c as _RequestsClient on $projection.TransportRequestID = _RequestsClient.trkorr
{
//e070
key trkorr as TransportRequestID,
LEFT(trkorr, 3) as ABAPSourceSystem,
_RequestsClient.client as TransportRequestSourceClient,
trfunction as TransportRequestType,
trstatus as TransportRequestStatus,
tarsystem as TransportRequestTarget,
korrdev as TransportRequestCategory,
as4user as TransportRequestOwner,
as4date as TransportRequestChangedOn,
as4time as TransportRequestChangedAt,
_Text.as4text as TransportRequestDesc
}
where
(
trfunction != 'Q'
and trfunction != 'R'
and trfunction != 'S'
and trfunction != 'X'
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"E070",
"E070C",
"E07T"
],
"ASSOCIATED":
[
"E070C",
"E07T"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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