I_ClfnCharcDescForKeyDateTP

DDL: I_CLFNCHARCDESCFORKEYDATETP SQL: INGCCHR02TP Type: view_entity TRANSACTIONAL Package: NGC_CORE_VDM

TP for Classification Characteristic Description

I_ClfnCharcDescForKeyDateTP is a Transactional CDS View that provides data about "TP for Classification Characteristic Description" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcDescForKeyDate) and exposes 9 fields with key fields CharcInternalID, Language. Part of development package NGC_CORE_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ClfnCharcDescForKeyDate I_ClfnCharcDescForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label TP for Classification Characteristic Description view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CharcInternalID view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharacteristicDesc CharcInternalID Characteristic Internal ID
KEY Language CharacteristicDesc Language Report Text Language
CharcDescription CharacteristicDesc CharcDescription
ChangeNumber CharacteristicDesc ChangeNumber Change Number
ValidityStartDate CharacteristicDesc ValidityStartDate Validity Start Date
ValidityEndDate CharacteristicDesc ValidityEndDate ValidTo
KeyDate
CharcLastChangedDateTime
_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_ClfnCharcDescForKeyDateTP.
-- 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: INGCCHR02TP
-- Parameters: P_KeyDate : sydate

CREATE VIEW I_ClfnCharcDescForKeyDateTP AS
SELECT
  CharacteristicDesc.CharcInternalID AS CharcInternalID,
  CharacteristicDesc.Language AS Language,
  CharacteristicDesc.CharcDescription AS CharcDescription,
  CharacteristicDesc.ChangeNumber AS ChangeNumber,
  CharacteristicDesc.ValidityStartDate AS ValidityStartDate,
  CharacteristicDesc.ValidityEndDate AS ValidityEndDate,
  $parameters.P_KeyDate AS KeyDate,
  _Characteristic( P_KeyDate: $parameters.P_KeyDate ).CharcLastChangedDateTime AS CharcLastChangedDateTime
FROM I_ClfnCharcDescForKeyDate
;