E_TrvlReqAddlDestDraft

DDL: E_TRVLREQADDLDESTDRAFT Type: view_entity EXTENSION

Travel Request Additional Dest - Extn

E_TrvlReqAddlDestDraft is a Extension CDS View that provides data about "Travel Request Additional Dest - Extn" in SAP S/4HANA. It reads from 1 data source (trvs4_dest_d) and exposes 6 fields with key fields PersonnelNumber, TravelTripNumber, DestinationAssignment, DestinationType, TravelReqUUID.

Data Sources (1)

SourceAliasJoin Type
trvs4_dest_d Persistence from

Annotations (11)

NameValueLevelField
EndUserText.label Travel Request Additional Dest - 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 ADD view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.quota.maximumFields 350 view
AbapCatalog.extensibility.quota.maximumBytes 2240 view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PersonnelNumber personnelnumber Personnel No.
KEY TravelTripNumber traveltripnumber Trip Number
KEY DestinationAssignment destinationassignment Destination Assignment
KEY DestinationType destinationtype Destination type
KEY TravelReqUUID travelrequuid UUID
KEY SeqReqUUID seqrequuid 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_TrvlReqAddlDestDraft.
-- 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_TrvlReqAddlDestDraft AS
SELECT
  PersonnelNumber,
  TravelTripNumber,
  DestinationAssignment,
  DestinationType,
  TravelReqUUID,
  SeqReqUUID
FROM trvs4_dest_d AS Persistence
;