I_ServiceDocProblemCategory
Service transaction problem category
I_ServiceDocProblemCategory is a Basic CDS View (Dimension) that provides data about "Service transaction problem category" in SAP S/4HANA. It reads from 1 data source (crmc_srqm_prbcat) and exposes 2 fields with key field ServiceDocumentProblemCategory. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_srqm_prbcat | crmc_srqm_prbcat | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SrvcDocProblemCategoryText | _Text | _Text.ServiceDocumentProblemCategory = $projection.ServiceDocumentProblemCategory |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRVCDOCPROBCAT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Service transaction problem category | view | |
| ObjectModel.representativeKey | ServiceDocumentProblemCategory | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentProblemCategory | problem_category | ||
| _Text | _Text |
@AbapCatalog:
{
sqlViewName: 'ISRVCDOCPROBCAT',
preserveKey: true,
compiler.compareFilter: true,
buffering:
{
status: #ACTIVE,
type: #FULL
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Service transaction problem category'
@ObjectModel:
{
representativeKey: 'ServiceDocumentProblemCategory',
usageType:
{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE]
}
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@Search.searchable: true
@VDM.viewType: #BASIC
define view I_ServiceDocProblemCategory
as select from crmc_srqm_prbcat
association [0..*] to I_SrvcDocProblemCategoryText as _Text on _Text.ServiceDocumentProblemCategory = $projection.ServiceDocumentProblemCategory
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key problem_category as ServiceDocumentProblemCategory,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMC_SRQM_PRBCAT"
],
"ASSOCIATED":
[
"I_SRVCDOCPROBLEMCATEGORYTEXT"
],
"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