I_ClfnObjectCharcValueBasic
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 28 fields with key fields ClfnObjectID, CharcInternalID, CharcValuePositionNumber, ClfnObjectType, ClassType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ausp | Valuation | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 (28)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClfnObjectID | ausp | objek | |
| KEY | CharcInternalID | |||
| KEY | CharcValuePositionNumber | ausp | atzhl | |
| KEY | ClfnObjectType | ausp | mafid | |
| KEY | ClassType | ausp | klart | |
| KEY | TimeIntervalNumber | ausp | adzhl | |
| CharcValueIntervalType | ausp | atcod | ||
| CharcValueDependency | ausp | atcod | ||
| CharcValue | ausp | atwrt | ||
| CharcFromNumericValue | ausp | atflv | ||
| CharcFromNumericValueUnit | ausp | atawe | ||
| CharcToNumericValue | ausp | atflb | ||
| CharcToNumericValueUnit | ausp | ataw1 | ||
| CharcFromDecimalValue | ausp | dec_value_from | ||
| CharcToDecimalValue | ausp | dec_value_to | ||
| CharcFromAmount | ausp | curr_value_from | ||
| CharcToAmount | ausp | curr_value_to | ||
| Currency | ausp | currency | ||
| CharcFromDate | ausp | date_from | ||
| CharcToDate | ausp | date_to | ||
| CharcFromTime | ausp | time_from | ||
| CharcToTime | ausp | time_to | ||
| CharacteristicAuthor | ausp | ataut | ||
| ChangeNumber | ausp | aennr | ||
| CharcValueSortPosition | ausp | atsrt | ||
| ValidityStartDate | ausp | datuv | ||
| ValidityEndDate | ausp | datub | ||
| IsDeleted | ausp | lkenz |
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'INGCCLFN23'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Clfn Obj Characteristic Valuation Basic'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
define view I_ClfnObjectCharcValueBasic
as select from ausp as Valuation
{
key Valuation.objek as ClfnObjectID,
key cast ( Valuation.atinn as atinn_no_conv preserving type ) as CharcInternalID,
key Valuation.atzhl as CharcValuePositionNumber,
key Valuation.mafid as ClfnObjectType,
key Valuation.klart as ClassType,
key Valuation.adzhl as TimeIntervalNumber,
Valuation.atcod as CharcValueIntervalType,
Valuation.atcod as CharcValueDependency, // deprecated, use 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,
@Semantics.amount.currencyCode: 'Currency'
Valuation.curr_value_from as CharcFromAmount,
@Semantics.amount.currencyCode: 'Currency'
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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA