A_ExsTxGdsMvtTypeText

DDL: A_EXSTXGDSMVTTYPETEXT SQL: AETXGDSMVTTYPET Type: view BASIC

Excise Tax Goods Movement Type - Text

A_ExsTxGdsMvtTypeText is a Basic CDS View that provides data about "Excise Tax Goods Movement Type - Text" in SAP S/4HANA. It reads from 1 data source (I_GoodsMvtTypeBySpclStkIndT) and exposes 4 fields with key fields GoodsMovementType, GoodsMovementRefDocType, Language.

Data Sources (1)

SourceAliasJoin Type
I_GoodsMvtTypeBySpclStkIndT _GoodsMvtTypeBySpclStkInd from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName AETXGDSMVTTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Excise Tax Goods Movement Type - 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 (4)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementType GoodsMovementType Movement Type
KEY GoodsMovementRefDocType GoodsMovementRefDocType Reference Doc. Type
KEY Language Language Report Text Language
GoodsMovementTypeName I_GoodsMvtTypeBySpclStkIndT GoodsMovementTypeName Stock type

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_ExsTxGdsMvtTypeText.
-- 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: AETXGDSMVTTYPET

CREATE VIEW A_ExsTxGdsMvtTypeText AS
SELECT
  GoodsMovementType,
  GoodsMovementRefDocType,
  Language,
  _GoodsMvtTypeBySpclStkInd.GoodsMovementTypeName AS GoodsMovementTypeName
FROM I_GoodsMvtTypeBySpclStkIndT AS _GoodsMvtTypeBySpclStkInd
;