I_ClfnObjectCharcValueTP
TP for Clfn Obj Charc With Value
I_ClfnObjectCharcValueTP is a Transactional CDS View that provides data about "TP for Clfn Obj Charc With Value" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcValForKeyDate) and exposes 26 fields with key fields ClfnObjectID, ClfnObjectTable, CharcInternalID, CharcValuePositionNumber, ClassType. It has 1 association to related views. Part of development package NGC_CORE_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnObjectCharcValForKeyDate | I_ClfnObjectCharcValForKeyDate | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ClfnObjectTP | _Object | $projection.ClfnObjectID = _Object.ClfnObjectID and $projection.ClfnObjectTable = _Object.ClfnObjectTable |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | TP for Clfn Obj Charc With Value | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (26)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClfnObjectID | ObjectCharcValue | ClfnObjectID | |
| KEY | ClfnObjectTable | ObjectCharcValue | ClfnObjectTable | |
| KEY | CharcInternalID | ObjectCharcValue | CharcInternalID | |
| KEY | CharcValuePositionNumber | ObjectCharcValue | CharcValuePositionNumber | |
| KEY | ClassType | ObjectCharcValue | ClassType | |
| ClfnObjectInternalID | ObjectCharcValue | ClfnObjectInternalID | ||
| CharcValueDependency | ObjectCharcValue | CharcValueDependency | ||
| CharcValue | ObjectCharcValue | CharcValue | ||
| CharcFromNumericValue | ObjectCharcValue | CharcFromNumericValue | ||
| CharcFromNumericValueUnit | ObjectCharcValue | CharcFromNumericValueUnit | ||
| CharcToNumericValue | ObjectCharcValue | CharcToNumericValue | ||
| CharcToNumericValueUnit | ObjectCharcValue | CharcToNumericValueUnit | ||
| CharcFromDecimalValue | ObjectCharcValue | CharcFromDecimalValue | ||
| CharcToDecimalValue | ObjectCharcValue | CharcToDecimalValue | ||
| CharcFromAmount | ObjectCharcValue | CharcFromAmount | ||
| CharcToAmount | ObjectCharcValue | CharcToAmount | ||
| Currency | ObjectCharcValue | Currency | ||
| CharcFromDate | ObjectCharcValue | CharcFromDate | ||
| CharcToDate | ObjectCharcValue | CharcToDate | ||
| CharcFromTime | ObjectCharcValue | CharcFromTime | ||
| CharcToTime | ObjectCharcValue | CharcToTime | ||
| CharacteristicAuthor | ObjectCharcValue | CharacteristicAuthor | ||
| LastChangeDateTime | ObjectCharcValue | LastChangeDateTime | ||
| _Characteristic | ObjectCharcValue | _Characteristic | ||
| _ObjectCharc | _ObjectCharc | |||
| _Object | _Object |
//@AbapCatalog.sqlViewName: 'INGCCLFN04TP'
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
//@VDM.viewType: #COMPOSITE
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
//@ClientHandling.algorithm: #SESSION_VARIABLE
//@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'TP for Clfn Obj Charc With Value'
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
//@AbapCatalog.preserveKey: true
define view entity I_ClfnObjectCharcValueTP
with parameters
@Consumption.hidden: true
@Environment.systemField: #SYSTEM_DATE
P_KeyDate : sydate
as select from I_ClfnObjectCharcValForKeyDate(P_KeyDate: $parameters.P_KeyDate) as ObjectCharcValue
association to parent I_ClfnObjectCharcTP as _ObjectCharc on
$projection.ClfnObjectID = _ObjectCharc.ClfnObjectID and
$projection.ClfnObjectTable = _ObjectCharc.ClfnObjectTable and
$projection.CharcInternalID = _ObjectCharc.CharcInternalID and
$projection.ClassType = _ObjectCharc.ClassType
association [1..1] to I_ClfnObjectTP as _Object on
$projection.ClfnObjectID = _Object.ClfnObjectID and
$projection.ClfnObjectTable = _Object.ClfnObjectTable
{
key ObjectCharcValue.ClfnObjectID,
key ObjectCharcValue.ClfnObjectTable,
key ObjectCharcValue.CharcInternalID,
key ObjectCharcValue.CharcValuePositionNumber,
key ObjectCharcValue.ClassType,
ObjectCharcValue.ClfnObjectInternalID,
ObjectCharcValue.CharcValueDependency,
ObjectCharcValue.CharcValue,
ObjectCharcValue.CharcFromNumericValue,
ObjectCharcValue.CharcFromNumericValueUnit,
ObjectCharcValue.CharcToNumericValue,
ObjectCharcValue.CharcToNumericValueUnit,
ObjectCharcValue.CharcFromDecimalValue,
ObjectCharcValue.CharcToDecimalValue,
// @Semantics.amount.currencyCode: 'Currency'
ObjectCharcValue.CharcFromAmount,
// @Semantics.amount.currencyCode: 'Currency'
ObjectCharcValue.CharcToAmount,
// @Semantics.currencyCode: true
ObjectCharcValue.Currency,
ObjectCharcValue.CharcFromDate,
ObjectCharcValue.CharcToDate,
ObjectCharcValue.CharcFromTime,
ObjectCharcValue.CharcToTime,
ObjectCharcValue.CharacteristicAuthor,
ObjectCharcValue.LastChangeDateTime,
ObjectCharcValue._Characteristic,
_ObjectCharc,
_Object
}
where
ObjectCharcValue.ClfnObjectType = 'O'
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