I_MaintObjectChgTypeCodeText

DDL: I_MAINTOBJECTCHGTYPECODETEXT SQL: IMOBJCHTPT Type: view BASIC

Maintenance Object Change Type Text

I_MaintObjectChgTypeCodeText is a Basic CDS View that provides data about "Maintenance Object Change Type Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields MaintObjectChangeTypeCode, Language.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMOBJCHTPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Object Change Type Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintObjectChangeTypeCode Lower Value
KEY Language ddlanguage Lang.
MaintObjectChangeTypeCodeText ddtext 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 I_MaintObjectChgTypeCodeText.
-- 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: IMOBJCHTPT

CREATE VIEW I_MaintObjectChgTypeCodeText AS
SELECT
  cast( domvalue_l as abap.numc( 1 )) AS MaintObjectChangeTypeCode,
  ddlanguage AS Language,
  ddtext AS MaintObjectChangeTypeCodeText
FROM dd07v
;