I_SrvcDocProblemCategoryText
Service Transaction Problem Cat - Text
I_SrvcDocProblemCategoryText is a Basic CDS View that provides data about "Service Transaction Problem Cat - Text" in SAP S/4HANA. It reads from 1 data source (crmc_srqm_pcat_t) and exposes 5 fields with key fields ServiceDocumentProblemCategory, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_srqm_pcat_t | crmc_srqm_pcat_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
| [0..1] | I_ServiceDocProblemCategory | _ServiceDocProblemCategory | _ServiceDocProblemCategory.ServiceDocumentProblemCategory = $projection.ServiceDocumentProblemCategory |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRVCDOCPCATTXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Service Transaction Problem Cat - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ServiceDocumentProblemCategory | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentProblemCategory | problem_category | ||
| KEY | Language | langu | ||
| SrvcDocProblemCategoryName | description | |||
| _Language | _Language | |||
| _ServiceDocProblemCategory | _ServiceDocProblemCategory |
@AbapCatalog:
{
sqlViewName: 'ISRVCDOCPCATTXT',
preserveKey: true,
compiler.compareFilter: true,
buffering:
{
status: #ACTIVE,
type: #FULL
}
}
@AccessControl:
{
personalData.blocking: #NOT_REQUIRED,
authorizationCheck: #NOT_REQUIRED
}
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Service Transaction Problem Cat - Text'
@ObjectModel:
{
dataCategory: #TEXT,
representativeKey: 'ServiceDocumentProblemCategory',
usageType:
{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM.viewType: #BASIC
define view I_SrvcDocProblemCategoryText
as select from crmc_srqm_pcat_t
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
association [0..1] to I_ServiceDocProblemCategory as _ServiceDocProblemCategory on _ServiceDocProblemCategory.ServiceDocumentProblemCategory = $projection.ServiceDocumentProblemCategory
{
@ObjectModel.foreignKey.association: '_ServiceDocProblemCategory'
key problem_category as ServiceDocumentProblemCategory,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
@Semantics.text: true
description as SrvcDocProblemCategoryName,
_Language,
_ServiceDocProblemCategory
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMC_SRQM_PCAT_T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SERVICEDOCPROBLEMCATEGORY"
],
"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