I_SrvcConfIssueText

DDL: I_SRVCCONFISSUETEXT Type: view BASIC

Text view for customer management conf issue category

I_SrvcConfIssueText is a Basic CDS View that provides data about "Text view for customer management conf issue category" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SrvcConfIssue, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISRVCCONFISSTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Text view for customer management conf issue category view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SrvcConfIssue view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SrvcConfIssue
KEY Language ddlanguage
SrvcConfIssueName
_Language _Language
@AbapCatalog:
    {
        sqlViewName: 'ISRVCCONFISSTXT',
        compiler.compareFilter: true,
        preserveKey: true
    }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE 
@EndUserText.label: 'Text view for customer management conf issue category'
@ObjectModel:
    {
        dataCategory: #TEXT,
        representativeKey: 'SrvcConfIssue',
        usageType:
            {
                dataClass: #META,
                serviceQuality: #A,
                sizeCategory: #S
            }
    }
@VDM.viewType: #BASIC

define view I_SrvcConfIssueText as 
    select from dd07t 

//    association[0..1] to I_ServiceIssue as _ServiceIssue on $projection.CustMgmtIssueCategoryName = _ServiceIssue.CustMgmtIssueCategory

    association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
//    @ObjectModel.foreignKey.association: '_ServiceIssue' 

    @ObjectModel.text.element: ['SrvcConfIssueName']
    key SUBSTRING(dd07t.domvalue_l, 1, 4) as SrvcConfIssue,
    
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language' 
    key ddlanguage as Language,
    
    @Semantics.text: true
    cast( ddtext as crms4_service_issue_name )  as SrvcConfIssueName,
    
    //Associations

//    _ServiceIssue,

    _Language
}

where domname = 'CRMS4_SRVC_CONF_ISSUE' and as4local = 'A';   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/