P_ACMCharacteristic

DDL: P_ACMCHARACTERISTIC SQL: PACMCHARCTERISTC Type: view BASIC

Private DPQS charectoristic

P_ACMCharacteristic is a Basic CDS View that provides data about "Private DPQS charectoristic" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 3 fields with key field ACMCharacteristicInternal.

Data Sources (1)

SourceAliasJoin Type
cabn cabn from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PACMCHARCTERISTC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Private DPQS charectoristic view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ACMCharacteristicInternal
ACMCharacteristic cabn atnam Characteristic
ACMCharacteristicIsDeleted cabn lkenz Deletion Ind.

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 P_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: PACMCHARCTERISTC

CREATE VIEW P_ACMCharacteristic AS
SELECT
  cast(cabn.atinn as abap.numc( 10 )) AS ACMCharacteristicInternal,
  cabn.atnam AS ACMCharacteristic,
  cabn.lkenz AS ACMCharacteristicIsDeleted
FROM cabn
;