I_TravelNetworkValueHelp

DDL: I_TRAVELNETWORKVALUEHELP Type: view COMPOSITE

Travel Request Network

I_TravelNetworkValueHelp is a Composite CDS View that provides data about "Travel Request Network" in SAP S/4HANA. It reads from 1 data source (I_ProjectNetwork) and exposes 4 fields with key field ProjectNetwork.

Data Sources (1)

SourceAliasJoin Type
I_ProjectNetwork I_ProjectNetwork from

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Travel Request Network view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ITRVLREQNTWKVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProjectNetwork view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProjectNetwork ProjectNetwork Order
ProjectNetworkDescription ProjectNetworkDescription Network Name
MRPController MRPController MRP Controller
Plant Plant Valuation Area

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_TravelNetworkValueHelp.
-- 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_TravelNetworkValueHelp AS
SELECT
  ProjectNetwork,
  ProjectNetworkDescription,
  MRPController,
  Plant
FROM I_ProjectNetwork
;