I_MaintNotifProcgContextText

DDL: I_MAINTNOTIFPROCGCONTEXTTEXT SQL: IPROCGCNTXTTXT Type: view BASIC

Maint Notif Processing Context - Text

I_MaintNotifProcgContextText is a Basic CDS View that provides data about "Maint Notif Processing Context - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields MaintNotifProcessingContext, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPROCGCNTXTTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Maint Notif Processing Context - Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifProcessingContext
KEY Language dd07t ddlanguage
MaintNotifProcgContextText dd07t ddtext
@AbapCatalog.sqlViewName: 'IPROCGCNTXTTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE 
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Maint Notif Processing Context - Text'
define view I_MaintNotifProcgContextText as select from dd07t 
{

key cast(dd07t.domvalue_l as maintnotifprocessingcontext) as MaintNotifProcessingContext,
 @Semantics.language:true
key dd07t.ddlanguage as Language,  
  @Semantics.text: true 
  dd07t.ddtext  as  MaintNotifProcgContextText
  
} where domname = 'MAINTNOTIFPROCESSINGCONTEXT' 
//  and domvalue_l = '2' 

  and ddlanguage = $session.system_language
  and as4local    = 'A' 
//  and ( domvalue_l = '01'

//     or domvalue_l = '02'

//      )

  and  as4vers     = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/