I_TravelArrivalWorkStdVH

DDL: I_TRAVELARRIVALWORKSTDVH Type: view_entity BASIC

Travel Arrival Work

I_TravelArrivalWorkStdVH is a Basic CDS View that provides data about "Travel Arrival Work" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field char1endasArrivalWork.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ArrivalWork view
EndUserText.label Travel Arrival Work view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
UI.textArrangement #TEXT_ONLY view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY char1endasArrivalWork Lower Value
ArrivalWorkName ddtext Short text

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 I_TravelArrivalWorkStdVH.
-- 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 I_TravelArrivalWorkStdVH AS
SELECT
  case domvalue_l when ' ' then cast( '1' as abap.char( 1 ) ) else cast( domvalue_l as abap.char( 1 ) ) end as ArrivalWork AS char1endasArrivalWork,
  ddtext AS ArrivalWorkName
FROM dd07t
;