I_ClfnObjectCharcValueBasic

DDL: I_CLFNOBJECTCHARCVALUEBASIC SQL: INGCCLFN23 Type: view BASIC

Clfn Obj Characteristic Valuation Basic

I_ClfnObjectCharcValueBasic is a Basic CDS View that provides data about "Clfn Obj Characteristic Valuation Basic" in SAP S/4HANA. It reads from 1 data source (ausp) and exposes 27 fields with key fields ClfnObjectID, CharcInternalID, CharcValuePositionNumber, ClfnObjectType, ClassType.

Data Sources (1)

SourceAliasJoin Type
ausp Valuation from

Annotations (11)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName INGCCLFN23 view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Clfn Obj Characteristic Valuation Basic view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY ClfnObjectID ausp objek Object
KEY CharcInternalID
KEY CharcValuePositionNumber ausp atzhl Int counter
KEY ClfnObjectType ausp mafid Record type
KEY ClassType ausp klart Class Type
KEY TimeIntervalNumber ausp adzhl Int. counter
CharcValueIntervalType ausp atcod Interval limits
CharcValue ausp atwrt Char. Value
CharcFromNumericValue ausp atflv Value from
CharcFromNumericValueUnit ausp atawe Internal UoM
CharcToNumericValue ausp atflb Value to
CharcToNumericValueUnit ausp ataw1 Internal UoM
CharcFromDecimalValue ausp dec_value_from LowrBndry Nmrc
CharcToDecimalValue ausp dec_value_to UprBndry Nmrc
CharcFromAmount ausp curr_value_from LowrBndry Crcy
CharcToAmount ausp curr_value_to UprBndry Crcy
Currency ausp currency Valuation Crcy
CharcFromDate ausp date_from Validity Start Date
CharcToDate ausp date_to Validity End Date
CharcFromTime ausp time_from LowrBndry Time
CharcToTime ausp time_to UprBndry Time
CharacteristicAuthor ausp ataut Justification
ChangeNumber ausp aennr Change Number
CharcValueSortPosition ausp atsrt Position
ValidityStartDate ausp datuv Valid-from date
ValidityEndDate ausp datub Valid to
IsDeleted ausp lkenz Deletion Ind.

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_ClfnObjectCharcValueBasic.
-- 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: INGCCLFN23

CREATE VIEW I_ClfnObjectCharcValueBasic AS
SELECT
  Valuation.objek AS ClfnObjectID,
  cast ( Valuation.atinn as atinn_no_conv preserving type ) AS CharcInternalID,
  Valuation.atzhl AS CharcValuePositionNumber,
  Valuation.mafid AS ClfnObjectType,
  Valuation.klart AS ClassType,
  Valuation.adzhl AS TimeIntervalNumber,
  Valuation.atcod AS CharcValueIntervalType,
  Valuation.atwrt AS CharcValue,
  Valuation.atflv AS CharcFromNumericValue,
  Valuation.atawe AS CharcFromNumericValueUnit,
  Valuation.atflb AS CharcToNumericValue,
  Valuation.ataw1 AS CharcToNumericValueUnit,
  Valuation.dec_value_from AS CharcFromDecimalValue,
  Valuation.dec_value_to AS CharcToDecimalValue,
  Valuation.curr_value_from AS CharcFromAmount,
  Valuation.curr_value_to AS CharcToAmount,
  Valuation.currency AS Currency,
  Valuation.date_from AS CharcFromDate,
  Valuation.date_to AS CharcToDate,
  Valuation.time_from AS CharcFromTime,
  Valuation.time_to AS CharcToTime,
  Valuation.ataut AS CharacteristicAuthor,
  Valuation.aennr AS ChangeNumber,
  Valuation.atsrt AS CharcValueSortPosition,
  Valuation.datuv AS ValidityStartDate,
  Valuation.datub AS ValidityEndDate,
  Valuation.lkenz AS IsDeleted
FROM ausp AS Valuation
;