I_CndnContrClassfctn
Category of Condition Contract
I_CndnContrClassfctn is a Basic CDS View (Dimension) that provides data about "Category of Condition Contract" in SAP S/4HANA. It reads from 1 data source (twcbcategory) and exposes 4 fields with key field CndnContrClassfctnType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twcbcategory | CndnContrClassfctn | from |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICCCLASSFCTNT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | CndnContrClassfctnType | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 001 | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Category of Condition Contract | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | false | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_CndnContrClassfctnType | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CndnContrClassfctnType | twcbcategory | category | |
| CndnContrProcessCategory | twcbcategory | process_category | ||
| _Text | _Text | |||
| _CndnContrProcessCategory | _CndnContrProcessCategory |
@AbapCatalog.sqlViewName: 'ICCCLASSFCTNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.representativeKey: 'CndnContrClassfctnType'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #GENERIC
@AbapCatalog.buffering.numberOfKeyFields: 001
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Category of Condition Contract'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: false }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_CndnContrClassfctnType'
define view I_CndnContrClassfctn
as select from
twcbcategory as CndnContrClassfctn
association[0..*] to I_CndnContrClassfctnTypeText as _Text on $projection.CndnContrClassfctnType = _Text.CndnContrClassfctnType
association[0..1] to I_CndnContrProcessCategory as _CndnContrProcessCategory on $projection.CndnContrProcessCategory = _CndnContrProcessCategory.CndnContrProcessCategory
{
@ObjectModel.text.association: '_Text'
key CndnContrClassfctn.category as CndnContrClassfctnType,
@ObjectModel.foreignKey.association: '_CndnContrProcessCategory'
CndnContrClassfctn.process_category as CndnContrProcessCategory,
//Associations
_Text,
_CndnContrProcessCategory
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWCBCATEGORY"
],
"ASSOCIATED":
[
"I_CNDNCONTRCLASSFCTNTYPETEXT",
"I_CNDNCONTRPROCESSCATEGORY"
],
"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