E_TravelCostAssignmentData

DDL: E_TRAVELCOSTASSIGNMENTDATA Type: view_entity EXTENSION

Travel Cost Assignment - Extension

E_TravelCostAssignmentData is a Extension CDS View that provides data about "Travel Cost Assignment - Extension" in SAP S/4HANA. It reads from 1 data source (trvs4_costass) and exposes 6 fields with key fields PersonnelNumber, TravelTripNumber, TravelExpnSequentialNumber, TravelRequestSequenceNumber, CostAssignmentReferenceKey.

Data Sources (1)

SourceAliasJoin Type
trvs4_costass Persistence from

Annotations (12)

NameValueLevelField
EndUserText.label Travel Cost Assignment - Extension 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
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix TCT 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 trvs4_costass pernr Personnel no.
KEY TravelTripNumber trvs4_costass reinr Trip Number
KEY TravelExpnSequentialNumber trvs4_costass hdvrs Sequential no.
KEY TravelRequestSequenceNumber trvs4_costass costdistno SeqNo. CstDst.
KEY CostAssignmentReferenceKey trvs4_costass ref_key Source Reference Key
KEY TravelCostAssignmentType trvs4_costass cost_assignment_type Cost Assignment Type

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_TravelCostAssignmentData.
-- 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_TravelCostAssignmentData AS
SELECT
  Persistence.pernr AS PersonnelNumber,
  Persistence.reinr AS TravelTripNumber,
  Persistence.hdvrs AS TravelExpnSequentialNumber,
  Persistence.costdistno AS TravelRequestSequenceNumber,
  Persistence.ref_key AS CostAssignmentReferenceKey,
  Persistence.cost_assignment_type AS TravelCostAssignmentType
FROM trvs4_costass AS Persistence
;