I_ACMCharacteristic

DDL: I_ACMCHARACTERISTIC SQL: IACMCHARACTERS Type: view BASIC

DPQS charectoristic value

I_ACMCharacteristic is a Basic CDS View that provides data about "DPQS charectoristic value" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 6 fields with key field ACMCharacteristicInternal. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
cabn cabn from

Associations (1)

CardinalityTargetAliasCondition
[*] I_ACMCharacteristicText _DPQSCharacteristicText

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMCHARACTERS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label DPQS charectoristic value view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ACMCharacteristicInternal
ACMNumberCharacters anzst Number of Chars
ACMCharacteristicBaseUnit msehi Unit of measmnt
ACMNumberDecimal anzdz Decimal Places
ACMCharacteristicDataType atfor Format
_DPQSCharacteristicText _DPQSCharacteristicText

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_ACMCharacteristic.
-- 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: IACMCHARACTERS

CREATE VIEW I_ACMCharacteristic AS
SELECT
  cast(cabn.atinn as abap.numc( 10 )) AS ACMCharacteristicInternal,
  anzst AS ACMNumberCharacters,
  msehi AS ACMCharacteristicBaseUnit,
  anzdz AS ACMNumberDecimal,
  atfor AS ACMCharacteristicDataType
FROM cabn
LEFT OUTER JOIN I_ACMCharacteristicText AS _DPQSCharacteristicText ON /* condition not available in parsed metadata */  -- association [*]
;