I_ChFiExClfnObjCharcForKeyDate

DDL: I_CHFIEXCLFNOBJCHARCFORKEYDATE SQL: ICHFIEXCLFNKD Type: view COMPOSITE

Classification Obj Charac for Key date

I_ChFiExClfnObjCharcForKeyDate is a Composite CDS View that provides data about "Classification Obj Charac for Key date" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcValForKeyDate) and exposes 29 fields with key fields ClfnObjectID, ClfnObjectTable, CharcInternalID, CharcValuePositionNumber, ClfnObjectType.

Data Sources (1)

SourceAliasJoin Type
I_ClfnObjectCharcValForKeyDate I_ClfnObjectCharcValForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (10)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICHFIEXCLFNKD view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Classification Obj Charac for Key date view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY ClfnObjectID ClfnObjectID
KEY ClfnObjectTable ClfnObjectTable
KEY CharcInternalID CharcInternalID Characteristic Internal ID
KEY CharcValuePositionNumber CharcValuePositionNumber
KEY ClfnObjectType ClfnObjectType Object/Class
KEY ClassType ClassType X Flag
ClfnObjectInternalID ClfnObjectInternalID
CharcValueIntervalType CharcValueDependency Code
CharcValue CharcValue Char. Value
CharcFromNumericValue CharcFromNumericValue Value from
CharcFromNumericValueUnit CharcFromNumericValueUnit Internal UoM
CharcToNumericValue CharcToNumericValue Value to
CharcToNumericValueUnit CharcToNumericValueUnit Internal UoM
CharcFromDecimalValue CharcFromDecimalValue LowrBndry Nmrc
CharcToDecimalValue CharcToDecimalValue UprBndry Nmrc
CharcFromAmount CharcFromAmount LowrBndry Crcy
CharcToAmount CharcToAmount UprBndry Crcy
Currency Currency Valuation Crcy
CharcFromDate CharcFromDate LowrBndry Date
CharcToDate CharcToDate UprBndry Date
CharcFromTime CharcFromTime LowrBndry Time
CharcToTime CharcToTime UprBndry Time
CharacteristicAuthor CharacteristicAuthor
ChangeNumber ChangeNumber Change Number
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
LastChangeDateTime LastChangeDateTime Timestamp
Characteristic
_Characteristic _Characteristic

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 I_ChFiExClfnObjCharcForKeyDate.
-- 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: ICHFIEXCLFNKD
-- Parameters: P_KeyDate : sydate

CREATE VIEW I_ChFiExClfnObjCharcForKeyDate AS
SELECT
  ClfnObjectID,
  ClfnObjectTable,
  CharcInternalID,
  CharcValuePositionNumber,
  ClfnObjectType,
  ClassType,
  ClfnObjectInternalID,
  CharcValueDependency AS CharcValueIntervalType,
  CharcValue,
  CharcFromNumericValue,
  CharcFromNumericValueUnit,
  CharcToNumericValue,
  CharcToNumericValueUnit,
  CharcFromDecimalValue,
  CharcToDecimalValue,
  CharcFromAmount,
  CharcToAmount,
  Currency,
  CharcFromDate,
  CharcToDate,
  CharcFromTime,
  CharcToTime,
  CharacteristicAuthor,
  ChangeNumber,
  ValidityStartDate,
  ValidityEndDate,
  LastChangeDateTime,
  _Characteristic( P_KeyDate: $parameters.P_KeyDate).Characteristic AS Characteristic
FROM I_ClfnObjectCharcValForKeyDate
;