P_CharcCtlgClfnCValueInclDel2

DDL: P_CHARCCTLGCLFNCVALUEINCLDEL2 SQL: PCCTLGCLFNCVDEL2 Type: view COMPOSITE

P_CharcCtlgClfnCValueInclDel2 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_CharcCtlgClfnCValueInclDel1) and exposes 7 fields with key fields CharcInternalID, CharcValuePositionNumber.

Data Sources (1)

SourceAliasJoin Type
P_CharcCtlgClfnCValueInclDel1 value from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PCCTLGCLFNCVDEL2 view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID P_CharcCtlgClfnCValueInclDel1 CharcInternalID Characteristic Internal ID
KEY CharcValuePositionNumber P_CharcCtlgClfnCValueInclDel1 CharcValuePositionNumber
CharcValue P_CharcCtlgClfnCValueInclDel1 CharcValue Char. Value
CharcValueDescription descr CharcValueDescription
ValidityStartDate P_CharcCtlgClfnCValueInclDel1 ValidityStartDate Validity Start Date
ValidityEndDate P_CharcCtlgClfnCValueInclDel1 ValidityEndDate ValidTo
IsDeleted P_CharcCtlgClfnCValueInclDel1 IsDeleted TRUE

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_CharcCtlgClfnCValueInclDel2.
-- 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: PCCTLGCLFNCVDEL2

CREATE VIEW P_CharcCtlgClfnCValueInclDel2 AS
SELECT
  value.CharcInternalID AS CharcInternalID,
  value.CharcValuePositionNumber AS CharcValuePositionNumber,
  value.CharcValue AS CharcValue,
  descr.CharcValueDescription AS CharcValueDescription,
  value.ValidityStartDate AS ValidityStartDate,
  value.ValidityEndDate AS ValidityEndDate,
  value.IsDeleted AS IsDeleted
FROM P_CharcCtlgClfnCValueInclDel1 AS value
;