I_TravelNoOfPassenger

DDL: I_TRAVELNOOFPASSENGER Type: view BASIC

Travel Number Of Passenger

I_TravelNoOfPassenger is a Basic CDS View that provides data about "Travel Number Of Passenger" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field NumberOfPassenger.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ITRVLNOOFPSSNGR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Travel Number Of Passenger view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey NumberOfPassenger view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY NumberOfPassenger
_NoOfPssngrText _NoOfPssngrText

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_TravelNoOfPassenger.
-- 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_TravelNoOfPassenger AS
SELECT
  substring( domvalue_l, 1, 10 ) AS NumberOfPassenger
FROM dd07l
;