I_StatementOfChangesType

DDL: I_STATEMENTOFCHANGESTYPE Type: view BASIC Package: ODATA_GL_STATEMENT_OF_CHANGES

Statement of Changes Transaction Type

I_StatementOfChangesType is a Basic CDS View that provides data about "Statement of Changes Transaction Type" in SAP S/4HANA. It reads from 1 data source (finsc_soc_type) and exposes 3 fields with key fields StatementOfChangesType, Language. It has 1 association to related views. Part of development package ODATA_GL_STATEMENT_OF_CHANGES.

Data Sources (1)

SourceAliasJoin Type
finsc_soc_type finsc_soc_type from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_StatementOfChgsTypeText _Text $projection.StatementOfChangesType = _Text.StatementOfChangesType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISTMNTCHGSTATYPE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey StatementofChangesType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Statement of Changes Transaction Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StatementOfChangesType type Worklist Type
KEY Language _Text Language Report Text Language
StatementOfChangesTypeName _Text StatementOfChangesTypeName

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_StatementOfChangesType.
-- 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_StatementOfChangesType AS
SELECT
  type AS StatementOfChangesType,
  _Text.Language AS Language,
  _Text.StatementOfChangesTypeName AS StatementOfChangesTypeName
FROM finsc_soc_type
LEFT OUTER JOIN I_StatementOfChgsTypeText AS _Text ON StatementOfChangesType = _Text.StatementOfChangesType  -- association [0..*]
;