I_ACMCharcsData

DDL: I_ACMCHARCSDATA SQL: IACMCHARDATA Type: view BASIC

Characteristics Data

I_ACMCharcsData is a Basic CDS View that provides data about "Characteristics Data" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 4 fields with key field CharcInternalID.

Data Sources (1)

SourceAliasJoin Type
cabn cabn from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACMCHARDATA view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Characteristics Data view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.supportedCapabilities #CDS_MODELING_DATA_SOURCE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID atinn Internal char.
ArchivingObject adzhl Int. counter
CharcDataType atfor Format
CharcDecimals anzdz Decimal Places

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_ACMCharcsData.
-- 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: IACMCHARDATA

CREATE VIEW I_ACMCharcsData AS
SELECT
  atinn AS CharcInternalID,
  adzhl AS ArchivingObject,
  atfor AS CharcDataType,
  anzdz AS CharcDecimals
FROM cabn
;