A_ChangeMasterObjectTypeText

DDL: A_CHANGEMASTEROBJECTTYPETEXT SQL: AECNOBJTYPETEXT Type: view BASIC

Change Number Object Type Text

A_ChangeMasterObjectTypeText is a Basic CDS View that provides data about "Change Number Object Type Text" in SAP S/4HANA. It reads from 1 data source (I_ChangeMasterObjectTypeText) and exposes 4 fields with key fields ChangeNumberObjectType, Language.

Data Sources (1)

SourceAliasJoin Type
I_ChangeMasterObjectTypeText I_ChangeMasterObjectTypeText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName AECNOBJTYPETEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChangeNumberObjectType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Change Number Object Type Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumberObjectType ChangeNumberObjectType Object Category
KEY Language Language Report Text Language
ObjectTypeText ObjectTypeText
ObjectTypeShortText ObjectTypeShortText Object 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_ChangeMasterObjectTypeText.
-- 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: AECNOBJTYPETEXT

CREATE VIEW A_ChangeMasterObjectTypeText AS
SELECT
  ChangeNumberObjectType,
  Language,
  ObjectTypeText,
  ObjectTypeShortText
FROM I_ChangeMasterObjectTypeText
;