P_CharcCtlgClfnCharcValueBasic

DDL: P_CHARCCTLGCLFNCHARCVALUEBASIC Type: view_entity COMPOSITE Package: PROD_ALLOC_CHARC_CATALOG

Charac Catalog Classification Characteristic Value Basic

P_CharcCtlgClfnCharcValueBasic is a Composite CDS View that provides data about "Charac Catalog Classification Characteristic Value Basic" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcValue) and exposes 30 fields with key fields CharcInternalID, CharcValuePositionNumber, TimeIntervalNumber. Part of development package PROD_ALLOC_CHARC_CATALOG.

Data Sources (1)

SourceAliasJoin Type
I_ClfnCharcValue I_ClfnCharcValue 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 (30)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharcInternalID Characteristic Internal ID
KEY CharcValuePositionNumber CharcValuePositionNumber Int counter
KEY TimeIntervalNumber TimeIntervalNumber Int. counter
CharcValueParentPositionNumber CharcValueParentPositionNumber Int counter
CharcValueHasChild CharcValueHasChild Sub. values
CharcValueIntervalType CharcValueIntervalType Code
CharcValue CharcValue Char. Value
CharcFromNumericValue CharcFromNumericValue Value from
CharcToNumericValue CharcToNumericValue Value to
IsDefaultValue IsDefaultValue Default
CharcFromNumericValueUnit CharcFromNumericValueUnit Internal UoM
CharcToNumericValueUnit CharcToNumericValueUnit Internal UoM
CharcFromDecimalValue CharcFromDecimalValue LowrBndry Nmrc
CharcToDecimalValue CharcToDecimalValue UprBndry Nmrc
CharcFromDate CharcFromDate LowrBndry Date
CharcToDate CharcToDate UprBndry Date
CharcFromTime CharcFromTime LowrBndry Time
CharcToTime CharcToTime UprBndry Time
CharcFromAmount CharcFromAmount LowrBndry Crcy
CharcToAmount CharcToAmount UprBndry Crcy
Currency Currency Valuation Crcy
LongTextID LongTextID Text ID
ChangeNumber ChangeNumber Change Number
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
IsDeleted IsDeleted TRUE
DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document
DocumentInfoRecordDocPart DocumentInfoRecordDocPart Document Part
DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Doc. Version
DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type

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_CharcCtlgClfnCharcValueBasic.
-- 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_CharcCtlgClfnCharcValueBasic AS
SELECT
  CharcInternalID,
  CharcValuePositionNumber,
  TimeIntervalNumber,
  CharcValueParentPositionNumber,
  CharcValueHasChild,
  CharcValueIntervalType,
  CharcValue,
  CharcFromNumericValue,
  CharcToNumericValue,
  IsDefaultValue,
  CharcFromNumericValueUnit,
  CharcToNumericValueUnit,
  CharcFromDecimalValue,
  CharcToDecimalValue,
  CharcFromDate,
  CharcToDate,
  CharcFromTime,
  CharcToTime,
  CharcFromAmount,
  CharcToAmount,
  Currency,
  LongTextID,
  ChangeNumber,
  ValidityStartDate,
  ValidityEndDate,
  IsDeleted,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocPart,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocType
FROM I_ClfnCharcValue
;