I_Movement_TypeText

DDL: I_MOVEMENT_TYPETEXT SQL: IMOVEMENTTYPETXT Type: view BASIC

Movement Type Text Basic View

I_Movement_TypeText is a Basic CDS View that provides data about "Movement Type Text Basic View" in SAP S/4HANA. It reads from 1 data source (t156ht) and exposes 4 fields with key fields MovementType, Language.

Data Sources (1)

SourceAliasJoin Type
t156ht t156ht from

Annotations (13)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IMOVEMENTTYPETXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey MovementType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
EndUserText.label Movement Type Text Basic View view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MovementType bwart Valuation Type
KEY Language spras Off. Language
MovementTypeDescription btext Stock type
_Language _Language

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_Movement_TypeText.
-- 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.
-- SQL view name: IMOVEMENTTYPETXT

CREATE VIEW I_Movement_TypeText AS
SELECT
  bwart AS MovementType,
  spras AS Language,
  btext AS MovementTypeDescription
FROM t156ht
;