F2_Mmim_ReasonCT

DDL: F2_MMIM_REASONCT SQL: F2MMIMREASONCT Type: view

Goodsmovement Reason Code Texts

F2_Mmim_ReasonCT is a CDS View that provides data about "Goodsmovement Reason Code Texts" in SAP S/4HANA. It reads from 1 data source (t157e) and exposes 2 fields with key fields GoodsMovementReasonCode, GoodsMovementReasonName.

Data Sources (1)

SourceAliasJoin Type
t157e t157e from

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName F2MMIMREASONCT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Goodsmovement Reason Code Texts view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementReasonCode grund Reason for mvt.
KEY GoodsMovementReasonName grtxt 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 F2_Mmim_ReasonCT.
-- 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: F2MMIMREASONCT

CREATE VIEW F2_Mmim_ReasonCT AS
SELECT
  grund AS GoodsMovementReasonCode,
  grtxt AS GoodsMovementReasonName
FROM t157e
;