I_ClfnClassStatus
Status of Classification Class
I_ClfnClassStatus is a Basic CDS View (Dimension) that provides data about "Status of Classification Class" in SAP S/4HANA. It reads from 1 data source (tclu) and exposes 5 fields with key fields ClassType, ClassStatus. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tclu | ClassStatus | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClfnClassTypeBasic | _ClassType | $projection.ClassType = _ClassType.ClassType |
| [0..*] | I_ClfnClassStatusText | _ClassStatusText | |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INGCCLC3 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Status of Classification Class | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | ClassStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog.sqlViewName: 'INGCCLC3'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Status of Classification Class'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.representativeKey: 'ClassStatus'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities:
[ #CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#EXTRACTION_DATA_SOURCE,
#ANALYTICAL_DIMENSION,
#SQL_DATA_SOURCE ]
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define root view I_ClfnClassStatus
as select from tclu as ClassStatus
composition [0..*] of I_ClfnClassStatusText as _ClassStatusText
association [0..1] to I_ClfnClassTypeBasic as _ClassType
on $projection.ClassType = _ClassType.ClassType
{
@ObjectModel.foreignKey.association: '_ClassType'
key ClassStatus.klart as ClassType,
@ObjectModel.text.association: '_ClassStatusText'
key ClassStatus.status as ClassStatus,
cast ( ClassStatus.klfkz as classificationisallowed preserving type ) as ClassificationIsAllowed,
// claedimand,
// auprf,
// dlock,
// klpkz,
// selkz,
// vstat,
_ClassType,
_ClassStatusText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCLU"
],
"ASSOCIATED":
[
"I_CLFNCLASSSTATUSTEXT",
"I_CLFNCLASSTYPEBASIC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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