I_GoodsMovementRefDocTypeText

DDL: I_GOODSMOVEMENTREFDOCTYPETEXT Type: view_entity BASIC Package: MM_IM_VDM_STOCK

Goods Mvt Reference Document Type - Text

I_GoodsMovementRefDocTypeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

GoodsMvtReferenceDocTypeText · Supply Chain

I_GoodsMovementRefDocTypeText is a Basic CDS View that provides data about "Goods Mvt Reference Document Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields GoodsMovementRefDocType, Language. It has 2 associations to related views. Part of development package MM_IM_VDM_STOCK.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSupply Chain
Application ComponentMM-IM-VDM-SGM-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Language-Dependent Text,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSupply Chain for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_GoodsMovementRefDocType _GoodsMovementRefDocType $projection.GoodsMovementRefDocType = _GoodsMovementRefDocType.GoodsMovementRefDocType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
Analytics.dataExtraction.enabled true view
Analytics.technicalName IGDSMVTREFDOCTXT view
EndUserText.label Goods Mvt Reference Document Type - Text view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey GoodsMovementRefDocType view
ObjectModel.sapObjectNodeType.name GoodsMvtReferenceDocTypeText view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementRefDocType Movement Indicator
KEY Language Language Key
GoodsMovementRefDocTypeName Kanban Calculation: Locking Sequence
DomainValue dd07t domvalue_l Values for Domains: Single Value/Lower Limit
_GoodsMovementRefDocType _GoodsMovementRefDocType
_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_GoodsMovementRefDocTypeText.
-- 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_GoodsMovementRefDocTypeText AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 2 ) as abap.char( 2 ) ) as kzbew ) AS GoodsMovementRefDocType,
  cast(ddlanguage as spras preserving type) AS Language,
  cast(ddtext as vdm_lkngseq_text preserving type) AS GoodsMovementRefDocTypeName,
  dd07t.domvalue_l AS DomainValue
FROM dd07t
LEFT OUTER JOIN I_GoodsMovementRefDocType AS _GoodsMovementRefDocType ON GoodsMovementRefDocType = _GoodsMovementRefDocType.GoodsMovementRefDocType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;