A_GoodsMvtReasonCodeText

DDL: A_GOODSMVTREASONCODETEXT SQL: AGMVTRECODET Type: view BASIC

Goods movement reason code text

A_GoodsMvtReasonCodeText is a Basic CDS View that provides data about "Goods movement reason code text" in SAP S/4HANA. It reads from 1 data source (I_PhysInvtryReasonCodeText) and exposes 5 fields with key fields GoodsMovementType, ReasonForPhysInvtryDifference, Language.

Data Sources (1)

SourceAliasJoin Type
I_PhysInvtryReasonCodeText _GoodsMvtReasonCodeText from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName AGMVTRECODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Goods movement reason code text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementType I_PhysInvtryReasonCodeText GoodsMovementType Movement Type
KEY ReasonForPhysInvtryDifference I_PhysInvtryReasonCodeText ReasonForPhysInvtryDifference Difference Reason
KEY Language I_PhysInvtryReasonCodeText Language Report Text Language
ReasonForPhysInvtryDiffText I_PhysInvtryReasonCodeText ReasonForPhysInvtryDiffText Short Text
GoodsMovementTypeName _GoodsMvmtTypeText GoodsMovementTypeName

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 A_GoodsMvtReasonCodeText.
-- 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: AGMVTRECODET

CREATE VIEW A_GoodsMvtReasonCodeText AS
SELECT
  _GoodsMvtReasonCodeText.GoodsMovementType AS GoodsMovementType,
  _GoodsMvtReasonCodeText.ReasonForPhysInvtryDifference AS ReasonForPhysInvtryDifference,
  _GoodsMvtReasonCodeText.Language AS Language,
  _GoodsMvtReasonCodeText.ReasonForPhysInvtryDiffText AS ReasonForPhysInvtryDiffText,
  _GoodsMvmtTypeText.GoodsMovementTypeName AS GoodsMovementTypeName
FROM I_PhysInvtryReasonCodeText AS _GoodsMvtReasonCodeText
;