R_PPDSCharcsPrvdr

DDL: R_PPDSCHARCSPRVDR Type: view_entity BASIC

Characteristics Provider

R_PPDSCharcsPrvdr is a Basic CDS View that provides data about "Characteristics Provider" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 6 fields with key fields CharcInternalID, CharacteristicVarLine, ArchivingObject.

Data Sources (1)

SourceAliasJoin Type
cabn cabn from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Characteristics Provider view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID
KEY CharacteristicVarLine cawn atzhl Int counter
KEY ArchivingObject cawn adzhl Int. counter
CharcFromNumericValue cawn atflv Value from
CharcValue cawn atwrt Char. Value
CharcValueDescription cawnt atwtb Description

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_PPDSCharcsPrvdr.
-- 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.

CREATE VIEW R_PPDSCharcsPrvdr AS
SELECT
  cast(cawn.atinn as atinn_no_conv preserving type) AS CharcInternalID,
  cawn.atzhl AS CharacteristicVarLine,
  cawn.adzhl AS ArchivingObject,
  cawn.atflv AS CharcFromNumericValue,
  cawn.atwrt AS CharcValue,
  cawnt.atwtb AS CharcValueDescription
FROM cabn
;