I_ClfnClassKeywordForKeyDateTP
TP for Classification Class Keyword
I_ClfnClassKeywordForKeyDateTP is a Transactional CDS View that provides data about "TP for Classification Class Keyword" in SAP S/4HANA. It reads from 1 data source (I_ClfnClassKeyword) and exposes 7 fields with key fields ClassInternalID, Language, ClassKeywordPositionNumber. Part of development package NGC_CORE_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnClassKeyword | ClassKeyword | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | TP for Classification Class Keyword | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ClassInternalID | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClassInternalID | I_ClfnClassKeyword | ClassInternalID | |
| KEY | Language | I_ClfnClassKeyword | Language | |
| KEY | ClassKeywordPositionNumber | I_ClfnClassKeyword | ClassKeywordPositionNumber | |
| ClassKeywordText | I_ClfnClassKeyword | ClassKeywordText | ||
| KeyDate | ||||
| ClassLastChangedDateTime | ||||
| _Class | _Class |
//@ClientHandling.algorithm: #SESSION_VARIABLE
//@AbapCatalog.sqlViewName: 'INGCCLS02TP'
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'TP for Classification Class Keyword'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'ClassInternalID'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
//@AbapCatalog.preserveKey: true
//@ObjectModel.createEnabled: true
//@ObjectModel.updateEnabled: true
//@ObjectModel.deleteEnabled: true
//@ObjectModel.transactionalProcessingEnabled: true
//@ObjectModel.writeActiveImplementedBy: 'ABAP:CL_NGC_RAP_CLS'
//@ObjectModel.entityChangeStateId: 'ClassLastChangedDateTime'
define view entity I_ClfnClassKeywordForKeyDateTP
with parameters
// @Semantics.businessDate.at: true
@Environment.systemField: #SYSTEM_DATE
@Consumption.hidden: true
P_KeyDate :sydate
as select from I_ClfnClassKeyword as ClassKeyword
association to parent I_ClfnClassForKeyDateTP as _Class
on $projection.ClassInternalID = _Class.ClassInternalID
{
key ClassKeyword.ClassInternalID,
@Semantics.language: true
key ClassKeyword.Language,
@ObjectModel.foreignKey.association: null
key ClassKeyword.ClassKeywordPositionNumber,
@Semantics.text: true
ClassKeyword.ClassKeywordText,
// @ObjectModel.readOnly: true
$parameters.P_KeyDate as KeyDate,
_Class( P_KeyDate: $parameters.P_KeyDate ).ClassLastChangedDateTime,
// @ObjectModel.association.type: [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
_Class
}
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