E_TravelRequestServicesDraft

DDL: E_TRAVELREQUESTSERVICESDRAFT Type: view_entity EXTENSION

Travel Request Services - Extn

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

Data Sources (1)

SourceAliasJoin Type
trvs4_srvreq_d Persistence from

Annotations (11)

NameValueLevelField
EndUserText.label Travel Request Services - Extn view
AccessControl.authorizationCheck #PRIVILEGED_ONLY 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 SRV view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.quota.maximumFields 350 view
AbapCatalog.extensibility.quota.maximumBytes 2240 view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PersonnelNumber personnelnumber Personnel No.
KEY TravelTripNumber traveltripnumber Trip Number
KEY TravelReqUUID travelrequuid UUID
KEY SeqReqUUID seqrequuid UUID
KEY TravelServiceRequestNumber travelservicerequestnumber Request number

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_TravelRequestServicesDraft.
-- 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_TravelRequestServicesDraft AS
SELECT
  PersonnelNumber,
  TravelTripNumber,
  TravelReqUUID,
  SeqReqUUID,
  TravelServiceRequestNumber
FROM trvs4_srvreq_d AS Persistence
;