I_SrvcDocProblemCategoryText

DDL: I_SRVCDOCPROBLEMCATEGORYTEXT Type: view BASIC

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)

SourceAliasJoin Type
crmc_srqm_pcat_t crmc_srqm_pcat_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _Language.Language = $projection.Language
[0..1] I_ServiceDocProblemCategory _ServiceDocProblemCategory _ServiceDocProblemCategory.ServiceDocumentProblemCategory = $projection.ServiceDocumentProblemCategory

Annotations (19)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/