E_TravelExpenseAddlDestDraft

DDL: E_TRAVELEXPENSEADDLDESTDRAFT Type: view_entity EXTENSION

Trvl Expn Addl Dest - Extn

E_TravelExpenseAddlDestDraft is a Extension CDS View that provides data about "Trvl Expn Addl Dest - Extn" in SAP S/4HANA. It reads from 1 data source (trvs4_e_dest_d) and exposes 5 fields with key fields PersonnelNumber, TravelTripNumber, DestinationAssignment, TravelReqUUID, SeqReqUUID.

Data Sources (1)

SourceAliasJoin Type
trvs4_e_dest_d Persistence from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Trvl Expn Addl Dest - 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 ADD 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 trvs4_e_dest_d personnelnumber Personnel No.
KEY TravelTripNumber trvs4_e_dest_d traveltripnumber Trip Number
KEY DestinationAssignment trvs4_e_dest_d destinationassignment Destination Assignment
KEY TravelReqUUID trvs4_e_dest_d travelrequuid UUID
KEY SeqReqUUID trvs4_e_dest_d 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_TravelExpenseAddlDestDraft.
-- 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_TravelExpenseAddlDestDraft AS
SELECT
  Persistence.personnelnumber AS PersonnelNumber,
  Persistence.traveltripnumber AS TravelTripNumber,
  Persistence.destinationassignment AS DestinationAssignment,
  Persistence.travelrequuid AS TravelReqUUID,
  Persistence.seqrequuid AS SeqReqUUID
FROM trvs4_e_dest_d AS Persistence
;