P_CharcCtlgClfnCValueInclDel2

DDL: P_CHARCCTLGCLFNCVALUEINCLDEL2 Type: view_entity COMPOSITE Package: PROD_ALLOC_CHARC_CATALOG

Charc Ctlg Classification Charac Value with Deleted and Dscr

P_CharcCtlgClfnCValueInclDel2 is a Composite CDS View that provides data about "Charc Ctlg Classification Charac Value with Deleted and Dscr" in SAP S/4HANA. It reads from 1 data source (P_CharcCtlgClfnCValueInclDel1) and exposes 7 fields with key fields CharcInternalID, CharcValuePositionNumber. Part of development package PROD_ALLOC_CHARC_CATALOG.

Data Sources (1)

SourceAliasJoin Type
P_CharcCtlgClfnCValueInclDel1 value from

Annotations (6)

NameValueLevelField
VDM.private 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

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.

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
;