C_ChangeRecordTypeVH
Record Type
C_ChangeRecordTypeVH is a Consumption CDS View that provides data about "Record Type" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecordType) and exposes 5 fields with key field ChangeRecordType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ChangeRecordType | I_ChangeRecordType | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCRTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| EndUserText.label | Record Type | view | |
| ObjectModel.representativeKey | CHANGERECORDTYPE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordType | ChangeRecordType | ||
| ChangeRecordTypeDesc | ||||
| ChangeRecordCategory | ChangeRecordCategory | |||
| ChangeRecordScenarioID | ChangeRecordScenarioID | |||
| ChgRecordIsUsingProcessRoute | ChgRecordIsUsingProcessRoute |
@AbapCatalog.sqlViewName: 'CCRTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@EndUserText.label: 'Record Type'//please DON'T change this label, this label will be shown in UI
@ObjectModel.representativeKey: 'CHANGERECORDTYPE'
//@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@ObjectModel.usageType: {serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #L}
@ClientHandling.algorithm: #SESSION_VARIABLE
//@ObjectModel.resultSet.sizeCategory: #XS
define view C_ChangeRecordTypeVH
as select from I_ChangeRecordType
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
// @ObjectModel.text.element: 'ChangeRecordTypeDesc'
key ChangeRecordType,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.7
cast(ChangeRecordTypeDesc as /plmb/cr_type_desc preserving type) as ChangeRecordTypeDesc,
// @Consumption.filter.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.7
ChangeRecordCategory,
@UI.hidden: true
ChangeRecordScenarioID,
@UI.hidden: true
ChgRecordIsUsingProcessRoute
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHANGERECORDTYPE"
],
"ASSOCIATED":
[],
"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