A_CharcAttribSeldSetT

DDL: A_CHARCATTRIBSELDSETT SQL: ACHATTRSELSETT Type: view BASIC

Characteristic Attribute Selected Set Texts

A_CharcAttribSeldSetT is a Basic CDS View that provides data about "Characteristic Attribute Selected Set Texts" in SAP S/4HANA. It reads from 1 data source (I_CharcAttribSeldSetCodeSetTxt) and exposes 5 fields with key fields SelectedCodeSetPlant, SelectedCodeSet, Language.

Data Sources (1)

SourceAliasJoin Type
I_CharcAttribSeldSetCodeSetTxt I_CharcAttribSeldSetCodeSetTxt from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ACHATTRSELSETT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Attribute Selected Set Texts view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.compositionRoot true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SelectedCodeSetPlant I_CharcAttribSeldSetCodeSetTxt SelectedCodeSetPlant Receiving Plant
KEY SelectedCodeSet I_CharcAttribSeldSetCodeSetTxt SelectedCodeSet CodeGrp/SelSet
KEY Language I_CharcAttribSeldSetCodeSetTxt Language Report Text Language
SelectedCodeSetText I_CharcAttribSeldSetCodeSetTxt SelectedCodeSetText
_CharcAttribSelectedCodeSet _CharcAttribSelectedCodeSet

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_CharcAttribSeldSetT.
-- 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: ACHATTRSELSETT

CREATE VIEW A_CharcAttribSeldSetT AS
SELECT
  I_CharcAttribSeldSetCodeSetTxt.SelectedCodeSetPlant AS SelectedCodeSetPlant,
  I_CharcAttribSeldSetCodeSetTxt.SelectedCodeSet AS SelectedCodeSet,
  I_CharcAttribSeldSetCodeSetTxt.Language AS Language,
  I_CharcAttribSeldSetCodeSetTxt.SelectedCodeSetText AS SelectedCodeSetText
FROM I_CharcAttribSeldSetCodeSetTxt
;