I_RSHORDERMESSAGES

CDS View

EAM Order Message handling

I_RSHORDERMESSAGES is a CDS View in S/4HANA. EAM Order Message handling. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RSHOrderMessageVH view from BASIC EAM Order Message handling
@AbapCatalog.sqlViewName: 'IRSHORDMESSAGE'
@Analytics: { dataExtraction.enabled: true }
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SystemMessageNumber'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'EAM Order Message handling'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #META

@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API

/*
CONTRACT**********************************************************************************************************************

Name:                       Messages for Orders and Operations 
Specification:              This view provides messages for Orders and Operations
Requires:                   NA
Ensures:                    All messages of message class RSH_EAM_ORDER are returned
Owners:                     YS
Contributors:               YS, CK
Unit Test required Y/N:     N
Additional comments         None

END OF CONTRACT***************************************************************************************************************
*/

define view I_RSHOrderMessages as select from t100 {
    key msgnr as SystemMessageNumber,
    @Semantics.language: true
    key sprsl as Language,
    @Semantics.text: true
    text as SystemMessageText
}
where arbgb = 'RSH_EAM_ORDER' and
sprsl = $session.system_language   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T100"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/