R_ACMCharacteristic

DDL: R_ACMCHARACTERISTIC SQL: RACMCHARACTERS Type: view TRANSACTIONAL

R view for DPQS Characteristic

R_ACMCharacteristic is a Transactional CDS View that provides data about "R view for DPQS Characteristic" in SAP S/4HANA. It reads from 1 data source (I_ACMCharacteristic) and exposes 6 fields with key field ACMCharacteristicInternal. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ACMCharacteristic I_ACMCharacteristic from

Associations (1)

CardinalityTargetAliasCondition
[*] R_ACMCharacteristicTextTP _DPQSCharacteristicText

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName RACMCHARACTERS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label R view for DPQS Characteristic view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ACMCharacteristicInternal ACMCharacteristicInternal
ACMNumberCharacters ACMNumberCharacters Number of Chars
ACMCharacteristicBaseUnit ACMCharacteristicBaseUnit Unit of measmnt
ACMNumberDecimal ACMNumberDecimal Decimal Places
ACMCharacteristicDataType ACMCharacteristicDataType 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 R_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: RACMCHARACTERS

CREATE VIEW R_ACMCharacteristic AS
SELECT
  ACMCharacteristicInternal,
  ACMNumberCharacters,
  ACMCharacteristicBaseUnit,
  ACMNumberDecimal,
  ACMCharacteristicDataType
FROM I_ACMCharacteristic
LEFT OUTER JOIN R_ACMCharacteristicTextTP AS _DPQSCharacteristicText ON /* condition not available in parsed metadata */  -- association [*]
;