E_TravelRequestDraft

DDL: E_TRAVELREQUESTDRAFT Type: view_entity EXTENSION

Travel Request - Extn

E_TravelRequestDraft is a Extension CDS View that provides data about "Travel Request - Extn" in SAP S/4HANA. It reads from 1 data source (trvs4_request_d) and exposes 3 fields with key fields PersonnelNumber, TravelTripNumber, TravelReqUUID.

Data Sources (1)

SourceAliasJoin Type
trvs4_request_d Persistence from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Travel Request - Extn view
VDM.viewType #EXTENSION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix TRQ view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.quota.maximumFields 350 view
AbapCatalog.extensibility.quota.maximumBytes 2240 view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PersonnelNumber trvs4_request_d personnelnumber Personnel No.
KEY TravelTripNumber trvs4_request_d traveltripnumber Trip Number
KEY TravelReqUUID trvs4_request_d travelrequuid UUID

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view E_TravelRequestDraft.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW E_TravelRequestDraft AS
SELECT
  Persistence.personnelnumber AS PersonnelNumber,
  Persistence.traveltripnumber AS TravelTripNumber,
  Persistence.travelrequuid AS TravelReqUUID
FROM trvs4_request_d AS Persistence
;